-
Notifications
You must be signed in to change notification settings - Fork 3
/
old-index.html
998 lines (897 loc) · 53.7 KB
/
old-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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<!-- link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic' rel='stylesheet' type='text/css'-->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;500;800&display=swap" rel="stylesheet" />
<link href="//fonts.googleapis.com/css?family=Syncopate&subset=latin" rel="stylesheet" type="text/css">
<link href="nav.css" rel="stylesheet" /><link href="main.css?v=.013" rel="stylesheet" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous" />
<!-- link href="https://maxcdn.bootstrapcdn.com/font-awesome/5.14.0/css/font-awesome.min.css" rel="stylesheet"-->
<script src="https://kit.fontawesome.com/641e1aaba6.js" crossorigin="anonymous"></script>
<!-- Latest compiled and minified CSS -->
<!--link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" /-->
<link rel="stylesheet" href="flipclock.css" />
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<!-- Google / Search Engine Tags-->
<meta itemprop="name" content="SYNCBOND.COM">
<meta itemprop="description" content="SYNCBOND.COM: The first Crypto Bond Market providing True Tradable Locked Liquidity!">
<meta itemprop="image" content="https://www.syncbond.com/img/banner.jpg?2020-11-17">
<!-- Facebook Meta Tags-->
<meta property="og:url" content="https://SYNCBOND.COM">
<meta property="og:type" content="website">
<meta property="og:title" content="SYNCBOND.COM">
<meta property="og:description" content="SYNCBOND.COM: The first Crypto Bond Market providing True Tradable Locked Liquidity!">
<meta property="og:image" content="https://www.syncbond.com/img/banner.jpg?2020-11-17">
<!-- Twitter Meta Tags-->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="SYNCBOND.COM">
<meta name="twitter:description" content="SYNCBOND.COM: The first Crypto Bond Market providing True Tradable Locked Liquidity!">
<meta name="twitter:image" content="https://www.syncbond.com/img/banner.jpg?2020-11-17">
<title>SYNC NETWORK</title>
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
</head>
<body>
<div id="disabled_menu"></div>
<!--
============================================
= ===== == == ======= == ==== =
= === == ======== ====== == ==== =
= = = == ======== ===== == ==== =
= == == == ======== == === == ==== =
= ===== == ==== === == == ==== =
= ===== == ======== ==== = == ==== =
= ===== == ======== ===== == ==== =
= ===== == ======== ====== == == =
= ===== == == ======= === ==
============================================
-->
<nav class="navbar fixed-top navbar-expand-lg navbar-light text-light">
<a class="navbar-brand text-light" href="#" data-toggle="collapse" data-target="#home" aria-expanded="false" aria-controls="bondBuilder"><img src="img/widelogo.png" class="wideLogo"></a>
<button class="logo neumorph navbar-toggler first-button" type="button" data-toggle="collapse" data-target="#navbar" aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation" style="width:60px;height:60px;">
<div class="anqimated-icon1"><span></span><span></span><span></span></div>
</button>
<div class="collapse navbar-collapse" id="navbar">
<ul class="navbar-nav mr-auto text-light">
<!-- a class="nav-item nav-link" href="#" data-toggle="collapse" data-target="#frs" aria-expanded="false" aria-controls="bondBuilder">FRS</a>
<a class="nav-item nav-link" href="#" data-toggle="collapse" data-target="#bondBuilder" aria-expanded="false" aria-controls="bondBuilder">BUILDER</a>
<a class="nav-item nav-link" href="#">MARKET</a>
<a class="nav-item nav-link" href="#" data-toggle="collapse" data-target="#stats" aria-expanded="false" aria-controls="bondBuilder">DASHBOARD</a -->
</ul>
<div class="dropdown" style="margin: 10px;">
<button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown" style="background: linear-gradient(145deg, #273448, #385c90); border: 1px solid #2e4b76; box-shadow: 3px 3px 5px #00000094 /* box-shadow: 4px 4px 7px #121e30, -3px -3px 7px #2e4c78;*/">
More Information
</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="https://sync-network.gitbook.io/" target="_blank" >FAQ</a>
<a class="dropdown-item" href="https://sync-network.gitbook.io/sync-network/introduction" target="_blank" >Guide</a>
<a class="dropdown-item" href="https://etherscan.io/address/0xb6ff96b8a8d214544ca0dbc9b33f7ad6503efd32" target="_blank" >SYNC Contract</a>
<a class="dropdown-item" href="https://uniswap.info/token/0xb6ff96b8a8d214544ca0dbc9b33f7ad6503efd32" target="_blank" >UNISWAP</a>
<a class="dropdown-item" href="litepaper.pdf" target="_blank" >Lite-Whitepaper</a>
</div>
</div>
</div>
</nav>
<!--
============================================
= ===== == == ======= == ==== =
= === == ======== ====== == ==== =
= = = == ======== ===== == ==== =
= == == == ======== == === == ==== =
= ===== == ==== === == == ==== =
= ===== == ======== ==== = == ==== =
= ===== == ======== ===== == ==== =
= ===== == ======== ====== == == =
= ===== == == ======= === ==
============================================
-->
<!-- div id="bars"></div -->
<!--
=============================================================
= ===== ==== ==== ====== ===== ========= ==
= === === == === ==== ==== ==== ======== ==== =
= = = == ==== == ==== === == === ======== ==== =
= == == == ==== == ==== == ==== == ========= ======
= ===== == ==== == ==== == ==== == =========== ====
= ===== == ==== == ==== == == ============= ==
= ===== == ==== == ==== == ==== == ======== ==== =
= ===== === == === ==== == ==== == ======== ==== =
= ===== ==== ==== === ==== == === ==
=============================================================
-->
<div class="modal fade" id="divChooser" tabindex="-1" role="dialog" aria-labelledby="divChooser" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="payoutModalLongTitle">Payout Schedule</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div style="display: flex; justify-content: center;">
<a class="neumorphicbutton" id="quarterlyDivs" href="#" data-dismiss="modal"><span>Quarterly Divs</span></a>
</div>
<div style="display: flex; justify-content: center;">
<a class="neumorphicbutton" id="maturityDivs" href="#" data-dismiss="modal"><span>Maturity</span></a>
</div>
</div>
<div class="modal-footer" style="display: block;">
<div style="display: flex; justify-content: center;">
<a class="neumorphicbutton" href="#" data-dismiss="modal"><span>CLOSE</span></a>
</div>
</div>
</div>
</div>
</div>
<!-- Modal Pair Chooser-->
<div class="modal fade" id="pairChooser" tabindex="-1" role="dialog" aria-labelledby="pairChooser" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="basepairModalLongTitle">Choose Basepair</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<button type="button" id="eth-sync" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">
<img alt="Pair" src="img/pairs/SYNC.png" /><br />
SYNC
</span>
<button type="button" id="eth-dos" class="" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">
<img alt="Pair" src="img/pairs/DOS.png" /><br />
DOS
</span>
</button>
<button type="button" id="eth-link" class="" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">
<img alt="Pair" src="img/pairs/LINK.png" /><br />
LINK
</span>
</button>
<button type="button" id="eth-dai" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">
<img alt="Pair" src="img/pairs/DAI.png" /><br />
DAI
</span>
</button>
<button type="button" id="eth-ren" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">
<img alt="Pair" src="img/pairs/REN.png" /><br />
REN
</span>
</button>
<button type="button" id="eth-akro" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">
<img alt="Pair" src="img/pairs/AKRO.png" /><br />
AKRO
</span>
</button>
</div>
<div class="modal-footer" style="display: block;">
<div style="display: flex; justify-content: center;">
<a class="neumorphicbutton" href="#" data-dismiss="modal"><span>CLOSE</span></a>
</div>
</div>
</div>
</div>
</div>
<!-- Modal GET SYNCED-->
<div class="modal fade" id="GET_SYNCED" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="getsyncModalLongTitle">GET SYNC</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h2 style="margin: 5px 0 -10px 0; text-align: center;">Step 1: Send Ethereum</h2>
<div class="bondinput" style="display: inline-block; padding-left: 8%;">
<input type="text" value="" placeholder="0" required="" style="color: darkgrey;" />
</div>
<img alt="arrow" src="img/arrow.webp" style="margin: -25px 0 -55px; z-index: 5; position: relative; left: 40%;" />
<div style="padding-top: 23px; display: flex; justify-content: center; transform: scale(1.3);">
<a class="neumorphicbutton" id="enterLobby" href="#" data-dismiss="modal"><span>ENTER LOBBY</span></a>
</div>
<!--a class="neumorphicbutton" id="enter_lobby" style="display: inline-block; width: 100% !important; height: 148px; padding-left: 8%; transform: scale(0.8);"></a-->
<h2 style="border-top: 1px solid #e9ecef; padding: 23px 0 0 0; text-align: center;">Step 2: Collect SYNC next Day</h2>
<div style="padding-top: 0px; display: flex; justify-content: center; transform: scale(1.3);">
<a class="neumorphicbutton" id="collectSync" href="#" data-dismiss="modal"><span>COLLECT SYNC</span></a>
</div>
<!--a class="neumorphicbutton" id="collect_sync" style="display: inline-block; width: 100% !important; height: 148px; padding-left: 8%; transform: scale(0.8);"></a-->
</div>
<div class="modal-footer" style="display: block;">
<div style="display: flex; justify-content: center;">
<a class="neumorphicbutton" href="#" data-dismiss="modal"><span>CLOSE</span></a>
</div>
</div>
</div>
</div>
</div>
<!--
=============================================================
= ===== ==== ==== ====== ===== ========= ==
= === === == === ==== ==== ==== ======== ==== =
= = = == ==== == ==== === == === ======== ==== =
= == == == ==== == ==== == ==== == ========= ======
= ===== == ==== == ==== == ==== == =========== ====
= ===== == ==== == ==== == == ============= ==
= ===== == ==== == ==== == ==== == ======== ==== =
= ===== === == === ==== == ==== == ======== ==== =
= ===== ==== ==== === ==== == === ==
=============================================================
-->
<div class="container-fluid white-text" id="dapps">
<!-- BEGIN DOCUMENT -->
<!--
__ __ ______ __ __ ________
| \ | \ / \ | \ / \| \
| $$ | $$| $$$$$$\| $$\ / $$| $$$$$$$$
| $$__| $$| $$ | $$| $$$\ / $$$| $$__
| $$ $$| $$ | $$| $$$$\ $$$$| $$ \
| $$$$$$$$| $$ | $$| $$\$$ $$ $$| $$$$$
| $$ | $$| $$__/ $$| $$ \$$$| $$| $$_____
| $$ | $$ \$$ $$| $$ \$ | $$| $$ \
\$$ \$$ \$$$$$$ \$$ \$$ \$$$$$$$$
-->
<section id="home" class="collapse show" data-parent="#dapps">
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="title" style="font-family: 'Syncopate', sans-serif !important; color: #f0f0f0; font-variant-caps: small-caps; font-weight: 800;">Synchronized Cryptobonds</h1>
<p style="background-image: linear-gradient(0deg, transparent, #2b5177 30%, #6175a5 60%,transparent); padding: 30px; border-radius: 50px 50px 90px 90px; font-size: 27px; -webkit-text-stroke: 1px #00000026;">SYNC is used to create tradable locked liquidity that we call Cryptobonds.</p>
</div>
</div>
<div class="container my-5 py-5 z-depth-1">
<!--Section: Content-->
<section class="text-center px-md-8 mx-md-8 dark-grey-text">
<!--Grid row-->
<div class="row d-flex justify-content-center">
<!--Grid column-->
<div class="col-lg-9">
<div class="section-title">
<h2 class="text-left">Abstract.</h2>
<h4 class="text-left">Revision 5</h4>
<h4 class="text-left">September 12th, 2020</h4>
</div>
<p style="text-align: justify;"> Projects in the decentralized finance space started utilizing stake and proof-of-liquidity mechanics to develop a trustless economy but fundamental flaws have held these projects behind. The SYNC Network addresses these problems and offers a workable solution through tradeable stakes bonding Uniswap liquidity pairs with a fully trustless ERC-20 token (SYNC). </p>
<p style="text-align: justify;">SYNC enables users to earn interest by staking a cryptographic bond to Uniswap liquidity pair tokens (CryptoBonds). CryptoBonds are an ERC-721 token with collectible attributes, accruing interest rates, and the ability to trade and speculate on them within a secondary market.</p>
<p style="text-align: justify;">SYNC Network works to bring stability and risk mitigation to decentralized finance by solidifying a guarantee on holding liquidity pairs for an extended period of time. The Sync Network can help build a needed, stable foundation for the DeFi space and a fully functioning, more robust trustless economy.</p>
</div>
<!--Grid column-->
</div>
<!--Grid row-->
</section>
<!--Section: Content-->
</div>
<div class="container" style="padding:110px 0 30px;">
<div class="row">
<div class="col-lg-6">
<div class="section-title">
<h2 class="text-left">Ease of Use</h2>
<p>We do all the heavy lifting and validation in the contract to ensure that building Crypto Bonds is simple, intuitive and sound. </p>
</div>
</div>
</div>
<div class="row marketing">
<div class="col-lg-6">
<img src="img/sync_iso1.svg" class="leftISO" height="auto" width="100%" >
</div>
<div class="col-lg-6">
<h4 class="text-left">Step 1: Liquidity Pair From Uniswap</h4>
<p style="padding:15px 0;">Add equal parts of your favorite token with ETH and earn on every trade on Uniswap even while bonded. That's the power of Crypto Bonds.</p>
<hr style="">
<h4 class="text-left">Step 2: Get SYNC Token From Uniswap</h4>
<p style="padding:15px 0;">While you're there, pick up some SYNC tokens from Uniswap or our time limited offer from the Fair Release Schedule.</p>
<hr style="">
<h4 class="text-left">Step 3: Put them together in the Crypto Bond Builder</h4>
<p style="padding:15px 0;">Combine them together to create a Crypto Bond Set parameters such as time and if you want quarterly dividends to make it uniquely yours.</p>
<hr style="">
</div>
</div>
</div>
<!-- Distro Start -->
<section class="section services-section" id="services">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="section-title">
<h2 class="text-left">Tokenomics</h2>
<p>A two token system consisting of SYNC token and Crypto Bonds working together for risk distribution across uniswap liquidity pairs. </p>
</div>
</div>
</div>
<div class="row">
<!-- feaure box -->
<div class="col-sm-6 col-lg-4 ">
<div class="feature-box-1 neumorph">
<h5 style="float: right;text-align: right;">ERC 20 <br>+ERC-721</h5>
<div class="icon">
<i class="fas fa-desktop"></i>
</div>
<div class="feature-content">
<p>Better together - SYNC is required to create Crypto Bonds. This combination has interesting and emergent properties.</p>
</div>
</div>
</div>
<!-- / -->
<!-- feaure box -->
<div class="col-sm-6 col-lg-4">
<div class="feature-box-1 neumorph">
<h5 style="float: right;text-align: right;">EQUAL<br>OPPORTUNITY</h5>
<div class="icon">
<i class="fa fa-user"></i>
</div>
<div class="feature-content">
<p>SYNC Tokens have no pre-determined price; rather price is set by market demand. This reduces unfair advantages to large purchasers.</p>
</div>
</div>
</div>
<!-- / -->
<!-- feaure box -->
<div class="col-sm-6 col-lg-4">
<div class="feature-box-1 neumorph">
<h5 style="float: right;text-align: right;">Built on<br>Ethereum</h5>
<div class="icon">
<i class="fab fa-ethereum"></i>
</div>
<div class="feature-content">
<p>Supporting popular Web3 wallets such as metamask and Trustwallet with more to come.</p>
</div>
</div>
</div>
<!-- / -->
<!-- feaure box -->
<div class="col-sm-6 col-lg-4">
<div class="feature-box-1 neumorph">
<h5 style="float: right;text-align: right;">Lucky<br>Crypto Bonds</h5>
<div class="icon">
🍀
</div>
<div class="feature-content">
<p>Occasionally creating a Crypto Bond results in a "Lucky Crypto Bond" and gets a Lucky bonus interest rate.</p>
</div>
</div>
</div>
<!-- / -->
<!-- feaure box -->
<div class="col-sm-6 col-lg-4">
<div class="feature-box-1 neumorph">
<h5 style="float: right;text-align: right;">Distributed<br>Risk Mitigation</h5>
<div class="icon">
<i class="fa fa-th"></i>
</div>
<div class="feature-content">
<p>Crypto Bonds require both SYNC tokens & Uniswap Liquidity Pairs, reducing the risk to Crypto Bond holders by diversifying their assets.</p>
</div>
</div>
</div>
<!-- / -->
<!-- feaure box -->
<div class="col-sm-6 col-lg-4">
<div class="feature-box-1 neumorph">
<h5 style="float: right;text-align: right;">Advanced<br>Options</h5>
<div class="icon">
<i class="fa fa-cog"></i>
</div>
<div class="feature-content">
<p>Crypto Bonds are highly configurable for your needs. For example longer terms pays better rates.</p>
</div>
</div>
</div>
<!-- / -->
</div>
</div>
</section>
<!-- Distro Start -->
<section class="section services-section" id="services">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title">
<h2 class="text-left">Dual Smart Contracts</h2>
<p>Two contracts: SYNC token and Crypto Bonds together to create the SYNC Network. </p>
</div>
</div>
</div>
<div class="row">
<!-- feaure box -->
<div class="col-sm-6 col-lg-6">
<div class="feature-box-1 neumorph" style="min-height: 430px;">
<div class="icon">
<i class="fa fa-sync"></i>
</div>
<div class="feature-content">
<h5>SYNC TOKEN</h5>
<p><a href="https://etherscan.io/address/0xB6ff96B8A8d214544Ca0dBc9B33f7AD6503eFD32" target="_blank" style="color: white; font-size: 15.5px;">ADDRESS: 0xB6ff96B8A8d214544Ca0dBc9B33f7AD6503eFD32</a></p>
<p>This contract is responsible for the SYNC token and it's associated minting and burning functions.</p>
</div>
</div>
</div>
<!-- / -->
<!-- feaure box -->
<div class="col-sm-6 col-lg-6">
<div class="feature-box-1 neumorph">
<div class="icon">
<i class="fas fa-file-contract"></i>
</div>
<div class="feature-content">
<h5>Crypto Bond</h5>
<p>ADDRESS: UNPUBLISHED</p>
<p>The Crypto Bond contract communicates to the SYNC token contract to mint and burn SYNC tokens. The Crypto Bond contract holds the liquidity tokens until the Crypto Bond matures. At maturity you can cash out a Crypto Bond to obtain the orginal liquidity tokens, and SYNC tokens with interest.</p>
</div>
</div>
</div>
<!-- / -->
</div>
</div>
</section>
<hr />
<!-- The Timeline -->
<div class="row" id="#roadmap">
<div class="col-md-12">
<h1 class="title">Roadmap</h1>
<ul class="timeline">
<!-- Item 1 -->
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag">Add Liquidity</span>
<span class="time-wrapper"><span class="time">September 2020</span></span>
</div>
<div class="desc">Just prior to Fair Release Schedule the SYNC token will be added to Uniswap</div>
</div>
</li>
<!-- Item 2 -->
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag">FRS Launch</span>
<span class="time-wrapper"><span class="time">After Audit</span></span>
</div>
<div class="desc">The FRS will launch soon after Liquidity is added to Uniswap and Audit is complete.</div>
</div>
</li>
<!-- Item 3 -->
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag">NFT Token Launch</span>
<span class="time-wrapper"><span class="time">After Audit</span></span>
</div>
<div class="desc">The Crypto Bond NFT will offically go live allowing the creation of the worlds first Cryptobond!</div>
</div>
</li>
</ul>
</div></div>
</section>
<!-- Distro End -->
<!--
__ __ ______ __ __ ________
| \ | \ / \ | \ / \| \
| $$ | $$| $$$$$$\| $$\ / $$| $$$$$$$$
| $$__| $$| $$ | $$| $$$\ / $$$| $$__
| $$ $$| $$ | $$| $$$$\ $$$$| $$ \
| $$$$$$$$| $$ | $$| $$\$$ $$ $$| $$$$$
| $$ | $$| $$__/ $$| $$ \$$$| $$| $$_____
| $$ | $$ \$$ $$| $$ \$ | $$| $$ \
\$$ \$$ \$$$$$$ \$$ \$$ \$$$$$$$$
-->
<!--
==================================================================
= ==== ==== == == ======== === == ==
= === === ==== === === ======== ==== == ======== ==== =
= ==== == ==== === === ======== ==== == ======== ==== =
= === === ==== === === ======== ==== == ======== === =
= ==== ==== === === ======== ==== == ==== ===
= === === ==== === === ======== ==== == ======== ==== =
= ==== == ==== === === ======== ==== == ======== ==== =
= === === == === === ======== ==== == ======== ==== =
= ===== === == == === == ==== =
==================================================================
-->
<section id="bondBuilder" class="collapse" data-parent="#dapps">
<div class="container neumorph pt-5">
<div class="row">
<div class="col-md-12 col-sm-12">
<!-- img alt="Crypto Bond Builder" src="img/bondbuilder.webp" style="padding-top: 50px; margin: auto; display: block;" /-->
<h1 class="title">Crypto Bond Builder</h1>
</div>
</div>
<hr />
<div class="row">
<div class="col-lg-2 col-md-0 col-sm-12"></div>
<div class="col-lg-4 col-md-6 col-sm-12">
<h1 style="font-size: 40px;">Select Asset Pair</h1>
<div class="bond2input">
<a class="neumorphicbutton dropdown" href="#" data-toggle="modal" data-target="#pairChooser"></a>
<input class="noclick" id="pair" type="text" value="" placeholder="NONE" required="" />
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12" style="text-align: center;">
<h1 style="font-size: 40px;">Asset Amount</h1>
<div class="bond2input">
<a class="neumorphicbutton textinput"></a>
<input id="assetAmount" type="number" value="" min="0.000000000000" placeholder="0" required="" style="font-size: 16px;" />
</div>
<input type="range" name="rangeInput" min="0" max="100" onchange="updateTextInput(this.value);" style="width: 220px; margin: auto;" />
</div>
</div>
<hr style="width: 25vw;" />
<div class="row">
<div class="col-sm-12"></div>
<div class="col-md-12 col-sm-12"><h1 style="font-size: 60px;">SYNC REQUIRED</h1></div>
</div>
<div class="row">
<div class="col-lg-2 col-md-0 col-sm-12"></div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="bond2input">
<a class="neumorphicbutton textinput"></a>
<input id="syncAmount" type="number" value="" placeholder="0 SYNC" required="" style="pointer-events: none; font-size: 16px;" />
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12" >
<div class="bond2input">
<a class="neumorphicbutton textinput"></a>
<input id="syncValue" type="number" value="" placeholder="$0" required="" style="pointer-events: none; font-size: 16px;" />
</div>
</div>
</div>
<hr style="width: 25vw;" />
<div class="row">
<div class="col-lg-2 col-md-0 col-sm-12"></div>
<div class="col-lg-4 col-md-6 col-sm-12">
<h1 style="font-size: 40px;">Dividens</h1>
<div class="bond2input">
<a class="neumorphicbutton dropdown" href="#" data-toggle="modal" data-target="#divChooser"></a>
<input class="noclick" id="divSchedule" type="text" value="" placeholder="NONE" required="" />
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12" style="text-align: center;">
<h1 style="font-size: 40px;">Years</h1>
<div class="bond2input">
<a class="neumorphicbutton textinput"></a>
<input id="cbondDuration" type="number" placeholder="Select Years" min="1" max="3" step="1" required="" value="1" style="font-size: 16px;" />
</div>
<input value="1" type="range" name="rangeInput" min="1" max="3" step="1" onchange="updateLengthInput(this.value);" style="width: 220px; margin: auto;" />
</div>
<div class="col-md-12 col-sm-12"><h1 style="font-size: 60px;">EARNING RATE = 2%</h1></div>
<div class="col-sm-12">
<div style="display: flex; justify-content: center;">
<a class="neumorphicbutton" id="createbond" href="#" data-dismiss="modal" style="transform: scale(1.5);"><span>CREATE BOND</span></a>
</div>
</div>
</div>
</div>
</section>
<!--
Banner:(refresh preview)
==================================================================
= ==== ==== == == ======== === == ==
= === === ==== === === ======== ==== == ======== ==== =
= ==== == ==== === === ======== ==== == ======== ==== =
= === === ==== === === ======== ==== == ======== === =
= ==== ==== === === ======== ==== == ==== ===
= === === ==== === === ======== ==== == ======== ==== =
= ==== == ==== === === ======== ==== == ======== ==== =
= === === == === === ======== ==== == ======== ==== =
= ===== === == == === == ==== =
==================================================================
-->
<!--
==============================
= == ==== ==
= ======== ==== == ==== =
= ======== ==== == ==== =
= ======== === === ======
= ==== ======= ====
= ======== ==== ======= ==
= ======== ==== == ==== =
= ======== ==== == ==== =
= ======== ==== === ==
==============================
-->
<section id="frs" class="collapse" data-parent="#dapps">
<div class="row">
<div class="col-md-6 col-sm-12 offset-md-1 offset-lg-3">
<h1 class="title">Fair Release Schedule</h1>
<!--img alt="Crypto bonds" src="img/title3-cbonds.webp?v2" style="width: 100%;" / -->
</div>
</div>
<!-- Distro Start -->
<div class="row">
<div class="col-md-2 neumorph offset-md-1 offset-lg-3">
<div style="display: flex; justify-content: center; margin-top: -20px;">
<a class="neumorphicbutton" href="#" data-toggle="modal" data-target="#CONNECT_WALLET"><span>CONNECT</span></a>
</div>
<div class="logo rotateIn" style="width: 100%; height: 300px; margin-top: 60px;"></div>
<h3 id="yourSYNC" style="padding-bottom: 15px; text-align: center;">Your SYNC:</h3>
<div style="display: flex; justify-content: center; margin-top: -20px;">
<a class="neumorphicbutton" href="#" data-toggle="modal" data-target="#GET_SYNCED"><span>GET SYNC</span></a>
</div>
</div>
<div class="col-md-4" style="padding-left: 42px;">
<div class="row">
<div class="col-md-9">
<h3>SYNC Fair Release Schedule</h3>
</div>
<div class="col-md-3">
<h3 id="currentPeriod">DAY 275</h3>
</div>
</div>
<div class="row ">
<div class="col-md-12">
<div class="progress"><div class="progress-bar" style="width: 70%;"> </div></div>
</div>
</div>
<div class="row">
<div class="col-md-12 neumorph">
<div class="row ">
<div class="col-md-6">
<h4>TODAY'S DISTRIBUTION</h4>
<h1 id="syncTotal">♻5,000,000</h1>
<h4>SYNC TOKENS</h4>
</div>
<div class="col-md-6">
<h4>9/1/2020</h4>
<h1 id="ethRecieved">Ξ 1,234</h1>
<h4>ETH Recieved</h4>
</div>
</div>
</div>
</div>
<div class="row" style=" padding-top: 27px;">
<div class="col-md-12 neumorph" style="background-image: linear-gradient(18deg, rgb(243 226 199 / 69%) 0%, rgb(193 158 103 / 72%) 50%, rgb(182 141 76 / 70%) 51%, rgb(233 212 179 / 72%) 100%);">
<h4 style="margin: 25px auto;">CURRENT DISTRIBUTION ENDS IN</h4>
<div style="margin: auto;"><div class="clock" id="clock1"></div></div>
<h5 style="font-size: 15px;text-align: center;">*Depending on the Ethereum network traffic, figures may be delayed.</h5>
</DIV>
</div>
</div>
</div>
<div class="row" style="padding-top:60px;">
<div class="col-md-3"></div>
<div class="col-md-2">
<h3>EQUAL OPPORTUNITY</h3>
<p>SYNC Tokens have no pre-determined price; rather price is set by market demand. This reduces unfair advantages to large purchasers.</p>
</div>
<div class="col-md-2">
<h3>BROAD DISTRIBUTION</h3>
<p>A 1 year distribution is to ensure everyone gets a chance to on board without diluting the early investors</p>
</div>
<div class="col-md-2">
<h3>TRUSTLESS</h3>
<p>Fully powered by an unstoppable, immutable Ethereum Smart Contract.</p>
</div>
<div class="col-md-3"></div>
</div>
</section>
<!-- Distro End -->
<!--
==============================
= == ==== ==
= ======== ==== == ==== =
= ======== ==== == ==== =
= ======== === === ======
= ==== ======= ====
= ======== ==== ======= ==
= ======== ==== == ==== =
= ======== ==== == ==== =
= ======== ==== === ==
==============================
-->
<!--
==================================================
== === ===== ===== === ==
= ==== ===== ======= ======= ===== ==== =
= ==== ===== ====== == ====== ===== ==== =
== ========== ===== ==== ===== ====== ======
==== ======== ===== ==== ===== ======== ====
====== ====== ===== ===== ========== ==
= ==== ===== ===== ==== ===== ===== ==== =
= ==== ===== ===== ==== ===== ===== ==== =
== ====== ===== ==== ===== ====== ==
==================================================
-->
<section id="stats" class="collapse" data-parent="#dapps">
<div class="row">
<div class="col-md-6 col-sm-12 offset-md-1 offset-lg-3">
<h1 class="title">DASHBOARD</h1>
</div>
</div>
<!-- Distro Start -->
<div class="row">
<div class="col-md-2 offset-md-1 offset-lg-2">
<div class="logo rotateIn" style="width: 100%; height: 300px; margin-top: 60px;"></div>
</div>
<div class="col-md-5">
<div class="row neumorph">
<div class="col-md-12">
<h6 class="modal-title">Total Supply: 25,000,000</h6>
<h5 class="modal-title">Circulating Supply: 5,202,143</h5>
<h5 class="modal-title">SYNC = $1.23</h5>
</div>
<div class="col-md-4">
</div>
</div>
<div class="row neumorph">
<div class="col-md-12">
<h5 class="modal-title">Total Supply: 25,000,000 SYNC</h5>
<h5 class="modal-title">Total Supply: 25,000,000 SYNC</h5>
<div class=" progress">
<div class="progress-bar" style="width: 70%;">SOME PROGRESS BAR </div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
</DIV>
</div>
</div>
</div>
</section>
<!-- Distro End -->
<!--
==================================================
== === ===== ===== === ==
= ==== ===== ======= ======= ===== ==== =
= ==== ===== ====== == ====== ===== ==== =
== ========== ===== ==== ===== ====== ======
==== ======== ===== ==== ===== ======== ====
====== ====== ===== ===== ========== ==
= ==== ===== ===== ==== ===== ===== ==== =
= ==== ===== ===== ==== ===== ===== ==== =
== ====== ===== ==== ===== ====== ==
==================================================
-->
<hr />
<!-- /div><!--lost div? -->
</div> <!-- Container Fluid -->
<!-- END DOCUMENT -->
<footer style="padding-top: 60px;">
<div class="container pt-5">
<div class="row">
<div class="col-md-3 col-sm-12 mb-3 text-center">
<div class="logo rotateIn" style="width: 100%; height: 200px;"></div>
</div>
<div class="col-md-9 col-sm-12">
<div class="col-md-3 col-sm-6 col-6 p-0 float-left mb-3">
<h5 class="mb-4 font-weight-bold text-uppercase">Links</h5>
<ul class="list-group">
<li class="list-group-item bg-transparent border-0 p-0 mb-2"><a target="_blank" href="https://app.uniswap.org/#/swap?inputCurrency=ETH&outputCurrency=0xB6ff96B8A8d214544Ca0dBc9B33f7AD6503eFD32">Trade on Uniswap</a></li>
<li class="list-group-item bg-transparent border-0 p-0 mb-2"><a target="_blank" href="https://etherscan.io/address/0xB6ff96B8A8d214544Ca0dBc9B33f7AD6503eFD32">Etherscan Contract</a></li>
<!--li class="list-group-item bg-transparent border-0 p-0 mb-2"><a target="_blank" href="">MetaMask</a></li-->
<li class="list-group-item bg-transparent border-0 p-0 mb-2"><a target="_blank" href="#">Opensea</a></li>
<li class="list-group-item bg-transparent border-0 p-0 mb-2"><a target="_blank" href="https://uniswap.info/pair/0xFb2F545A9AD62F38fe600E24f75ecD790d30a7Ba">Uniswap SYNC Liquidity</a></li>
<li class="list-group-item bg-transparent border-0 p-0 mb-2"><a target="_blank" href="https://uniswap.info/token/0xB6ff96B8A8d214544Ca0dBc9B33f7AD6503eFD32">SYNC Uniswap Chart</a></li>
</ul>
</div>
<div class="col-md-3 col-sm-6 col-6 p-0 mb-3 float-left">
<h5 class="mb-4 font-weight-bold text-uppercase">Developers</h5>
<ul class="list-group">
<li class="list-group-item bg-transparent border-0 p-0 mb-2"><a href="https://github.com/">Open Source</a></li>
<li class="list-group-item bg-transparent border-0 p-0 mb-2"><a href="https://github.com/">Technology</a></li>
</ul>
</div>
<div class="col-md-3 col-sm-6 col-6 mb-3 p-0 float-left">
<h5 class="mb-4 font-weight-bold text-uppercase">C.O.F.E.</h5>
<ul class="list-group">
<li class="list-group-item bg-transparent border-0 p-0 mb-2"><a target="_blank" href="#soon">About</a></li>
<li class="list-group-item bg-transparent border-0 p-0 mb-2"><a target="_blank" href="https://medium.com">Blog</a></li>
</ul>
</div>
<div class="col-md-3 col-sm-6 col-6 mb-3 p-0 float-left">
<h5 class="mb-4 font-weight-bold text-uppercase">Connect</h5>
<ul class="list-group">
<li class="list-group-item bg-transparent border-0 p-0 mb-2">
<a target="_blank" href="https://discord.gg/JbSMb34">Discord</a>
</li>
<li class="list-group-item bg-transparent border-0 p-0 mb-2">
<a target="_blank" href="https://twitter.com/SYNCTOKEN">Twitter</a>
</li>
<li class="list-group-item bg-transparent border-0 p-0 mb-2">
<a target="_blank" href="https://www.reddit.com/r/SyncNetworkOfficial/">Reddit</a>
</li>
<!-- li class="list-group-item bg-transparent border-0 p-0 mb-2">
<a href="https://github.com/C-O-F-E" target="_blank">Github</a>
</li-->
<li class="list-group-item bg-transparent border-0 p-0 mb-2">
<a target="_blank" href="https://medium.com" target="_blank">Medium</a>
</li>
<!--li class="list-group-item bg-transparent border-0 p-0 mb-2">
<a href="https://www.facebook.com/lol-yeah-right/" target="_blank">Facebook</a>
</li-->
<li class="list-group-item bg-transparent border-0 p-0 mb-2">
<a target="_blank" href="https://www.youtube.com/channel/" target="_blank">YouTube</a>
</li>
</ul>
</div>
</div>
<div class="col-md-12">
<div class="py-4 d-flex justify-content-center align-items-center white-text">
<a class="mr-4" href="" style="color: white!important;">Privacy & terms</a>
<a class="mr-4" href="" style="color: white!important;">Made By Cryptogenik</a>
© 2020 Copyright <a class="mr-4" href="https://www.syncbond.com/"> syncbond.com</a>
</div>
</div>
</div>
</div>
</footer>
<script>
function updateTextInput(val) {
document.getElementById("assetAmount").value = val;
}
function updateLengthInput(val) {
document.getElementById("cbondDuration").value = val;
}
$(document).ready(function () {
$().ready(function () {
$("#quarterlyDivs").click(function (event) {
$("#divSchedule").val("Quarterly");
});
$("#maturityDivs").click(function (event) {
$("#divSchedule").val("Maturity");
});
$("#eth-sync").click(function (event) {
$("#pair").val("ETH-SYNC");
});
$("#eth-dos").click(function (event) {
$("#pair").val("ETH-DOS");
});
$("#eth-ren").click(function (event) {
$("#pair").val("ETH-REN");
});
$("#eth-link").click(function (event) {
$("#pair").val("ETH-LINK");
});
$("#eth-akro").click(function (event) {
$("#pair").val("ETH-ARKO");
});
$("#eth-dai").click(function (event) {
$("#pair").val("ETH-DAI");
});
//* Target Date Must be Like Below
//var date = new Date("June 15, 2016 12:45:00");
// Just for running purpose
//=======================================
var start = new Date();
start.setDate(start.getDate());
start.setHours(-5, 0, 0, 0);
//======================================
var now = new Date();
var diff = (now.getTime() - start.getTime()) / 1000;
var clock = $("#clock1").FlipClock(diff, {
clockFace: "HourlyCounter",
countdown: true,
showSeconds: true,
});
// Transition effect for navbar
$(window).scroll(function() {
// checks if window is scrolled more than 500px, adds/removes solid class
if($(this).scrollTop() > 500) {
$('.navbar').addClass('solid');
} else {
$('.navbar').removeClass('solid');
}
});
});
});
</script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<script src="flipclock-min.js"></script>
</body>
</html>