-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1621 lines (1381 loc) · 92.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
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 lang="en" >
<head>
<meta charset="utf-8">
<!-- <meta http-equiv="Content-Security-Policy" content="Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; frame-ancestors 'self'; form-action 'self';"> -->
<meta name="description" content="Developers and companies build, ship, and maintain their Dapps on Dithereum - the most advanced and secure blockchain platform in the world.."/>
<link crossorigin="anonymous" media="all" rel="stylesheet" href="assets/light-327c05026583e0deae6cdb4a583e3b84.css" />
<link crossorigin="anonymous" media="all" rel="stylesheet" href="assets/dark-c5cc774753662a380e004d83b021d86e.css" />
<link crossorigin="anonymous" media="all" rel="stylesheet" href="assets/frameworks-11123586ef21c5fa694b968f9435dd73.css" />
<link crossorigin="anonymous" media="all" rel="stylesheet" href="assets/behaviors-dbc725588aaef4eab4c5384e5c470707.css" />
<style>
#fvpp-blackout {
display: none;
z-index: 499;
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: #000;
opacity: 0.5;
}
#my-welcome-message {
display: none;
z-index: 500;
position: fixed;
width: 36%;
left: 30%;
top: 20%;
padding: 20px 2%;
font-family: Calibri, Arial, sans-serif;
background: #FFF;
}
#myModal #fvpp-close {
position: absolute;
/*top: 10px;
right: 20px;*/
cursor: pointer;
display: none;
}
#myModal #fvpp-close.close {
display: block;
}
#fvpp-dialog h2 {
font-size: 2em;
margin: 0;
}
#fvpp-dialog p { margin: 0; }
.modal {
display: none;
position: fixed;
z-index: 1400;
padding-top: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
}
/* Modal Content */
.modal-content {
position: relative;
background-color: transparent;
margin: auto;
padding: 0;
/*border: 1px solid #888;*/
border-radius: 5px;
width: 60%;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
-webkit-animation-name: animatetop;
-webkit-animation-duration: 0.4s;
animation-name: animatetop;
animation-duration: 0.4s
}
/* Add Animation */
@-webkit-keyframes animatetop {
from {top:-300px; opacity:0}
to {top:0; opacity:1}
}
@keyframes animatetop {
from {top:-300px; opacity:0}
to {top:0; opacity:1}
}
/* The Close Button */
.close {
color: white;
float: right;
font-size: 28px;
font-weight: bold;
position: absolute;
top: -27px;
right: -12px;
text-shadow: 0 0 rgb(0 0 0 / 36%);
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.modal-header {
padding: 2px 16px;
background-color: #5cb85c;
color: white;
}
.modal-body {
/*padding: 2px 16px;*/
border-radius: 5px;
}
.modal-footer {
padding: 2px 16px;
background-color: #5cb85c;
color: white;
}
</style>
<style>
.home-hero-container {
min-height: 750px;
max-height: 926px;
background-color: #000100!important;
}
.wide-block {
max-width: 1464px;
padding: 6.5rem 0 0 !important;
background-color: #000100!important;
}
.bg-gray-dark-mktg {
background-color: #000100!important;
}
.home-astro-mona {
left: 50%!important;
max-width: 234px!important;
}
.home-repo-editor {
padding-top: 0!important;
min-height: auto!important;
}
.mt-lg-2 {
margin-top: 80px !important;
}
.pricing-tabel {
/*background-image: url("assets/images/pricingtabel.jpg");
height: 600px;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;*/
color: #ffffff;
}
.pricing-tabel .list-style-none .mr-15{
margin-right: 30px;
}
.pricing-tabel ul li .card.card-first{
width: 18rem;
}
.pricing-tabel ul li .card{
width: 8rem;
}
.pricing-tabel ul li{
list-style-type: none;
}
.pricing-tabel ul li .card {
text-align: center;
}
.pricing-tabel ul li .card ul li{
margin-bottom: 15px;
text-align: center;
}
.pricing-tabel ul li .card img{
width: 30px;
}
.pricing-tabel ul li:first-child .card{
border: none;
box-shadow: none;
text-align: left;
}
.pricing-tabel ul li .card{
background-color: transparent;
width: 8rem;
border: 2px solid #9df2d0;
border-radius: 4px;
padding: 10px;
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.pricing-tabel ul li:last-child .card{
box-shadow: 0 0 5px 5px #a263db;
border: 2px solid #49244f;
}
.pricing-tabel .list-style-none .mr-15:last-child {
margin-right: 0;
}
.build-in-animate .home-nav .home-nav-hidden {
flex: none!important;
}
.btn-transparent{
width: 50%!important;
text-align: center;
}
.text-normal {
font-weight: 600!important;
font-size: 16px!important;
}
@media (min-width: 768px){
/*.home-repo-editor {
padding-top: calc(500 / 1248 * 100%)!important;
}*/
.pricing-tabel .d-lg-flex {
display: flex !important;
}
}
@media (min-width: 1012px){
.col-10-max {
max-width: 80%!important;
}
}
@media (min-width: 1012px){
.home-globe-container-video, .home-globe-container-webgl {
left: 0;
width: 900px;
height: 900px;
margin-left: -250px!important;
}
}
@media (min-width: 1200px){
.home-globe-container-video, .home-globe-container-webgl {
left: 0;
width: 900px;
height: 900px;
margin-left: -150px!important;
}
}
@media screen (min-width: 768px) and (max-width: 1024px){
.home-globe-container-video, .home-globe-container-webgl{
left: auto!important;
}
.text-md-left {
text-align: right !important;
}
}
@media (max-width: 1024px){
.modal-content{
width: 90%;
}
}
@media (max-width: 768px){
.home-nav.on .home-nav-hidden {
text-align: left!important;
}
.btn-transparent{
margin-bottom: 0px;
margin-right: 15!important;
}
.home-astro-mona{
display: none;
}
.btn-transparent{
width: 50%!important;
}
.btn-primary-mktg{
width: 50%!important;
}
/*.home-repo-editor {
min-height: 540px!important;
}*/
.mt-lg-2 {
margin-top: 8px !important;
}
.home-globe-container-video, .home-globe-container-webgl{
display: none;
}
.home-hero-container {
min-height: 500px!important;
}
}
@media (max-width: 576px){
.h1-mktg {
font-size: 30px!important;
}
.btn-transparent{
margin-bottom: 15px;
margin-right: 0!important;
width: 100%!important;
}
.btn-primary-mktg{
width: 100%!important;
}
.pricing-tabel ul li {
list-style-type: none;
width: 100%;
margin-right: 0px!important;
margin-bottom: 15px;
}
.pricing-tabel ul li .card{
width: 100%;
}
.home-globe-container-video, .home-globe-container-webgl {
position: relative;
left: -132vw!important;
}
.home-hero-container {
min-height: 600px!important;
}
}
@media (max-width: 425px){
.home-globe-container-video, .home-globe-container-webgl {
position: relative;
left: -156vw!important;
}
.home-hero-container {
min-height: 600px!important;
}
}
@media (max-width: 375px){
.home-globe-container-video, .home-globe-container-webgl {
position: relative;
left: -155vw!important;
}
.home-hero-container {
min-height: 650px!important;
}
}
@media (max-width: 375px){
.home-hero-container {
min-height: 680px!important;
}
}
</style>
<link crossorigin="anonymous" media="all" rel="stylesheet" href="assets/dithereum-4a950b722035c96861c25c2d643184e8.css" />
<link crossorigin="anonymous" media="all" rel="stylesheet" href="assets/site-95582afbc21b7e3a2eaeddeb803f7606.css" />
<link crossorigin="anonymous" media="all" rel="stylesheet" href="assets/home-eb5baa36b2f8e14e68ee71c46f608925.css" />
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script>
$(function(){
$("#header").load("header.html");
$("#footer").load("footer.html");
});
$(function () {
//toggle two classes on button element
$('.home-nav-trigger').on('click',function () {
$('.js-toggler-container').toggleClass(' on');
});
});
/*
* First Visit Popup jQuery Plugin version 1.2
*/
(function ($) {
'use strict';
$.fn.firstVisitPopup = function (settings) {
var $body = $('body');
var $dialog = $(this);
var $blackout;
var setCookie = function (name, value) {
var date = new Date(),
expires = 'expires=';
date.setTime(date.getTime() + 3600000);
expires += date.toGMTString();
document.cookie = name + '=' + value + '; ' + expires + '; path=/';
}
var getCookie = function (name) {
var allCookies = document.cookie.split(';'),
cookieCounter = 0,
currentCookie = '';
for (cookieCounter = 0; cookieCounter < allCookies.length; cookieCounter++) {
currentCookie = allCookies[cookieCounter];
while (currentCookie.charAt(0) === ' ') {
currentCookie = currentCookie.substring(1, currentCookie.length);
}
if (currentCookie.indexOf(name + '=') === 0) {
return currentCookie.substring(name.length + 1, currentCookie.length);
}
}
return false;
}
var showMessage = function () {
$blackout.show();
$dialog.show();
}
var hideMessage = function () {
$blackout.hide();
$dialog.hide();
setCookie('fvpp' + settings.cookieName, 'true');
}
$body.append('<div id="fvpp-blackout"></div>');
$dialog.append('<a id="fvpp-close">✖</a>');
$blackout = $('#fvpp-blackout');
if (getCookie('fvpp' + settings.cookieName)) {
hideMessage();
} else {
showMessage();
}
$(settings.showAgainSelector).on('click', showMessage);
$body.on('click', '#fvpp-blackout, #fvpp-close', hideMessage);
};
})(jQuery);
/*
* First Visit Popup jQuery Plugin version 1.2
*/
$(function () {
$('#myModal').firstVisitPopup({
cookieName : 'homepage',
showAgainSelector: '#show-message'
});
});
/*
* First Visit Popup jQuery Plugin version 1.2
*/
</script>
<script crossorigin="anonymous" defer="defer" type="application/javascript" src="assets/environment-35e7e763.js"></script>
<!-- <script crossorigin="anonymous" defer="defer" type="application/javascript" src="assets/chunk-frameworks-61db89fd.js"></script> -->
<script crossorigin="anonymous" defer="defer" type="application/javascript" src="assets/chunk-vendor-a518e511.js"></script>
<script crossorigin="anonymous" defer="defer" type="application/javascript" src="assets/behaviors-4a43d054.js"></script>
<script crossorigin="anonymous" defer="defer" type="application/javascript" src="assets/marketing-60f8a4d2.js"></script>
<meta name="viewport" content="width=device-width">
<title>Dithereum: Where the world builds Dapps · Dithereum</title>
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="Dithereum">
<link rel="fluid-icon" href="fluidicon.png" title="Dithereum">
<meta name="page-subject" content="Dithereum">
<meta name="Dithereum-keyboard-shortcuts" content="dashboards" data-pjax-transient="true" />
<meta name="selected-link" value="/" data-pjax-transient>
<meta name="google-site-verification" content="c1kuD-K2HIVF635lypcsWPoD4kilo5-jA_wBFyT4uMY">
<meta name="google-site-verification" content="KT5gs8h0wvaagLKAVWq8bbeNwnZZK1r1XQysX3xurLU">
<meta name="google-site-verification" content="ZzhVyEFwb7w3e0-uOTltm8Jsck2F5StVihD0exw2fsA">
<meta name="google-site-verification" content="GXs5KoUUkNCoaAZn7wPN-t01Pywp9M3sEjnt_3_ZWPc">
<meta name="features-datafile" content="{"features":[{"name":"home_page_globe","enabled":true,"percentageOfActors":0,"actors":[]}]}" />
<meta name="hostname" content="Dithereum.com">
<meta name="user-login" content="">
<meta name="expected-hostname" content="Dithereum.com">
<meta name="enabled-features" content="BRANCH_PROTECTION_RULE_WEBHOOK,MARKETPLACE_PENDING_INSTALLATIONS,FILE_UPLOAD_CURSOR_POSITION">
<meta http-equiv="x-pjax-version" content="c58f710571e0eef24cc071366e4a50e187ec553b4a88540913cc32a7a03394ce">
<meta http-equiv="x-pjax-csp-version" content="b4e1b4ea1c5bfefd2115d2e5d6c75e03a42950fea74e50ad3d37e72e99b314cd">
<meta http-equiv="x-pjax-css-version" content="959c7856fc2d56dd4182bedc3d13eb4f2c300d850e739157b8ed00027331b6df">
<meta http-equiv="x-pjax-js-version" content="0fc1c55c548d2bb9277679793316faa1239b5bedc8b2cd7327d3696910e3c84f">
<meta name="homepage-version-ga-dimension" content ="dimension11">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="620">
<link rel="preload" href="assets/data/data.json" as="fetch" type="application/json">
<!-- <link rel="preload" href="assets/fonts/alliance/Alliance-No-1-ExtraBold.woff2" as="font" type="font/woff" crossorigin>
<link rel="preload" href="assets/fonts/alliance/Alliance-No-1-Regular.woff2" as="font" type="font/woff" crossorigin> -->
<meta name="browser-optimizely-client-errors-url" content="https://api.Dithereum.com/_private/browser/optimizely_client/errors">
<link rel="mask-icon" href="pinned-octocat.svg" color="#000000">
<link rel="alternate icon" class="js-site-favicon" type="image/png" href="assets/images/DithereumIconFavicon.png">
<meta name="theme-color" content="#1e2327">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JCJJJRXYYC"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-JCJJJRXYYC');
</script>
</head>
<body class="logged-out env-production page-responsive header-overlay" style="word-wrap: break-word;">
<div class="position-relative js-header-wrapper ">
<a href="#start-of-content" class="px-2 py-4 color-bg-info-inverse color-text-white show-on-focus js-skip-to-content">Skip to content</a>
<span data-view-component="true" class="progress-pjax-loader js-pjax-loader-bar Progress position-fixed width-full">
<span style="width: 0%;" data-view-component="true" class="Progress-item progress-pjax-loader-bar color-bg-info-inverse"></span>
</span>
<div id="unsupported-browser1" class="unsupported-browser" hidden>
<div class="container-lg p-responsive clearfix d-flex flex-items-center py-2">
<svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-alert color-gray-7 mr-2 hide-sm">
<path fill-rule="evenodd" d="M8.22 1.754a.25.25 0 00-.44 0L1.698 13.132a.25.25 0 00.22.368h12.164a.25.25 0 00.22-.368L8.22 1.754zm-1.763-.707c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0114.082 15H1.918a1.75 1.75 0 01-1.543-2.575L6.457 1.047zM9 11a1 1 0 11-2 0 1 1 0 012 0zm-.25-5.25a.75.75 0 00-1.5 0v2.5a.75.75 0 001.5 0v-2.5z"></path>
</svg>
<div class="d-flex flex-auto flex-column flex-md-row">
<div class="flex-auto min-width-0 mr-2" style="padding-top:1px">
<span>Dithereum no longer supports this web browser.</span>
<a href="https://docs.Dithereum.com/articles/supported-browsers">
Learn more about the browsers we support.
</a>
</div>
</div>
</div>
</div>
<header id="header" class="Header-old header-logged-out js-details-container Details position-relative f4 py-2" role="banner"></header>
</div>
<div id="start-of-content" class="show-on-focus"></div>
<div data-pjax-replace id="js-flash-container">
<template class="js-flash-template">
<div class="flash flash-full {{ className }}">
<div class=" px-2" >
<button class="flash-close js-flash-close" type="button" aria-label="Dismiss this message">
<svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-x">
<path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path>
</svg>
</button>
<div>{{ message }}</div>
</div>
</div>
</template>
</div>
<include-fragment class="js-notification-shelf-include-fragment" data-base-src="notifications/beta/shelf"></include-fragment>
<div class="application-main "
data-commit-hovercards-enabled
data-discussion-hovercards-enabled
data-issue-and-pr-hovercards-enabled
>
<main class="font-mktg">
<div class="overflow-hidden">
<div class="home-hero-container position-relative js-webgl-globe-data">
<div class="home-hero position-absolute z-1 top-0 right-0 bottom-0 left-0 overflow-hidden">
<div class="d-flex flex-column flex-justify-between mx-auto container-xl p-responsive height-full pb-md-9">
<div class="d-flex gutter gutter-spacious flex-column flex-lg-row flex-items-center height-full px-0 px-lg-3">
<div class="ml-md-n3 mr-md-3 col-12 col-lg-6 text-center text-md-left">
<h1 class="h1-mktg color-text-white mb-3 position-relative z-2"> Where the world builds Dapps </h1>
<p class="f2-mktg text-normal text-gray-light-mktg mr-lg-n4 mb-4 position-relative z-2">Developers and companies build, ship, and maintain their Dapps on Dithereum - the most advanced and secure blockchain platform in the world.</p>
<!-- '"` --><!-- </textarea></xmp> </option></form> -->
<form class="mx-auto mx-md-0 col-5-max js-signup-form position-relative z-2" autocomplete="off" action="/signup" accept-charset="UTF-8" method="get">
<div class="d-flex flex-column flex-sm-row flex-items-center">
<a href="/assets/docs/Dithereum-Whitepaper.pdf" target="_blank"
class="btn-mktg btn-transparent width-full width-sm-auto mr-2">
Whitepaper
</a>
<a href="https://docs.dithereum.org/#/" target="_blank"
class="btn-mktg btn-primary-mktg width-full width-sm-auto"
>
Get Started
</a>
</div>
</form>
<div class="position-lg-absolute bottom-lg-8 left-lg-0 right-lg-0 mt-4 z-1 position-relative">
<div class="container-xl mx-auto px-lg-3">
<div class="py-4" style="border-top: 1px solid rgba(255,255,255,0.1)">
<div class="d-flex gutter-condensed gutter-md-spacious col-12 col-lg-8 flex-justify-between text-md-left">
<div class="col-6 col-sm-4 col-md-3">
<h2 class="f3-mktg text-mono color-text-white text-normal no-wrap">100,000<span class="text-white-fade">+</span> </h2>
<p class="m-0 text-mono text-white-fade f6-mktg">Max TPS</p>
</div>
<div class="col-6 col-sm-4 col-md-3">
<h2 class="f3-mktg text-mono color-text-white text-normal no-wrap">3<span class="text-white-fade"></span> seconds</h2>
<p class="m-0 text-mono text-white-fade f6-mktg">Block Interval</p>
</div>
<div class="col-sm-4 col-md-3 d-none d-md-block">
<h2 class="f3-mktg text-mono color-text-white text-normal no-wrap">10<span class="text-white-fade">+</span> seconds</h2>
<p class="m-0 text-mono text-white-fade f6-mktg">Tx Finality</p>
</div>
<div class="col-3 d-none d-sm-block">
<h3 class="f3-mktg text-mono color-text-white text-normal no-wrap">DPoS</h3>
<p class="m-0 text-mono text-white-fade f6-mktg">High Speeed Consensus</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 col-lg-6 text-center position-relative">
<div class="home-globe-container home-globe-container-webgl" data-feature="home_page_globe" data-show-when-feature-enabled="true" data-feature-hydro="{"event_type":"feature_flag_decision","payload":{"feature":"home_page_globe","originating_url":"","user_id":null}}" data-feature-hydro-hmac="be0cbc7da2f32edf891ea5670441a984e859ce28aaba3fb91263d03f7c5a368d">
<div class="mx-auto width-full mt-n9 mt-lg-2 home-globe position-relative height-full js-webgl-globe">
<video width="900" height="860" src="assets/video/video-new122.mp4" loop muted autoplay></video>
</div>
</div>
<!--
<div class="home-globe-container" data-feature="home_page_globe" data-show-when-feature-enabled="false" hidden="">
<div class="mx-auto width-full mt-n9 mt-lg-2 home-globe position-relative height-full">
<img srcset="https://Dithereum.Dithereumassets.com/images/modules/site/home/globe-700.jpg 700w,
https://Dithereum.Dithereumassets.com/images/modules/site/home/globe.jpg 1400w" sizes="(max-width: 700px) 70vw, 700px" src="https://Dithereum.Dithereumassets.com/images/modules/site/home/globe.jpg" alt="Planet earth with visualization of Dithereum activity crossing the globe" class="width-full height-auto js-globe-fallback-image" loading="lazy" decoding="async" width="1238" height="1404">
</div>
</div> -->
</div>
</div>
</div>
<img src="assets/images/hero-glow.svg" alt="Glowing universe" class="position-absolute home-hero-glow events-none z-1">
<video loop muted playsinline preload="none" class="js-globe-aurora position-absolute top-0 left-0 right-0 bottom-0" style="margin: auto; z-index: -1; min-width: 100%; min-height: 100%;" hidden>
<source type="video/mp4; codecs=avc1.4D401E,mp4a.40.2" src="assets/images/aurora.h264.mp4">
</video>
</div>
<div class="position-absolute width-full color-bg-primary" style="bottom: 1rem;display: none;">
<div class="container-xl p-responsive">
<div class="d-flex flex-justify-center flex-lg-justify-end color-bg-primary">
<div class="col-8 col-sm-7 col-md-6 col-lg-5 position-relative z-2 right-lg-n12 events-none">
<picture>
<source srcset="assets/images/astro-mona.webp" type="image/webp">
<img src="assets/images/astro-mona.svg" width="960" height="967" class="home-astro-mona width-full position-absolute bottom-0 height-auto" alt="Mona looking at Dithereum activity across the globe">
</picture>
</div>
</div>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" preserveAspectRatio="none" viewBox="0 0 1680 40" class="position-absolute width-full z-1" style="bottom: -1px;"><path d="M0 40h1680V30S1340 0 840 0 0 30 0 30z" fill="#fff"></path></svg>
</div>
<div class="overflow-hidden">
<div class="mx-auto container-xl p-responsive pt-8 pt-md-9">
<div class="d-flex gutter gutter-spacious js-build-in-trigger" data-build-margin-bottom="20">
<div class="col-10-max mx-auto">
<div class="js-build-in-item build-in-scale-fade color-bg-primary rounded-2 box-shadow-card-border-mktg overflow-hidden">
<div class="flash-banner-new">
<a href="https://youtu.be/dIm6ypHtkwI" target="_blank">
<img src="assets/images/enterprise-city-w-logos-new.webp" style="width: 100%;" alt="enterprise-city-w-logos-new">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 col-md-8 position-absolute text-right position-relative height-full right-0" style="display: none;">
<picture>
<source srcset="assets/images/enterprise-city-w-logos.webp" type="image/webp">
<img src="assets/images/enterprise-city-w-logos.webp" class="width-full height-auto position-absolute right-0 bottom-0" alt="Futuristic city scape" loading="lazy" decoding="async" width="1376" height="436">
</picture>
</div>
</div>
</div>
<div class="position-relative pt-5 mt-5">
<div class="position-absolute left-0 width-full height-full js-build-in-trigger" data-build-non-decorative="true" data-build-margin-bottom="100" data-build-threshold="0" style="top: -4rem;">
<div class="mb-4 top-0 home-nav-outer js-build-in-item width-full z-3">
<div class="home-nav width-full js-toggler-container">
<div class="home-nav-bg position-fixed top-0 left-0 width-full height-full z-n1 color-bg-canvas-inverse js-toggler-target-off" style="opacity: 0.8"></div>
<div class="px-md-4 py-2 color-bg-primary">
<div class="home-nav-container mx-auto col-10-max d-flex flex-justify-between">
<button type="button" class="home-nav-trigger text-left js-toggler-target d-inline-block d-md-none py-2 px-3" aria-label="Toggle page navigation">
<svg class="octicon octicon-three-bars color-text-primary replaced color-text-primary" viewBox="0 0 16 16" height="24"><path clip-rule="evenodd" d="m1 2.75c0-.19891.07902-.38968.21967-.53033s.33142-.21967.53033-.21967h12.5c.1989 0 .3897.07902.5303.21967.1407.14065.2197.33142.2197.53033s-.079.38968-.2197.53033c-.1406.14065-.3314.21967-.5303.21967h-12.5c-.19891 0-.38968-.07902-.53033-.21967s-.21967-.33142-.21967-.53033zm0 5c0-.19891.07902-.38968.21967-.53033s.33142-.21967.53033-.21967h12.5c.1989 0 .3897.07902.5303.21967.1407.14065.2197.33142.2197.53033s-.079.38968-.2197.53033c-.1406.14065-.3314.21967-.5303.21967h-12.5c-.19891 0-.38968-.07902-.53033-.21967s-.21967-.33142-.21967-.53033zm.75 4.25c-.19891 0-.38968.079-.53033.2197-.14065.1406-.21967.3314-.21967.5303s.07902.3897.21967.5303c.14065.1407.33142.2197.53033.2197h12.5c.1989 0 .3897-.079.5303-.2197.1407-.1406.2197-.3314.2197-.5303s-.079-.3897-.2197-.5303c-.1406-.1407-.3314-.2197-.5303-.2197z" fill-rule="evenodd"></path></svg>
<svg class="octicon octicon-x color-text-primary" height="24" viewBox="0 0 24 24" width="16"><path clip-rule="evenodd" d="m6.21967 6.21967c.29289-.29289.76777-.29289 1.06066 0l4.71967 4.71963 4.7197-4.71963c.2929-.29289.7677-.29289 1.0606 0s.2929.76777 0 1.06066l-4.7196 4.71967 4.7196 4.7197c.2929.2929.2929.7677 0 1.0606s-.7677.2929-1.0606 0l-4.7197-4.7196-4.71967 4.7196c-.29289.2929-.76777.2929-1.06066 0s-.29289-.7677 0-1.0606l4.71963-4.7197-4.71963-4.71967c-.29289-.29289-.29289-.76777 0-1.06066z" fill-rule="evenodd"></path></svg>
</button>
<div class="home-nav-links-container d-flex flex-auto flex-md-items-center">
<nav class="home-nav-links col-12 col-md-9 d-flex flex-auto flex-nowrap flex-justify-start flex-md-justify-between" aria-label="Dithereum homepage page navigation">
<a href="#home-code"
class="home-nav-item js-toggler-target-off text-mono f4-mktg color-text-tertiary no-underline js-scrollnav-item js-smoothscroll-anchor"
data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Home","action":"click to scroll to content","label":"ref_cta:Code;ref_loc:navigation launchpad;","originating_url":"","user_id":null}}" data-hydro-click-hmac="2b6e1e1b19f3e2349a4f0363061130fede1240474bec9d9e450f57df99eca40a"
>
Technology
</a>
<a href="#home-automate"
class="home-nav-item js-toggler-target-off text-mono f4-mktg color-text-tertiary no-underline js-scrollnav-item js-smoothscroll-anchor"
data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Home","action":"click to scroll to content","label":"ref_cta:Automate;ref_loc:navigation launchpad;","originating_url":"","user_id":null}}" data-hydro-click-hmac="6b5e9bda9b5726ea408fc8bc5350a3c829e962fcafa227a5f133a9d802bbecba"
>
Build
</a>
<a href="#home-secure"
class="home-nav-item js-toggler-target-off text-mono f4-mktg color-text-tertiary no-underline js-scrollnav-item js-smoothscroll-anchor"
data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Home","action":"click to scroll to content","label":"ref_cta:Secure;ref_loc:navigation launchpad;","originating_url":"","user_id":null}}" data-hydro-click-hmac="fb26876a95b2c0a5cae686a61b29706363e6288b4865b174098da828e33944ed"
>
Secure
</a>
<a href="#home-community"
class="home-nav-item js-toggler-target-off text-mono f4-mktg color-text-tertiary no-underline js-scrollnav-item js-smoothscroll-anchor"
data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Home","action":"click to scroll to content","label":"ref_cta:Community;ref_loc:navigation launchpad;","originating_url":"","user_id":null}}" data-hydro-click-hmac="407c4764529c6a2f7c07e738ef0e81e6deccd053fceba9471b66f2138e91da88"
>
Community
</a>
<a href="#home-community"
class="home-nav-item js-toggler-target-off text-mono f4-mktg color-text-tertiary no-underline js-scrollnav-item js-smoothscroll-anchor"
data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Home","action":"click to scroll to content","label":"ref_cta:Community;ref_loc:navigation launchpad;","originating_url":"","user_id":null}}" data-hydro-click-hmac="407c4764529c6a2f7c07e738ef0e81e6deccd053fceba9471b66f2138e91da88"
>
</a>
</nav>
<div class="home-nav-hidden rounded-2 text-right flex-shrink-0">
<a href="https://github.com./dithereum" target="_blank"
class="HeaderMenu-link flex-shrink-0 d-inline-block no-underline border color-border-tertiary rounded px-2 py-1">
<img src="assets/images/github-mark.svg" style="height:25px" alt="Dithereum Mark">
</a>
<a href="https://www.youtube.com/channel/UCDPzTaaVk4ywEsLaf6nLAeQ" target="_blank"
class="HeaderMenu-link flex-shrink-0 d-inline-block no-underline border color-border-tertiary rounded px-2 py-1">
<img src="assets/images/youtube.svg" style="height:25px" alt="Dithereum Youtube">
</a>
<a href="https://t.me/Dithereum" target="_blank"
class="HeaderMenu-link flex-shrink-0 d-inline-block no-underline border color-border-tertiary rounded px-2 py-1">
<img src="assets/images/telegram.png" style="height:25px" alt="Dithereum telegram">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="overflow-hidden">
<meta property="page-title" content="Dithereum: Where the world builds software">
<meta property="page-description" content="Dithereum is where over 65 million developers shape the future of software, together. Contribute to the open source community, manage your Dithereum repositories, review code like a pro, track bugs and features, power your CI/CD and DevOps workflows, and secure code before you commit it.">
<div class="position-relative z-2 mx-auto box-shadow-default-mktg wide-block js-section" id="home-code">
<div class="container-xl p-responsive">
<div class="d-flex flex-column gutter gutter-spacious">
<div class="col-12 col-sm-10 offset-sm-1">
<div class="col-6-max">
<h2 class="h2-mktg color-text-white mb-6 mb-md-8 text-gradient-mint-blue-dark">Build your Dapps on a Fast and a Secure Blockchain Platform</h2>
</div>
</div>
<div class="col-11 col-sm-10 offset-1">
<ul class="home-git-log-dark d-flex gutter gutter-spacious flex-column list-style-none pb-5">
<li class="col-12 col-md-9 col-lg-6 mt-n3 pb-4">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="28" viewBox="0 0 28 20" width="28" aria-hidden="true" class="home-git-icon home-git-item float-left mr-n6 position-relative z-1"><circle cx="14" cy="10" fill="#fff" r="5" stroke="#d0d6df" stroke-width="2"></circle></svg>
<h3 class="f2-mktg text-gray-light-mktg text-semibold mb-3"> <span class="color-text-white"> Dithereum is a fast, high-throughput open-source smart contract platform for digital assets and Dapps.</span></h3>
<a class="link-bump-mktg mr-3 text-semibold color-text-primary no-underline d-inline-block color-text-white f4-mktg pt-2 pb-3 link-bump-underlined-mktg" href="/assets/docs/Dithereum-Whitepaper.pdf" target="_blank" >
<span class="position-relative link-bump-inner-mktg">Read the whitepaper <span class=""><svg xmlns="http://www.w3.org/2000/svg" class="octicon octicon-chevrow" width="16" height="16" viewBox="0 0 16 16" fill="none"><path fill="currentColor" d="M7.28033 3.21967C6.98744 2.92678 6.51256 2.92678 6.21967 3.21967C5.92678 3.51256 5.92678 3.98744 6.21967 4.28033L7.28033 3.21967ZM11 8L11.5303 8.53033C11.8232 8.23744 11.8232 7.76256 11.5303 7.46967L11 8ZM6.21967 11.7197C5.92678 12.0126 5.92678 12.4874 6.21967 12.7803C6.51256 13.0732 6.98744 13.0732 7.28033 12.7803L6.21967 11.7197ZM6.21967 4.28033L10.4697 8.53033L11.5303 7.46967L7.28033 3.21967L6.21967 4.28033ZM10.4697 7.46967L6.21967 11.7197L7.28033 12.7803L11.5303 8.53033L10.4697 7.46967Z"></path>
<path class="octicon-chevrow-stem" stroke="currentColor" d="M1.75 8H11" stroke-width="1.5" stroke-linecap="round"></path></svg>
</span></span>
</a>
</li>
</ul>
</div>
<div class="col-12 position-relative">
<div class="home-repo-comp position-relative py-3">
<div class="position-relative z-2">
<div class="home-repo-editor rounded-2 position-relative mr-n1 ml-n1 mr-md-0 ml-md-0 overflow-hidden">
<div class="d-flex top-0 right-0 bottom-0 left-0">
<!-- <div class="pricing-tabel p-3" style="width: 100%; overflow-x: auto;">
<div class="title-text text-center my-5">
<h3>TOP-TIER BLOCKCHAIN PLATFORM COMPARISON</h3>
</div>
<ul class="nav d-lg-flex list-style-none" style="justify-content: center;">
<li class="mr-15 pt-2">
<div class="card card-first">
<div class="my-5"></div>
<ul class="list-group list-group-flush">
<li class="list-group-item text-left">Blockchain Generation</li>
<li class="list-group-item text-left">Transactions per second </li>
<li class="list-group-item text-left">Finality Time</li>
<li class="list-group-item text-left">Avg Tx Fee</li>
<li class="list-group-item text-left">Type</li>
<li class="list-group-item text-left">Node Language</li>
<li class="list-group-item text-left">Consensus Algorithm</li>
<li class="list-group-item text-left">Smart Contracts</li>
<li class="list-group-item text-left">On-chain Governance</li>
</ul>
</div>
</li>
<li class="mr-15">
<div class="card">
<img src="assets/images/blockchains/btc.png" class="card-img-top" alt="Dithereum">
<ul class="list-group list-group-flush">
<li class="list-group-item">1st gen</li>
<li class="list-group-item">7</li>
<li class="list-group-item">30 - 60 Minutes</li>
<li class="list-group-item">$25 - $30</li>
<li class="list-group-item">layer 1</li>
<li class="list-group-item">C/C++</li>
<li class="list-group-item">Proof of Work</li>
<li class="list-group-item">No</li>
<li class="list-group-item">No</li>
</ul>
</div>
</li>
<li class="mr-15">
<div class="card">
<img src="assets/images/blockchains/eth.png" class="card-img-top" alt="Dithereum">
<ul class="list-group list-group-flush">
<li class="list-group-item">2nd gen</li>
<li class="list-group-item"> 30 </li>
<li class="list-group-item">5 Minutes</li>
<li class="list-group-item">$10 - $50</li>
<li class="list-group-item">layer 1</li>
<li class="list-group-item">GO, Rust, C++</li>
<li class="list-group-item">Proof of Work</li>
<li class="list-group-item">Yes</li>
<li class="list-group-item">No</li>
</ul>
</div>
</li>
<li class="mr-15">
<div class="card">
<img src="assets/images/blockchains/bsc.png" class="card-img-top" alt="Dithereum">
<ul class="list-group list-group-flush">
<li class="list-group-item">2nd gen</li>
<li class="list-group-item"> 100 </li>
<li class="list-group-item">75 seconds</li>
<li class="list-group-item">$0.05</li>
<li class="list-group-item">layer 1</li>
<li class="list-group-item">GO </li>
<li class="list-group-item">Proof of Stake</li>
<li class="list-group-item">Yes</li>
<li class="list-group-item">Yes</li>
</ul>
</div>
</li>
<li class="mr-15">
<div class="card">
<img src="assets/images/blockchains/sol.png" class="card-img-top" alt="Dithereum">
<ul class="list-group list-group-flush">
<li class="list-group-item">3rd gen</li>
<li class="list-group-item"> 50,000 </li>
<li class="list-group-item">0.4 seconds</li>
<li class="list-group-item">$0.00025</li>
<li class="list-group-item">layer 1</li>
<li class="list-group-item">Rust </li>
<li class="list-group-item">Proof of Stake</li>
<li class="list-group-item">Yes</li>
<li class="list-group-item">Yes</li>
</ul>
</div>
</li>
<li class="mr-15">
<div class="card">
<img src="assets/images/blockchains/dth.png" class="card-img-top" alt="Dithereum">
<ul class="list-group list-group-flush">
<li class="list-group-item">3rd gen</li>
<li class="list-group-item"> 100,000 </li>
<li class="list-group-item">3 seconds</li>
<li class="list-group-item">$0.0001</li>
<li class="list-group-item">layer 1</li>
<li class="list-group-item">Go </li>
<li class="list-group-item">Proof of Stake</li>
<li class="list-group-item">Yes</li>
<li class="list-group-item">Yes</li>
</ul>
</div>
</li>
</ul>
</div> -->
<img src="assets/images/pricingtable2.png" alt="Glowing universe" class="" style="width: 100%;">
<!-- <img src="assets/images/hero-glow.svg" alt="Glowing universe" class="position-absolute home-hero-glow events-none z-1"> -->
</div>
</div>
</div>
</div>
</div>
<div class="col-11 col-sm-10 offset-1">
<ul class="home-git-log-dark d-flex gutter gutter-spacious flex-column list-style-none pt-5 pb-8 pb-md-9">
<li class="col-12 col-md-9 col-lg-12">
<div class="d-flex flex-column flex-lg-row flex-lg-row-reverse flex-items-center gutter gutter-spacious my-4">
<div class="col-12 col-lg-6 py-5 js-build-in build-in-slideX-left">
<h2 class="h3-mktg color-text-white mb-3 text-gradient-mint-blue-dark"> Technology of Future </h2>
<h3 class="f2-mktg text-gray-light-mktg lh-condensed text-semibold mb-3">
<br>
<span class="color-text-white"> • Security via DPoS Consensus</span><br><br>
<span class="color-text-white"> • Croos-chain Assets Bridge</span><br><br>
<span class="color-text-white"> • Fully EVM Compatible</span><br><br>
<span class="color-text-white"> • Highly Scalable Infrastructure</span>
</h3>
</div>
<div class="col-12 col-lg-6" aria-hidden="true">
<div class="position-relative">
<div class="rounded-2 home-packages-terminal f5-mktg p-4 text-mono">
<pre class="pre-line color-text-white home-pre js-type-in">
<span class="text-bold code-pink">→</span> <span class="text-bold code-green">~/dithereum-demo</span> <span class="js-type-letters">npm install web3</span>
<span class="js-type-row">+ [email protected]</span>
<span class="js-type-row"> added 109 packages from 64 contributors and audited 109 packages in 3.491s</span>
<span class="js-type-row"> </span>
<span class="js-type-row">9 packages are looking for funding</span>
<span class="js-type-row"> run `npm fund` for details</span>
<span class="js-type-row"></span>
<span class="js-type-row">found 0 vulnerabilities</span>
<span class="js-type-row"><span class="text-bold code-pink">→</span> <span class="text-bold code-green">~/dithereum-demo</span></span> <span class="js-type-letters"> </span>
</pre>
</div>
<img src="assets/images/repo-terminal-glow.svg" class="position-absolute z-n1" style="width: 150%; margin: 0 -25%; top: 50%; transform: translateY(-50%);" alt="Light glowing behind the editor" loading="lazy">
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="overflow-hidden width-full position-relative z-1">
<div class="container-xl p-responsive mx-auto">
<div class="d-flex flex-column gutter gutter-spacious position-relative">
</div>
</div>
</div>
</div>
<div class="overflow-hidden">
<div class="overflow-hidden js-section" id="home-automate">
<div class="container-xl p-responsive pb-8 pb-md-9">
<div class="home-git-log-center pt-10 pt-md-11">
<div class="col-8-max mx-0 mx-lg-auto text-left text-lg-center mb-4 mb-md-7 color-bg-primary pb-3">
<h2 class="h2-mktg mb-3"> Build on Developer Friendly <span class="text-gradient-purple-coral no-wrap">Dithereum Platform</span></h2>
<a class="link-bump-mktg mr-3 text-semibold color-text-primary no-underline d-inline-block f3-mktg pt-3 pb-4 link-bump-underlined-mktg" href="https://docs.dithereum.org/#/" target="_blank" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Home","action":"click to learn more about Dithereum Actions","label":"ref_page:/;ref_cta:Learn more about Dithereum Actions;ref_loc:automate launchpad","originating_url":"","user_id":null}}" data-hydro-click-hmac="a728d203f4ae0b773a5ad0f797541adde6c9fd072582d16374f1267b37c02fad">
<span class="position-relative link-bump-inner-mktg"> Go to Developer Documentation <span class="link-bump-symbol-large"><svg xmlns="http://www.w3.org/2000/svg" class="octicon octicon-chevrow" width="16" height="16" viewBox="0 0 16 16" fill="none"><path fill="currentColor" d="M7.28033 3.21967C6.98744 2.92678 6.51256 2.92678 6.21967 3.21967C5.92678 3.51256 5.92678 3.98744 6.21967 4.28033L7.28033 3.21967ZM11 8L11.5303 8.53033C11.8232 8.23744 11.8232 7.76256 11.5303 7.46967L11 8ZM6.21967 11.7197C5.92678 12.0126 5.92678 12.4874 6.21967 12.7803C6.51256 13.0732 6.98744 13.0732 7.28033 12.7803L6.21967 11.7197ZM6.21967 4.28033L10.4697 8.53033L11.5303 7.46967L7.28033 3.21967L6.21967 4.28033ZM10.4697 7.46967L6.21967 11.7197L7.28033 12.7803L11.5303 8.53033L10.4697 7.46967Z"></path><path class="octicon-chevrow-stem" stroke="currentColor" d="M1.75 8H11" stroke-width="1.5" stroke-linecap="round"></path></svg>
</span></span>
</a>
</div>
<div class="river-mktg js-build-in-trigger d-flex flex-column gutter gutter-spacious flex-lg-items-center my-3 my-sm-7 my-md-8 position-relative flex-lg-row-reverse pb-4 pb-md-7" data-build-in-stagger=100 >
<div class="col-12 py-3 js-build-in-item col-lg-5 build-in-slideX-left">