-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
891 lines (890 loc) · 68.3 KB
/
index.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
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
<!DOCTYPE html>
<html lang="en" translate="no">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"
/>
<meta
name="description"
content="Check circulating supply of Sora selected tokens"
/>
<meta
name="keywords"
content="sora supply, sora, quantity, qty, cbdc, crypto, token, coin, xor, val, pswap, dot, ksm, eth, dai, ken, kusd"
/>
<meta name="theme-color" content="#000000" />
<meta property="og:image" content="./images/preview.png" />
<meta name="twitter:card" content="summary_large_image" />
<title>Sora quantity monitor</title>
<link
rel="manifest"
type="application/manifest+json; charset=utf-8"
href="./manifest.json"
/>
<style>
@font-face {
font-family: sora;
font-style: normal;
font-weight: normal;
src: url("./fonts/Sora-SemiBold.ttf");
}
::-webkit-scrollbar {
height: 1.7rem;
background-color: var(--color-background);
font-size: var(--font-size);
}
::-webkit-scrollbar-thumb {
border: var(--card-border);
border-radius: 1rem;
background-color: var(--color-primary);
}
::-webkit-scrollbar-thumb:active {
background: var(--color-accent);
}
* {
font-weight: normal;
}
*:focus {
outline: none;
}
*:not(a, a *, handle)[title] {
cursor: help;
}
a {
color: inherit;
font-size: inherit;
text-decoration: none;
}
a:active {
filter: brightness(0.8);
}
html {
--dot-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 32 32"><path d="M16.1098 13.2157c-.1-.0054-.2-.0054-.3 0a2.8 2.8 0 0 0-1.5.5c-1.2697.951-1.4965 2.7658-.5 4 .9446 1.205 2.682 1.4277 3.9.5 1.2-1 1.5-2.7.5-4-.5-.6-1.3-1-2-1z"/></svg>');
--color-background: #51276c;
--color-primary: #fff;
--color-secondary: #000;
--color-accent: #f24197;
--color-danger: #f21515;
--color-warning: #e3c300;
--color-success: #52e323;
--color-info: #238be3;
--card-pixel: min(0.1166rem, 0.2444vmin);
--card-border: var(--color-primary) solid calc(3 * var(--card-pixel));
--card-width: calc(360 * var(--card-pixel));
--card-height: calc(315 * var(--card-pixel));
--card-padding: calc(30 * var(--card-pixel));
--font-size: min(6rem, 9.6vmin);
--card-margin: calc(
(100rem - var(--card-padding) - var(--card-height)) / 32
);
--card-gap: calc(var(--card-padding) + var(--card-margin));
--header-width: calc(100vw - 2 * var(--header-padding));
--header-padding: calc(2 * var(--card-gap));
padding: 0;
margin: 0;
background-color: var(--color-background);
color: var(--color-primary);
font-size: 1vh;
font-size: 1dvh;
user-select: none;
}
body {
overflow: hidden;
padding: 0;
margin: 0;
}
app {
position: relative;
display: flex;
overflow: scroll hidden;
height: 100rem;
flex-direction: column;
align-items: flex-start;
justify-content: space-evenly;
margin: 0;
font-family: sora;
}
header {
position: sticky;
z-index: 3;
right: 0;
left: 0;
display: flex;
width: var(--header-width);
justify-content: space-between;
padding: var(--card-padding) var(--header-padding) 0;
animation: fade-in 800ms ease-in forwards;
font-size: var(--font-size);
line-height: 1;
}
h1 {
position: relative;
margin: 0;
font-size: 1em;
white-space: nowrap;
}
h1 sora {
position: absolute;
top: -1rem;
left: -1rem;
border: 1rem solid var(--color-background);
background-color: var(--color-background);
}
h1 a::before {
content: "Sora";
}
h1 a:active,
h1 a:focus {
color: var(--color-danger);
}
h1 span::before {
content: "quantity monitor";
}
h2 {
display: flex;
align-items: center;
margin: 0;
font-size: 0.8em;
}
mode,
timeframe {
position: relative;
display: flex;
height: 0.85em;
align-items: center;
align-self: center;
border: var(--card-border);
border-radius: 0.5em;
margin-left: 0.5em;
background: var(--color-primary);
}
mode {
padding: 0 calc(3 * var(--card-pixel));
}
timeframe {
padding: 0 calc(4.5 * var(--card-pixel));
}
mode a,
timeframe a {
display: flex;
min-height: 1.7em;
align-items: center;
justify-content: center;
border-radius: 1em;
color: var(--color-background);
font-size: 0.5em;
}
mode a {
width: 3.4em;
margin: 0 calc(-3 * var(--card-pixel));
}
timeframe a {
width: 2.8em;
margin: 0 calc(-4 * var(--card-pixel));
}
mode[data-mode="xor"] a#xor,
mode[data-mode="ken"] a#ken,
mode[data-mode="xst"] a#xst,
timeframe[data-timeframe="week"] a#week,
timeframe[data-timeframe="month"] a#month,
timeframe[data-timeframe="year"] a#year {
z-index: 1;
background-color: var(--color-background);
color: var(--color-primary);
}
mode[data-mode="xor"] a#xor:active,
mode[data-mode="ken"] a#ken:active,
mode[data-mode="xst"] a#xst:active,
timeframe[data-timeframe="week"] a#week:active,
timeframe[data-timeframe="month"] a#month:active,
timeframe[data-timeframe="year"] a#year:active {
background-color: var(--color-accent);
}
overlay {
position: relative;
margin-left: 0.5em;
}
overlay handle {
display: flex;
width: 0.85em;
height: 0.85em;
align-items: center;
justify-content: center;
border: var(--card-border);
border-radius: 50%;
background-color: var(--color-primary);
color: var(--color-background);
cursor: pointer;
}
overlay handle svg {
display: flex;
width: 100%;
height: 100%;
align-items: baseline;
justify-content: center;
border-radius: 50%;
color: var(--color-background);
font-size: 0.75em;
transition: transform ease-in-out 300ms;
}
overlay.opened handle svg {
background-color: var(--color-background);
color: var(--color-primary);
transform: rotate(60deg);
}
overlay.opened handle:active svg {
background-color: var(--color-accent);
color: var(--color-primary);
filter: brightness(0.8);
}
overlay:not(.opened) handle:active svg {
color: var(--color-success);
filter: brightness(0.8);
}
overlay dropdown {
position: absolute;
z-index: -1;
top: 1.5em;
right: 0;
margin: 0;
opacity: 0;
pointer-events: none;
transform: translateX(-0.5em) translateY(-2em) scaleX(0) scaleY(0)
rotate(-60deg);
transform-origin: calc(100% - var(--card-margin)) 0.5em;
}
overlay:not(.closing) dropdown {
visibility: hidden;
}
overlay.opened dropdown {
animation: dropdown-in ease-out 300ms forwards;
pointer-events: all;
visibility: visible;
}
overlay:not(.opened).closing dropdown {
animation: dropdown-out ease-in 250ms forwards;
pointer-events: none;
}
overlay dropdown ul {
display: flex;
max-width: var(--header-width);
flex-direction: column;
padding: 1em;
border-radius: 1em;
margin: 0;
background-color: var(--color-primary);
box-shadow: 0 0 var(--card-padding) var(--card-margin)
var(--color-background);
color: var(--color-secondary);
font-size: 0.5em;
list-style: none;
}
overlay dropdown li {
display: flex;
line-height: 2;
}
overlay dropdown li:first-child {
margin: 0 0 0.5em;
}
overlay dropdown li a {
display: flex;
flex: 1;
align-items: center;
color: var(--color-background);
}
overlay dropdown li:last-child a {
margin: 0.5em 0 0;
color: var(--color-secondary);
}
overlay dropdown li a:active,
overlay dropdown li a:focus,
overlay dropdown li:last-child a:active,
overlay dropdown li:last-child a:focus {
color: var(--color-accent);
}
overlay dropdown svg,
overlay dropdown span {
height: 2em;
margin-right: 0.5em;
white-space: nowrap;
}
overlay dropdown update {
white-space: nowrap;
}
overlay dropdown update::before {
content: "Upd. ";
}
overlay dropdown version::before {
content: "Sora-qty ";
}
content {
display: grid;
height: calc(2 * var(--card-height));
padding: 0 var(--card-gap);
grid-auto-flow: column;
grid-template-rows: 1fr 1fr;
}
@-moz-document url-prefix() {
content {
padding-bottom: 2rem;
}
}
card {
position: relative;
display: flex;
justify-content: center;
margin: 0 var(--card-margin);
font-size: 42rem;
}
card ticker {
position: absolute;
top: 0.4em;
right: 0.72em;
background-color: #51276c;
font-size: 0.18em;
line-height: 1;
}
card ticker.length-4 {
top: 0.6em;
right: 0.88em;
font-size: 0.15em;
}
card ticker.length-5 {
top: 0.7em;
right: 0.96em;
font-size: 0.138em;
}
card ticker.length-6 {
top: 0.79em;
right: 1em;
font-size: 0.128em;
}
card ticker.length-7 {
top: 0.94em;
right: 1.1em;
font-size: 0.115em;
}
card a.source {
position: absolute;
bottom: -0.25rem;
display: none;
color: var(--color-secondary);
font-size: 0.048em;
font-weight: bold;
text-decoration: none;
touch-action: none;
}
card a.source:active,
card a.source:focus {
color: var(--color-danger);
}
card a.source span {
color: var(--color-danger);
text-shadow: 0 0 0.1em var(--color-secondary);
}
card a.source:active span,
card a.source:focus span {
text-shadow: none;
}
canvas {
width: var(--card-width);
height: var(--card-height);
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
screen {
position: fixed;
z-index: 1;
top: 0;
right: 0;
left: 0;
height: 98rem;
animation: screen-out 800ms ease-in forwards;
box-shadow: inset 0 0 var(--card-gap) var(--card-gap)
var(--color-background);
pointer-events: none;
}
noscript {
position: fixed;
z-index: 9999;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding: 17rem;
background: var(--color-danger);
font-size: 5vmin;
text-align: center;
}
@media (hover: hover) and (pointer: fine) {
h1 a:hover {
color: var(--color-danger);
}
h1 span:hover::before {
color: var(--color-warning);
}
mode a:focus,
mode a:hover,
timeframe a:focus,
timeframe a:hover {
color: var(--color-success);
}
mode[data-mode="xor"] a#xor:focus,
mode[data-mode="ken"] a#ken:focus,
mode[data-mode="xst"] a#xst:focus,
timeframe[data-timeframe="week"] a#week:focus,
timeframe[data-timeframe="month"] a#month:focus,
timeframe[data-timeframe="year"] a#year:focus {
background-color: var(--color-accent);
}
overlay.opened handle:focus svg {
background-color: var(--color-accent);
color: var(--color-primary);
}
overlay:not(.opened) handle:focus svg,
overlay:not(.opened) handle:hover svg {
color: var(--color-success);
}
overlay dropdown li a:hover,
overlay dropdown li:last-child a:hover {
color: var(--color-accent);
}
overlay dropdown li:first-child:hover,
overlay dropdown li:first-child:hover::before {
color: var(--color-info);
}
card a.source:hover {
color: var(--color-danger);
}
card a.source:hover span {
text-shadow: none;
}
}
@media (hover: none) {
card:focus {
z-index: 2;
}
card:focus a.source,
card:focus-within a.source {
display: inline;
touch-action: auto;
}
}
@media (hover: hover) {
card:hover {
z-index: 2;
}
card:hover a.source {
display: inline;
touch-action: auto;
}
}
@media (max-aspect-ratio: 17/11) {
h1 span::before {
content: "quantity";
}
}
@media (max-aspect-ratio: 37/30) {
html {
--card-gap: var(--card-padding);
}
header {
flex-direction: column;
gap: 0.8em;
}
h1 span::before {
content: "quantity monitor";
}
mode {
margin-left: auto;
}
card {
margin: 0;
}
}
@media (max-aspect-ratio: 6/7) {
h1 span::before {
content: "quantity";
}
}
@media (max-aspect-ratio: 5/7) {
h2 {
justify-content: space-between;
font-size: 0.85em;
}
mode,
overlay {
margin: 0;
}
mode {
overflow: hidden;
width: 2.25em;
justify-content: space-between;
cursor: pointer;
}
mode:focus-within {
overflow: visible;
flex-direction: column;
}
mode:focus-within::before {
position: absolute;
z-index: -1;
top: calc(-3 * var(--card-pixel));
display: block;
width: 100%;
height: 2.57em;
border: var(--card-border);
border-radius: 0.5em;
background-color: var(--color-primary);
box-shadow: 0 0 var(--card-padding) var(--card-margin)
var(--color-background);
content: "";
}
mode a {
min-height: 1.7em;
}
mode:focus-within a {
width: calc(100% + 6 * var(--card-pixel));
}
mode:not(:focus-within)[data-mode="xor"] a#ken,
mode:not(:focus-within)[data-mode="xor"] a#xst,
mode:not(:focus-within)[data-mode="ken"] a#xor,
mode:not(:focus-within)[data-mode="ken"] a#xst,
mode:not(:focus-within)[data-mode="xst"] a#xor,
mode:not(:focus-within)[data-mode="xst"] a#ken {
margin: 0 -33%;
background-color: var(--color-background);
color: transparent;
mask-image: var(--dot-mask);
mask-position: center;
mask-repeat: no-repeat;
pointer-events: none;
}
timeframe {
margin: auto;
}
}
@media (max-aspect-ratio: 1/2) {
h1 span::before {
content: "quantity";
}
card {
font-size: calc(var(--card-width));
}
}
@keyframes dropdown-in {
0% {
opacity: 0;
transform: translateX(-0.5em) translateY(-2em) scaleX(0) scaleY(0)
rotate(-60deg);
}
40% {
opacity: 0.4;
transform: translateX(0.5em) translateY(-1.2em) scaleX(0.1)
scaleY(0.1) rotate(-45deg);
}
60% {
opacity: 0.6;
transform: translateX(1em) translateY(-0.8em) scaleX(0.4) scaleY(0.6)
rotate(-15deg);
}
100% {
opacity: 1;
transform: translateX(0) translateY(0) scaleX(1) scaleY(1)
rotate(0deg);
}
}
@keyframes dropdown-out {
0% {
opacity: 1;
transform: translateX(0) translateY(0) scaleX(1) scaleY(1)
rotate(0deg);
}
40% {
opacity: 0.6;
transform: translateX(1em) translateY(-0.8em) scaleX(0.4) scaleY(0.6)
rotate(-15deg);
}
60% {
opacity: 0.4;
transform: translateX(0.5em) translateY(-1.2em) scaleX(0.1)
scaleY(0.1) rotate(-45deg);
}
100% {
opacity: 0;
transform: translateX(-0.5em) translateY(-2em) scaleX(0) scaleY(0)
rotate(-60deg);
}
}
@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes screen-out {
from {
background-color: var(--color-background);
}
to {
background-color: transparent;
}
}
</style>
<link rel="icon" type="image/png" href="./images/icons/icon.svg" />
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-FL6DQC8FHB"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-FL6DQC8FHB");
</script>
<script>
if ("serviceWorker" in navigator) {
navigator.serviceWorker.register("service-worker.js");
}
</script>
</head>
<body>
<app>
<header>
<h1 aria-description="Sora supply">
<supply>Supply</supply>
<sora>
<a
href="https://sora.org"
target="_blank"
title="[visit Sora site]"
>
</a>
<span title="mostly, number of coins in circulation"></span>
</sora>
</h1>
<h2>
<mode tabindex="-1">
<a id="xor" href="#" title="[native & bridged assets]">XOR</a>
<a id="ken" href="#" title="[over-collateralized assets]">KEN</a>
<a id="xst" href="#" title="[synthetic assets]">XST</a>
</mode>
<timeframe data-timeframe="1w">
<a id="week" href="#" title="[1 week]">1W</a>
<a id="month" href="#" title="[1 month]">1M</a>
<a id="year" href="#" title="[1 year]">1Y</a>
</timeframe>
<overlay>
<handle role="button" tabindex="0" title="[open menu]">
<svg
xmlns="http://www.w3.org/2000/svg"
xml:space="preserve"
viewBox="0 0 32 32"
>
<path
fill="currentColor"
d="M16.129 5.254a2.7956 2.7956 0 0 0-.3536.0058h-.002a2.7997 2.7997 0 0 0-1.4726.5625 1.0001 1.0001 0 0 0-.002 0c-1.2202.9305-1.4598 2.7036-.5293 3.9238.9294 1.2197 2.7012 1.4612 3.922.5332a1.0001 1.0001 0 0 0 .0019-.002c1.2214-.9296 1.4613-2.7027.5312-3.9238-.504-.6618-1.2758-1.0605-2.0957-1.0996zm6.6874 11.916a2.7557 2.7557 0 0 0-.2832.0214c-1.5217.1963-2.614 1.613-2.418 3.1348.1962 1.5205 1.61 2.614 3.1309 2.4199 1.522-.1947 2.6162-1.6109 2.4219-3.1328-.1827-1.4279-1.4404-2.4791-2.8516-2.4434zm-13.7832.0136a2.8163 2.8163 0 0 0-.3984.041h-.002c-.9355.1661-1.7264.7975-2.0937 1.6738a1.0001 1.0001 0 0 0 0 .002c-.5922 1.4156.0863 3.0699 1.502 3.6621 1.4156.5922 3.0717-.0863 3.664-1.502.5922-1.4156-.0863-3.0718-1.502-3.664a1.0001 1.0001 0 0 0-.002 0 2.7907 2.7907 0 0 0-1.1679-.213z"
/>
</svg>
</handle>
<dropdown role="menu" aria-hidden="true">
<ul>
<li title="alas, data is not updated in real time">
<svg
xmlns="http://www.w3.org/2000/svg"
fill-rule="evenodd"
viewBox="0 0 32 32"
>
<path
d="M16 4a12 12 0 1 0 0 24 12 12 0 0 0 0-24zm0 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20zm0 5a1 1 0 0 0-1 1v4a1 1 0 0 0 0 .3 1 1 0 0 0 .1.2 1 1 0 0 0 .2.2 1 1 0 0 0 .2.1l7 4a1 1 0 0 0 1.4-.4 1 1 0 0 0-.4-1.4L17 15.4V12a1 1 0 0 0-1-1z"
style="fill: currentColor"
/>
</svg>
<update>N/A</update>
</li>
<li>
<a
href="https://t.me/soratopia_bot/app?startapp=9K5R4FZX6393C"
title="[pray to earn]"
target="_blank"
>
<svg
xmlns="http://www.w3.org/2000/svg"
xml:space="preserve"
fill-rule="evenodd"
viewBox="0 0 32 32"
>
<defs>
<clipPath id="a" clipPathUnits="userSpaceOnUse">
<circle
cx="16"
cy="16"
r="12"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="0"
/>
</clipPath>
</defs>
<path
fill="currentColor"
d="M16 32H0V0h32v32Zm-8.2-7.4a146.6 146.6 0 0 1 3.2-1l.4-.6c.2-.3.2-.4.2-.8s0-.6-.3-.9l-.5-.5-.8-.2c-.3 0-.6 0-.8.2l-.5.4-.6 1.8a70.6 70.6 0 0 0-.3 1.6zm10.7-.4.6-.1.4-.4.3-.5c0-.1 0-.8.2-1.4a241.4 241.4 0 0 1 .5-4.2 78.8 78.8 0 0 1 1.7-2.2 21.3 21.3 0 0 0 2-4.3l.2-1.2c0-.4 0-.7-.2-1-.1-.2-.3-.6-.5-.7a3 3 0 0 0-.7-.5c-.3-.2-.5-.2-1.1-.2-.6 0-.9 0-1.6.3A22.6 22.6 0 0 0 16 10l-1.1.8-.7.6-2.8.3-3 .5-.5.4-.3.6v.5c0 .3.3.6 1.7 2s1.6 1.6 1.5 1.7l-.4.4c-.1.1-.3.3-.3.5v.4c0 .1.7 1 1.6 1.8l1.6 1.7h.4c.3 0 .4 0 .8-.5l.4-.4 1.3 1.3 1.6 1.5.7.1zm.9-9.5h-.7a2.8 2.8 0 0 1-1-.7c-.1 0-.3-.3-.3-.5-.2-.3-.2-.5-.2-1 0-.3.1-.5.3-.8l.6-.6c.3-.2.5-.3.9-.3h.8l.7.5A1.8 1.8 0 0 1 21 13l-.2.7a2.7 2.7 0 0 1-.9 1h-.6z"
clip-path="url(#a)"
/>
</svg>
<span>SORATOPIA</span>
</a>
</li>
<li>
<a
href="https://polkaswap.io"
title="[trade gracefully]"
target="_blank"
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill-rule="evenodd"
viewBox="0 0 32 32"
>
<path
fill="currentColor"
d="M16 4C9.3455 4 4 9.3455 4 16s5.3455 12 12 12 12-5.3455 12-12S22.6545 4 16 4zm0 1.9629c.9818 0 1.8555.8736 1.8555 1.8555 0 1.0909-1.8555 7.0898-1.8555 7.0898s-1.8555-5.999-1.8555-7.0898c0-.9819.8737-1.8555 1.8555-1.8555zm-4.0371 4.1191c.4636 0 .9287.1905 1.3105.5723.7637.7636 2.1817 4.8008 2.1817 4.8008s-4.1463-1.5271-4.8008-2.1817c-.7636-.7636-.7636-1.9646 0-2.6191.3818-.3818.845-.5723 1.3086-.5723zm8.1426.041c.4772-.0136.9678.1495 1.3496.5313.7636.7636.7636 1.8555 0 2.6191-.7637.7637-4.8008 2.1817-4.8008 2.1817s1.527-4.1463 2.1816-4.8008c.3273-.3273.7923-.5176 1.2696-.5313zM7.8184 14.1445c.9818 0 7.0898 1.8555 7.0898 1.8555s-5.999 1.8555-7.0898 1.8555c-1.091 0-1.8555-.8737-1.8555-1.8555 0-.9818.8736-1.8555 1.8555-1.8555zm16.3632 0c.9819 0 1.8555.8737 1.8555 1.8555 0 .9818-.8736 1.8555-1.8555 1.8555-1.0909 0-7.0898-1.8555-7.0898-1.8555s5.999-1.8555 7.0898-1.8555zm-8.7265 2.4004s-1.5271 4.1463-2.1817 4.8008c-.7636.7636-1.8555.7636-2.6191 0-.7636-.7636-.7636-1.8555 0-2.6191.7636-.7637 4.8008-2.1817 4.8008-2.1817zm1.1992 0s4.1462 1.5271 4.8008 2.1817c.6545.7636.6545 1.9646 0 2.6191-.7637.7636-1.8555.7636-2.6192 0-.7636-.7636-2.1816-4.8008-2.1816-4.8008zM16 17.0918s1.8555 5.999 1.8555 7.0898c0 1.091-.8737 1.8555-1.8555 1.8555-.9818 0-1.8555-.8736-1.8555-1.8555 0-.9818 1.8555-7.0898 1.8555-7.0898z"
/>
</svg>
<span>Polkaswap</span>
</a>
</li>
<li>
<a
href="https://app.adar.com"
title="[advanced digital asset router]"
target="_blank"
>
<svg
xmlns="http://www.w3.org/2000/svg"
xml:space="preserve"
viewBox="0 0 32 32"
>
<path
fill="currentColor"
d="M16 3.9746c-6.6288 0-12 5.3712-12 12 0 6.6264 5.3712 12 12 12 6.6264 0 12-5.3736 12-12 0-6.6288-5.3736-12-12-12zm4.3047 2.8008 4.3887 2.502c.1582.0919.1582.3287 0 .414v.0059l-8.5215 5.037c-.171.0985-.3862.0985-.5508 0L7.1055 9.711c-.1583-.0919-.1583-.3287 0-.414L11.5 6.7773v5.3575l4.4922-2.4825 4.3125 2.4825V6.7754zM6.0352 11.4629a.2324.2324 0 0 1 .123.0312l8.6094 4.8633c.1675.0934.2752.2793.2754.4766l-.1016 9.8984-.0059.004c.0053.1797-.1986.2961-.3574.205l-4.3593-2.5469 4.6386-2.6797-4.3047-2.4941-.0976-5.1328-4.6406 2.6777-.0137-5.0644c-.004-.1349.11-.2351.2344-.2383zm19.9316 0c.1243.0032.2383.1035.2344.2383l-.0137 5.0644-4.6406-2.6777-.0977 5.1328-4.3047 2.4941 4.6387 2.6797-4.3594 2.547c-.1587.091-.3626-.0254-.3574-.2052l-.0059-.0039-.1015-9.8984c.0002-.1973.1078-.3832.2754-.4766l8.6093-4.8633a.2324.2324 0 0 1 .1231-.0312z"
/>
</svg>
<span>ADAR</span>
</a>
</li>
<li>
<a
href="https://apolloprotocol.io"
title="[lend & borrow]"
target="_blank"
>
<svg
xmlns="http://www.w3.org/2000/svg"
xml:space="preserve"
viewBox="0 0 32 32"
>
<path
fill="currentColor"
d="M16 4A12 12 0 0 0 4 16a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 16 4zm-1.71 2.4c.86.03 1.45.3 1.71.45.36-.2 1.31-.63 2.72-.37.92.16 1.6.91 2.29 1.7l.51.55a.1.1 0 0 1-.01.15c-.1.08-.21.14-.31.21a.1.1 0 0 1-.13-.01l-.48-.53c-.64-.72-1.22-1.38-1.97-1.52a3.8 3.8 0 0 0-1.81.09c-.42.13-.64.29-.64.29a.28.28 0 0 1-.34 0s-.22-.16-.64-.3a3.8 3.8 0 0 0-1.8-.08c-.76.14-1.34.8-1.97 1.52l-.49.53a.1.1 0 0 1-.13.01l-.3-.2a.1.1 0 0 1-.02-.16l.51-.56c.7-.78 1.37-1.53 2.3-1.7.36-.06.7-.08 1-.07zm2.02 1.69c.04 0 .1.02.12.05.02.04.03.08 0 .13a.25.25 0 0 0-.04.2c.01.07.05.15.1.22.1.14.23.24.23.24a.1.1 0 0 1 .01 0c.25.27.35.5.38.7.02.2-.03.36-.1.47a.1.1 0 0 1-.15.02l-.05-.05-.07-.05-.07-.06-.07-.04-.08-.05-.1-.04-.1-.03-.09-.02-.09-.01-.06-.01a.1.1 0 0 1-.07-.15c.07-.12-.04-.35-.04-.35-.23-.43-.22-.73-.09-.92a.66.66 0 0 1 .43-.25zm5.5.76a.3.3 0 0 1 .17.53 10.3 10.3 0 0 1-4 1.71.1.1 0 0 1-.1-.13c-.19.28-.43.39-.6.4a.1.1 0 0 1-.11-.12l.01-.06v-.05l.01-.06v-.3l-.01-.04-.01-.04-.01-.03v-.04l-.02-.03v-.04l-.02-.03a1.27 1.27 0 0 0-.05-.1l-.01-.03a.1.1 0 0 1 .08-.15c.13 0 .27-.2.27-.2.26-.42.53-.56.75-.54.23.02.38.17.44.24.03.04.04.09.01.13a.11.11 0 0 1-.11.06.25.25 0 0 0-.2.07.6.6 0 0 0-.13.2c-.07.15-.1.31-.1.32a.1.1 0 0 1 .06-.05 9.72 9.72 0 0 0 3.52-1.57.3.3 0 0 1 .16-.05zm-11.58.02c.05 0 .1.02.16.06a9.72 9.72 0 0 0 3.8 1.6.1.1 0 0 1 .05.17l.06-.07a.73.73 0 0 1 .46-.14.1.1 0 0 1 .09.13l-.01.04-.02.08v.05l-.02.08v.16l.01.07.01.08.02.07.02.07.02.08.03.06a.1.1 0 0 1-.09.15c-.07 0-.14.04-.2.1l-.1.1c-.25.43-.52.56-.74.54a.66.66 0 0 1-.44-.24.12.12 0 0 1 .1-.19c.09 0 .14-.02.2-.07a.6.6 0 0 0 .14-.2c.06-.15.08-.3.09-.3-.34.35-.89.88-1.57 1.34.14-.02.27-.04.41-.04.86 0 1.68.23 2.44.66.1.05.14.16.16.27v.02a6.8 6.8 0 0 1-.09 4.07.15.15 0 0 1-.18.1.15.15 0 0 1-.1-.19 6.39 6.39 0 0 0-.11-3.65 4.37 4.37 0 0 0-3.91-.16l.12 1.5v.07l.06 1.04v.04s-.33 2.55 1.14 4.1A7.57 7.57 0 0 0 14.03 22c.46.26.78.34 1 .46l.03.01c.3.16.65.22.96.22.31 0 .65-.06.95-.22h.04c.22-.13.54-.21 1-.47a7.57 7.57 0 0 0 1.8-1.47c1.45-1.55 1.13-4.1 1.13-4.1v-.03a.1.1 0 0 1 0-.01c0-.28.03-.65.05-1.03l.01-.1v.02l.12-1.5h-.03a4.39 4.39 0 0 0-3.98.19.5.5 0 0 0-.08.28c0 .07 0 .15-.04.23a.23.23 0 0 1-.08.11.19.19 0 0 1-.16.03.45.45 0 0 1-.2-.17.42.42 0 0 1-.1-.25c0-.2.02-.37.09-.52a.9.9 0 0 1 .43-.42 4.92 4.92 0 0 1 2.81-.57 8.9 8.9 0 0 1-1.6-1.38.1.1 0 0 1 .06-.17l.4-.1a.1.1 0 0 1 .1.03c.56.6 1.63 1.56 2.83 1.81.8.18 1.56.65 2.17 1.17a6.1 6.1 0 0 1 1.3 1.5c.1.16.15.3.16.4.01.1 0 .18-.04.24a.28.28 0 0 1-.38.12.28.28 0 0 1-.15-.3 2.34 2.34 0 0 0-.26-.47 5.87 5.87 0 0 0-2.65-2.02l-.16 1.82c.02.14.1.65.3 1.2.14.4.36.83.68 1.1.7.61 1 1.8 1.06 2.52.02.24.01.43-.02.56a.44.44 0 0 1-.13.23.3.3 0 0 1-.4-.03.28.28 0 0 1-.02-.33c0-.04.02-.23 0-.38-.04-.62-.3-1.66-.86-2.14a2.79 2.79 0 0 1-.64-.9 5.58 5.58 0 0 1-1.94 4.36c.14.28.43.68.72 1.07.31.41.61.78.72 1 .04.07 0 .14-.03.18a.4.4 0 0 1-.11.1.4.4 0 0 1-.14.06c-.06 0-.13 0-.18-.05a16 16 0 0 1-1.42-1.99c-.47.37-.87.6-1.18.76-.33.15-.57.23-.71.31a2.94 2.94 0 0 1-2.47 0c-.15-.08-.4-.16-.74-.32-.31-.15-.72-.4-1.2-.77-.4.67-1.12 1.62-1.38 1.92-.05.06-.12.06-.18.05a.4.4 0 0 1-.14-.06.4.4 0 0 1-.11-.1c-.03-.04-.07-.11-.03-.18.1-.2.38-.56.68-.96.28-.37.57-.76.73-1.04l-.6-.59a5.58 5.58 0 0 1-1.3-3.75 2.8 2.8 0 0 1-.65.9c-.55.48-.82 1.52-.87 2.14-.01.15 0 .34.01.38.06.1.06.23-.02.33a.28.28 0 0 1-.4.03.44.44 0 0 1-.13-.23 1.84 1.84 0 0 1-.03-.56c.06-.73.37-1.9 1.07-2.52.31-.27.54-.7.69-1.1.2-.56.27-1.08.28-1.2a40.9 40.9 0 0 0-.15-1.8 5.92 5.92 0 0 0-2.6 2 2.38 2.38 0 0 0-.26.47.28.28 0 0 1-.14.3.28.28 0 0 1-.38-.12.41.41 0 0 1-.05-.23c.02-.12.07-.25.16-.42.22-.4.69-.96 1.3-1.49a5.2 5.2 0 0 1 2.18-1.16 6.03 6.03 0 0 0 2.8-1.8.1.1 0 0 1 .1-.02l.41.09a.1.1 0 0 1 .07.08c.03-.08.06-.15.1-.21a.1.1 0 0 1-.11.05c-1.4-.3-2.71-.87-3.85-1.67a.3.3 0 0 1 .18-.53zM7.46 16v-.04.05zm1.55 4.58L9 20.54l.02.05v-.01zm14.02 0v.01l.02-.05-.02.04zm1.6-4.58v.01l.01-.05V16zM13.75 9.18c.04 0 .08.03.1.07.04.07.1.11.16.13.07.03.16.03.24.02a1 1 0 0 0 .32-.08.1.1 0 0 1 .02 0c.35-.09.6-.06.8.02.18.08.29.2.35.32a.1.1 0 0 1-.06.14l-.09.03-.04.02-.1.04-.03.01-.09.06-.02.01-.09.07-.08.08-.07.08-.02.02-.05.08a.1.1 0 0 1-.19 0c-.03-.07-.1-.11-.18-.14l-.14-.02c-.5-.02-.75-.18-.84-.38a.66.66 0 0 1-.01-.5.12.12 0 0 1 .1-.08zm-3.9.18a.1.1 0 0 1 .06.03l.09.09.19.13a.1.1 0 0 1 0 .16c-.38.3-.8.55-1.3.7-.9.28-1.38 1.03-1.66 1.94-.3.95-.39 2.06-.5 2.92a.29.29 0 0 1-.32.25.29.29 0 0 1-.25-.32c.15-1.05.24-2.49.75-3.62a2.9 2.9 0 0 1 1.82-1.71c.39-.12.73-.32 1.04-.55a.1.1 0 0 1 .08-.02zm12.38.02c.32.24.66.43 1.04.55.9.27 1.46.92 1.82 1.71.5 1.13.6 2.57.75 3.62a.3.3 0 0 1-.25.32.29.29 0 0 1-.32-.25c-.11-.86-.2-1.97-.5-2.92-.28-.9-.75-1.66-1.66-1.94-.5-.15-.92-.4-1.3-.7a.1.1 0 0 1 0-.17l.23-.15a.37.37 0 0 0 .06-.05.1.1 0 0 1 .13-.02zM16 9.92A1.03 1.03 0 1 1 16 12a1.03 1.03 0 0 1 0-2.07zm1.21 1.46a.1.1 0 0 1 .08.09c0 .05.02.1.05.12a.3.3 0 0 0 .12.07c.08.04.18.04.18.04.49.01.74.18.84.38.1.2.04.41 0 .5a.12.12 0 0 1-.1.08.12.12 0 0 1-.11-.07.25.25 0 0 0-.16-.13.6.6 0 0 0-.24-.02 1.3 1.3 0 0 0-.32.08.1.1 0 0 1-.02 0 1.3 1.3 0 0 1-.76-.01.73.73 0 0 1-.37-.3.1.1 0 0 1 .05-.14l.1-.05.07-.04.05-.03c.09-.06.16-.13.23-.2l.07-.09.05-.07.05-.09.03-.07a.1.1 0 0 1 .11-.05zm-2.07.47a.1.1 0 0 1 .08.02h.02l.04.04.05.04.04.03h.01l.05.03.04.02.03.01.04.02.09.03.1.03.07.02h.07l.11.01h.06a.1.1 0 0 1 .08.16c-.04.06-.04.15-.02.23l.05.13c.23.44.22.74.09.92a.66.66 0 0 1-.43.26c-.06 0-.1-.02-.12-.06-.02-.03-.02-.09 0-.13a.25.25 0 0 0 .04-.2.6.6 0 0 0-.1-.22c-.1-.13-.23-.23-.23-.23a.1.1 0 0 1-.01-.02c-.44-.46-.42-.86-.32-1.09a.1.1 0 0 1 .07-.05zm-1.74 2.43c.06 0 .65 0 1.27.56.06.06.07.16.01.22-.01.02-.03.02-.05.03.12.1.25.22.36.38.05.07.04.16-.02.21a.16.16 0 0 1-.2.02c-.13-.1-.4-.25-.73-.34l.01.07a.67.67 0 0 1-1.33 0v-.01c-.2.06-.44.16-.69.31a.16.16 0 0 1-.2-.03.17.17 0 0 1 0-.21c.1-.11.28-.3.51-.46-.1.06-.19.1-.3.18a.16.16 0 0 1-.22-.23c.2-.23.74-.74 1.58-.7zm5.43 0c.07 0 .65 0 1.27.56.06.06.07.16.02.22l-.06.03c.13.1.25.22.37.38.05.07.04.16-.02.21a.16.16 0 0 1-.2.02l-.02-.01c-.13-.1-.4-.24-.72-.33l.02.07a.67.67 0 0 1-1.34 0v-.01c-.2.06-.44.16-.68.31a.16.16 0 0 1-.21-.03.17.17 0 0 1 0-.21c.1-.11.28-.3.52-.46-.1.06-.2.1-.3.18a.16.16 0 0 1-.22-.23c.2-.23.74-.74 1.57-.7zm-5.07 1.06h-.02.04-.02zm5.39 0h-.02.03-.01zM6.39 16.45a.2.2 0 0 1 .18.1l.8 1.38a.2.2 0 0 1-.02.22.19.19 0 0 1-.22.05l-.37-.17a8.28 8.28 0 0 0 5.87 6.8l.76-.46a.24.24 0 0 1 .17-.03l1.05.19c.1.02.18.1.2.2.02.1-.02.2-.1.25l-.25.15c.16.01.32.03.49.03a.28.28 0 1 1 0 .56c-.2 0-.39 0-.58-.02l.18.2c.07.08.08.2.04.28a.25.25 0 0 1-.24.13l-1.06-.09a.25.25 0 0 1-.16-.07l-.81-.82a8.85 8.85 0 0 1-6.13-7.26l-.31.2a.19.19 0 0 1-.22-.01.19.19 0 0 1-.05-.22l.5-1.2.05-.1.07-.18c.03-.06.1-.1.16-.1zm19.21 0a.2.2 0 0 1 .17.11l.07.17.04.1.51 1.2c.03.08.01.17-.05.23a.19.19 0 0 1-.22.01l-.32-.2a8.85 8.85 0 0 1-6.12 7.26l-.81.82a.25.25 0 0 1-.16.07l-1.06.1c-.1 0-.2-.05-.24-.14a.25.25 0 0 1 .04-.28l.18-.2-.58.02a.28.28 0 0 1-.28-.28c0-.15.13-.28.28-.28l.48-.03-.24-.15a.25.25 0 0 1-.1-.26c.02-.1.1-.17.2-.2l1.04-.18c.06 0 .12 0 .17.03l.77.46a8.28 8.28 0 0 0 5.87-6.8l-.37.17a.19.19 0 0 1-.25-.27l.81-1.39c.04-.06.1-.1.17-.09zm-10.45 1.8a.1.1 0 0 1 .13 0c.04.04.1.08.15.1l.1.09a.7.7 0 0 1 .09.1l.1.16a.1.1 0 0 1 0 .13.35.35 0 0 1-.3.13.43.43 0 0 1-.4-.4.34.34 0 0 1 .13-.3zm1.57 0a.1.1 0 0 1 .13 0c.09.08.14.2.13.3a.43.43 0 0 1-.4.4.35.35 0 0 1-.3-.12.1.1 0 0 1 0-.13l.1-.15a.7.7 0 0 1 .08-.1.1.1 0 0 1 0-.01.61.61 0 0 1 .11-.08l.15-.1zm-.2 1.88c.18 0 .36.05.5.06h.13a.1.1 0 0 1 .12.16.55.55 0 0 1-.4.18h-1.74a.51.51 0 0 1-.4-.19l-.02-.02a.1.1 0 0 1 .14-.13v-.01h.02a.5.5 0 0 0 .17.01c.14-.01.33-.05.5-.06h.17c.18.03.26.07.29.09.03-.01.17-.06.35-.09a.9.9 0 0 1 .17 0zm-1.08.55.2.06h.04l.32.01h.32l.04-.01.2-.06a.1.1 0 0 1 .1.16l-.08.11a.47.47 0 0 1-.38.18h-.4a.47.47 0 0 1-.38-.18l-.09-.11a.1.1 0 0 1 .11-.16zm-1.87 4.16-.25.15.37.07.23-.15-.35-.07zm4.86 0-.35.07.23.15.37-.07-.25-.15zm-5.2.71.19.19.35.03-.12-.14-.42-.08zm5.54 0-.42.08-.13.14.36-.03.19-.19z"
paint-order="stroke fill markers"
/>
</svg>
<span>Apollo Protocol</span>
</a>
</li>
<li>
<a
href="https://farming.deotoken.io"
title="[stake to earn]"
target="_blank"
>
<svg
xmlns="http://www.w3.org/2000/svg"
xml:space="preserve"
viewBox="0 0 32 32"
>
<path
fill="currentColor"
d="M16 4C9.3712 4 4 9.3712 4 16c0 6.6264 5.3712 12 12 12 6.6264 0 12-5.3736 12-12 0-6.6288-5.3736-12-12-12zm-.0117 2.4297h.002a10.1176 10.1176 0 0 1 6.4824 2.2207.1.1 0 0 1-.0176.168 6.1972 6.1972 0 0 1-.377.1738.1.1 0 0 1-.1015-.0117A9.571 9.571 0 0 0 16.453 7.002l.0332-.006a.2444.2444 0 0 1-.1035.0099l.0078.002a19.1884 19.1884 0 0 0-.3984-.0118c-.131.003-.266.006-.4004.0117l.0078-.002a.2238.2238 0 0 1-.1035-.0097l.0351.0059a9.4314 9.4314 0 0 0-4.9707 1.5937.1.1 0 0 1-.123-.0078c-.1-.091-.1932-.1795-.2773-.2578a.1.1 0 0 1 .0117-.1543c1.3277-.905 3.2712-1.7723 5.8164-1.7461zM9.25 7.7773a.2906.2906 0 0 1 .1973.088s.823.8601 1.9004 1.707c.9237-.0106 1.8632-.3848 1.8632-.3848a.1.1 0 0 0 .002-.002c.1438-.0565.3088.0152.3672.1583a.2842.2842 0 0 1-.1524.3671.1.1 0 0 0-.002.002s-.6843.2143-1.3769.3398c.8479.585 1.7784 1.1088 2.5684 1.1641.384.0266.8721.03 1.3476.0332-.8016-.2985-1.6473-.6634-1.6484-.664a.283.283 0 0 1 .2754-.4941c0-.0001.6207.2638 1.125.4765-.0686-.0675-.2598-.2325-.2598-.2325-.107-.1139-.096-.2975.0196-.4023.1145-.1022.2921-.0954.3964.0176 0 0 .6995.7482 1.545 1.1445.002.0004.0038.0016.0058.002a6.577 6.577 0 0 0 .414.0625c1.0815-.1395 2.1922-.5116 3.2286-1.0957-1.0215.269-2.1914.5312-2.1914.5312a.1.1 0 0 0-.002 0 .2883.2883 0 0 1-.3085-.2559c-.014-.1549.103-.2954.2578-.3105 0 0 2.0946-.2072 3.877-1.1484.14-.1492.2744-.3053.4062-.4747a.2842.2842 0 0 1 .4004-.0488.2852.2852 0 0 1 .0507.3946.1.1 0 0 0-.002 0c-.7874 1.011-1.7612 1.6542-2.7773 2.121.5848-.0786 1.2735-.1816 1.2735-.1816a.1.1 0 0 0 .002 0c.1481-.041.3048.0452.3495.1953a.1.1 0 0 0 .002.002c.0398.1478-.0482.308-.2012.3476-.0017.0005-1.1924.3264-2.6777.2813-.4131.3323-.8489.6142-1.2559.8437a.1.1 0 0 0-.002.002c-.0151.0082-.0577.0324-.0976.0547-.02.0111-.0388.022-.0566.0312-.0119.0061-.0234.0107-.0352.0156l-.0176.0079c-.8313.4413-1.5083.6694-1.5097.6699-.1477.05-.3116-.0313-.3594-.1797-.0231-.0702.0573-.107.086-.17-.5202.035-.9786.0313-.9786.0313-.1547-.0094-.2764-.144-.2675-.2988a.2872.2872 0 0 1 .3007-.2656.1.1 0 0 0 .002 0s1.2007.0708 2.5234-.3184c.188-.1025.3872-.2364.584-.3613-1.3545.235-2.687.2703-3.6777.209-.0143.014-.0263.0271-.0508.043a.1.1 0 0 0-.002 0c-.4167.2617-1.0355.4429-1.5547.5644-.519.1215-.9375.1816-.9375.1816a.1.1 0 0 1-.0058 0c-.1537.0121-.2921-.1043-.3066-.2578-.0143-.155.1025-.2947.2578-.3086 0 0 .4203-.1003.6582-.1426-.4234-.0393-1.0293-.0761-1.0293-.0761a.2893.2893 0 0 1-.2207-.336.1.1 0 0 0 0-.002.2892.2892 0 0 1 .3379-.2187.1.1 0 0 0 .002 0s.6503.0595 1.2382.086c-.5323-.2419-1.0724-.5157-1.5723-.8711a.1.1 0 0 0-.002-.002c-.0254-.0196-.0567-.0404-.0878-.0625-.0301.002-.0606.005-.0938.002a.1.1 0 0 1-.0039 0c-.463-.0598-1.0554-.2894-1.539-.504-.4836-.2144-.8555-.416-.8555-.416a.1.1 0 0 1-.0059-.0019c-.1343-.082-.1738-.2627-.0879-.3945a.2879.2879 0 0 1 .3868-.0899.1.1 0 0 0 .002.002s.5898.2572 1.0546.4629c-.6289-.558-1.3105-1.1895-1.3105-1.1895-.1067-.1133-.1037-.2937.0078-.4023a.1.1 0 0 1 .0039-.004.2832.2832 0 0 1 .2031-.0742zm14.0352 1.6192a.1.1 0 0 1 .0546.0273c.4204.4234.6387.7266.6387.7266a.1.1 0 0 1 .0059.0059l.0078.0156c.177.2983.318.6327.414.9804.0037.0045.0126.0125.0137.0137a.1.1 0 0 1 .0098.0117C25.4773 12.773 26 14.676 26 16.7187a.2845.2845 0 0 1-.2832.2833.2845.2845 0 0 1-.2832-.2832c0-1.5304-.329-2.9552-.957-4.2325-.0645.385-.1685.7504-.2676 1.1016-.106.374-.1828.7417-.1192 1.1543.084.5565.3522 1.0333.6504 1.5137.3159.5096.6639 1.0186.8672 1.6113.3991 1.161.1005 2.343-.0234 3.4746-.0172.1528-.1578.2658-.3106.25a.2797.2797 0 0 1-.252-.3105c.118-1.0998.4089-2.1913.0509-3.2305-.183-.5324-.509-1.0036-.8164-1.498-.1239-.2015-.2355-.4105-.3438-.6212-.6985 1.1133-.8509 2.2373-.7988 3.4141.0547 1.3654.335 2.7875.2168 4.295-.0117.1556-.149.2743-.3047.2616a.1.1 0 0 0-.002 0c-.1524-.0156-.2673-.1517-.2578-.3046a.1.1 0 0 0 0-.002c.1126-1.455-.163-2.8544-.2207-4.2266-.0584-1.384.119-2.7453 1.0899-4.08a3.3657 3.3657 0 0 1-.1075-.463c-.0756-.5082.0144-.9591.1348-1.3925.1116-.4.2476-.7818.293-1.1953.0663-.5888-.1341-1.2412-.4453-1.7715-.043-.0543-.225-.2913-.5743-.6406a.1.1 0 0 1 .004-.1446c.0879-.0822.1715-.1695.2597-.2578a.1.1 0 0 1 .086-.0273zm-14.586.0469a.1.1 0 0 1 .0742.043.4512.4512 0 0 0 .127.121l.002.002a.093.093 0 0 0 .0136.0058l.1192.0625a.1.1 0 0 1 .0253.1582c-.344.352-.5259.592-.5585.6348v.002c-.33.5356-.5073 1.1759-.4434 1.7675.0446.4133.1814.7932.293 1.1934.1203.433.2124.884.1367 1.3926a.1.1 0 0 0 0 .002c-.0248.1505-.062.299-.1055.4452.9825 1.3379 1.1661 2.7055 1.1055 4.0957-.0556 1.3725-.3352 2.7717-.2227 4.2266a.286.286 0 0 1-.2597.3086c-.1557.0127-.2934-.1078-.3028-.2637-.1177-1.5072.1592-2.9298.2168-4.2949.0493-1.183-.1039-2.3125-.8105-3.4316-.1096.217-.2205.4337-.3516.6386v.002c-.3064.4946-.6317.964-.8144 1.496-.3574 1.0387-.0702 2.1292.0507 3.2286.0194.1547-.0952.2951-.25.3105-.1537.0177-.2976-.0955-.3125-.25-.124-1.1308-.4255-2.3121-.0273-3.4726.2041-.5927.5541-1.1015.873-1.6113.2983-.4804.5644-.9572.6485-1.5137.0608-.4122-.0162-.7804-.1192-1.1543-.101-.3575-.2098-.728-.2734-1.1211-.6339 1.281-.9668 2.7134-.9668 4.252a.2845.2845 0 0 1-.2832.2832A.2845.2845 0 0 1 6 16.7188c0-2.0428.5247-3.9459 1.5723-5.541.0078-.0122.0175-.0226.0273-.0333a3.7931 3.7931 0 0 1 .4238-.9804.1.1 0 0 1 .0118-.0137l.0039-.004.0078-.0097c.0078-.011.1944-.2726.5722-.662a.1.1 0 0 1 .0801-.0313zm10.5098 2.543a.1.1 0 0 1 .0508.0077c.8187.3856 1.668.9362 2.541 1.6856.0848.0727.1134.1903.082.2969.0066.0523.0134.1059-.0078.1562a.1.1 0 0 1-.002.0059c-.2851.5718-.5283 1.2386-.4648 1.8515.0446.4215.1836.813.293 1.2227v.002c.12.4432.2122.9026.1367 1.4218-.0987.6679-.4016 1.2279-.7266 1.7656-.3073.507-.6352.993-.8183 1.541-.3579 1.0672-.0701 2.1875.0508 3.3145.0179.1533-.0973.2911-.25.3086-.1535.0175-.2953-.0944-.3106-.248-.124-1.1575-.4272-2.3684-.0293-3.5547.2039-.608.5522-1.13.8711-1.6543.2957-.4933.5662-.983.6504-1.5567.0228-.1539-.0068-.2932-.0156-.4375-.5669 1.8871-2.014 3.9317-4.4082 5.1993-.2805.1475-.2712.1472-.6309.205a.1.1 0 0 1-.0156.002h-.1153a2.2016 2.2016 0 0 1-.9257-.2031.1.1 0 0 0-.002 0c-2.4567-1.1373-3.9165-3.2498-4.4941-5.1622-.0052.1315-.031.2583-.0098.3965.085.575.3522 1.0647.6504 1.5567.3157.5248.666 1.047.8691 1.6543.3987 1.187.0963 2.3974-.0254 3.5547a.2847.2847 0 0 1-.3144.25.1.1 0 0 0-.002 0 .2862.2862 0 0 1-.25-.3067.1.1 0 0 0 .002-.002c.1209-1.1278.4098-2.2485.0527-3.3163-.1838-.548-.5137-1.0337-.8183-1.541h.002c-.3282-.5381-.631-1.0976-.7266-1.7657-.0763-.5188.0124-.9795.1328-1.4238.1115-.4088.2482-.8002.293-1.2227a.1.1 0 0 0 0-.002c.0668-.6122-.1792-1.2771-.461-1.8495a.1.1 0 0 0 0-.002c-.0254-.0526-.0215-.1106-.0137-.168-.0239-.0934-.007-.1939.0586-.2656a.1.1 0 0 0 0-.002s.5624-.6086 1.545-1.2265a.1.1 0 0 1 .1425.0352.4542.4542 0 0 0 .2363.207.1.1 0 0 1 .0157.1777c-.2308.1411-.4456.3068-.6621.4688 2.411-.4965 3.6704.2044 3.8496.3437l.0195.0137a.1.1 0 0 1 .004.004.3399.3399 0 0 1 .1054.1776.1.1 0 0 1 .002.0059c.0104.0627.1298.7997.205 1.6367.0376.4185.065.861.0606 1.2578-.0045.3969-.0367.7454-.1309.9903-.027.0705-.1053.088-.1719.1172-.0035.0053-.002.0143-.0058.0195l-.0059-.0098c-.0295.011-.0416.0506-.0742.0508a.1.1 0 0 1-.08-.1582c.0163-.0223.0455-.1004.0624-.2012.0169-.1007.0256-.2255.0313-.3535.0114-.256.0058-.5248.0058-.6719 0-.2355-.073-.6751-.164-1.1464-.0874-.4528-.1888-.9322-.2579-1.3262-.2337-.1575-1.5189-.8664-4.203-.0254.2805.605.5207 1.2857.453 1.959a.1.1 0 0 0 0 .002.1.1 0 0 0 0 .0019c-.038.293-.1032.5802-.1875.8633.1706 1.9728 1.7094 4.6248 4.498 5.914.2172.0992.45.1504.6915.1504h.0977c.2614-.0578.1895-.0447.418-.1504 2.7991-1.293 4.2491-3.9525 4.414-5.9316a.1.1 0 0 0 .002-.002c-.0815-.2765-.1442-.5596-.1797-.8457a.1.1 0 0 0 0-.002c-.0388-.3633.016-.73.1171-1.0859-.0056.0104-.011.021-.0175.0313-.0086.0135-.0184.0264-.0254.0371-.007.0107-.0153.0235-.0117.0176a.1.1 0 0 1-.0176.0234c-.3564.3242-.8572.306-1.291.2188.0153.0572.0387.1122.039.1718.004.3695-.2966.6732-.666.6758a.1.1 0 0 0-.002 0c-.3682-.004-.6655-.3075-.6601-.6758 0-.0625.0313-.1124.0469-.1699a9.8806 9.8806 0 0 0-.6153.0977.1.1 0 0 1-.082-.1758c.3058-.2574.6647-.4626 1.0605-.5606.1601-.0407.3199-.0665.4805-.0722a1.917 1.917 0 0 1 .4863.043c.3015.07.5746.1816.8536.2148.12.0147.1845-.0047.3164-.043a.1.1 0 0 0 .002 0l.0273-.0039.0449.0098.039.0351.0137.0352v.0176c.0827-.2729.1901-.539.3067-.791-.9752-.5303-1.859-.511-2.5352-.338-.6613.1692-1.1031.4808-1.2305.5782-.0796.2076-.116.4287-.0898.6465a.1.1 0 0 0 0 .002.1.1 0 0 0 0 .0019.1.1 0 0 0 0 .002.1.1 0 0 0 0 .0019.1.1 0 0 0 0 .002.1.1 0 0 0 0 .0019v.0176a.1.1 0 0 0 0 .002.1.1 0 0 0 0 .0019.2785.2785 0 0 1-.2559.2695.1.1 0 0 1-.0332-.002l-.0215-.0058.0293.002a.2802.2802 0 0 1-.287-.2461 1.9477 1.9477 0 0 1 .1503-.9844.1.1 0 0 1 .0059-.0117l.0215-.0352a.1.1 0 0 1 .0234-.0254l.0313-.0254c.0134-.0112.1056-.0874.2812-.1972a4.4278 4.4278 0 0 1 .7422-.3711c.4448-.1726 1.0587-.2332 1.7227-.1778a3.7676 3.7676 0 0 1 .3984.045c.0014.0002.0025.0017.0039.002.0078.001.0156.0006.0234.0019-.4643-.3143-.9405-.6117-1.453-.8399a.1.1 0 0 1-.0138-.1758c.118-.0757.239-.1571.3575-.2382a.1.1 0 0 1 .0488-.0157zm-8.5938 1.9882c-.0014.0005-.0025.0015-.0039.002.0017.0057.0014.0122.004.0175l.0058-.0058-.0059-.0137zm2.6387.6055c.1622.0047.3221.0292.4785.0722h.002c.3957.098.7552.3023 1.0605.5606a.1.1 0 0 1-.086.1738c-.202-.0418-.4066-.069-.6112-.0957.016.0575.0468.107.0468.17 0 .3722-.2958.6757-.662.6757-.3663 0-.6641-.3035-.6641-.6758 0-.0614.022-.115.037-.1718-.4334.0858-.9348.1035-1.289-.2207a.1.1 0 0 1-.0039-.002c-.0121-.012-.012-.0146-.0156-.0195-.0036-.005-.0076-.0098-.0117-.0157a.975.975 0 0 1-.0254-.039.4504.4504 0 0 1-.0254-.045c-.0038-.008-.0077-.0141-.0117-.037a.2902.2902 0 0 1-.002-.0235l.004-.0195.0097-.0254a7.94 7.94 0 0 1 .0234-.0273 7.622 7.622 0 0 1 .0332-.0196l.0293-.0039.0235.002a.1.1 0 0 1 .0078.002c.1277.0382.1925.0577.3125.0429.2782-.0332.552-.1448.8535-.2149a.1.1 0 0 0 .002 0c.1482-.0316.2996-.0411.4511-.039.0112.0002.022-.0043.0332-.004zm3.8027 3.8281a.1.1 0 0 1 .0547.0313.1.1 0 0 1 .0313.0722.1.1 0 0 1 .002.0059c.047.0666.1003.1335.0937.2168-.0174.211-.1855.381-.3965.3984a.1.1 0 0 0-.002 0 .3455.3455 0 0 1-.3007-.1406.1.1 0 0 1 0-.1211 2.5904 2.5904 0 0 0 .1035-.1426.4997.4997 0 0 1 .1914-.1953.1.1 0 0 0 0-.002 1.3857 1.3857 0 0 0 .1504-.1015.1.1 0 0 1 .0722-.0215zm-1.7187.0215a1.915 1.915 0 0 0 .1484.1015l.004.002a.5036.5036 0 0 1 .1874.1855l.004.004c.034.0538.065.1058.0996.1484a.1.1 0 0 1 .0019.123.3553.3553 0 0 1-.3027.1348.4324.4324 0 0 1-.3985-.3984.1.1 0 0 0 0-.002.3567.3567 0 0 1 .1309-.2969.1.1 0 0 1 .125-.002zm.2851 1.582c.1058-.0046.208.0287.3067.0899a.1.1 0 0 1 .0039.002.3646.3646 0 0 0 .1367.0566.1.1 0 0 1 .004-.002h.0254c.0477-.0101.095-.026.1347-.0547a.1.1 0 0 1 .0058-.0039c.099-.061.2019-.0924.3067-.0879.1048.0045.2055.0409.3183.0977.0983.0493.2135.0865.3125.1289.0495.0212.0956.0435.1368.0762.0411.0326.0816.0835.0859.1484.0048.0726-.0066.1681-.08.2305-.0735.0623-.172.0773-.3145.0742-.145-.0012-.2708-.0272-.3711-.043-.1004-.0158-.1672-.0166-.1993 0a1.2186 1.2186 0 0 1-.203.1192.1.1 0 0 1-.0157.0058.5084.5084 0 0 1-.2559 0 .1.1 0 0 1-.0156-.0058 1.1704 1.1704 0 0 1-.2012-.1192c-.033-.017-.0984-.0176-.1992-.002-.1008.0157-.2293.043-.377.045-.1466.0027-.2468-.0107-.3202-.0742-.0735-.0635-.0808-.1602-.0762-.2305.0051-.0648.0466-.116.0879-.1484.0412-.0325.0873-.0552.1367-.0762.0987-.042.212-.0782.3086-.127.1113-.0572.213-.0949.3183-.0996zm-.4003.7832c.1335.071.2732.1197.418.1406a.1.1 0 0 1 .0038 0c.1467.0257.291.041.4356.041.1495 0 .2974-.0105.4433-.0331a.1.1 0 0 0 0-.002 1.4232 1.4232 0 0 0 .42-.1328.1.1 0 0 1 .1328.1367c-.0097.0182-.034.0218-.045.039l.002.002c-.0019.001-.004.001-.0059.002-.097.151-.2252.2813-.3925.3457a1.4752 1.4752 0 0 1-.5547.1094c-.1888 0-.3774-.036-.5547-.1133l-.002-.002h-.002c-.1662-.066-.2896-.2002-.3827-.3515-.0032-.0016-.0067-.0022-.0098-.004l.004-.0019c-.0113-.0186-.0372-.0234-.047-.043a.1.1 0 0 1-.0097-.0449.1.1 0 0 1 .1465-.0879z"
/>
</svg>
<span>Demeter Farms</span>
</a>
</li>
<li>
<a
href="https://hermes-dao.io"
title="[invest in DAO fund]"
target="_blank"
>
<svg
xmlns="http://www.w3.org/2000/svg"
xml:space="preserve"
viewBox="0 0 32 32"
>
<path
fill="currentColor"
d="M16 4C9.3712 4 4 9.3712 4 16c0 6.6264 5.3712 12 12 12 6.6264 0 12-5.3736 12-12 0-6.6288-5.3736-12-12-12zm.0332 2.123a.1.1 0 0 1 .0059 0h.039a.1.1 0 0 1 .004 0s1.426.0756 3.1523.7305l.0078.002c.007.0025.0115.0038.0156.0058l.0059.002a.1.1 0 0 1 .0039.002c.676.259 1.398.6072 2.1015 1.0761a.1.1 0 0 1 0 .168c-.111.072-.216.1455-.3125.2187a.1.1 0 0 1-.1152.004c-.5466-.3535-1.1023-.623-1.6367-.8419l-1.1211 2.6407a.2837.2837 0 0 1-.1055.127l-1.912 1.2362a.1.1 0 0 1-.0079.004c.0007-.0007.0016-.0023.004-.004a.1.1 0 0 1-.0606.0215l-.004.002c-.027.009-.0538.021-.082.0215a.1.1 0 0 0-.002 0h-.0039c-.0266 0-.0545-.0113-.082-.0196l-.0058-.002h-.002a.1.1 0 0 1-.0644-.0253h-.002l-1.9062-1.1856a.1.1 0 0 0-.002 0 .2847.2847 0 0 1-.1074-.123L12.664 7.5234c-.5228.2154-1.0642.4767-1.5957.8164a.1.1 0 0 1-.1133-.0039 5.1288 5.1288 0 0 0-.3106-.2187.1.1 0 0 1 0-.168c2.5534-1.6846 5.3887-1.8262 5.3887-1.8262zm.0234.5625c-.0947.0055-1.3688.122-2.8632.6426l1.125 2.5469 1.6875 1.0488 1.6914-1.0937 1.082-2.539c-.736-.2578-1.415-.4193-1.9004-.502a9.48 9.48 0 0 0-.6035-.084 6.5421 6.5421 0 0 0-.164-.0156c-.0185-.0015-.0319-.0034-.041-.004-.0038-.0002-.0057.0002-.0079 0h-.0059zm-7.7265.5079a.1.1 0 0 1 .0156.0058v-.0039c2.1388.5649 3.1588 1.4803 3.6309 2.2793.4103.6942.3985 1.283.3886 1.4219a.1.1 0 0 1-.0234.0566c-.0078.0092-.0078.0121-.0059.0078a.1.1 0 0 0-.002 0s-.1357.3048-.3573.6075a.1.1 0 0 1-.0059.0078l-.2734.3144a.1.1 0 0 1-.0059.0059c-.1185.1108-.254.2054-.4101.2383a.1.1 0 0 1-.0079.002c-.034.004-.0638.0051-.0898.0077l-.0195.004a.1.1 0 0 1-.0059 0c-1.1876.1185-1.957-.1514-2.4453-.545-.515-.4151-.705-.9524-.7734-1.246a.1.1 0 0 1 .127-.1192l.1327.041a.1.1 0 0 1 .0488.0352c.2082.2686.5172.5074.9825.6523.0202.0063.0384-.0025.0449-.0234a.0383.0383 0 0 0-.0254-.047c-.4357-.136-.7401-.368-.9434-.6288a.1.1 0 0 1-.0117-.0215c-.0037-.0086-.0061-.0087-.0097-.0117a.1.1 0 0 1-.0176-.0196c-.343-.478-.3735-1.031-.3653-1.3086a.1.1 0 0 1 .1329-.0898l.6425.2344a.1.1 0 0 1 .043.0293c.3124.3739.7865.7555 1.5078 1.0879a.037.037 0 0 0 .0488-.0196c.0077-.019.0012-.0381-.0175-.0468-1.0054-.4634-1.5407-1.0308-1.8086-1.5547-.281-.5496-.2626-1.0367-.2305-1.2676l.0156.0215a.1.1 0 0 1 .0938-.1074zm15.3262.002a.1.1 0 0 1 .121.0702.1.1 0 0 1 .002.0137c.0322.2315.0485.7182-.2324 1.2676-.2671.5238-.8005 1.0913-1.8067 1.5547-.0184.0086-.025.028-.0175.0468.0094.0202.0307.0279.0488.0196.721-.3324 1.1946-.714 1.5078-1.088a.1.1 0 0 1 .043-.0292l.6425-.2344a.1.1 0 0 1 .1348.0899c.0084.2777-.0248.8306-.3672 1.3085a.1.1 0 0 1-.0195.0196c-.0047.0036-.0064.006-.0098.0136a.1.1 0 0 1-.0117.0196c-.2038.261-.5068.493-.9434.6289a.0369.0369 0 0 0-.0234.0469.037.037 0 0 0 .0469.0234c.4654-.145.7707-.3836.9785-.6523a.1.1 0 0 1 .0508-.0352l.1347-.041a.1.1 0 0 1 .127.1191c-.068.294-.2583.831-.7734 1.2461-.4882.3936-1.2574.6635-2.4454.545l-.1152-.0118a.1.1 0 0 1-.0117-.002c-.1562-.0328-.2897-.1274-.4082-.2382a.1.1 0 0 1-.0078-.0059l-.2735-.3144a.1.1 0 0 1-.0058-.0078c-.2187-.3-.3532-.5964-.3555-.6016-.006-.0113-.0057-.0135-.0058-.0137a.1.1 0 0 1-.0235-.0566c-.0099-.1388-.0217-.7277.3887-1.4219.4719-.799 1.4918-1.7144 3.6308-2.2793zm.3359 3.7148a.1.1 0 0 1 .1035.084.2947.2947 0 0 1 .004.0488v8.9004a3.7728 3.7728 0 0 1-1.7071 3.1582C20.688 24.2149 18.291 25.83 18.291 25.83a.1.1 0 0 0 0 .002.2849.2849 0 0 1-.289.0116.2808.2808 0 0 1-.1465-.248V23.793c-.874.5324-1.675.6762-2.3242.5996-.6244-.0737-1.0632-.3278-1.3848-.5371v1.7402a.2826.2826 0 0 1-.1485.248.2812.2812 0 0 1-.287-.0117.1.1 0 0 0-.002-.002s-2.395-1.615-4.0996-2.7284a3.7732 3.7732 0 0 1-1.709-3.1582V11.043a.1.1 0 0 1 .0039-.0293l.0078-.0254a.1.1 0 0 1 .1836-.0176c.085.1574.1944.3211.3398.4766a.1.1 0 0 1 .0274.0683v8.4278a3.208 3.208 0 0 0 1.455 2.6855l3.666 2.4434v-6.0684c-1.0854-.043-1.8762-.3704-2.416-.8672-.5582-.5138-.8616-1.1875-1.0214-1.8515-.3196-1.328-.0664-2.6348-.0664-2.6348a.1.1 0 0 0 .002-.002c.0004-.0022.003-.0108.0038-.0156a.296.296 0 0 1 .207-.3203 7.5907 7.5907 0 0 1 2.2012-.3242 7.575 7.575 0 0 1 2.6856.4902c.1534.0578.232.2319.1719.3828l.0078-.037v.0116a.1.1 0 0 0 0 .002l-.0782 4.0234.7676.4864.7676-.4864-.0762-4.0234a.1.1 0 0 0 0-.002.302.302 0 0 1 .004-.0488c-.014-.129.055-.2586.1796-.3086a6.8255 6.8255 0 0 1 2.543-.4902c.7225 0 1.4207.113 2.08.3242.1073.0342.1774.128.1954.2324.0231.0335.0413.0702.0488.1113 0 0 .231 1.3108-.0898 2.6329-.1985.8134-.6075 1.6358-1.3985 2.164-.474.3167-1.1078.503-1.8847.541v6.0782l3.664-2.4434a.1.1 0 0 0 .002 0 3.2089 3.2089 0 0 0 1.455-2.6855v-8.4297a.1.1 0 0 1 .0255-.0684 2.313 2.313 0 0 0 .3457-.4824l.0039.0059a.1.1 0 0 1 .078-.0586zm-2.25 2.6347c-.0062-.0089-.0104-.0192-.0176-.0273l.0254.0625c-.0006-.0122-.0058-.0232-.0078-.0352zm-4.998.2422c.001.0098-.0002.0195.0019.0293v-.041c-.0008.004-.0013.0077-.002.0117zm-6.6583-.1543c.0017.013-.0016.0261.002.039l.002-.0585c-.0037.0106-.003.0136-.004.0195zm2.4082-.0527c-.6455 0-1.2668.0972-1.8613.2617-.0346.1957-.2212 1.298.0762 2.4023.1529.568.4305 1.119.914 1.5293.4835.4104 1.1769.6856 2.1817.6856.0124 0 .017.0027.0254.0039.008-.0016.0168-.004.0351-.004.1544 0 .2813.127.2813.2813v4.4512c.1667.1448.6806.5498 1.4512.6406.616.0728 1.3831-.0665 2.2578-.6953v-4.3965a.2825.2825 0 0 1 .2812-.2812c.0055 0 .0132.0016.0195.002h.004a.169.169 0 0 1 .0234 0c.7825 0 1.367-.185 1.8066-.4786.6565-.4386.9944-1.1275 1.1641-1.8261.2586-1.0624.1173-2.0865.084-2.3106-.5655-.1675-1.1568-.2656-1.7715-.2656-.7596 0-1.4862.1467-2.166.3984l-.0781 3.9922a.201.201 0 0 1-.0977.1738.1.1 0 0 0-.002 0l-.9335.541c-.0398.024-.0825.0027-.125-.0058-.0506.0198-.106.0362-.1563.0058l-.9336-.541a.1.1 0 0 0-.002 0 .201.201 0 0 1-.0956-.1718l-.0762-3.9922c-.7245-.2544-1.4975-.4004-2.3067-.4004zm.3008.7344a2.2586 2.2586 0 0 1 .166.002c.0683-.0036.739-.0146 1.4512.6523a.1.1 0 0 0 .002.0019c.057.0566.0665.1492.0136.2148a.1.1 0 0 0-.002.002.162.162 0 0 1-.2148.0293c-.008-.0055-.0304-.008-.039-.0137.203.1345.4053.2083.5937.463a.1612.1612 0 0 1-.0195.2109c-.0566.0544-.1385.0535-.1992.0136a.1.1 0 0 1-.0157-.0058l-.0097-.0098c-.1415-.1038-.476-.2637-.8438-.371.0044.0316.0196.0587.0196.0917 0 .4092-.3347.7422-.7442.7422-.4087 0-.7422-.3332-.7422-.7422 0-.0094.0036-.018.004-.0273-.2474.0767-.5247.1708-.8204.3593a.162.162 0 0 1-.207-.0273c-.0526-.0588-.052-.1523-.002-.211a.1.1 0 0 0 .002-.0019c.1093-.1217.3344-.3416.6113-.5371-.1429.0783-.227.0738-.3925.1973a.1623.1623 0 0 1-.213-.0157.1614.1614 0 0 1-.0136-.211.1.1 0 0 1 .0058-.0058l.004-.0039.002-.002c.2048-.2412.7458-.7705 1.6034-.7948zm6.1446 0a2.2587 2.2587 0 0 1 .166.002c.0678-.0035.739-.0146 1.4511.6523.0615.0588.0636.1548.0137.2167a.1.1 0 0 0-.002.002c-.051.0604-.1459.075-.2128.0293-.008-.0055-.0305-.008-.039-.0137.203.1345.4053.2083.5937.463a.1612.1612 0 0 1-.0196.2109.1.1 0 0 0-.002.002.1609.1609 0 0 1-.207.0077c-.1355-.1015-.4794-.2712-.8593-.3828.0042.0315.0195.0592.0195.0918 0 .4094-.3354.7422-.7441.7422-.4088 0-.7422-.3332-.7422-.7422 0-.0094.0035-.018.0039-.0273-.2466.0766-.5233.1715-.8184.3593-.0648.0432-.1537.0305-.207-.0293-.0493-.0565-.0555-.1484-.004-.209a.1.1 0 0 0 .002-.0019c.1098-.1218.3375-.3413.6153-.5371-.1438.0786-.2298.073-.3965.1973-.0642.0488-.1542.04-.211-.0157-.057-.057-.0574-.1468-.0136-.207a.1.1 0 0 1 .0039-.0098c.2022-.2393.747-.7763 1.6094-.8007zm-6.1211.4296c-.0615.0016-.1535.0108-.2793.0391-.0822.0184-.205.085-.332.1563.2153-.1026.4526-.1761.7109-.1895-.0074-.0012-.0382-.0074-.0996-.0059zm6.1445 0c-.061.0016-.1516.0108-.2774.0391-.0815.0183-.2035.084-.33.1543.2143-.1013.4502-.1742.707-.1875-.0074-.0012-.0387-.0074-.0996-.0059zm-3.834 4.295a.1.1 0 0 1 .125 0c.0501.0396.104.0761.1602.1093a.6442.6442 0 0 1 .1132.086.1.1 0 0 1 .004.0039.7029.7029 0 0 1 .082.1094c.0356.0567.075.1112.1152.164a.1.1 0 0 1-.002.123.3676.3676 0 0 1-.3183.1387c-.2228-.015-.4-.1933-.416-.416-.0097-.1213.039-.2415.1367-.3183zm1.8828 0a.1.1 0 0 1 .123 0 .3645.3645 0 0 1 .1407.3183.4399.4399 0 0 1-.1309.2871.4509.4509 0 0 1-.287.1309.366.366 0 0 1-.3165-.1426.1.1 0 0 1 0-.121c.04-.0521.0782-.1053.1113-.1602a.1.1 0 0 0 0-.002.6602.6602 0 0 1 .084-.1094.1.1 0 0 1 .004-.0039.5781.5781 0 0 1 .1113-.086 1.7684 1.7684 0 0 0 .1601-.1112zm-.4023 2.0312c.1871.0085.3843.057.537.0723.1042.0105.1398-.0051.131 0a.1.1 0 0 1 .0038 0 .1.1 0 0 1 .168.0586s.0004.0179-.002.0293a.117.117 0 0 1-.0136.0351c-.002.0033-.0056.0047-.0078.0078 0 0-.0086.0097-.0215.0235l-.002.002c-.0008.0008-.005.001-.0058.0019-.0071.0054-.0118.0135-.0195.0176-.006.0032-.0193-.0007-.0254.002-.0673.0657-.174.1679-.3711.1679H15.127c-.2063 0-.2585-.0939-.3223-.1582-.0032-.0008-.0107.0007-.0137 0a.3264.3264 0 0 1-.0664-.0235c-.0163-.0083-.0332-.0214-.0332-.0214l.0078-.0059c-.0009-.0011-.0234-.0117-.0234-.0117a.1.1 0 0 1 .1465-.1348s-.0084-.0052-.0059-.0039a.1676.1676 0 0 0 .0254.0078c.0297.0076.0884.0159.1875.0059.1525-.0153.3519-.0605.5371-.0703.0627-.0032.1241-.0027.1816.0058.1828.0271.2735.0782.3047.0938.0287-.0097.1838-.0655.375-.0938a.9493.9493 0 0 1 .1817-.0078zm-1.1543.5938.211.0605a.2094.2094 0 0 0 .0507.0078l.336.0098.3359-.0098a.1.1 0 0 0 .002 0 .2107.2107 0 0 0 .0507-.0078l.211-.0605a.1.1 0 0 1 .1054.1562l-.0937.1211a.1.1 0 0 0 0 .002c-.0932.1182-.2377.1875-.3926.1875h-.4356c-.1548 0-.2993-.0693-.3925-.1875a.1.1 0 0 0-.002-.002l-.0937-.121a.1.1 0 0 1 .1074-.1563z"
/>
</svg>
<span>Hermes DAO</span>
</a>
</li>
<li>
<a
href="https://tools.cerestoken.io"
title="[analyze Sora]"
target="_blank"
>
<svg
xmlns="http://www.w3.org/2000/svg"
xml:space="preserve"
viewBox="0 0 32 32"
>
<path
fill="currentColor"
d="M16 4C9.3712 4 4 9.3712 4 16c0 6.6264 5.3712 12 12 12 6.6264 0 12-5.3736 12-12 0-6.6288-5.3736-12-12-12zm0 3.0996c5.1093 0 9.2598 4.093 9.2598 9.2031 0 .1565-.006.3124-.0137.4668.1514.1606.3265.3537.4785.5508.1611.209.2959.4129.3457.5977.1186.4444-.1452.9044-.5898 1.0234-.4439.119-.904-.1475-1.0235-.5918-.0484-.1813-.0353-.4197-.002-.6758.0316-.2414.0847-.4911.1348-.705-.002-.0038-.0038-.0064-.0058-.0098-.871-1.7588-3.0444-2.7198-3.4395-2.8828-.5222 2.4583.6539 4.9233 2.791 6.0898.1292.0712.1785.2369.1075.3672-.0716.129-.2374.1783-.3672.1074-1.2095-.6602-2.1348-1.7023-2.6738-2.9238-.012.056-.0221.1121-.0352.168a8.179 8.179 0 0 1-.2422.8379 7.3727 7.3727 0 0 1-.3437.8222 7.5424 7.5424 0 0 1-.2422.4473c.4172.9806 1.1376 1.8117 2.0527 2.3828.1258.0783.1645.2474.086.373a.2726.2726 0 0 1-.3731.086 5.791 5.791 0 0 1-2.1133-2.3203 6.778 6.778 0 0 1-1.7129 1.662 6.3175 6.3175 0 0 0 1.2344 2.2813c.0955.1128.0821.2838-.0313.379a.2734.2734 0 0 1-.3808-.0313.1.1 0 0 0-.002 0c-.5758-.6801-1.0158-1.4744-1.293-2.3399-.8326.4682-1.4984.6262-1.5468.6368a.1.1 0 0 1-.0078 0l-.0332.0058a.1.1 0 0 1-.0117 0h-.0137a.1.1 0 0 1-.004 0 .282.282 0 0 1-.0487-.0058c-.0457-.0101-.711-.1675-1.543-.6348a6.8512 6.8512 0 0 1-1.295 2.3379c-.0956.113-.2673.1264-.3808.0312a.2693.2693 0 0 1-.0332-.3789 6.3221 6.3221 0 0 0 1.2344-2.2812 6.767 6.767 0 0 1-1.7168-1.664 5.7924 5.7924 0 0 1-2.1133 2.3222.2726.2726 0 0 1-.373-.086c-.0786-.1256-.0399-.2947.0859-.373.9165-.572 1.6383-1.4045 2.0547-2.3867-.3698-.6299-.6701-1.3879-.8594-2.2813-.532 1.2111-1.4445 2.247-2.6348 2.9102-.0136.0072-.0287.0147-.0449.0234a.2716.2716 0 0 1-.125.0332.1.1 0 0 0-.002 0h-.0019a.269.269 0 0 1-.2363-.1406.2695.2695 0 0 1-.0313-.1719.278.278 0 0 1 .0469-.1133.1.1 0 0 1 .004-.0058l.0019-.002.002-.0039a.263.263 0 0 1 .039-.039.1.1 0 0 1 .0078-.0078l.0293-.0196a.1.1 0 0 1 .0098-.0039c.0173-.0092.0343-.019.0527-.0293l.0488-.0273.0684-.041.0761-.045c.016-.0099.0318-.0207.0489-.0312l.0332-.0215.0722-.0469a.1.1 0 0 0 .002-.002.9662.9662 0 0 0 .0215-.0136l.0762-.0508a5.4724 5.4724 0 0 0 .125-.0898l.0976-.0742.0469-.0352.0703-.0566.0371-.0313c.0217-.018.0428-.0344.0645-.0527a5.0404 5.0404 0 0 0 .1328-.1172l.0508-.0469c1.137-1.0586 1.8061-2.5652 1.7949-4.1523-.0022-.3721-.049-.7482-.129-1.125-.3957.1632-2.5714 1.1227-3.4413 2.8828-.0018.0036-.0021.0045-.004.0078.0499.214.103.465.1348.707.0336.2564.047.494-.002.6758-.1194.4444-.5795.711-1.0234.5918-.4446-.119-.7103-.579-.5918-1.0234.0499-.1845.185-.389.3457-.5977.1517-.1969.3271-.3882.4786-.5488a9.4505 9.4505 0 0 1-.0137-.4688c0-5.11 4.1524-9.203 9.2617-9.203zm-.2969.5508c-4.6257.1537-8.3351 3.8574-8.416 8.5 1.187-1.7062 3.36-2.5802 3.4902-2.6309 2.128-.8986 3.3612-2.3653 4.0664-3.623.6517-1.1623.8273-2.0677.8594-2.2461zm.5918 0c.0322.1784.2076 1.0838.8594 2.246.705 1.2574 1.9375 2.7225 4.0645 3.6212l.0019.002c.1262.0493 2.3034.9242 3.4902 2.6308-.0808-4.6426-3.7902-8.3462-8.416-8.5zM16 8.5664c-.4252 1.2787-1.4855 3.5014-4 4.9473.3089-.048.6219-.0782.9434-.0782.793 0 1.554.1516 2.2558.4278a.2704.2704 0 0 1 .1485.1406.1.1 0 0 1 .002.004.2873.2873 0 0 1 .0136.0429 6.1926 6.1926 0 0 1 .2519 1.8769c-.0074.3222-.0369.6371-.0918.9453a6.1033 6.1033 0 0 1-.2382.9141.1458.1458 0 0 1-.1817.0938.1438.1438 0 0 1-.0937-.1797 5.7114 5.7114 0 0 0 .164-.877 5.7512 5.7512 0 0 0 .0274-.8906 5.6642 5.6642 0 0 0-.1114-.8809c-.0514-.2501-.1221-.4921-.205-.7285a5.5976 5.5976 0 0 0-1.9414-.3476h-.0137a5.6194 5.6194 0 0 0-.957.084c-.185.0323-.366.0768-.545.1269.084.4799.1148.9601.086 1.4297-.0025.035-.0054.0706-.0078.1055l-.0059.0586a.1.1 0 0 0 0 .0019l-.0059.0742-.0078.0664a.1.1 0 0 0 0 .002 6.1797 6.1797 0 0 1-.0215.1738l-.002.004c-.0012.011-.0018.019-.0019.0194a.1.1 0 0 1-.002.004c-.0065.044-.012.0876-.0194.1328a.1.1 0 0 0 0 .002 6.8599 6.8599 0 0 1-.0704.3495v.0059c.2314 2.4051 1.2927 3.8619 2.3477 4.7383 1.035.8598 2.057 1.1537 2.2832 1.211.226-.0573 1.2463-.3512 2.2813-1.211 1.0548-.8764 2.1161-2.3335 2.3476-4.7383v-.0059c-.179-.7777-.206-1.5994-.0625-2.4238-.4833-.1353-.9884-.211-1.5117-.211a5.6019 5.6019 0 0 0-2.0332.381c-.0503.0338-.1083.0937-.1504.16-.0433.0684-.0684.1415-.0684.1876 0 .0647-.0208.127-.0644.164-.0437.0372-.0933.0391-.1192.0391-.0482 0-.0905-.0244-.1171-.0508-.0267-.0264-.0417-.0559-.0547-.086a.4671.4671 0 0 1-.0391-.1855c0-.146.0137-.278.0664-.3984.0528-.1205.147-.2224.2852-.3047a.1.1 0 0 0 0-.002.2758.2758 0 0 1 .0586-.0253 6.142 6.142 0 0 1 2.2363-.42c.321 0 .6347.0304.9433.0782C17.484 12.0678 16.4247 9.845 16 8.5664zm.0059 1.3516a.1.1 0 0 1 .08.041s.1139.1577.2286.3496c.0573.096.1155.1998.1601.3008.0446.101.0781.1966.0781.291v.0273c0 .0944-.0335.1901-.078.291-.0447.101-.103.205-.1602.3008a5.4439 5.4439 0 0 1-.2286.3496.1.1 0 0 1-.162 0s-.114-.1577-.2286-.3496c-.0573-.0959-.1155-.1998-.1601-.3008-.0446-.1009-.0782-.1966-.0782-.291v-.0273c0-.0944.0336-.19.0782-.291.0446-.101.1028-.2049.1601-.3008a5.4416 5.4416 0 0 1 .2285-.3496.1.1 0 0 1 .082-.041zm-1.129 1.5488a.1.1 0 0 1 .047.0078s.1838.0828.3866.1973c.1015.0572.2083.123.3008.1914.0925.0683.1722.1364.2207.2207l.0157.0254c.0482.0843.0655.188.078.3027.0126.1147.017.2405.0157.3574-.0028.234-.0234.4356-.0234.4356a.1.1 0 0 1-.1407.082s-.1858-.0847-.3886-.1992c-.1015-.0572-.2063-.1211-.2989-.1895-.0925-.0683-.1721-.1364-.2207-.2207a.1.1 0 0 0-.002-.002c-.0024-.0042-.0036-.0077-.0058-.0116a.8362.8362 0 0 1-.0078-.0137c-.0483-.0844-.0675-.1861-.08-.3008-.0127-.1146-.0151-.2405-.0137-.3574.0028-.234.0234-.4356.0234-.4356a.1.1 0 0 1 .0938-.0898zm2.2442 0a.1.1 0 0 1 .0957.0898s.0205.2017.0234.4356c.0015.117-.001.2427-.0136.3574-.0127.1147-.0315.2164-.0801.3008l-.0156.0254a.1.1 0 0 0 0 .002c-.0486.0842-.1283.1523-.2207.2206-.0925.0684-.1975.1323-.2989.1895-.2026.1145-.3867.1992-.3867.1992a.1.1 0 0 1-.1406-.082s-.0224-.2017-.0254-.4356a3.0322 3.0322 0 0 1 .0156-.3574c.0125-.1145.03-.2164.0781-.3008.0064-.011.0088-.0154.0079-.0136l.0078-.0137c.0483-.0845.1282-.1524.2207-.2207.0924-.0684.1994-.1342.3008-.1914.2027-.1145.3867-.1973.3867-.1973a.1.1 0 0 1 .0449-.0078zm-4.3008 3.1016a.1.1 0 0 1 .045.1855c-.151.091-.235.1632-.2755.2129-.0403.0497-.036.0658-.0351.0684.0003.0013.0072.0043.0117.0078.531-.4095 1.1131-.3553 1.5488-.1895.4522.172.7676.457.7676.457a.1.1 0 0 1-.0898.172c-.1989-.048-.3511-.068-.5157-.0958a.1.1 0 0 1 .1036.0528c.0056.0126.0035.0259.0078.039.013.0399.0254.0804.0254.123 0 .1504-.0851.2829-.207.3712-.122.0882-.2814.1386-.4571.1386-.1757 0-.337-.0504-.459-.1386-.122-.0883-.207-.2208-.207-.3711 0-.102.0462-.1906.1094-.2676-.1457.0268-.2545.0635-.3106.1055-.1004.0751-.0891.1283-.0644.166.1316.2012.328.3537.5586.4355a.1.1 0 0 1-.0293.1953c-.834.0276-1.2349-.205-1.4102-.4687-.175-.2635-.1133-.5403-.1133-.541.0732-.3524.3352-.5268.5625-.5996.2275-.073.4336-.0586.4336-.0586zm6.3574 0s.208-.0144.4356.0586c.2274.0729.4894.2468.5625.5996.0003.0015.0595.278-.1153.541-.1752.2638-.5746.4963-1.4082.4687a.1.1 0 0 1-.0312-.1953c.2305-.0818.4268-.2342.5586-.4355.0247-.0377.036-.0909-.0645-.166-.056-.042-.1648-.0787-.3105-.1055.0631.077.1094.1656.1094.2676 0 .1503-.0853.2828-.207.371-.1219.0883-.2818.1387-.4571.1387-.1757 0-.3369-.0504-.459-.1386-.122-.0883-.207-.2206-.207-.3711a.4186.4186 0 0 1 .0332-.1621.1.1 0 0 1 .1015-.0528c-.1641.0278-.3153.0479-.5136.0957a.1.1 0 0 1-.0899-.1719s.3154-.285.7676-.457c.4357-.1658 1.018-.22 1.5488.1895.0045-.0035.0118-.0065.0118-.0078.0005-.0026.0052-.0187-.0352-.0684-.0404-.0497-.1245-.122-.2754-.2129a.1.1 0 0 1 .045-.1855zm-1.4257.8398a.1.1 0 0 1 .0566.0703v.004c0 .0085.0055.0212.0273.037.0218.0158.0578.0293.1016.0293.0433 0 .0818-.0135.1035-.0293.0217-.0158.0254-.0285.0254-.037 0-.0086-.0037-.0214-.0254-.0372-.0217-.0158-.0603-.0293-.1035-.0293a.189.189 0 0 0-.084.0195.1.1 0 0 1-.1015-.0273zm-3.6915.0078c-.0437 0-.0817.0135-.1035.0293-.0217.0158-.0254.0286-.0254.0371 0 .0086.0036.0213.0254.0371s.0598.0293.1035.0293c.0433 0 .0818-.0135.1036-.0293.0217-.0158.0254-.0285.0254-.037v-.004a.1.1 0 0 1 .037-.045.1.1 0 0 1-.082.002.193.193 0 0 0-.084-.0195zm-7.119 1.9492c-.0385.0437-.0757.0838-.1134.129-.1776.2128-.3439.4405-.377.5644a.2938.2938 0 0 0 .209.3613.2949.2949 0 0 0 .3614-.209c.033-.1242.0029-.4028-.045-.6757-.01-.058-.0236-.1129-.035-.17zm18.117 0c-.0114.057-.025.112-.035.17-.0479.2729-.078.5515-.045.6757a.2949.2949 0 0 0 .3613.209.2938.2938 0 0 0 .209-.3613c-.033-.124-.1993-.3516-.377-.5645-.0376-.045-.0748-.0852-.1132-.1289zm-9.8534.959a.1.1 0 0 1 .125 0c.0447.0351.092.067.1406.0957a.5638.5638 0 0 1 .0996.0762.1.1 0 0 1 .0059.0059.6082.6082 0 0 1 .0742.0976c.0313.0502.063.0967.0976.1426a.1.1 0 0 1 0 .123.3341.3341 0 0 1-.289.127.41.41 0 0 1-.379-.379.337.337 0 0 1 .125-.289zm1.4629 0a.1.1 0 0 1 .125 0 .3365.3365 0 0 1 .125.289c-.0142.2023-.1751.3648-.377.379a.3372.3372 0 0 1-.291-.127.1.1 0 0 1 0-.123 1.9143 1.9143 0 0 0 .0977-.1426.6195.6195 0 0 1 .0761-.0976.1.1 0 0 1 .004-.006.5639.5639 0 0 1 .0995-.076 1.305 1.305 0 0 0 .1407-.0958zm-1.1035 1.4863c.0986-.0036.1946.0247.289.0782a.1.1 0 0 1 .0059.0039.3344.3344 0 0 0 .1367.0508.1.1 0 0 1 .0039 0 .1.1 0 0 0 .002 0 .3273.3273 0 0 0 .1367-.0508.1.1 0 0 1 .0058-.004c.0942-.0533.1909-.0817.289-.078.0983.0036.194.0361.3009.0859.0919.0427.1997.074.293.1113.0466.0187.0893.039.1288.0684.0396.0293.081.077.086.1406.005.0654-.0086.159-.08.2148-.0715.056-.1629.0685-.297.0664-.0063 0-.0113-.0017-.0175-.002a.1.1 0 0 1 .0605.1368c-.0864.1876-.227.3361-.4023.416-.1606.0785-.3335.1201-.5079.1192a1.1132 1.1132 0 0 1-.5117-.123c-.1757-.082-.3154-.2372-.3965-.4298a.1.1 0 0 1 .045-.1172c-.1376.0021-.2292-.0113-.3008-.0683a.2078.2078 0 0 1-.0703-.1074.3147.3147 0 0 1-.0078-.1055c.005-.064.0462-.1114.0859-.1406.0397-.0293.0842-.0498.1309-.0684.0932-.0372.2011-.0688.291-.1113.106-.05.2021-.0824.3008-.086zm-.4297.6875a.1.1 0 0 1 .1015-.0058c.1154.0736.2407.1244.3692.1484a.1.1 0 0 0 .002 0c.129.027.2592.041.3905.041a1.972 1.972 0 0 0 .3907-.037.1.1 0 0 1 .0039 0 1.0683 1.0683 0 0 0 .373-.1387.1.1 0 0 1 .0801-.0098c-.1268-.004-.2407-.0261-.33-.039-.093-.0135-.1553-.0113-.1837.0019a1.2156 1.2156 0 0 1-.1953.1035.1.1 0 0 1-.0156.0059.4995.4995 0 0 1-.2383 0 .1.1 0 0 1-.0137-.004 1.1015 1.1015 0 0 1-.1933-.1054c-.0287-.014-.093-.0156-.1875-.002-.0946.0137-.2144.039-.3535.041z"
/>
</svg>
<span>Ceres Tools</span>
</a>
</li>
<li>
<a
href="https://github.com/shlavik/sora-qty"
title="[fork me on GitHub]"
target="_blank"
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill-rule="evenodd"
viewBox="0 0 32 32"
>
<path
d="M16 4C9.371 4 4 9.371 4 16c0 5.3008 3.4375 9.8008 8.207 11.3867.6016.1094.8203-.2578.8203-.5781 0-.2852-.0117-1.039-.0156-2.039-3.3398.7226-4.043-1.6094-4.043-1.6094-.5468-1.3868-1.332-1.7579-1.332-1.7579-1.0898-.7421.082-.7265.082-.7265 1.2032.086 1.836 1.2344 1.836 1.2344 1.0703 1.8359 2.8086 1.3046 3.4922 1 .1093-.7774.4218-1.3047.7617-1.6055-2.664-.3008-5.4649-1.332-5.4649-5.9297 0-1.3125.4688-2.3828 1.2344-3.2227-.121-.3007-.5351-1.5234.1172-3.1757 0 0 1.0078-.3203 3.3008 1.2304.957-.2656 1.9844-.3984 3.0039-.4023 1.0195.0039 2.0469.1367 3.004.4023 2.2929-1.5508 3.2968-1.2304 3.2968-1.2304.6562 1.6523.246 2.875.121 3.1757.7696.8399 1.2305 1.9102 1.2305 3.2227 0 4.6094-2.8046 5.621-5.4765 5.9219.4297.3672.8125 1.1015.8125 2.2187 0 1.6055-.0117 2.8985-.0117 3.293 0 .3203.2148.6953.8242.5781C24.5664 25.797 28 21.3007 28 16c0-6.629-5.371-12-12-12Z"
fill="currentColor"
/>
</svg>
<version>1.22.0</version>
</a>
</li>
</ul>
</dropdown>
</overlay>
</h2>
</header>
<content></content>
<screen></screen>
</app>
<noscript>You need to enable JavaScript to use this site</noscript>
<script type="module" src="./client.js"></script>
</body>
</html>