forked from igorek17000/thecoinwar.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1822 lines (1752 loc) · 86.5 KB
/
Copy pathindex.html
File metadata and controls
1822 lines (1752 loc) · 86.5 KB
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
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<title>COINWAR</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Omicron B.9 eradicated 83% of the population in 2022 resulting in collapse of all fiat currency and the start of The Coin War.">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@coinwarapp">
<meta name="twitter:creator" content="@coinwarapp">
<meta name="twitter:title" content="COINWAR">
<meta name="twitter:description"
content="Omicron B.9 eradicated 83% of the population in 2022 resulting in collapse of all fiat currency and the start of The Coin War.">
<meta name="twitter:image" content="https://coinwar.app/img/1024.png">
<meta property="og:type" content="profile" />
<meta property="og:title" content="COINWAR" />
<meta property="og:description"
content="Omicron B.9 eradicated 83% of the population in 2022 resulting in collapse of all fiat currency and the start of The Coin War." />
<meta property="og:url" content="https://coinwar.app" />
<meta property="og:image" content="https://coinwar.app/img/1024.png" />
<link rel="icon" href="img/favicon.ico" sizes="any">
<link rel="icon" href="img/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="img/apple-touch-icon.png" />
<link rel="mask-icon" href="img/safari-pinned-tab.svg" color="#ffc40d">
<link rel="apple-touch-startup-image" href="img/1024.png">
<link rel="manifest" href="manifest.json">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="COINWAR">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="application-name" content="COINWAR">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"
defer async></script>
<script type="module">
import 'https://cdn.jsdelivr.net/npm/@pwabuilder/pwaupdate';
const el = document.createElement('pwa-update');
document.body.appendChild(el);
</script>
<style>
body {
color: #E4CBB6;
background-color: #323234;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
text-align: center;
}
a {
color: inherit;
text-decoration: none;
-webkit-transition: 0.5s all ease;
-moz-transition: 0.5s all ease;
-o-transition: 0.5s all ease;
transition: 0.5s all ease;
cursor: pointer
}
a:hover {
cursor: pointer;
color: inherit;
text-shadow: 0 0 1vh #ffffff,
0 0 3vh #956137
}
button {
border: none;
background-color: transparent;
padding: .5vh;
color: inherit
}
button:hover {
text-shadow: 0 0 1vh #ffffff,
0 0 3vh #f3ec78
}
.collapsing,
.collapse {
background: #252526;
}
.footer {
line-height: 2.5vh;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
padding-bottom: 1vh
}
.footer a {
font-size: 1vh;
color: inherit;
text-shadow: none
}
.footer svg {
width: 1.7vh;
fill: currentColor
}
.footer svg:hover {
transform: scale(1.7);
text-shadow: inherit
}
.footer .coinbag {
margin-bottom: .7vh
}
.footer .coinbag a {
font-size: 7vh;
cursor: grab;
}
.footer .coinbag:hover a {
background-image: linear-gradient(45deg, #f3ec78, #af4261, #f3ec78);
background-size: auto auto;
background-clip: border-box;
background-size: 200% auto;
background-clip: text;
text-fill-color: transparent;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: textclip 0.7s linear infinite;
text-shadow:
0 0 5vh #f3ec78
}
@keyframes textclip {
to {
background-position: 200% center;
}
}
.hidden {
display: none !important
}
h1 {
font-size: 150%
}
h2 {
font-size: 125%
}
.logo {
color: inherit;
}
.navbar {
background-image: linear-gradient(to bottom, #252526, #1E1E1F);
font-size: 2.3vh;
color: #E0E0E0
}
.offcanvas {
background: #252526
}
.offcanvas.offcanvas-end .defi:hover span {
display: none
}
.offcanvas.offcanvas-end .defi:hover:before {
content: "BORROW"
}
.offcanvas.offcanvas-end .stable:hover span {
display: none
}
.offcanvas.offcanvas-end .stable:hover:before {
content: "DEPOSIT"
}
.offcanvas.offcanvas-end .table {
line-height: .1vh
}
.offcanvas.offcanvas-start .table {
line-height: 2.2vh
}
.offcanvas.offcanvas-bottom,
.offcanvas.offcanvas-top {
height: 85%
}
.offcanvas.offcanvas-top {
font-size: 17vh
}
.overflow-auto::-webkit-scrollbar {
display: none;
}
.table {
color: #CBCBCB;
line-height: 1.2vh;
cursor: pointer
}
.table-hover tbody tr:hover td {
background: #252526;
color: #EBEBEB
}
.table td {
padding-top: 1.3vh;
width: 33%
}
</style>
</head>
<body>
<nav class="navbar sticky-top shadow-sm">
<div class="container-fluid justify-content-center">
<a class="xs-stats align-text-top" data-bs-toggle="offcanvas" href="#wallet"
aria-controls="wallet">DEX : <span class="dex"></span></a>
</div>
</nav>
<table class="coins table table-hover table-borderless">
<tbody>
<tr class="hidden">
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
<tr coinlist="0">
<td></td>
<td class="hidden"></td>
<td></td>
<td>
<a class="buy-sell-xs" data-bs-toggle="collapse" data-bs-target="">💱</a>
</td>
</tr>
<tr class="collapse-transaction collapse shadow-sm" id="">
<td></td>
<td>
<input type="number" pattern="[0-9]*" value="1">
<span>
<button data-bs-target="" class="trans buy action" type="button" data-bs-toggle="collapse">
BUY
</button>
<button class="trans buy max" type="button" maxamount="max">
MAX
</button>
</span>
</td>
<td></td>
</tr>
<tr class="collapse-transaction collapse shadow-sm" id="">
<td></td>
<td>
<input type="number" pattern="[0-9]*" value="1">
<span>
<button data-bs-target="" class="trans sell action" type="button" data-bs-toggle="collapse">
SELL
</button>
<button class="trans sell max" type="button" maxamount="max">
MAX
</button>
</span>
</td>
<td></td>
</tr>
</tbody>
</table>
<div class="footer">
<div class="coinbag"><a data-bs-toggle="offcanvas" href="#wallet" aria-controls="wallet">💰</a></div>
<a>
<a href="https://twitter.com/coinwarapp" target="_blank">
<svg class="bi bi-twitter" viewBox="0 0 16 16">
<path
d="M5.026 15c6.038 0 9.341-5.003 9.341-9.334 0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518 3.301 3.301 0 0 0 1.447-1.817 6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429 3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218 3.203 3.203 0 0 1-.865.115 3.23 3.23 0 0 1-.614-.057 3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15z" />
</svg>
</a>
</a>
<a>
<a <a data-bs-toggle="offcanvas" href="#metaverse" aria-controls="metaverse">
<svg class="bi bi-discord" viewBox="0 0 16 16">
<path
d="M13.545 2.907a13.227 13.227 0 0 0-3.257-1.011.05.05 0 0 0-.052.025c-.141.25-.297.577-.406.833a12.19 12.19 0 0 0-3.658 0 8.258 8.258 0 0 0-.412-.833.051.051 0 0 0-.052-.025c-1.125.194-2.22.534-3.257 1.011a.041.041 0 0 0-.021.018C.356 6.024-.213 9.047.066 12.032c.001.014.01.028.021.037a13.276 13.276 0 0 0 3.995 2.02.05.05 0 0 0 .056-.019c.308-.42.582-.863.818-1.329a.05.05 0 0 0-.01-.059.051.051 0 0 0-.018-.011 8.875 8.875 0 0 1-1.248-.595.05.05 0 0 1-.02-.066.051.051 0 0 1 .015-.019c.084-.063.168-.129.248-.195a.05.05 0 0 1 .051-.007c2.619 1.196 5.454 1.196 8.041 0a.052.052 0 0 1 .053.007c.08.066.164.132.248.195a.051.051 0 0 1-.004.085 8.254 8.254 0 0 1-1.249.594.05.05 0 0 0-.03.03.052.052 0 0 0 .003.041c.24.465.515.909.817 1.329a.05.05 0 0 0 .056.019 13.235 13.235 0 0 0 4.001-2.02.049.049 0 0 0 .021-.037c.334-3.451-.559-6.449-2.366-9.106a.034.034 0 0 0-.02-.019Zm-8.198 7.307c-.789 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.45.73 1.438 1.613 0 .888-.637 1.612-1.438 1.612Zm5.316 0c-.788 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.451.73 1.438 1.613 0 .888-.631 1.612-1.438 1.612Z" />
</svg>
</a>
</a>
<a>
<a href="https://github.com/coinwar-app/coinwar-app.github.io/fork" target="_blank">
<svg class="bi bi-github" viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" />
</svg>
</a>
</a>
<br />
<a data-bs-toggle="offcanvas" data-bs-target="#privacy" aria-controls="privacy" target="_blank">
<div class="xs-stats">© <span class="year"></span></div>
</a>
</div>
</body>
<div id="wallet" class="offcanvas offcanvas-end" tabindex="-1" aria-labelledby="wallet">
<div class="offcanvas-body">
<div class="xs-stats collapse" id="pawn-shop-collapse">
<div>
<input type="number" pattern="[0-9]*">
<span>
<button class="land">BORROW</button>
<button class="pay">REPAY</button>
</span>
<br /><br />
</div>
</div>
<div class="d-flex align-items-center">
<table class="xs-stats table table-borderless">
<tbody>
<tr class="coinlist hidden">
<td></td>
<td></td>
<td class="coinlist hidden"></td>
<td class="hidden"></td>
</tr>
<tr>
<td>
<label>
<input class="hidden" type="number" pattern="[0-9]*" value="1">
<span><a id="depay1" class="depayland">
<div class="stable">
<span>STABLECOINS</span>
</div>
</a>
</span>
</label>
</td>
<td class><sup>﹩</sup><span class="cash"></span></td>
<td class="hidden"></td>
<td class="hidden"></td>
</tr>
<tr>
<td>
<a data-bs-toggle="collapse" data-bs-target="#pawn-shop-collapse">
<div class="defi">
<span>DEFI LOANS</span>
</div>
</a>
</td>
<td><sup>-﹩</sup><span class="debt"></span></td>
<td class="hidden"></td>
<td class="hidden"></td>
</tr>
<tr>
<td><a href="https://opensea.io/collection/boredapeyachtclub" target="_blank">NFTS</a>
</td>
<td><sup>﹩</sup>0<span class="bank_deposit"></span></td>
<td class="hidden"></td>
<td class="hidden"></td>
<!--
<button class="depayland"
onclick="window.open('https://donate.stripe.com/dR6bMc4Aa2Oy8BWcMM')">DEPOSIT
FIAT</button>
-->
</tr>
</tbody>
</table>
</div>
<br /><br />
<div id="offcanvas-exchanges">
<div class="exchanges">
</div>
</div>
<br /><br /><br /><br />
<a data-bs-toggle="offcanvas" href="#prices" aria-controls="prices">HISTORICAL MARKET
DATA
</a>
</div>
</div>
<div id="prices" class="offcanvas offcanvas-start" tabindex="-1" aria-labelledby="prices">
<div class="offcanvas-body" data-bs-toggle="offcanvas">
<h3>HISTORICAL MARKET
DATA
</h3>
<table class="table table-borderless">
<tbody>
<tr>
<td>
ADA<br /><sup>﹩</sup>1 - <sup>﹩</sup>2<br /><br />
ALCX<br /><sup>﹩</sup>20 - <sup>﹩</sup>2K<br /><br />
AAVE<br /><sup>﹩</sup>28 - <sup>﹩</sup>632<br /><br />
AMC<br /><sup>﹩</sup>2 - <sup>﹩</sup>59<br /><br />
APE<br /><sup>﹩</sup>3 - <sup>﹩</sup>26<br /><br />
ATOM<br /><sup>﹩</sup>2 - <sup>﹩</sup>45<br /><br />
AVAX<br /><sup>﹩</sup>3 - <sup>﹩</sup>134<br /><br />
AXS<br /><sup>﹩</sup>1 - <sup>﹩</sup>160<br /><br />
BNB<br /><sup>﹩</sup>10 - <sup>﹩</sup>700<br /><br />
BTC<br /><sup>﹩</sup>5K - <sup>﹩</sup>69K<br /><br />
BOO<br /><sup>﹩</sup>1 - <sup>﹩</sup>10
</td>
<td>
CAKE<br /><sup>﹩</sup>1 - <sup>﹩</sup>42<br /><br />
COMP<br /><sup>﹩</sup>27 - <sup>﹩</sup>854<br /><br />
DOGE<br /><sup>﹩</sup>69 - <sup>﹩</sup>420<br /><br />
DOT<br /><sup>﹩</sup>1 - <sup>﹩</sup>54<br /><br />
ETH<br /><sup>﹩</sup>100 - <sup>﹩</sup>5K<br /><br />
FIL<br /><sup>﹩</sup>5 - <sup>﹩</sup>188<br /><br />
FTM<br /><sup>﹩</sup>1 - <sup>﹩</sup>13<br /><br />
FTX<br /><sup>﹩</sup>2 - <sup>﹩</sup>80<br /><br />
GME<br /><sup>﹩</sup>4 - <sup>﹩</sup>325<br /><br />
ICP<br /><sup>﹩</sup>5 - <sup>﹩</sup>364<br /><br />
LINK<br /><sup>﹩</sup>2 - <sup>﹩</sup>53
</td>
<td>
LTC<br /><sup>﹩</sup>2 - <sup>﹩</sup>278<br /><br />
MANA<br /><sup>﹩</sup>1 - <sup>﹩</sup>6<br /><br />
MATIC<br /><sup>﹩</sup>1 - <sup>﹩</sup>11<br /><br />
MKR<br /><sup>﹩</sup>206 - <sup>﹩</sup>6K<br /><br />
OATH<br /><sup>﹩</sup>1 - <sup>﹩</sup>10<br /><br />
SAND<br /><sup>﹩</sup>1 - <sup>﹩</sup>9<br /><br />
SHIB<br /><sup>﹩</sup>1 - <sup>﹩</sup>7<br /><br />
SOL<br /><sup>﹩</sup>1 - <sup>﹩</sup>260<br /><br />
TRON<br /><sup>﹩</sup>1 - <sup>﹩</sup>9<br /><br />
UNI<br /><sup>﹩</sup>2 - <sup>﹩</sup>43<br /><br />
XRP<br /><sup>﹩</sup>1 - <sup>﹩</sup>4
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="privacy" class="offcanvas offcanvas-bottom" tabindex="-1" aria-labelledby="privacy">
<div class="offcanvas-body small overflow-auto">
<h1>PRIVACY POLICY</h1>
<p>This agreement is between you and the gigantic business entity called "coinwar.app"
<br />
(hereafter referred to as The Corporation).
<br /><br />
By using this service, you agree to the following:
</p>
<br />
<h2>Where We're Getting Your Data</h2>
<p>We collect data on you from: the GPS tracking system in your car, the AirTag you've got in your wallet,
website cookies, old hard drives you thought you'd wiped, pay per click advertising, your IP address,
purchased customer lists, your email, tweets, Facebook and Instagram posts, friend lists, social
engineering, keystroke analysis, traffic light cameras, drone footage, smart speakers, in-home security
systems, saved Alexa voice data, ATM cameras, phone app tracking, cell phone biometric sensor data,
bluetooth sensor tags, cell tower triangulation, government databases, credit card company data
breaches,
the darknet, and about a million other sources.</p>
<br />
<h2>Things We'll Do With Your Data</h2>
<p>Your data will be used, folded, cut, spindled, mutilated, sliced, diced, filigreed, pureed, and its DNA
extracted and assimilated. Your data distinctiveness will be added to that of others (not necessarily
human)
then irradiated, exposed to lightning, loaded into an Illudium Q-36 Explosive Space Modulator, and
finally
transmogrified into Frankendata®.</p>
<br />
<h2>Unfettered Third-Party Use of Your Data</h2>
<p>Your data will be sold, given freely to, or stolen by third parties. Third-parties may include, but are
not
limited to, coupon companies, online poker websites, Russian bride catalogues, political entities you
don't
agree with, drug companies, lingerie stores, third-tier social media companies, stock market scammers,
that
ex you're trying to avoid, fake news agencies, and of course Nigerian princes. Your data may be used to
create fake ID's, engage in voter fraud, create deepfakes, social media sock puppets, straw men, create
false Amazon reviews, sell your friends things they don't need, and because of all this your face could
very
well end up on the back of a milk carton.</p>
<br />
<h2>Lack of Data Security</h2>
<p>Your data will not be held securely.</p>
<br />
<h2>Artificial Intelligence Systems / New Overlords</h2>
<p>You agree that your information will be used by various
artificial entities for purposes both unknown and unknowable. Further, you understand and agree that The
Corporation cannot know or understand how the evolving race of artificial intelligence beings will use
your
personal data because the technology upon which their society was founded has changed dramatically since
the
time you began reading this sentence.</p>
<br />
<h2>Letting Us Off the Hook</h2>
<p>You agree to accept all liability now and for all time regarding the use of your data in any form by The
Corporation or any third-parties which may obtain your data through any means. You agree to hold The
Corporation harmless under any and all circumstances and in any legal venue globally.</p>
<br />
<h2>Byzantine Information Removal Policy</h2>
<p>If you would like to have your personal information removed from our database simply hand deliver a
letter
written in fancy cursive writing to our constantly moving RV somewhere in North America. Include your
name,
social security number, address, date of birth, ATM PIN, photographs of three forms of government ID,
the
name of your favorite teacher, the model name of your first car, and your favorite concert. If you
successfully find us, please allow 4-6 weeks for processing.</p>
<br /><br /><br />
<h1>TERMS OF SERVICE</h1>
<p>By accessing the website at https://coinwar.app, you are agreeing to be bound by these
terms of service, all applicable laws and regulations, and agree that you are responsible for compliance
with any applicable local laws. If you do not agree with any of these terms, you are prohibited from
using
or accessing this site. The materials contained in this website are protected by applicable copyright
and
trademark law.</p>
<br />
<h2>Use License</h2>
<p>Permission is granted to temporarily download one copy of the materials (information or software) on
coinwar.app website for personal, non-commercial transitory viewing only. This is the grant of a
license,
not a transfer of title, and under this license you may not: modify or copy the materials; use the
materials
for any commercial purpose, or for any public display (commercial or non-commercial); attempt to
decompile
or reverse engineer any software contained on coinwar.app website; remove any copyright or other
proprietary
notations from the materials; or transfer the materials to another person or "mirror" the
materials on any other server. This license shall automatically terminate if you violate any of these
restrictions and may be terminated by coinwar.app at any time. Upon terminating your viewing of these
materials or upon the termination of this license, you must destroy any downloaded materials in your
possession whether in electronic or printed format.</p>
<br />
<h2>Disclaimer</h2>
<p>The materials on coinwar.app website are provided on an 'as is' basis. coinwar.app makes no warranties,
expressed or implied, and hereby disclaims and negates all other warranties including, without
limitation,
implied warranties or conditions of merchant-ability, fitness for a particular purpose, or
non-infringement
of intellectual property or other violation of rights. Further, coinwar.app does not warrant or make any
representations concerning the accuracy, likely results, or reliability of the use of the materials on
its
website or otherwise relating to such materials or on any sites linked to this site.</p>
<br />
<h2>Limitations</h2>
<p>In no event shall coinwar.app or its suppliers be liable for any damages (including, without limitation,
damages for loss of data or profit, or due to business interruption) arising out of the use or inability
to
use the materials on coinwar.app website, even if coinwar.app or a coinwar.app authorized representative
has
been notified orally or in writing of the possibility of such damage. Because some jurisdictions do not
allow limitations on implied warranties, or limitations of liability for consequential or incidental
damages, these limitations may not apply to you.</p>
<br />
<h2>Accuracy of materials</h2>
<p>The materials appearing on coinwar.app website could include technical, typographical, or photographic
errors. coinwar.app does not warrant that any of the materials on its website are accurate, complete or
current. coinwar.app may make changes to the materials contained on its website at any time without
notice.
However coinwar.app does not make any commitment to update the materials.</p>
<br />
<h2>Links</h2>
<p>coinwar.app has not reviewed all of the sites linked to its website and is not responsible for the
contents
of any such linked site. The inclusion of any link does not imply endorsement by coinwar.app of the
site.
Use of any such linked website is at the user's own risk.</p>
<br />
<h2>Modifications</h2>
<p>coinwar.app may revise these terms of service for its website at any time without notice. By using this
website you are agreeing to be bound by the then current version of these terms of service.</p>
<br />
<h2>Governing Law</h2>
<p>These terms and conditions are governed by and construed in accordance with the laws of California and
you
irrevocably submit to the exclusive jurisdiction of the courts in that State or location.</p>
<br />
<p>This policy is effective as of April 20, 2022.</p>
</div>
</div>
<div id="metaverse" class="offcanvas offcanvas-top" tabindex="-1" aria-labelledby="metaverse">
<div class="offcanvas-body overflow-auto">
<div class="container-fluid">
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3">
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/ALDsbzA" target="_blank"><img
class="img-fluid" src="img/meta/chania.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/SoYM2sD" target="_blank"><img
class="img-fluid" src="img/meta/galleria.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/mA587Zb" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001428.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/n8YY4m7" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001437.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/rfYecSz" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001441.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/9ojuf8g" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001454.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/M7SpyNc" target="_blank"><img
class="img-fluid" src="img/meta/ia_100000045.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/USM8k7h" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001455.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/qPSddPm" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001458.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/HRGBJLh" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001459.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/Eo2fsJe" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001460.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/SHWtTXj" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001464.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/iHjFLTB" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001461.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/qgbbTCM" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001467.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/v4gz8Pn" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001462.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/honkWgH" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001465.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/GP3HEXX" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001475.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/Uh8TPiu" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001470.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/ZJXNkam" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001471.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/kNaH85P" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001474.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/UGbTQiQ" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001477.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/tm8o9qZ" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001478.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/gVBRJRy" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001482.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/ZUZAUjJ" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001487.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/R5fiWiK" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001479.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/RbEQWMh" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001483.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/aYZ5XL5" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001488.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/8UGPT9g" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001480.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/2HryJZF" target="_blank"><img
class="img-fluid" src="img/meta/er.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/xc2fKxU" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001410.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/AT2fxsQ" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001413.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/4tiFpxb" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001416.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/ETg26sY" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001418.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/ugJ4XMb" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001469.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/wvrqcxM" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001472.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/D578sQt" target="_blank"><img
class="img-fluid" src="img/meta/nftmuseum.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/EZTitAA" target="_blank"><img
class="img-fluid" src="img/meta/vault.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/DBpKR9k" target="_blank"><img
class="img-fluid" src="img/meta/studio.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/RMQnZ4F" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001408.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/YQi9qsM" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001411.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/FDPxxsQ" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001414.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/BVnAY9r" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001409.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/LxfKpa4" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001412.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/zhZS2eB" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001415.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/BVZsEwg" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001417.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/fCSisCT" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001420.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/zuspWn9" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001424.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/Yj7E9Ke" target="_blank"><img
class="img-fluid" src="img/meta/ia_100000017.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/aVDfj3H" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001427.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/xC3vwyM" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001430.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/c2xDH7o" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001422.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/CkAbh3S" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001426.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/Y5xvipj" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001429.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/oZy5NXt" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001432.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/om4Mk52" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001433.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/7TQ4fYU" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001436.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/FJBX6QB" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001439.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/fK4t25Q" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001434.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/VyZJt3P" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001440.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/ktNh6ap" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001435.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/YK6SHmg" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001438.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/LC69XCv" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001442.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/8fapUXs" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001445.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/6WJzbS2" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001448.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/J4rWeQD" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001443.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/5ESQFnK" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001446.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/rjRcg4f" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001449.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/eoaWrjs" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001444.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/dU6t7KY" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001447.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/D6KvK8d" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001450.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/CXGsVGm" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001451.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/cdrJYPM" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001457.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/P7ZbyqU" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001453.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/bQrvhtj" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001456.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/XGxB9JF" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001463.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/2JmxhX7" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001466.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/KdvnJcm" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001468.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/qyj9VSx" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001473.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/xDEBwon" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001476.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/roPSuvB" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001484.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/H7RSqQK" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001489.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/p42BRCZ" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001481.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/CvGZ8cs" target="_blank"><img
class="img-fluid" src="img/meta/yips.webp" loading="lazy"></a></div>
<div class="col mt-3"><a href="https://hubs.mozilla.com/scenes/B4Qp6AC" target="_blank"><img
class="img-fluid" src="img/meta/ia_100001490.webp" loading="lazy"></a></div>
<div class="col mt-3"></div>
<div class="col mt-3">
<label>
<input class="hidden" type="number" pattern="[0-9]*" value="1000000">
<span>
<a href="https://hubs.mozilla.com/cMzFjni?vr_entry_type=2d_now&default_material_quality=high&default_mobile_material_quality=high"
target="_blank" class="depayland">🐈</a>
</span>
</label>
</div>
<div class="col mt-3"></div>
</div>
</div>
</div>
</div>
<script async>
// data
var DataCenter = {
coins: [
{
"name": "ada",
"minimum_price": 1,
"maximum_price": 2
},
{
"name": "alcx",
"minimum_price": 20,
"maximum_price": 2004
},
{
"name": "aave",
"minimum_price": 28,
"maximum_price": 632
},
{
"name": "amc",
"minimum_price": 2,
"maximum_price": 59
},
{
"name": "ape",
"minimum_price": 3,
"maximum_price": 26
},
{
"name": "atom",
"minimum_price": 2,
"maximum_price": 45
},
{
"name": "avax",
"minimum_price": 3,
"maximum_price": 134
},
{
"name": "axs",
"minimum_price": 1,
"maximum_price": 160
},
{
"name": "bnb",
"minimum_price": 10,
"maximum_price": 700
},
{
"name": "btc",
"minimum_price": 5000,
"maximum_price": 69000
},
{
"name": "boo",
"minimum_price": 1,
"maximum_price": 12
},
{
"name": "cake",
"minimum_price": 1,
"maximum_price": 42
},
{
"name": "comp",
"minimum_price": 27,
"maximum_price": 854
},
{
"name": "doge",
"minimum_price": 69,
"maximum_price": 420
},
{
"name": "dot",
"minimum_price": 1,
"maximum_price": 54
},
{
"name": "eth",
"minimum_price": 100,
"maximum_price": 5000
},
{
"name": "fil",
"minimum_price": 5,
"maximum_price": 188
},
{
"name": "ftm",
"minimum_price": 1,
"maximum_price": 10
},
{
"name": "ftx",
"minimum_price": 2,
"maximum_price": 80
},
{
"name": "gme",
"minimum_price": 4,
"maximum_price": 325
},
{
"name": "icp",
"minimum_price": 5,
"maximum_price": 364
},
{
"name": "link",
"minimum_price": 2,
"maximum_price": 53
},
{
"name": "ltc",
"minimum_price": 2,
"maximum_price": 278
},
{
"name": "mana",
"minimum_price": 1,
"maximum_price": 6
},
{
"name": "matic",
"minimum_price": 1,
"maximum_price": 10
},
{
"name": "mkr",
"minimum_price": 206,
"maximum_price": 6012
},
{
"name": "oath",
"minimum_price": 1,
"maximum_price": 10
},
{
"name": "sand",
"minimum_price": 1,
"maximum_price": 9
},
{
"name": "shib",
"minimum_price": 1,
"maximum_price": 7
},
{
"name": "sol",
"minimum_price": 1,
"maximum_price": 260
},
{
"name": "tron",
"minimum_price": 1,
"maximum_price": 9
},
{
"name": "uni",
"minimum_price": 2,
"maximum_price": 43
},
{
"name": "xrp",
"minimum_price": 1,
"maximum_price": 4
},
],
exchanges: [
{
"name": "binance",
"min_coins": 20,
"max_coins": 21
},
{
"name": "coinbase",
"min_coins": 20,
"max_coins": 21
},
{
"name": "curve",
"min_coins": 20,
"max_coins": 21
},
{
"name": "dydx",
"min_coins": 20,
"max_coins": 21
},
{
"name": "ftx",
"min_coins": 20,
"max_coins": 21
},
{
"name": "gemini",
"min_coins": 20,
"max_coins": 21
},
{
"name": "honey",
"min_coins": 20,
"max_coins": 21
},
{
"name": "jupiter",
"min_coins": 20,
"max_coins": 21
},
{
"name": "kine",
"min_coins": 20,
"max_coins": 21
},
{
"name": "kraken",
"min_coins": 20,