-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex-en.php
1983 lines (1796 loc) · 81.8 KB
/
index-en.php
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>
<?php
include_once('arrecada.php');
?>
<html lang="en">
<head>
<meta charset="utf-8">
<title>SperoCoin</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Favicons -->
<link href="img/favicon.png" rel="icon">
<link href="img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Montserrat:300,400,500,700" rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet" type="text/css">
<style type="text/css">
.btn-space {
margin-top: 5px;
}
</style>
<link rel="stylesheet" type="text/css" href="css/vertical_timeline">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
<script type="text/javascript">
$(function(){
$('.selectpicker').selectpicker();
});
</script>
<script type="text/javascript" src="js/jquery.1.8.3.min.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/jquery-scrolltofixed.js"></script>
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="js/jquery.isotope.js"></script>
<script type="text/javascript" src="js/wow.js"></script>
<script type="text/javascript" src="js/classie.js"></script>
<script src="contactform/contactform.js"></script>
<!-- =======================================================
Theme Name: BizPage
Theme URL: https://bootstrapmade.com/bizpage-bootstrap-business-template/
Author: BootstrapMade.com
License: https://bootstrapmade.com/license/
======================================================= -->
</head>
<body>
<!--==========================
Header
============================-->
<header id="header">
<div class="container-fluid">
<div id="logo" class="pull-left">
<h1>
<a href="#intro">
<img class="img-responsive" src="img/logo.png" alt="" title="" width="45px"/>
SPEROCOIN</a>
</h1>
<!-- Uncomment below if you prefer to use an image logo -->
</div>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="menu-active"><a href="#intro">Home</a></li>
<!-- Menu de Informações -->
<li class="menu-has-children">
<a href="" title="Info">Information:</a>
<ul>
<li><a href="#about">About Us</a></li>
<li><a href="#team">Our Team</a></li>
<li><a href="#Technical_Characteristics">Our Software</a></li>
<li><a href="#timeline">TimeLine</a></li>
<li><a href="#roadmap">RoadMap</a></li>
<li><a href="#portfolio">Where we are?</a></li>
<li><a href="https://telegra.ph/FAQ-Proof-of-StakePoS---SPERO-03-31" target="_blank">FAQ PoS(Proof of Stake)</a></li>
</ul>
</li>
<!-- Menu de Informações -->
<li><a href="#downloads">Downloads</a></li>
<!-- Menu de Serviços -->
<li class="menu-has-children">
<a href="" title="Services">Services:</a>
<ul>
<li><a href="https://explorer.sperocoin.org/" target="_blank">Block Explorer</a></li>
<li><a href="http://52.67.138.144:3001/" target="_blank">Block Explorer 2</a></li>
<li><a href="https://webwallet.sperocoin.org" target="_blank">WebWallet</a></li>
<li><a href="https://faucet.sperocoin.org" target="_blank">Faucet</a></li>
<li><a href="https://sperocoin.org/paperwallet" target="_blank">PaperWallet</a></li>
<li><a href="https://cloudmining.sperocoin.org" target="_blank">CloudMining</a></li>
<li><a href="https://pool.echo-terminal.org/" target="_blank">Pool PoW</a></li>
<li><a href="https://loja.sperocoin.org" target="_blank">WebShop</a></li>
</ul>
</li>
<!-- Menu de Serviços -->
<li><a href="#clients" target="_blank">Partners</a></li>
<li><a href="listing.php" target="_blank">Exchange Official</a></li>
<!-- Menu de Linguagem -->
<li class="menu-has-children">
<a href="" title="Language">LANG:</a>
<ul>
<li><a href="index.php">PT</a></li>
<li><a href="index-es.php">ES</a></li>
</ul>
</li>
<!-- Menu de Linguagem -->
</ul>
</nav><!-- #nav-menu-container -->
</div>
</header><!-- #header -->
<!--==========================
Intro Section
============================-->
<section id="intro">
<div class="intro-container">
<div id="introCarousel" class="carousel slide carousel-fade" data-ride="carousel">
<ol class="carousel-indicators"></ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<div class="carousel-background"><img src="img/intro-carousel/1.jpg" alt=""></div>
<div class="carousel-container">
<div class="carousel-content">
<h2>Welcome To Spero Coin</h2>
<p><h3 style="color: white">Sustainability in technology</h3></p>
<p>We are a sustainable cryptocurrency that aims to reduce the social and economic differences of the world's population.
</p>
<a href="whitepaper/index.html" class="btn-get-started scrollto" target="_blank">WHITEPAPER</a>
</div>
</div>
</div>
<div class="carousel-item">
<div class="carousel-background"><img src="img/intro-carousel/2.jpg" alt=""></div>
<div class="carousel-container">
<div class="carousel-content">
<h2>Wallet Android FullNode</h2>
<p><h3 style="color: white">The mobile wallet that mines stake!</h3></p>
<p>We have the only android wallet in Brazil that performs PoS mining directly on the smartphone using the same structure as the desktop wallets!
</p>
<a href="#downloads" class="btn-get-started scrollto" target="_blank">DOWNLOAD!</a>
</div>
</div>
</div>
<div class="carousel-item">
<div class="carousel-background"><img src="img/intro-carousel/3.jpg" alt=""></div>
<div class="carousel-container">
<div class="carousel-content">
<h2>Buying and Selling Made Easy</h2>
<p><h3 style="color: white">Purchase and sell SPERO officially</h3></p>
<p>With our SPERO buying and selling platform, you are more confident about the origin and destination of your assets! Access now!
</p>
<a href="https://speropay.sperocoin.org" class="btn-get-started scrollto" target="_blank">ACCESS!</a>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#introCarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon ion-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#introCarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon ion-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</section><!-- #intro -->
<main id="main">
<!--==========================
Downloads Section
============================-->
<section id="downloads" class="section-bg wow fadeInUp">
<div class="container">
<header class="section-header">
<h3>Downloads</h3>
</header>
<div class="row">
<div class="col-md-2 col-sm-12 btn-space">
<a href="#" data-toggle="modal" data-target="#androidfull"><button type="button" class="btn btn-outline-warning btn-block"><i class="fa fa-android"></i> FullNode</button></a>
</div>
<div class="col-md-2 col-sm-12 btn-space">
<a href="#" data-toggle="modal" data-target="#androidlite"><button type="button" class="btn btn-outline-warning btn-block"><i class="fa fa-android"></i> LITE</button></a>
</div>
<div class="col-md-2 col-sm-12 btn-space">
<a href="#" data-toggle="modal" data-target="#windowsqt"><button type="button" class="btn btn-outline-info btn-block"><i class="fa fa-windows"></i> QT</button></a>
</div>
<div class="col-md-2 col-sm-12 btn-space">
<a href="#" data-toggle="modal" data-target="#windowsdaemon"><button type="button" class="btn btn-outline-info btn-block"><i class="fa fa-windows"></i> Daemon</button></a>
</div>
<div class="col-md-2 col-sm-12 btn-space">
<a href="#" data-toggle="modal" data-target="#linuxcomp"><button type="button" class="btn btn-outline-secondary btn-block"><i class="fa fa-terminal"></i> Linux</button></a>
</div>
<div class="col-md-2 col-sm-12 btn-space">
<a href="#" data-toggle="modal" data-target="#blockchain"><button type="button" class="btn btn-outline-success btn-block"><i class="fa fa-cubes"></i> BlockChain</button></a>
</div>
</div>
</div>
</section>
<br>
<!-- Modal Android FullNode-->
<div class="modal fade" id="androidfull" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"></button>
<h4 class="modal-title">Android FullNode</h4>
</div>
<div class="modal-body">
<p><center>Wallet Android. With this wallet, you can conduct PoS mining directly from your device.<br>
<br>
<a href="https://github.com/DigitalCoin1/SperoCoin_Android/releases/download/SperoCoin-v.2.6.4.9-BETA/SperoCoin-v.2.6.4.9-BETA.apk" target="_blank"><button class="btn"><i class="fa fa-download"></i> Download v.2.6.4.9</button></a>
</center></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Fechar</button>
</div>
</div>
</div>
</div>
<!-- Modal Android LITE-->
<div class="modal fade" id="androidlite" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"></button>
<h4 class="modal-title">Android LITE</h4>
</div>
<div class="modal-body">
<p><center>Wallet Android WebBased. Connected directly to our WebWallet, so you have the convenience of accessing your account in the palm of your hand.<br>
<br>
<a href="https://play.google.com/store/apps/details?id=appinventor.ai_sperocoin.SPEROCOIN2" target="_blank"><button class="btn"><i class="fa fa-download"></i> Download v.1.4-BETA</button></a>
</center></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Fechar</button>
</div>
</div>
</div>
</div>
<!-- Modal QT Windows-->
<div class="modal fade" id="windowsqt" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"></button>
<h4 class="modal-title">QT Windows</h4>
</div>
<div class="modal-body">
<p><center>Wallet with graphic design. Model for those who seek comfort and convenience to check their balance, send and receive coins in a practical and fast.<br>
<br>
<a href="https://github.com/DigitalCoin1/SperoCoin/releases/download/SperoCoin-v.2.6.4.9/SperoCoin-qt-v2.6.4.9_x86.exe" target="_blank"><button class="btn"><i class="fa fa-download"></i> Download v2.6.4.9 - 32bits</button></a>
<br><br>
<a href="https://github.com/DigitalCoin1/SperoCoin/releases/download/SperoCoin-v.2.6.4.9/SperoCoin-qt-v2.6.4.9_x64.exe" target="_blank"><button class="btn"><i class="fa fa-download"></i> Download v2.6.4.9 - 64bits</button></a>
</center></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Fechar</button>
</div>
</div>
</div>
</div>
<!-- Modal Daemon Windows-->
<div class="modal fade" id="windowsdaemon" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"></button>
<h4 class="modal-title">Daemon Windows</h4>
</div>
<div class="modal-body">
<p><center>Wallet without graphic design. Model for those who seek practicality and less consumption of resources.<br>
<br>
<a href="https://github.com/DigitalCoin1/SperoCoin/releases/download/SperoCoin-v.2.6.4.9/SperoCoind-v2.6.4.9_x86.exe" target="_blank"><button class="btn"><i class="fa fa-download"></i> Download v2.6.4.9 - 32bits</button></a>
<br><br>
<a href="https://github.com/DigitalCoin1/SperoCoin/releases/download/SperoCoin-v.2.6.4.9/SperoCoind-v2.6.4.9_x64.exe" target="_blank"><button class="btn"><i class="fa fa-download"></i> Download v2.6.4.9 - 64bits</button></a>
</center></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Fechar</button>
</div>
</div>
</div>
</div>
<!-- Modal Blockchain-->
<div class="modal fade" id="blockchain" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"></button>
<h4 class="modal-title">Blockchain</h4>
</div>
<div class="modal-body">
<p><center>Download the complete blockchain at a later date for better speed in the synchronization.<br>
<br>
<a href="https://github.com/DigitalCoin1/SperoCoin/releases" target="_blank"><button class="btn"><i class="fa fa-download"></i> Download</button></a>
</center></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Fechar</button>
</div>
</div>
</div>
</div>
<!-- Modal Linux -->
<div class="modal fade" id="linuxcomp" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"></button>
<h4 class="modal-title">Compilation Linux Wallet</h4>
</div>
<div class="modal-body">
<p><b><i class="ion-code"></i> Download and install the dependencies:</b><br>
sudo apt-get install build-essential libboost-all-dev libcurl4-openssl-dev libdb5.3-dev libdb5.3++-dev qt-sdk libminiupnpc-dev qrencode libqrencode-dev git libtool automake autotools-dev autoconf pkg-config libssl-dev libgmp3-dev libevent-dev bsdmainutils<br><br>
<b><i class="fa fa-code"></i> Clone the github source code for the local machine:</b><br>
git clone https://github.com/DigitalCoin1/SperoCoin
<br><br>
<b><i class="fa fa-code"></i> Compile the daemon in the SperoCoin/src directory:</b><br>
cd SperoCoin/src<br><br>
make -f makefile.unix USE_UPNP=- USE_IPV6=1<br><br>
strip SperoCoind
<br><br>
<b><i class="fa fa-code"></i> Run daemon in the SperoCoin/src directory:</b><br>
./SperoCoind
<br><br>
<b><i class="fa fa-code"></i> [OPTIONAL]Compile the QT in the SperoCoin directory:</b><br>
sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler libqrencode-dev<br><br>
qmake SperoCoin-qt.pro "USE_UPNP=-" "USE_QRCODE=1"<br><br>
make -f Makefile</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!--==========================
Featured Services Section
============================-->
<section id="featured-services">
<div class="container">
<div class="row">
<div class="col-lg-4 box">
<i class="ion-shuffle"></i>
<h4 class="title"><a href="#featured-services">Velocity</h4>
<p class="description">It consists of a three-stage verification of each block registered in the network, thus preventing double spend, very common in several currencies.</p>
</div>
<div class="col-lg-4 box box-bg">
<i class="ion-cube"></i>
<h4 class="title"><a href="#featured-services">Adaptive Block Size(ABS)</a></h4>
<p class="description">Spero does not have a specific block size, so regardless of the number of transactions, all of them will go into the block if they are within 60 seconds of the last creation.</p>
</div>
<div class="col-lg-4 box">
<i class="ion-clipboard"></i>
<h4 class="title"><a href="#featured-services">OP_RETURN</a></h4>
<p class="description">With this feature you can store up to 240 bytes of information directly in the blockchain.</p>
</div>
</div>
</div>
</section><!-- #featured-services -->
<!--==========================
About Us Section
============================-->
<section id="about">
<div class="container">
<header class="section-header">
<h3>About Us</h3>
<p>We are a Brazilian cryptocurrencie, created in the city of Belo Horizonte / MG.<br>Know a little more about our ideas.</p>
</header>
<div class="row about-cols">
<div class="col-md-4 wow fadeInUp">
<div class="about-col">
<div class="img">
<img src="img/about-mission.jpg" alt="" class="img-fluid">
<div class="icon"><i class="ion-android-person-add"></i></div>
</div>
<h2 class="title"><a href="#">Our Mission</a></h2>
<p>
Reduce the social and economic differences of the underprivileged population across the globe. <br>This leads to improvement in quality of life where it is scarce or does not exist.
</p>
</div>
</div>
<div class="col-md-4 wow fadeInUp" data-wow-delay="0.1s">
<div class="about-col">
<div class="img">
<img src="img/about-plan.jpg" alt="" class="img-fluid">
<div class="icon"><i class="ion-ios-list-outline"></i></div>
</div>
<h2 class="title"><a href="#">Our Plan</a></h2>
<p>
We create a currency with use in a market accessible to all and a bank without charges of abusive fees, maintaining only the fixed rate of network transaction (~ 0.0001 SPERO).
<br>With this we will have the first Bank and Social Market maintained entirely by a crypto-currency.
</p>
</div>
</div>
<div class="col-md-4 wow fadeInUp" data-wow-delay="0.2s">
<div class="about-col">
<div class="img">
<img src="img/about-vision.jpg" alt="" class="img-fluid">
<div class="icon"><i class="ion-ios-eye-outline"></i></div>
</div>
<h2 class="title"><a href="#">Our Vision</a></h2>
<p>
With mutual help and companionship we can achieve a goal that many people try to do alone.
<br>The little ones, when they come together, become giants.
</p>
</div>
</div>
</div>
</div>
</section><!-- #about -->
<!--==========================
Technical Characteristics Section
============================-->
<section id="Technical_Characteristics">
<div class="container">
<header class="section-header wow fadeInUp">
<h3>Technical Characteristics</h3>
<p>Know the technical information of our software technology.</p>
</header>
<div class="row">
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-duration="1.4s">
<h4 class="title"><a href="">Algorithm</a></h4>
<p class="description">This algorithm uses 13 rounds of hashing with 13 different hash-functions (blake, bmw, groestl, jh, keccak, skein, luffa, cubehash, etc.), which makes it one of most reliable in a modern cryptocurrencies world.</p>
</div>
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-duration="1.4s">
<h4 class="title"><a href="">Hybrid mining PoW and PoS</a></h4>
<p class="description">With Spero you mining with proof of work(PoW[ASIC, GPU, CPU, etc]) and also mining just leaving your wallet with active balance online, open and unlocked, the well-known proof of stake(PoS).</p>
</div>
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-duration="1.4s">
<h4 class="title"><a href="">Total Coins</a></h4>
<p class="description">There are 7 million coins total, and were pre-mined 100,000 for application in several areas of the project.</p>
</div>
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-delay="0.1s" data-wow-duration="1.4s">
<h4 class="title"><a href="">Official Services</a></h4>
<p class="description">We count on developers who produce official applications and websites, offering security, transparency and speed in their execution.</p>
</div>
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-delay="0.1s" data-wow-duration="1.4s">
<h4 class="title"><a href="">Transaction Maturity</a></h4>
<p class="description">Mining: 05<br>Transactions: 03</p>
</div>
<div class="col-lg-4 col-md-6 box wow bounceInUp" data-wow-delay="0.1s" data-wow-duration="1.4s">
<h4 class="title"><a href="">Other Information</a></h4>
<p class="description">Block time: 60 seconds<br> Difficulty reset to each block<br> Return PoS: 25% per year</p>
</div>
</div>
</div>
</section><!-- #services -->
<!--==========================
Call To Action Section
============================-->
<!-- <section id="call-to-action" class="wow fadeIn">
<div class="container text-center">
<h3>Call To Action</h3>
<p> Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<a class="cta-btn" href="#">Call To Action</a>
</div>
</section> --><!-- #call-to-action -->
<!--==========================
Timeline Section
============================-->
<section id="timeline">
<div class="container">
<header class="section-header">
<h3>TIMELINE</h3>
<p>Find out what has already been done to improve our system and see on what dates these improvements were made.</p>
</header>
<div class="skills-content">
<!-- Vertical Timeline -->
<div id="accordion">
<!-- CODE -->
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-warning" data-toggle="collapse" data-target="#codes">
<i class="fa fa-code"></i> DEVELOPMENT - CODES
</button>
</h5>
</div>
<div id="codes" class="collapse">
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-warning" data-toggle="collapse" data-target="#25092017">
<i class="fa fa-code"></i> 25/09/2017
</button>
</h5>
</div>
<div id="25092017" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Creating the project using the MarteX currency<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Generation of Merkle<br>
const char * pszTimestamp: "Esperança eh a ultima que morre.";
block.nTime: 1506335848; <br>
block.nNonce: 44360; <br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> GenesisBlock Generation <br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Send files to the <a href="https://github.com/sperocoin/sperocoin"> Github </a> <br></p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-warning" data-toggle="collapse" data-target="#01102017">
<i class="fa fa-code"></i> 01/10/2017
</button>
</h5>
</div>
<div id="01102017" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Code update: The SperoCoin-qt.pro file has been changed to build in the Linux environment<br></p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-warning" data-toggle="collapse" data-target="#04102017">
<i class="fa fa-code"></i> 04/10/2017
</button>
</h5>
</div>
<div id="04102017" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Block Crawler / Explorer creation</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-warning" data-toggle="collapse" data-target="#06102017">
<i class="fa fa-code"></i> 06/10/2017
</button>
</h5>
</div>
<div id="06102017" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Added file in patch "src/leveldb/Makefile"</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-warning" data-toggle="collapse" data-target="#08102017">
<i class="fa fa-code"></i> 08/10/2018
</button>
</h5>
</div>
<div id="08102017" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Update information on the PoW final phase and the initial PoS phase;<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Source update qt wallet;<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Release update;<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Protocol update and general updates<br></p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-warning" data-toggle="collapse" data-target="#10102017">
<i class="fa fa-code"></i> 10/10/2017
</button>
</h5>
</div>
<div id="10102017" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Added orphan block cleanup option;<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Added the "STAKE" display option in the "type" column within the "Transactions" tab;<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Added "setban" in "add | remove" (bantime) "/" listbanned "and" clearbanned "in RPC console;</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-warning" data-toggle="collapse" data-target="#11102017">
<i class="fa fa-code"></i> 11/10/2017
</button>
</h5>
</div>
<div id="11102017" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Banning Forked Peers that are stuck in Getblocks Loop</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-warning" data-toggle="collapse" data-target="#21102017">
<i class="fa fa-code"></i> 21/10/2017
</button>
</h5>
</div>
<div id="21102017" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> <a href="https://explorer.sperocoin.org/">Official Block Explorer</a></p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-warning" data-toggle="collapse" data-target="#22102017">
<i class="fa fa-code"></i> 22/10/2017
</button>
</h5>
</div>
<div id="22102017" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Updating String Names;<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Updating information in README.md <br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Updating Wallet QT Information</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-warning" data-toggle="collapse" data-target="#28032018">
<i class="fa fa-code"></i> 28/03/2018
</button>
</h5>
</div>
<div id="28032018" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Added RPC Command "GETWALLETINFO"<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Updating transaction maturity icons<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Splash screen main update<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Logo update within Wallet<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Added hashGenesisBlockTestNet in main.h file<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Added testnet block.nNonce in main.cpp file<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Added static MapCheckpoints in the checkpoints.cpp file<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Changing the initial letter of the testnet addresses in the file base58.h<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Changing the sample initial letter in the qt / sendcoinsdialog.cpp file<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Changed version to 2.6.4.3</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-warning" data-toggle="collapse" data-target="#15072018">
<i class="fa fa-code"></i> 15/07/2018
</button>
</h5>
</div>
<div id="15072018" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Added RPC command "getnetworkinfo" - Change in files: bitcoinrpc.cpp; bitcoinrpc.h; rpcblockchain.cpp; rpcnet.cpp<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Added RPC command "getblockchaininfo" - Change in files: bitcoinrpc.cpp; bitcoinrpc.h; rpcblockchain.cpp; rpcnet.cpp<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Added Wallet Status Information (Locked or Unlocked) in the RPC command "getinfo"<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Added new points in the network map updating the mapping up to block 130000- Change in file: checkpoints.cpp<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Changing copyrights, updating the start date of SperoCoin works, being: "Copyright © 2017 The SperoCoin developers" - Change in ".ts" files in the "src \ qt \ locale" folder<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Update of QT splashscreen images<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Changing QT fonts for "Century Gothic"<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Clear Orphans with automatic transaction page refresh, without the need to restart the wallet<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Changed version to 2.6.4.4</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-warning" data-toggle="collapse" data-target="#27102018">
<i class="fa fa-code"></i> 27/10/2018
</button>
</h5>
</div>
<div id="27102018" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Added new points in the network map by updating the mapping to block 165962<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Performance improvements - Higher speed in synchronization<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Added new icons<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Change the style of the block download progress bar from "QWindowsXPStyle" to "QWindowsVistaStyle"<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Changing the size of the icons in "STATUSBAR_ICONSIZE" from 16 to 64<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Adding the opening of the SperoCoin.conf file from the console window menu<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Changed description of PoW mining type<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Changed description of PoS mining type<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> New PoS Mining icon<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Version changed to 2.6.4.5</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-warning" data-toggle="collapse" data-target="#08122018">
<i class="fa fa-code"></i> 08/12/2018
</button>
</h5>
</div>
<div id="08122018" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Changed Version to 2.6.4.6;<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Amended version of the protocol for minimum 700001;<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Added Introduction;<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Added checkpoints from blocks to block 180000<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Thanks to vinnystifler for contributing to the correction of
errors with QT: https://github.com/vinnystifler<br></p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-warning" data-toggle="collapse" data-target="#17122018">
<i class="fa fa-code"></i> 17/12/2018
</button>
</h5>
</div>
<div id="17122018" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Incorrect transaction hash fix
<br></p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-warning" data-toggle="collapse" data-target="#11032019">
<i class="fa fa-code"></i> 11/03/2019
</button>
</h5>
</div>
<div id="11032019" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> [RPC] Implementation of the -zapwallettxes and system command FILE_DESCRIPTORS
<br></p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-warning" data-toggle="collapse" data-target="#16032019">
<i class="fa fa-code"></i> 16/03/2019
</button>
</h5>
</div>
<div id="16032019" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Automatic backup of wallet.dat file<br></p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-warning" data-toggle="collapse" data-target="#09042019">
<i class="fa fa-code"></i> 09/04/2019
</button>
</h5>
</div>
<div id="09042019" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Activation of the SPERO Foundation account in PoW<br></p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-warning" data-toggle="collapse" data-target="#17042019">
<i class="fa fa-code"></i> 17/04/2019
</button>
</h5>
</div>
<div id="17042019" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Adding the Charity PoS System<br></p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-warning" data-toggle="collapse" data-target="#22052019">
<i class="fa fa-code"></i> 22/05/2019
</button>
</h5>
</div>
<div id="22052019" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Release of version 2.6.4.7<br></p>
<br></p>
</div>
</div>
</div>
</div>
</div>
<!-- FORKS -->
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-danger" data-toggle="collapse" data-target="#forks">
<i class="fa fa-code-fork"></i> HARD AND SOFT FORKS
</button>
</h5>
</div>
<div id="forks" class="collapse">
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-danger" data-toggle="collapse" data-target="#26092017">
<i class="fa fa-code-fork"></i> 26/09/2017
</button>
</h5>
</div>
<div id="26092017" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Design Fork on GitHub by DigitalCoin<br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Resubmission of files to GitHub</p>
</div>
</div>
</div>
</div>
</div>
<!-- MÍDIA E SOCIAL -->
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-success" data-toggle="collapse" data-target="#midiasocial">
<i class="fa fa-thumbs-up"></i> MEDIA AND SOCIAL
</button>
</h5>
</div>
<div id="midiasocial" class="collapse">
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-success" data-toggle="collapse" data-target="#25092017a">
<i class="fa fa-thumbs-up"></i> 25/09/2017
</button>
</h5>
</div>
<div id="25092017a" class="collapse">
<div class="card-body">
<p> <i class="fa fa-check-square-o" aria-hidden="true"></i> Launch on BitcoinTalk <br></p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-success" data-toggle="collapse" data-target="#01102017b">
<i class="fa fa-thumbs-up"></i> 01/10/2017
</button>
</h5>
</div>
<div id="01102017b" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Creation of Official<a href="mailto:sperocoin@gmail.com">E-mail</a> <br>
<i class="fa fa-check-square-o" aria-hidden="true"></i> Temporary <a href="https://superocoin.wixsite.com/sperocoin">Website</a></p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-success" data-toggle="collapse" data-target="#02102017">
<i class="fa fa-thumbs-up"></i> 02/10/2017
</button>
</h5>
</div>
<div id="02102017" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Topic opening in: <a href="https://cryptocurrencytalk.com/topic/88487-ann-sperocoin-x13-hybrid-powpos/">Cryptocurrencytalk</a><br></p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-success" data-toggle="collapse" data-target="#11112017">
<i class="fa fa-thumbs-up"></i> 11/11/2017
</button>
</h5>
</div>
<div id="11112017" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Partnership with the CURSAGRAM channel in the TELEGRAM application with SPERO as the main sponsor.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h5 class="mb-0">
<button type="button" class="btn btn-success" data-toggle="collapse" data-target="#12112017">
<i class="fa fa-thumbs-up"></i> 12/11/2017
</button>
</h5>
</div>
<div id="12112017" class="collapse">
<div class="card-body">
<p><i class="fa fa-check-square-o" aria-hidden="true"></i> Modification of the Forum Bitcointalk: Jr. Member</p>
</div>
</div>
</div>