-
Notifications
You must be signed in to change notification settings - Fork 31
/
contact.html
552 lines (545 loc) · 51.5 KB
/
contact.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Particl.io - About</title>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<meta name="format-detection" content="telephone=no">
<link rel="apple-touch-icon" sizes="180x180" href="img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png">
<link rel="manifest" href="img/site.webmanifest">
<link rel="mask-icon" href="img/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<meta name="description" content="Cut off the middleman and live free with apps that respect your rights, freedoms, and privacy. A world of opportunities awaits you!">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@particlproject">
<meta name="twitter:title" content="Apps that respect your rights">
<meta name="twitter:description" content="Particl.io - Apps that respect your rights">
<meta name="twitter:creator" content="@particlproject">
<meta name="twitter:image" content="">
<meta property="og:title" content="Particl.io - Apps that respect your rights">
<meta property="og:type" content="Article">
<meta property="og:url" content="https://particl.io">
<meta property="og:image" content="">
<meta property="og:description" content="Cut off the middleman and live free with apps that respect your rights, freedoms, and privacy. A world of opportunities awaits you!">
<meta property="og:site_name" content="Particl.io - Apps that respect your rights">
<meta property="fb:admins" content="">
<link rel="stylesheet" media="all" href="css/app.min.css">
<script>
var viewportmeta = document.querySelector('meta[name="viewport"]');
if (viewportmeta) {
if (screen.width < 375) {
var newScale = screen.width / 375;
viewportmeta.content = 'width=375, minimum-scale=' + newScale + ', maximum-scale=1.0, user-scalable=no, initial-scale=' + newScale + '';
} else {
viewportmeta.content = 'width=device-width, maximum-scale=1.0, initial-scale=1.0';
}
}
</script>
</head>
<body>
<script>
console.log(localStorage.getItem('darkMode'));
if (localStorage.getItem('darkMode') === "on") {
document.body.classList.add("dark");
document.addEventListener("DOMContentLoaded", function() {
document.querySelector('.js-theme input').checked = true;
});
}
</script>
<!-- outer-->
<div class="outer">
<!-- header-->
<header class="header js-header">
<div class="header__center center"><a class="header__logo" href="https://particl.io"><img class="some-icon" src="img/logo-dark.svg" alt="Particl.io"><img class="some-icon-dark" src="img/logo-light.svg" alt="Particl.io"></a>
<div class="header__wrap js-header-wrap">
<nav class="header__nav"><a class="header__link" href="marketplace">Marketplace</a><a class="header__link" href="coin">Coin</a><a class="header__link" target="_blank" href="https://basicswapdex.com">Dex</a><a class="header__link" href="about">About</a><a class="header__link" href="https://particl.news" target="_blank">Blog</a></nav>
<div class="header__group">
<div class="header__contacts">
<div class="header__element">
<div class="header__subtitle"></div>
<div class="header__text"></div>
</div>
</div>
<div class="header__socials"><a class="header__social" href="https://twitter.com/particlproject" target="_blank" title="twitter">
<svg class="icon icon-twitter">
<use xlink:href="#icon-twitter"></use>
</svg></a><a class="header__social" href="https://discord.me/particl" target="_blank" title="Discord">
<svg class="icon icon-discord">
<use xlink:href="#icon-discord"></use>
</svg></a><a class="header__social" href="https://t.me/particltg" target="_blank" title="Telegram">
<svg class="icon icon-telegram">
<use xlink:href="#icon-telegram"></use>
</svg></a><a class="header__social" href="https://www.reddit.com/r/Particl/" target="_blank" title="Reddit">
<svg class="icon icon-reddit">
<use xlink:href="#icon-reddit"></use>
</svg></a><a class="header__social" href="https://riot.im/app/#/room/#particl:matrix.org" target="_blank" title="Riot/Element">
<svg class="icon icon-riot">
<use xlink:href="#icon-riot"></use>
</svg></a><a class="header__social" href="https://github.com/particl" target="_blank" title="Github">
<svg class="icon icon-github">
<use xlink:href="#icon-github"></use>
</svg></a></div><a class="button button-stroke button-small header__button" href="downloads">Install
<svg class="icon icon-download">
<use xlink:href="#icon-download"></use>
</svg></a>
</div>
</div><a class="button button-stroke button-small header__button" href="downloads">Install
<svg class="icon icon-download">
<use xlink:href="#icon-download"></use>
</svg></a>
<button class="header__burger js-header-burger"></button>
</div>
</header>
<!-- container-->
<div class="outer__content">
<div class="section-bg section-border-top team-intro">
<div class="team-intro__center center">
<div class="stage"><span>❤</span></div>
<h2 class="team-intro__title h2">Meet the team</h2>
<div class="team-intro__text">We are a global community of privacy advocates and freedom fighters, united by our dedication to creating a world free from intermediaries.<br><br>Our focus lies in the engineering of distributed systems that shifts the balance of power back to the individual and safeguard your liberties, rights, and privacy without compromises.<br><br>If you’d like to connect with us, feel free to contact us through our general email, reach out to any of us directly using our personal contact details provided below.
</div>
<div class="team-intro__text"><br> Get in touch via our general email address.</div>
<div class="team-intro__btns"><a class="button team-intro__button" href="mailto:[email protected]">[email protected]
<svg class="icon icon-email">
<use xlink:href="#icon-email"></use>
</svg></a></div>
<div class="team-intro__note"> We take security seriously. If you found a critical bug, security issue or just want to communicate in encrypted manner,<br> use our provided public key to encrypt your emails.<a href="files/core.particl.io_pub.asc">PGP/GPG keys.</a></div>
</div>
</div>
<div class="section-bg">
<div class="team-list__center center">
<div class="team-list__info" data-aos="animation-scale-top" data-aos-duration="600"></div>
<div class="team-list__team">
<div class="team-list__user">
<div class="team-list__ava"><img src="img/content/team/gerlof.jpg" alt="Gerlof van Ek"></div>
<div class="team-list__name">Gerlof van Ek (crz)</div>
<div class="team-list__post">Project and development management, Lead Designer, UI/UX, and Front-end Developer</div>
<div class="team-list__socials"><a class="team-list__social" href="" target="_blank" title="Slack/Discord/Element/Forum handle: crz">
<svg class="icon icon-handle">
<use xlink:href="#icon-handle"></use>
</svg></a><a class="team-list__social" href="mailto:[email protected]" target="_blank" title="email">
<svg class="icon icon-email">
<use xlink:href="#icon-email"></use>
</svg></a><a class="team-list__social" href="https://github.com/gerlofvanek" target="_blank" title="github">
<svg class="icon icon-github">
<use xlink:href="#icon-github"></use>
</svg></a><a class="team-list__social" href="https://twitter.com/gerlof" target="_blank" title="twitter">
<svg class="icon icon-twitter">
<use xlink:href="#icon-twitter"></use>
</svg></a></div>
</div>
<div class="team-list__user">
<div class="team-list__ava"><img src="img/content/team/cryptoguard.jpg" alt="CryptoGuard"></div>
<div class="team-list__name">CryptoGuard</div>
<div class="team-list__post">Project management & Communications</div>
<div class="team-list__socials"><a class="team-list__social" href="" target="_blank" title="Slack/Discord/Element/Forum handle: cryptoguard">
<svg class="icon icon-handle">
<use xlink:href="#icon-handle"></use>
</svg></a><a class="team-list__social" href="mailto:[email protected]" target="_blank" title="email">
<svg class="icon icon-email">
<use xlink:href="#icon-email"></use>
</svg></a><a class="team-list__social" href="https://www.reddit.com/user/CryptoGuard" target="_blank" title="reddit">
<svg class="icon icon-reddit">
<use xlink:href="#icon-reddit"></use>
</svg></a><a class="team-list__social" href="https://github.com/cryptoguard" target="_blank" title="github">
<svg class="icon icon-github">
<use xlink:href="#icon-github"></use>
</svg></a><a class="team-list__social" href="https://twitter.com/crypt0guard" target="_blank" title="twitter">
<svg class="icon icon-twitter">
<use xlink:href="#icon-twitter"></use>
</svg></a><a class="team-list__social" href="https://t.me/Cryptoguard" target="_blank" title="telegram">
<svg class="icon icon-telegram">
<use xlink:href="#icon-telegram"></use>
</svg></a></div>
</div>
<div class="team-list__user">
<div class="team-list__ava"><img src="img/content/team/tecnovert.jpg" alt="Tecnovert"></div>
<div class="team-list__name">Tecnovert</div>
<div class="team-list__post">Lead Core Developer & Cryptographic Researcher</div>
<div class="team-list__socials"><a class="team-list__social" href="" target="_blank" title="Slack/Discord/Element/Forum handle: tecnovert">
<svg class="icon icon-handle">
<use xlink:href="#icon-handle"></use>
</svg></a><a class="team-list__social" href="https://github.com/tecnovert" target="_blank" title="github">
<svg class="icon icon-github">
<use xlink:href="#icon-github"></use>
</svg></a></div>
</div>
<div class="team-list__user">
<div class="team-list__ava"><img src="img/content/team/arnold.jpg" alt="Arnold Bansemer"></div>
<div class="team-list__name">Arnold Bansemer</div>
<div class="team-list__post">Lead Desktop Developer</div>
<div class="team-list__socials"><a class="team-list__social" href="" target="_blank" title="Slack/Discord/Element/Forum handle: ZaSmillingIdiot">
<svg class="icon icon-handle">
<use xlink:href="#icon-handle"></use>
</svg></a><a class="team-list__social" href="mailto:[email protected]" target="_blank" title="email">
<svg class="icon icon-email">
<use xlink:href="#icon-email"></use>
</svg></a><a class="team-list__social" href="https://github.com/zaSmilingIdiot" target="_blank" title="github">
<svg class="icon icon-github">
<use xlink:href="#icon-github"></use>
</svg></a><a class="team-list__social" href="https://twitter.com/zasmilingidiot" target="_blank" title="twitter">
<svg class="icon icon-twitter">
<use xlink:href="#icon-twitter"></use>
</svg></a></div>
</div>
<div class="team-list__user">
<div class="team-list__ava"><img src="img/content/team/kewde.jpg" alt="Kewde"></div>
<div class="team-list__name">Kewde</div>
<div class="team-list__post">Developer, OMP & Core</div>
<div class="team-list__socials"><a class="team-list__social" href="" target="_blank" title="Slack/Discord/Element/Forum handle: kewde">
<svg class="icon icon-handle">
<use xlink:href="#icon-handle"></use>
</svg></a><a class="team-list__social" href="mailto:[email protected]" target="_blank" title="email">
<svg class="icon icon-email">
<use xlink:href="#icon-email"></use>
</svg></a><a class="team-list__social" href="https://github.com/kewde" target="_blank" title="github">
<svg class="icon icon-github">
<use xlink:href="#icon-github"></use>
</svg></a><a class="team-list__social" href="https://reddit.com/u/kewde" target="_blank" title="reddit">
<svg class="icon icon-reddit">
<use xlink:href="#icon-reddit"></use>
</svg></a></div>
</div>
<div class="team-list__user">
<div class="team-list__ava"><img src="img/content/team/drkap.jpg" alt="Arnold Bansemer"></div>
<div class="team-list__name">Dr Kapil Amarasinghe</div>
<div class="team-list__post">Particl Advisor</div>
<div class="team-list__socials"><a class="team-list__social" href="" target="_blank" title="Discord/Element: Joskye">
<svg class="icon icon-handle">
<use xlink:href="#icon-handle"></use>
</svg></a><a class="team-list__social" href="mailto:[email protected]" target="_blank" title="email">
<svg class="icon icon-email">
<use xlink:href="#icon-email"></use>
</svg></a><a class="team-list__social" href="https://twitter.com/thegreatestdoc" target="_blank" title="twitter">
<svg class="icon icon-twitter">
<use xlink:href="#icon-twitter"></use>
</svg></a></div>
</div>
<div class="team-list__user">
<div class="team-list__ava"><img src="img/content/team/felix.jpg" alt="Felix Cangrejo"></div>
<div class="team-list__name">Felix Cangrejo</div>
<div class="team-list__post">Communications</div>
<div class="team-list__socials"><a class="team-list__social" href="" target="_blank" title="Discord/Element/Telegram handle: Cangrejo">
<svg class="icon icon-handle">
<use xlink:href="#icon-handle"></use>
</svg></a><a class="team-list__social" href="mailto:[email protected]" target="_blank" title="email">
<svg class="icon icon-email">
<use xlink:href="#icon-email"></use>
</svg></a><a class="team-list__social" href="https://twitter.com/cangrejo" target="_blank" title="twitter">
<svg class="icon icon-twitter">
<use xlink:href="#icon-twitter"></use>
</svg></a>
<a class="team-list__social" href="https://t.me/cangrejo" target="_blank" title="telegram">
<svg class="icon icon-telegram">
<use xlink:href="#icon-telegram"></use>
</svg></a></div>
</div>
<div class="team-list__user">
<div class="team-list__ava"><img src="img/content/team/henk.jpg" alt="Henk Swardt"></div>
<div class="team-list__name">Henk Swardt</div>
<div class="team-list__post">Development Management and Coordinator</div>
<div class="team-list__socials"><a class="team-list__social" href="" target="_blank" title="Slack/Discord/Element/Forum handle: Pinnocio">
<svg class="icon icon-handle">
<use xlink:href="#icon-handle"></use>
</svg></a><a class="team-list__social" href="mailto:[email protected]" target="_blank" title="email">
<svg class="icon icon-email">
<use xlink:href="#icon-email"></use>
</svg></a><a class="team-list__social" href="https://www.linkedin.com/in/hswardt/" target="_blank" title="github">
<svg class="icon icon-linkedin">
<use xlink:href="#icon-linkedin"></use>
</svg></a></div>
</div>
<div class="team-list__user">
<div class="team-list__ava"><img src="img/content/team/dasource.jpg" alt="Dasource"></div>
<div class="team-list__name">Dasource</div>
<div class="team-list__post">Technical Research & Development</div>
<div class="team-list__socials"><a class="team-list__social" href="" target="_blank" title="Slack/Discord/Element/Forum handle: dasource">
<svg class="icon icon-handle">
<use xlink:href="#icon-handle"></use>
</svg></a><a class="team-list__social" href="mailto:[email protected]" target="_blank" title="email">
<svg class="icon icon-email">
<use xlink:href="#icon-email"></use>
</svg></a><a class="team-list__social" href="https://github.com/dasource" target="_blank" title="github">
<svg class="icon icon-github">
<use xlink:href="#icon-github"></use>
</svg></a><a class="team-list__social" href="https://twitter.com/dasource_" target="_blank" title="twitter">
<svg class="icon icon-twitter">
<use xlink:href="#icon-twitter"></use>
</svg></a></div>
</div>
<div class="team-list__user">
<div class="team-list__ava"><img src="img/content/team/blank-avatar.png" alt="Imran"></div>
<div class="team-list__name">Imran</div>
<div class="team-list__post">Treasury & Business Management, Strategic Partnerships</div>
<div class="team-list__socials"><a class="team-list__social" href="" target="_blank" title="Slack/Discord/Element/Forum handle: imyb">
<svg class="icon icon-handle">
<use xlink:href="#icon-handle"></use>
</svg></a><a class="team-list__social" href="mailto:[email protected]" target="_blank" title="email">
<svg class="icon icon-email">
<use xlink:href="#icon-email"></use>
</svg></a><a class="team-list__social" href="https://t.me/imyb_part" target="_blank" title="telegram">
<svg class="icon icon-telegram">
<use xlink:href="#icon-telegram"></use>
</svg></a></div>
</div>
<div class="team-list__user">
<div class="team-list__ava"><img src="img/content/team/blank-avatar.png" alt="Hyrcane"></div>
<div class="team-list__name">Hyrcane</div>
<div class="team-list__post">Content and Marketing</div>
<div class="team-list__socials"><a class="team-list__social" href="" target="_blank" title="Slack/Discord/Element/Forum handle: Hyrcane">
<svg class="icon icon-handle">
<use xlink:href="#icon-handle"></use>
</svg></a><a class="team-list__social" href="mailto:[email protected]" target="_blank" title="email">
<svg class="icon icon-email">
<use xlink:href="#icon-email"></use>
</svg></a></div>
</div>
</div>
</div>
</div>
<div class="section-border-top newsletter">
<div class="dive__center center">
<h2 class="dive__title h2">Links</h2>
<a class="button dive__button" href="https://particl.io" target="_blank" title="Particl Website">Particl Website
<svg class="icon icon-link">
<use xlink:href="#icon-link"></use>
</svg></a><a class="button dive__button" href="https://basicswapdex.com" target="_blank" title="BasicSwap Website">BasicSwap Website
<svg class="icon icon-link">
<use xlink:href="#icon-link"></use>
</svg></a><a class="button dive__button" href="https://academy.particl.io" target="_blank" title="Particl Academy">Particl Academy
<svg class="icon icon-link">
<use xlink:href="#icon-link"></use>
</svg></a><a class="button dive__button" href="https://twitter.com/particlproject" target="_blank" title="Twitter (@particlproject)">Twitter (@particlproject)
<svg class="icon icon-link">
<use xlink:href="#icon-link"></use>
</svg></a>
<a class="button dive__button" style="margin-top:35px" href="https://twitter.com/BasicSwapDEX" target="_blank" title="Twitter (@cBasicSwapDex)">Twitter (@BasicSwapDex)
<svg class="icon icon-link">
<use xlink:href="#icon-link"></use>
</svg></a>
<a class="button dive__button" href="https://youtube.com/c/particl" target="_blank" title="Youtube">Youtube
<svg class="icon icon-link">
<use xlink:href="#icon-link"></use>
</svg></a>
<a class="button dive__button" href="https://academy.particl.io/en/latest/intro/intro_useful_links.html" target="_blank" title="All Functions">Join the Community
<svg class="icon icon-link">
<use xlink:href="#icon-link"></use>
</svg></a>
</div>
</div>
<div class="section-border-top newsletter">
<div class="newsletter__center center">
<div class="stage">Become a VIP</div>
<h2 class="newsletter__title h2">Get all the important news first and directly to your inbox.</h2>
<div class="newsletter__text">From time to time, we send important updates and news pieces by email to our users and supporters. Subscribe to our newsletter today and stay on top of all things Particl; it’s the best way for you to stay connected!</div><a class="button-stroke newsletter__button" href="https://e716e794.sibforms.com/serve/MUIEAAyYOWg-Ihsz4f1j2TAWX8evHCCGsBj1mKR_SpUx1QHjn9VGwKBURKnyYFj9eZZDaTLOz3IzVxxlCXMW2n3hO8x6XZ4a9pVa5B3pxmO_VKIUbicCkqYhHeNk8MSHadPnOTiDiyXWxIyKRSUcfy4L8P-XVWQ4cinqJx6-UZADf7RnjQR60sdtuNpErpi7cTQp0qhJasoxl2av" target="_blank">Subscribe here
<svg class="icon icon-email">
<use xlink:href="#icon-email"></use>
</svg></a>
<div class="newsletter__note">We never share your email address with 3rd parties (except for <a href="https://sendinblue.com" target="_blank">SendinBlue</a> as our mailing service provider)</div>
</div>
</div>
</div>
<!-- footer-->
<footer class="footer">
<div class="footer__body">
<div class="footer__center center">
<div class="footer__col">
<div class="footer__box"><a class="footer__logo" href="https://particl.io"><img class="some-icon" src="img/logo-dark.svg" alt="Particl Project"><img class="some-icon-dark" src="img/logo-light.svg" alt="Particl Project"></a>
<label class="theme js-theme">
<input class="theme__input" type="checkbox"/><span class="theme__inner"><span class="theme__box"></span><span class="theme__icon">
<svg class="icon icon-moon">
<use xlink:href="#icon-moon"></use>
</svg>
<svg class="icon icon-sun">
<use xlink:href="#icon-sun"></use>
</svg></span></span>
</label>
</div>
<div class="footer__item">
<div class="footer__category"></div>
<div class="footer__menu"><a class="footer__link" href="index">HOME</a><a class="footer__link" href="marketplace">MARKETPLACE</a><a class="footer__link" href="coin">COIN</a><a class="footer__link link-off" href="javascript:void(0)">DEX</a><a class="footer__link" href="about">ABOUT</a><a class="footer__link" href="https://particl.news" target="_blank">BLOG</a></div>
</div>
</div>
<div class="footer__col">
<div class="footer__category">marketplace</div>
<div class="footer__menu"><a class="footer__link" href="marketplace">Overview</a><a class="footer__link" href="buyer">For Buyers</a><a class="footer__link" href="seller">For Sellers</a><!-- a.footer__link(href="#") Help & Support -->
<!-- a.footer__link(href="downloads") Downloads -->
<div class="footer__category-second">Particl Coin</div>
<div class="footer__menu"><a class="footer__link" href="coin">Overview</a><a class="footer__link" href="coin#exchanges">Exchanges</a><a class="footer__link" href="https://explorer.particl.io" target="_blank">Block Explorer</a><!-- a.footer__link(href="#") Help & Support -->
<!-- a.footer__link(href="downloads") Downloads -->
</div>
</div>
</div>
<div class="footer__col">
<div class="footer__category">Global Resources</div>
<div class="footer__menu"><a class="footer__link" href="downloads">Downloads</a><a class="footer__link" href="https://academy.particl.io" target="_blank">Particl Academy</a><a class="footer__link" href="https://academy.particl.io/en/latest/faq/faq_mp_general_overview.html" target="_blank">FAQ</a><!-- a.footer__link(href="#") Roadmaps -->
<div class="footer__category-second">Particl Ecosystem</div>
<div class="footer__menu"><a class="footer__link" href="https://ccs.particl.io" target="_blank">CCS - Enhance and Crowdfund</a></div>
<div class="footer__category-second">Developers</div>
<div class="footer__menu"><a class="footer__link" href="https://particl.wiki" target="_blank">Particl WIKI</a><a class="footer__link" href="https://particl.news/tag/progress-report" target="_blank">Development Updates</a><!-- a.footer__link(href="#") Bug Bounties --><a class="footer__link" href="https://ccs.particl.io" target="_blank">Contribution (Crowd) Funding</a><!-- a.footer__link(href="#") Treasury Proposals --><a class="footer__link" href="#"></a><!-- a.footer__link(href="#") Code Audit -->
<!-- a.footer__link(href="#") Report Issues -->
</div>
</div>
</div>
</div>
</div>
<div class="footer__bottom">
<div class="footer__center center">
<div class="footer__copyright">Copyright © 2022 Particl Project.</div>
<div class="footer__socials"><a class="footer__social" href="https://twitter.com/particlproject" target="_blank" title="twitter">
<svg class="icon icon-twitter">
<use xlink:href="#icon-twitter"></use>
</svg></a><a class="footer__social" href="https://discord.me/particl" target="_blank" title="Discord">
<svg class="icon icon-discord">
<use xlink:href="#icon-discord"></use>
</svg></a><a class="header__social" href="https://t.me/particltg" target="_blank" title="Telegram">
<svg class="icon icon-telegram">
<use xlink:href="#icon-telegram"></use>
</svg></a><a class="footer__social" href="https://www.reddit.com/r/Particl/" target="_blank" title="Reddit">
<svg class="icon icon-reddit">
<use xlink:href="#icon-reddit"></use>
</svg></a><a class="footer__social" href="https://riot.im/app/#/room/#particl:matrix.org" target="_blank" title="Riot/Element">
<svg class="icon icon-riot">
<use xlink:href="#icon-riot"></use>
</svg></a><a class="footer__social" href="https://github.com/particl" target="_blank" title="Github">
<svg class="icon icon-github">
<use xlink:href="#icon-github"></use>
</svg></a></div>
</div>
</div>
</footer>
</div>
<!-- scripts-->
<script src="js/lib/jquery.min.js"></script>
<script src="js/lib/download.js"></script>
<script src="js/lib/slick.min.js"></script>
<script src="js/lib/jquery.nice-select.min.js"></script>
<script src="js/lib/jquery.magnific-popup.min.js"></script>
<script src="js/lib/aos.js"></script>
<script src="js/lib/simpleParallax.min.js"></script>
<script src="js/app.js"></script>
<!-- svg sprite-->
<div style="display: none"><svg width="0" height="0">
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-handle">
<path d="M12.311,9.527c-1.161-0.393-1.85-0.825-2.143-1.175C11.268,7.639,12,6.406,12,5V4c0-2.206-1.794-4-4-4 S4,1.794,4,4v1c0,1.406,0.732,2.639,1.832,3.352C5.54,8.702,4.851,9.134,3.69,9.527C2.081,10.07,1,11.57,1,13.26V16h14v-2.74 C15,11.57,13.919,10.07,12.311,9.527z M6,4c0-1.103,0.897-2,2-2s2,0.897,2,2v1c0,1.103-0.897,2-2,2S6,6.103,6,5V4z M13,14H3v-0.74 c0-0.831,0.534-1.569,1.33-1.838c1.845-0.624,3-1.436,3.452-2.422h0.436c0.452,0.986,1.607,1.798,3.453,2.422 C12.466,11.69,13,12.429,13,13.26V14z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-email">
<path d="M15,1H1C0.448,1,0,1.447,0,2v12c0,0.553,0.448,1,1,1h14c0.552,0,1-0.447,1-1V2C16,1.447,15.552,1,15,1z M14,13H2V6.723l5.504,3.145c0.308,0.176,0.685,0.176,0.992,0L14,6.723V13z M14,4.42L8,7.849L2,4.42V3h12V4.42z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-linkedin">
<path d="M15.3,0H0.7C0.3,0,0,0.3,0,0.7v14.7C0,15.7,0.3,16,0.7,16h14.7c0.4,0,0.7-0.3,0.7-0.7V0.7 C16,0.3,15.7,0,15.3,0z M4.7,13.6H2.4V6h2.4V13.6z M3.6,5C2.8,5,2.2,4.3,2.2,3.6c0-0.8,0.6-1.4,1.4-1.4c0.8,0,1.4,0.6,1.4,1.4 C4.9,4.3,4.3,5,3.6,5z M13.6,13.6h-2.4V9.9c0-0.9,0-2-1.2-2c-1.2,0-1.4,1-1.4,2v3.8H6.2V6h2.3v1h0c0.3-0.6,1.1-1.2,2.2-1.2 c2.4,0,2.8,1.6,2.8,3.6V13.6z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-chart">
<path d="M9,0H7C6.4,0,6,0.4,6,1v14c0,0.6,0.4,1,1,1h2c0.6,0,1-0.4,1-1V1C10,0.4,9.6,0,9,0z M3,10H1c-0.6,0-1,0.4-1,1v4c0,0.6,0.4,1,1,1h2c0.6,0,1-0.4,1-1v-4C4,10.4,3.6,10,3,10z M15,5h-2c-0.6,0-1,0.4-1,1v9c0,0.6,0.4,1,1,1h2c0.6,0,1-0.4,1-1V6C16,5.4,15.6,5,15,5z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-block">
<path d="M8,6.523l6-3.334L8.486.126a1,1,0,0,0-.972,0L2,3.189Z M9,8.255v7.333l5.486-3.048A1,1,0,0,0,15,11.666V4.922Z M7,8.255,1,4.922v6.744a1,1,0,0,0,.514.874L7,15.588Z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-cart">
<path d="M15,3H4.5L4,0.8C3.9,0.3,3.5,0,3,0H0v2h2.2L4,10.2C4.1,10.7,4.5,11,5,11h8c0.4,0,0.8-0.3,0.9-0.7l2-6 C16.1,3.8,15.8,3,15,3z"></path>
<circle cx="5" cy="14" r="2"></circle> <circle cx="13" cy="14" r="2"></circle>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-shop">
<path d="M13.9,0.5C13.7,0.2,13.4,0,13,0H3C2.6,0,2.3,0.2,2.1,0.5C0,4.5,0,4.7,0,5c0,1.1,0.9,2,2,2v8c0,0.6,0.4,1,1,1 h10c0.6,0,1-0.4,1-1V7c1.1,0,2-0.9,2-2C16,4.7,16,4.5,13.9,0.5z M10,14v-4H6v4H4V6.7C4.3,6.9,4.6,7,5,7c0.6,0,1.1-0.3,1.5-0.7 C6.9,6.7,7.4,7,8,7s1.1-0.3,1.5-0.7C9.9,6.7,10.4,7,11,7c0.4,0,0.7-0.1,1-0.3V14H10z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-arrow-right">
<path d="M10.39 3.153c.464-.428 1.187-.399 1.615.065l3.692 4c.404.438.404 1.113 0 1.55l-3.692 4c-.428.464-1.151.493-1.615.065s-.493-1.151-.065-1.615l1.922-2.082H1.143C.512 9.136 0 8.624 0 7.993S.512 6.85 1.143 6.85h11.104l-1.922-2.082c-.428-.464-.399-1.187.065-1.615z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-link">
<path d="M11,0C9.7,0,8.4,0.5,7.5,1.5L6.3,2.6C5.9,3,5.9,3.6,6.3,4s1,0.4,1.4,0l1.2-1.2c1.1-1.1,3.1-1.1,4.2,0 C13.7,3.4,14,4.2,14,5s-0.3,1.6-0.9,2.1L12,8.3c-0.4,0.4-0.4,1,0,1.4c0.2,0.2,0.5,0.3,0.7,0.3s0.5-0.1,0.7-0.3l1.2-1.2 C15.5,7.6,16,6.3,16,5s-0.5-2.6-1.5-3.5C13.6,0.5,12.3,0,11,0z M8.3,12l-1.2,1.2c-1.1,1.1-3.1,1.1-4.2,0C2.3,12.6,2,11.8,2,11s0.3-1.6,0.9-2.1L4,7.7c0.4-0.4,0.4-1,0-1.4 s-1-0.4-1.4,0L1.5,7.5C0.5,8.4,0,9.7,0,11s0.5,2.6,1.5,3.5C2.4,15.5,3.7,16,5,16s2.6-0.5,3.5-1.5l1.2-1.2c0.4-0.4,0.4-1,0-1.4 S8.7,11.6,8.3,12z M9.4,5.2L5.2,9.4c-0.4,0.4-0.4,1,0,1.4c0.2,0.2,0.5,0.3,0.7,0.3s0.5-0.1,0.7-0.3l4.2-4.2 c0.4-0.4,0.4-1,0-1.4C10.4,4.8,9.8,4.8,9.4,5.2z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-arrow-bottom">
<path d="M15.039 3.961c-.653-.653-1.713-.653-2.366 0L8 8.634 3.327 3.961c-.653-.653-1.713-.653-2.366 0s-.653 1.713 0 2.366l5.856 5.856c.653.653 1.713.653 2.366 0l5.856-5.856c.653-.653.653-1.713 0-2.366z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-arrow-right-empty">
<path d="M5.551 15.665l-.1.089c-.449.355-1.102.326-1.517-.089-.446-.446-.446-1.17 0-1.616h0l6.048-6.05-6.048-6.048-.089-.1C3.491 1.403 3.52.749 3.935.335c.446-.446 1.17-.446 1.616 0h0l6.857 6.857.089.1c.355.449.326 1.102-.089 1.517h0l-6.857 6.857z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-arrow-down">
<path d="M12.833 10.39c.428.464.399 1.187-.065 1.615l-4 3.692c-.438.404-1.113.404-1.55 0l-4-3.692c-.464-.428-.493-1.151-.065-1.615s1.151-.493 1.615-.065l2.082 1.922V1.143C6.85.512 7.362 0 7.993 0s1.143.512 1.143 1.143v11.104l2.082-1.922c.464-.428 1.187-.399 1.615.065z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-arrow-prev">
<path d="M5.61 13.697c-.464.428-1.187.399-1.615-.065l-3.692-4c-.404-.438-.404-1.113 0-1.55l3.692-4c.428-.464 1.151-.493 1.615-.065s.493 1.151.065 1.615L3.753 7.714h11.104c.631 0 1.143.512 1.143 1.143S15.488 10 14.857 10H3.753l1.922 2.082c.428.464.399 1.187-.065 1.615z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-arrow-next">
<path d="M10.39 3.303c.464-.428 1.187-.399 1.615.065l3.692 4c.404.438.404 1.113 0 1.55l-3.692 4c-.428.464-1.151.493-1.615.065s-.493-1.151-.065-1.615l1.922-2.082H1.143C.512 9.286 0 8.774 0 8.143S.512 7 1.143 7h11.104l-1.922-2.082c-.428-.464-.399-1.187.065-1.615z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-instagram">
<path d="M11.2 0A4.8 4.8 0 0 1 16 4.8h0v6.4a4.8 4.8 0 0 1-4.8 4.8h0-6.4A4.8 4.8 0 0 1 0 11.2h0V4.8A4.8 4.8 0 0 1 4.8 0h0zm0 1.6H4.8a3.2 3.2 0 0 0-3.2 3.2v6.4a3.2 3.2 0 0 0 3.2 3.2h6.4a3.2 3.2 0 0 0 3.2-3.2V4.8a3.2 3.2 0 0 0-3.2-3.2zM8 4a4 4 0 1 1 0 8 4 4 0 1 1 0-8zm0 1.6a2.4 2.4 0 0 0 0 4.8 2.4 2.4 0 0 0 0-4.8zm4-2.4a.8.8 0 1 1 0 1.6.8.8 0 1 1 0-1.6z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-facebook">
<path d="M7.967.017a8 8 0 1 1 0 16 8 8 0 1 1 0-16zm0 1.6a6.4 6.4 0 0 0-6.4 6.4c0 2.982 2.039 5.487 4.799 6.198l.001-4.598h-.8a.8.8 0 1 1 0-1.6h.8v-1.6a2.4 2.4 0 0 1 2.4-2.4h.8a.8.8 0 1 1 0 1.6h0-.8a.8.8 0 0 0-.8.8h0v1.6h1.6a.8.8 0 1 1 0 1.6h0-1.6v4.8a6.4 6.4 0 0 0 0-12.8z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-twitter">
<path d="M2.121 9.233C1.018 9.236.306 10.492.986 11.444c.973 1.363 2.737 2.456 5.681 2.456 4.563 0 8.226-3.719 7.714-8.113l.751-1.503c.521-1.042-.384-2.227-1.527-1.999l-.993.198c-.263-.139-.535-.244-.768-.32-.454-.148-1.003-.265-1.511-.265-.913 0-1.701.234-2.327.704-.619.464-.968 1.075-1.159 1.635-.088.258-.147.518-.185.766-.354-.111-.715-.261-1.069-.445-.802-.415-1.451-.942-1.817-1.404-.614-.775-1.915-.717-2.371.29-.643 1.42-.467 3.102.111 4.462a6.57 6.57 0 0 0 .754 1.324l-.151.001zm4.546 3.333c-2.576 0-3.907-.933-4.596-1.898-.031-.043 0-.102.054-.103.701-.002 2.139-.035 3.087-.59.049-.029.038-.101-.016-.119-2.211-.743-3.467-3.891-2.575-5.86.02-.045.081-.051.112-.012C3.752 5.271 5.98 6.531 7.919 6.566c.042.001.074-.037.067-.079-.078-.507-.376-3.254 2.347-3.254.65 0 1.618.317 1.974.642a.07.07 0 0 0 .061.017l1.498-.3c.054-.011.098.046.073.095l-.929 1.858c-.006.013-.008.028-.006.042.651 3.658-2.345 6.978-6.337 6.978z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-discord">
<path d="M6.552,6.712a.891.891,0,0,0,0,1.776A.852.852,0,0,0,7.368,7.6.847.847,0,0,0,6.552,6.712Zm2.92,0a.891.891,0,1,0,.816.888A.852.852,0,0,0,9.472,6.712Z M13.36,0H2.64A1.644,1.644,0,0,0,1,1.648V12.464a1.644,1.644,0,0,0,1.64,1.648h9.072l-.424-1.48,1.024.952.968.9L15,16V1.648A1.644,1.644,0,0,0,13.36,0ZM10.272,10.448S9.984,10.1,9.744,9.8a2.524,2.524,0,0,0,1.448-.952,4.578,4.578,0,0,1-.92.472,5.265,5.265,0,0,1-1.16.344A5.6,5.6,0,0,1,7.04,9.656a6.716,6.716,0,0,1-1.176-.344,4.683,4.683,0,0,1-.912-.472,2.488,2.488,0,0,0,1.4.944c-.24.3-.536.664-.536.664a2.9,2.9,0,0,1-2.44-1.216A10.713,10.713,0,0,1,4.528,4.568a3.956,3.956,0,0,1,2.248-.84l.08.1a5.4,5.4,0,0,0-2.1,1.048s.176-.1.472-.232a6.008,6.008,0,0,1,1.816-.5.788.788,0,0,1,.136-.016A6.769,6.769,0,0,1,8.792,4.1a6.521,6.521,0,0,1,2.408.768A5.324,5.324,0,0,0,9.208,3.856l.112-.128a3.956,3.956,0,0,1,2.248.84A10.713,10.713,0,0,1,12.72,9.232,2.924,2.924,0,0,1,10.272,10.448Z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-github">
<path d="M8,0.2c-4.4,0-8,3.6-8,8c0,3.5,2.3,6.5,5.5,7.6 C5.9,15.9,6,15.6,6,15.4c0-0.2,0-0.7,0-1.4C3.8,14.5,3.3,13,3.3,13c-0.4-0.9-0.9-1.2-0.9-1.2c-0.7-0.5,0.1-0.5,0.1-0.5 c0.8,0.1,1.2,0.8,1.2,0.8C4.4,13.4,5.6,13,6,12.8c0.1-0.5,0.3-0.9,0.5-1.1c-1.8-0.2-3.6-0.9-3.6-4c0-0.9,0.3-1.6,0.8-2.1 c-0.1-0.2-0.4-1,0.1-2.1c0,0,0.7-0.2,2.2,0.8c0.6-0.2,1.3-0.3,2-0.3c0.7,0,1.4,0.1,2,0.3c1.5-1,2.2-0.8,2.2-0.8 c0.4,1.1,0.2,1.9,0.1,2.1c0.5,0.6,0.8,1.3,0.8,2.1c0,3.1-1.9,3.7-3.7,3.9C9.7,12,10,12.5,10,13.2c0,1.1,0,1.9,0,2.2 c0,0.2,0.1,0.5,0.6,0.4c3.2-1.1,5.5-4.1,5.5-7.6C16,3.8,12.4,0.2,8,0.2z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-telegram">
<path d="M15.968,1.684a.338.338,0,0,0-.232-.253,1.192,1.192,0,0,0-.63.045S1.087,6.514.286,7.072c-.172.121-.23.19-.259.272-.138.4.293.573.293.573L3.933,9.094a.388.388,0,0,0,.183-.011c.822-.519,8.27-5.222,8.7-5.38.068-.02.118,0,.1.049-.172.6-6.606,6.319-6.641,6.354a.138.138,0,0,0-.049.118l-.337,3.528s-.142,1.1.956,0c.779-.779,1.527-1.425,1.9-1.738,1.242.858,2.579,1.806,3.156,2.3a1,1,0,0,0,.732.283.825.825,0,0,0,.7-.622S15.894,3.7,15.979,2.317C15.987,2.182,16,2.1,16,2A1.177,1.177,0,0,0,15.968,1.684Z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-reddit">
<path d="M16,7.9c0-1.1-0.9-1.9-1.9-1.9c-0.5,0-0.9,0.2-1.2,0.4c-1.2-0.7-2.7-1.2-4.3-1.3l0.8-2.6L11.7,3 c0.1,0.8,0.8,1.5,1.6,1.5c0.9,0,1.6-0.7,1.6-1.6c0-0.9-0.7-1.6-1.6-1.6c-0.6,0-1.2,0.4-1.4,0.9L9.2,1.5C9,1.5,8.8,1.6,8.7,1.8 l-1,3.3C6,5.1,4.4,5.6,3.1,6.3C2.8,6.1,2.4,5.9,1.9,5.9C0.9,5.9,0,6.8,0,7.9c0,0.7,0.3,1.2,0.8,1.6c0,0.2,0,0.3,0,0.5 c0,1.3,0.8,2.6,2.2,3.5c1.3,0.9,3.1,1.4,5,1.4c1.9,0,3.7-0.5,5-1.4c1.4-0.9,2.2-2.1,2.2-3.5c0-0.1,0-0.3,0-0.4 C15.6,9.1,16,8.5,16,7.9z M4.5,9c0-0.6,0.5-1.1,1.1-1.1c0.6,0,1.1,0.5,1.1,1.1s-0.5,1.1-1.1,1.1C5,10.1,4.5,9.6,4.5,9z M10.6,12.2 c-0.6,0.6-1.4,0.8-2.6,0.8c0,0,0,0,0,0c0,0,0,0,0,0c-1.2,0-2.1-0.3-2.6-0.8c-0.2-0.2-0.2-0.4,0-0.6c0.2-0.2,0.4-0.2,0.6,0 c0.4,0.4,1,0.6,2,0.6c0,0,0,0,0,0c0,0,0,0,0,0c1,0,1.6-0.2,2-0.6c0.2-0.2,0.4-0.2,0.6,0C10.8,11.8,10.8,12.1,10.6,12.2z M10.4,10.1 c-0.6,0-1.1-0.5-1.1-1.1c0-0.6,0.5-1.1,1.1-1.1c0.6,0,1.1,0.5,1.1,1.1C11.5,9.6,11,10.1,10.4,10.1z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-riot">
<path d="M12.7 10.1l1.7 2.3c.7 1 .5 2.4-.5 3.1-1.1.7-2.5.5-3.2-.6L8 11.4H6.6v2.3c0 1.3-1 2.3-2.3 2.3C3 16 2 15 2 13.7V2.3C1.9 1 3 0 4.3 0H9c3.2 0 5.8 2.6 5.8 5.7-.1 1.8-.9 3.3-2.1 4.4z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-download">
<path d="M8,12c0.3,0,0.5-0.1,0.7-0.3L14.4,6L13,4.6l-4,4V0H7v8.6l-4-4L1.6,6l5.7,5.7C7.5,11.9,7.7,12,8,12z M14,14H2v-3H0v4c0,0.6,0.4,1,1,1h14c0.6,0,1-0.4,1-1v-4h-2V14z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-play">
<path d="M1.509 2.463c0-1.71 1.876-2.755 3.33-1.855l8.945 5.538c1.378.853 1.378 2.857 0 3.711l-8.945 5.538c-1.454.899-3.33-.147-3.33-1.856V2.463z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-info">
<path d="M8 0a1.6 1.6 0 1 0 0 3.2A1.6 1.6 0 1 0 8 0zm0 6.4A1.6 1.6 0 0 0 6.4 8v6.4a1.6 1.6 0 1 0 3.2 0V8A1.6 1.6 0 0 0 8 6.4z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-check">
<path d="M14.049 2.635c.446-.446 1.17-.446 1.616 0 .412.412.444 1.06.095 1.509l-.095.108-9.143 9.143c-.412.412-1.06.444-1.509.095l-.108-.095L.335 8.822c-.446-.446-.446-1.17 0-1.616.412-.412 1.06-.444 1.509-.095l.108.095 3.763 3.762 8.335-8.334z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-download">
<path d="M10.943 5.887l1.395.107c1.08.114 1.941.88 2.07 2.011.074.645.133 1.575.133 2.905l-.133 2.905c-.129 1.13-.988 1.897-2.069 2.011-.859.091-2.227.175-4.344.175s-3.485-.085-4.344-.175c-1.08-.114-1.939-.88-2.069-2.011-.074-.645-.133-1.575-.133-2.905l.133-2.905c.129-1.131.99-1.897 2.07-2.011l1.395-.107c.401-.021.744.286.765.688s-.286.744-.688.765l-1.32.101c-.455.048-.731.327-.777.729-.066.577-.123 1.451-.123 2.74l.123 2.74c.046.403.322.681.776.729.796.084 2.111.167 4.191.167l4.191-.167c.454-.048.73-.327.776-.729.066-.577.123-1.451.123-2.74l-.123-2.74c-.046-.402-.322-.682-.777-.729l-1.32-.101c-.401-.021-.709-.364-.688-.765s.364-.709.765-.688zM8.51.213l2.545 2.545a.73.73 0 0 1 0 1.029c-.284.284-.745.284-1.029 0L8.723 2.483v6.972c0 .402-.326.727-.727.727s-.727-.326-.727-.727V2.483L5.964 3.787c-.284.284-.745.284-1.029 0s-.284-.745 0-1.029L7.481.213c.284-.284.745-.284 1.029 0z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-calendar">
<path d="M11.999 0a.8.8 0 0 1 .8.8h0l-.001.799.802.001a2.4 2.4 0 0 1 2.394 2.236L16 4v9.6a2.4 2.4 0 0 1-2.4 2.4h0H2.4A2.4 2.4 0 0 1 0 13.6h0V4a2.4 2.4 0 0 1 2.4-2.4h0l.798-.001L3.199.8a.8.8 0 0 1 .7-.794l.1-.006a.8.8 0 0 1 .8.8h0l-.001.799h6.4L11.199.8a.8.8 0 0 1 .7-.794zM13.6 3.2l-.802-.001.001.801a.8.8 0 0 1-.7.794l-.1.006a.8.8 0 0 1-.8-.8h0l-.001-.801h-6.4L4.799 4a.8.8 0 0 1-.7.794l-.1.006a.8.8 0 0 1-.8-.8h0l-.001-.801L2.4 3.2a.8.8 0 0 0-.8.8v9.6a.8.8 0 0 0 .8.8h11.2a.8.8 0 0 0 .8-.8V4a.8.8 0 0 0-.8-.8zm-4.801 8a.8.8 0 1 1 0 1.6h0-4.8a.8.8 0 1 1 0-1.6h0zm3.2-3.2a.8.8 0 1 1 0 1.6h0-5.6a.8.8 0 1 1 0-1.6h0z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-scoreboard">
<path d="M13.333 2.65C14.806 2.65 16 3.844 16 5.317h0v5.333c0 1.473-1.194 2.667-2.667 2.667h0H2.667C1.194 13.317 0 12.123 0 10.65h0V5.317C0 3.844 1.194 2.65 2.667 2.65h0zm0 1.333H2.667c-.736 0-1.333.597-1.333 1.333v5.333c0 .736.597 1.333 1.333 1.333h10.667c.736 0 1.333-.597 1.333-1.333V5.317c0-.736-.597-1.333-1.333-1.333zm-1 1.333a1 1 0 0 1 1 1V7.65a1 1 0 0 1-1 1h-1v.667h1.333c.368 0 .667.298.667.667s-.298.667-.667.667H11a1 1 0 0 1-1-1V8.317a1 1 0 0 1 1-1h1V6.65h-1.333c-.368 0-.667-.298-.667-.667s.298-.667.667-.667h1.667zm-7.666 0c.368 0 .667.298.667.667v3.333c.368 0 .667.298.667.667s-.298.667-.667.667H4.001c-.368 0-.667-.298-.667-.667s.298-.667.667-.667V6.65c-.368 0-.667-.298-.667-.667s.298-.667.667-.667h.667zM8.001 8.65c.368 0 .667.298.667.667s-.298.667-.667.667-.667-.298-.667-.667.298-.667.667-.667zm0-2.667c.368 0 .667.298.667.667s-.298.667-.667.667-.667-.298-.667-.667.298-.667.667-.667z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-clock">
<path d="M8 0a8 8 0 1 1 0 16A8 8 0 1 1 8 0zm0 1.6a6.4 6.4 0 0 0 0 12.8A6.4 6.4 0 1 0 8 1.6zm0 1.6a.8.8 0 0 1 .8.8v3.669l1.766 1.766a.8.8 0 0 1-1.131 1.131l-2-2A.8.8 0 0 1 7.2 8V4a.8.8 0 0 1 .8-.8z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-candlesticks">
<path d="M7.833 4.409c.402 0 .727.326.727.727h0l.001 1.579c.846.3 1.453 1.108 1.453 2.057h0v2.182c0 .949-.606 1.757-1.453 2.057l-.001.852c0 .402-.326.727-.727.727s-.727-.326-.727-.727h0l-.001-.851c-.847-.299-1.455-1.107-1.455-2.057h0V8.772c0-.95.607-1.758 1.455-2.057l.001-1.578c0-.402.326-.727.727-.727zM2.015 1.5c.402 0 .727.326.727.727h0v.852c.847.3 1.454 1.108 1.454 2.057h0V6.59c0 .95-.607 1.757-1.454 2.057v3.76c0 .402-.326.727-.727.727s-.727-.326-.727-.727h0v-3.76C.44 8.349-.168 7.54-.168 6.59h0V5.136c0-.95.608-1.759 1.455-2.058v-.851c0-.402.326-.727.727-.727zm11.634 0c.402 0 .727.326.727.727h0v.851c.848.299 1.456 1.107 1.456 2.058h0v3.636c0 .951-.608 1.759-1.456 2.058v1.578c0 .402-.326.727-.727.727s-.727-.326-.727-.727h0l.001-1.579c-.846-.3-1.453-1.108-1.453-2.057h0V5.136c0-.949.606-1.757 1.453-2.057l-.001-.852c0-.402.326-.727.727-.727zM7.832 8.045c-.402 0-.727.326-.727.727v2.182c0 .402.326.727.727.727s.727-.326.727-.727V8.772c0-.402-.326-.727-.727-.727zm5.819-3.636c-.402 0-.727.326-.727.727v3.636c0 .402.326.727.727.727s.727-.326.727-.727V5.136c0-.402-.326-.727-.727-.727zm-11.637 0c-.402 0-.727.326-.727.727V6.59c0 .402.326.727.727.727s.727-.326.727-.727V5.136c0-.402-.326-.727-.727-.727z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-lock">
<path d="M7.995 0c2.008 0 3.636 1.628 3.636 3.636v2.306c1.532.176 2.716 1.396 2.828 2.951l.081 2.015-.081 2.015c-.117 1.612-1.384 2.863-2.997 2.966L7.995 16a54.94 54.94 0 0 1-3.468-.11c-1.613-.103-2.88-1.354-2.997-2.966l-.081-2.015.081-2.015c.117-1.612 1.384-2.863 2.997-2.966l-.168.014V3.636C4.359 1.628 5.987 0 7.995 0zm0 7.273l-3.376.107a1.73 1.73 0 0 0-1.638 1.619l-.077 1.911.077 1.911a1.73 1.73 0 0 0 1.638 1.619l3.376.107 3.376-.107a1.73 1.73 0 0 0 1.638-1.619l.077-1.911-.077-1.911a1.73 1.73 0 0 0-1.638-1.619l-3.376-.107zm0 1.455c.803 0 1.455.651 1.455 1.455 0 .538-.293 1.008-.727 1.26h0v.922c0 .402-.326.727-.727.727s-.727-.326-.727-.727h0v-.922c-.435-.251-.727-.722-.727-1.26 0-.803.651-1.455 1.455-1.455zm0-7.273a2.18 2.18 0 0 0-2.182 2.182l-.002 2.225 2.184-.043 2.184.043-.002-2.225a2.18 2.18 0 0 0-2.182-2.182z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-user">
<path d="M7.995 0c2.41 0 4.364 1.954 4.364 4.364 0 1.347-.61 2.551-1.569 3.351l-.145.116c2.295 1.017 3.896 3.315 3.896 5.987v1.454c0 .402-.326.727-.727.727s-.727-.326-.727-.727v-1.454a5.09 5.09 0 1 0-10.182 0v1.454c0 .402-.326.727-.727.727s-.727-.326-.727-.727v-1.454c0-2.672 1.601-4.971 3.897-5.987-1.043-.797-1.715-2.054-1.715-3.467C3.632 1.954 5.585 0 7.995 0zm0 1.455a2.91 2.91 0 0 0-2.909 2.909 2.91 2.91 0 0 0 2.909 2.909 2.91 2.91 0 0 0 2.909-2.909 2.91 2.91 0 0 0-2.909-2.909z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-button-play">
<path d="M8 1.45c1.87 0 3.473.134 4.694.286a3.5 3.5 0 0 1 3.058 3.013c.136.965.248 2.106.248 3.246a23.73 23.73 0 0 1-.248 3.246 3.5 3.5 0 0 1-3.058 3.013A38.07 38.07 0 0 1 8 14.541a38.07 38.07 0 0 1-4.694-.286 3.5 3.5 0 0 1-3.058-3.013C.112 10.276 0 9.136 0 7.995s.112-2.281.248-3.246a3.5 3.5 0 0 1 3.058-3.013C4.527 1.584 6.13 1.45 8 1.45zm0 1.455c-1.802 0-3.344.129-4.514.275a2.05 2.05 0 0 0-1.798 1.773c-.13.923-.233 1.992-.233 3.043s.104 2.121.233 3.043a2.05 2.05 0 0 0 1.798 1.773c1.17.146 2.712.275 4.514.275s3.344-.129 4.514-.275a2.05 2.05 0 0 0 1.798-1.773 22.28 22.28 0 0 0 .233-3.043c0-1.052-.104-2.121-.233-3.043a2.05 2.05 0 0 0-1.798-1.773c-1.17-.146-2.712-.275-4.514-.275zm-1.07 2.15l3.719 2.324a.73.73 0 0 1 0 1.233L6.93 10.936a.73.73 0 0 1-1.113-.617V5.671a.73.73 0 0 1 1.113-.617z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-search">
<path d="M6.609 0a6.61 6.61 0 0 1 6.609 6.609 6.58 6.58 0 0 1-1.256 3.877l3.733 3.733c.408.408.408 1.068 0 1.476-.376.376-.968.405-1.377.087l-.098-.087-3.732-3.733a6.58 6.58 0 0 1-3.877 1.256A6.61 6.61 0 0 1 0 6.609 6.61 6.61 0 0 1 6.609 0zm0 2.087c-2.497 0-4.522 2.025-4.522 4.522s2.025 4.522 4.522 4.522 4.522-2.025 4.522-4.522-2.025-4.522-4.522-4.522z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-close">
<path d="M.335.335c.446-.446 1.17-.446 1.616 0L8 6.384 14.049.335c.446-.446 1.17-.446 1.616 0s.446 1.17 0 1.616L9.616 8l6.049 6.049c.446.446.446 1.17 0 1.616s-1.17.446-1.616 0L8 9.616l-6.049 6.049c-.446.446-1.17.446-1.616 0s-.446-1.17 0-1.616L6.384 8 .335 1.951c-.446-.446-.446-1.17 0-1.616"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-moon">
<path d="M6.584.005c.576-.116 1.012.512.703 1.012-1.596 2.578-1.209 5.997.97 8.23 1.668 1.608 3.979 2.285 6.273 1.903a.67.67 0 0 1 .694.996c-.279.488-.687.989-1.182 1.484-3.158 3.148-8.268 3.148-11.427 0-3.15-3.15-3.15-8.277-.015-11.411h0l.183-.188A7.44 7.44 0 0 1 6.584.005zM5.433 1.79l-.148.071a6.17 6.17 0 0 0-1.721 1.292h0l-.141.145a6.75 6.75 0 0 0 .14 9.382 6.75 6.75 0 0 0 9.527 0h0l.083-.085-.142-.001a8.57 8.57 0 0 1-5.539-2.216h0l-.183-.172C5.104 7.933 4.424 4.665 5.416 1.835h0l.016-.046.001.001zm9.194.159c.631-.523 1.506.39.891 1.003h0l-.078.086c-.599.728-.573 2.343.078 2.993h0l.054.058c.523.631-.39 1.506-1.003.891h0l-.086-.078c-.728-.599-2.343-.573-2.993.078h0l-.058.054c-.631.523-1.506-.39-.891-1.003h0l.078-.086c.599-.728.573-2.343-.078-2.993h0l-.054-.058c-.523-.631.39-1.506 1.003-.891h0l.086.078c.728.599 2.343.573 2.993-.078h0l.058-.054zm-.905 1.849l-.095.015a4.42 4.42 0 0 1-1.195 0h0l-.096-.015.015.097a4.42 4.42 0 0 1 0 1.195h0l-.015.096.096-.015a4.42 4.42 0 0 1 1.195 0h0l.095.015-.021-.097a4.42 4.42 0 0 1 0-1.195h0l.015-.097.007.001z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-sun">
<path d="M8.001 14.001c.338 0 .623.253.662.589l.005.078v.667c0 .353-.275.644-.628.665s-.659-.237-.701-.587l-.005-.078v-.667c0-.368.299-.667.667-.667zm5.142-1.8l.063.055.467.467c.248.249.26.648.028.912s-.63.302-.908.086l-.063-.055-.467-.467c-.248-.249-.26-.648-.028-.912s.63-.302.908-.086zm-9.405.055c.238.238.261.615.055.88l-.055.063-.467.467c-.249.248-.648.26-.912.028s-.302-.63-.086-.908l.055-.063.467-.467c.26-.26.682-.26.943 0h0zM8.001 4a4 4 0 1 1 0 8.001 4 4 0 1 1 0-8.001zm0 1.333a2.67 2.67 0 0 0-2.667 2.667 2.67 2.67 0 0 0 2.667 2.667 2.67 2.67 0 0 0 2.667-2.667 2.67 2.67 0 0 0-2.667-2.667zm-6.667 2c.353 0 .644.275.665.628s-.237.659-.587.701l-.078.005H.667c-.353 0-.644-.275-.665-.628s.237-.659.587-.701l.078-.005h.667zm14.001 0c.353 0 .644.275.665.628s-.237.659-.587.701l-.078.005h-.667c-.353 0-.644-.275-.665-.628s.237-.659.587-.701l.078-.005h.667zM3.209 2.267l.063.055.467.467c.248.249.26.648.028.912s-.63.302-.908.086l-.063-.055-.467-.467c-.248-.249-.26-.648-.028-.912s.63-.302.908-.086zm10.464.055c.238.238.261.615.055.88l-.055.063-.467.467c-.249.248-.648.26-.912.028s-.302-.63-.086-.908l.055-.063.467-.467c.26-.26.682-.26.943 0h0zM8.001 0c.338 0 .623.253.662.589l.005.078v.667c0 .353-.275.644-.628.665s-.659-.237-.701-.587l-.005-.078V.667c0-.368.299-.667.667-.667z"></path>
</symbol>
</svg>
</div>
</body>
</html>