-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathindex.html.de
More file actions
1636 lines (1517 loc) · 89.1 KB
/
index.html.de
File metadata and controls
1636 lines (1517 loc) · 89.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="de">
<head>
<!-- Required meta tags-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Byteball — Eine Kryptowährung-Plattform, bereit zur Übernahme in die reale Welt">
<meta name="keywords" content="Byteball — Eine Kryptowährung-Plattform, bereit zur Übernahme in die reale Welt">
<!-- Title Page-->
<title>Byteball — Eine Kryptowährung-Plattform, bereit zur Übernahme in die reale Welt</title>
<!-- Fontfaces CSS-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<link href="static/css/font-face.css" rel="stylesheet" media="all">
<link href="static/vendor/linearicons/css/linearicons.css" rel="stylesheet" media="all">
<!-- Bootstrap CSS-->
<link href="static/vendor/bootstrap/bootstrap.min.css" rel="stylesheet" media="all">
<!-- Vendor CSS-->
<link href="static/vendor/animate.css/animate.min.css" rel="stylesheet" media="all">
<link href="static/vendor/css-hamburgers/hamburgers.min.css" rel="stylesheet" media="all">
<link href="static/vendor/slick/slick.css" rel="stylesheet" media="all">
<link href="static/vendor/animsition/animsition.min.css" rel="stylesheet" media="all">
<link href="static/vendor/lightbox2/css/lightbox.min.css" rel="stylesheet" media="all">
<!-- Main CSS-->
<link href="static/css/theme.css?v4" rel="stylesheet" media="all">
<!--Favicons-->
<link rel="shortcut icon" href="static/favicon.ico">
<link rel="apple-touch-icon" sizes="57x57" href="static/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="static/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="static/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="static/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="static/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="static/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="static/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="static/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="static/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="static/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="static/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="static/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="static/favicon-16x16.png">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="static/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
</head>
<body class="no-animsition">
<!-- Header start-->
<header class="header-absolute section-header js-header unsticky">
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container-fluid">
<a class="navbar-logo" href="/">
<img class="logo-light" src="static/images/icons/ic-logo.png">
<img class="logo-dark" src="static/images/icons/ic-logo-dark.png">
</a>
<button class="navbar-toggler hamburger hamburger--slider" type="button" data-toggle="collapse" data-target="#navbarSupportedContent">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
<div class="navbar-collapse collapse" id="navbarSupportedContent">
<ul class="navbar-nav navbar-nav-new">
<li class="nav-item active">
<a class="nav-link" href="#why">WARUM</a>
</li>
<li class="nav-item">
<a class="nav-link noto-sans-bold" href="#features">FUNKTIONEN</a>
</li>
<li class="nav-item">
<a class="nav-link noto-sans-bold" href="#dist">VERTEILUNG</a>
</li>
<li class="nav-item">
<a class="nav-link noto-sans-bold" href="#tech">TECHNOLOGIE</a>
</li>
<li class="nav-item">
<a class="nav-link noto-sans-bold" href="#team">TEAM</a>
</li>
<li class="nav-item">
<a class="nav-link noto-sans-bold" href="#community">COMMUNITY</a>
</li>
</ul>
<ul class="navbar-nav">
<li class="language-nav-item">
<div class="btn-group">
<button type="button" class="btn btn-default btn-sm" data-toggle="dropdown" aria-expanded="false">
<img id="imgBtnSel" src="static/images/flags/united-states.png" alt="..." class="img-thumbnail icon-medium" style="border: none">
<span id="lanBtnSel"></span>
</button>
<button type="button" class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
<span class="caret"></span>
</button>
<ul class="dropdown-menu language-block" role="menu"></ul>
</div>
</li>
<li class="nav-item">
<a class="au-btn au-btn-pill au-btn-border au-btn-icon m-l-5 download-wallet-btn noto-sans-bold download-wallet-header-btn1" href="#download" style="background-color: #1560bd">
<span class="btn-text">
HERUNTERGELADENES WALLET
</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Header end-->
<!-- textcoin block start -->
<!-- ================ -->
<div class="section clearfix open-sans-regular" id="textcoin" style="display: none;">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-6 col-md-push-6 text-center text-md-left order-md-2">
<h3 class="m-b-30 open-sans-bold">Sie haben Geld erhalten!</h3>
<p class="android" style="display: none;">
Klicken Sie auf die Schaltfläche unten um die App zu öffnen oder installieren Sie die Byteball App auf Ihrem Gerät und erhalten Sie Ihre Zahlung.
</p>
<p class="desktop">
<a href="#download">Laden und installieren Sie das Byteball-Wallet</a> zuerst, klicken Sie dann auf die Schaltfläche unten, um die App auf Ihrem Gerät zu öffnen und Ihre Zahlung zu erhalten.
</p>
<p><button id="openInApp" class="btn btn-lg btn-success m10" style="cursor: pointer">Gelder erhalten</button></p>
<p>
Wenn die Schaltfläche nicht funktioniert, <a href="#download">Byteball-Wallet installieren</a>, navigieren Sie zu <i>Empfangen</i> →<i>Gelder durch Textcoin einfordern</i> und fügen Sie den folgenden String ein:<br>
<b id="mnemonic"></b><br>
</p>
</div>
<div class="col-xs-12 col-md-5 col-md-offset-2 col-md-pull-7 text-center text-md-right order-md-1">
<img src="img/inphone/wallet.png?v2" style="display: inline; max-height: 547px; max-width: 100%" />
</div>
</div>
</div>
</div>
<!-- textcoin block end -->
<!-- Download start-->
<section class="section section-download-app bg-white p-t-90 p-b-40 block1">
<div class="container">
<h3 class="section-heading section-heading1 section-heading--center m-b-0 noto-sans-bold" style="max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.5">Eine Krypto-Währungsplattform, die für den Einsatz in der realen Welt bereit ist</h3>
<div class="row justify-content-center">
<div class="col-md-9 text-center">
<p class="text-left m-b-70 noto-sans-display-regular" style="color: black; line-height: 2; max-width: 760px; margin-left: auto; margin-right: auto; display: inline-block;">
<i class="far fa-check-square"></i> mit unverletzlichen Verträgen<br>
<i class="far fa-check-square"></i>mit benutzerkontrollierter Identität<br>
<i class="far fa-check-square"></i>mit Zahlungen, die einfach über jegliches Netzwerk gesendet werden können<br>
<i class="far fa-check-square"></i>mit einfach zu entwickelnden Apps, die alles Obengenannte verbinden<br>
<i class="far fa-check-square"></i>basierend auf anpassbarer DAG-basierter Technologie<br>
<i class="far fa-check-square"></i>voll funktionsfähig<br>
<i class="far fa-square"></i>auf der Suche nach einer breiten Akzeptanz<br>
</p>
</div>
</div>
<div class="section-btn-group m-b-70 wow zoomIn" data-wow-delay="0.6s">
<a class="au-btn au-btn-pill au-btn-icon subscribe-to-news-btn block1-btn noto-sans-bold" href="#" onclick="ml_account('webforms', '884262', 'i1z6x7', 'show')" style="background-color: #1560bd; color: white; border: 1px solid transparent;">
<span class="btn-text">NEWSLETTER ABONNIEREN</span>
</a>
<a class="au-btn au-btn-pill au-btn-icon block1-btn noto-sans-bold download-wallet-header-btn2" href="#" onclick="scrollToBlock('download')" style="border: 1px solid #0060c1 !important;">
<span class="btn-text">WALLET HERUNTERLADEN</span>
</a>
</div>
<p class="box-title section-heading--center noto-sans-display-semibold" style="font-weight: bold; color: black;">
Weitere Informationen
</p>
<div class="section section-footer" style="background: none;">
<ul class="footer-menu-list h-list learn-more-ul">
<li class="list-item">
<a href="#" class="noto-sans-display-regular" onclick="scrollToBlock('learn_more')">Whitepaper</a>
</li>
<li class="list-item">
<a href="#" class="noto-sans-display-regular" onclick="scrollToBlock('learn_more')">Einführungsanleitungen</a>
</li>
<li class="list-item">
<a href="#" class="noto-sans-display-regular" onclick="scrollToBlock('learn_more')">Wiki</a>
</li>
<li class="list-item">
<a href="#" class="noto-sans-display-regular" onclick="scrollToBlock('learn_more')">GitHub</a>
</li>
</ul>
</div>
</div>
</section>
<!-- Download end-->
<!-- About start-->
<section class="section section-about-1 bg-white why-us-main-block p-t-20" id="why">
<div class="container">
<h1 class="section-heading section-heading1 section-heading--center m-b-40 why-use-h1 noto-sans-symbols-regular">WARUM BYTEBALL</h1>
<div class="row">
<div class="col-md-6">
<div class="section-content-image section-heading--center wow nofadeInLeft" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/ico_img.png" alt="">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">ICO-Plattform</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Die einzige ICO-Plattform auf dem Markt, die den gesetzeskonformen Verkauf von Sicherheits-Token Out-of-the-Box anbietet.</span>
</div>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Verkaufen Sie unregistrierte Wertpapiere an akkreditierte Anleger mittels integrierter Investoren-Akkreditierung.</span>
</div>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Wahlweise, fordern Sie KYC (Kenne deinen Kunden), mit Hilfe der eingebauten Namens-Überprüfung</span>
</div>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Verkaufen Sie für Bytes, BTC, ETH.</span>
</div>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Zeigen Sie Statistiken in Echtzeit an.</span>
</div>
</li>
</ul>
</div>
</div>
<hr class="new-breaker-line">
<div class="row">
<div class="col-md-6 visible-xs" style="margin-top: 30px;">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/bot-store.png" alt="">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">Entwicklerfreundlich</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Finden Sie mühelos neue Nutzer für Ihre Apps</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Entwickler, die Apps erstellen, haben über den integrierten Bot-Store sofortigen Zugang zu allen Benutzern der Byteball-Plattform.<br><br>
Der Bot Store ist wie ein kleiner Apple-App-Store oder Google-Play-Store, mit der Ausnahme, dass Sie nicht mit tausenden anderer Apps konkurrieren müssen....noch nicht!<br><br>
Als zusätzlicher Bonus ist die Entwicklung für Byteball viel einfacher als bei anderen Krypto-Plattformen. Siehe <a href="https://github.com/byteball/byteballcore/wiki/Byteball-Developer-Guides" target="_blank">Entwickler-Anleitungen auf Github</a>.</span>
</div>
</li>
</ul>
</div>
<div class="col-md-6 hidden-xs">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/bot-store.png" alt="">
</div>
</div>
</div>
<hr class="new-breaker-line new-breaker-line2">
<div class="row">
<div class="col-md-6">
<div class="section-content-image section-heading--center wow nofadeInLeft" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/risk_free_img.png" alt="">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">Risikofreie, an Bedingungen geknüpfte, intelligente Zahlungen</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Byteball ermöglicht Ihnen etwas zu tun, was traditionelle Währungen nicht können: <a href="https://medium.com/byteball/making-p2p-great-again-fe9e20546a4a"
target="_blank" style="text-decoration: underline; color: #4285f4">An Bedingungen geknüpfte Zahlungen</a></span>
</div>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Sie können eine Bedingung festlegen, wenn der Zahlungsempfänger das Geld erhält. Ist die Bedingung nicht erfüllt, erhalten Sie Ihr Geld zurück.</span>
</div>
</li>
</ul>
</div>
</div>
<hr class="new-breaker-line">
<div class="row">
<div class="col-md-6 visible-xs" style="margin-top: 30px;">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/p2p_img.png" alt="">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">P2P-Versicherungen</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Absicherung gegen negative Ereignisse.</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Erwerben sie Versicherungen von Teilnehmern, um im Fall von negativen Ereignissen bezahlt zu werden. Versicherung gewinnbringend verkaufen.<br><br>Eine Versicherungen ist nur <a href="https://medium.com/byteball/making-p2p-great-again-episode-iv-p2p-insurance-cbbd1e59d527" target="_blank">ein einfacher Smart-Contract,</a> welcher vom Versicherten entsperrt werden kann — sollte das besagte Ereignis eintreten, oder anderenfalls vom Versicherer —.<br><br>Um sich gegen Flugverspätung zu versichern, finden Sie einen Vertragspartner im <a href="https://byteball.slack.com/messages/C54CDJATB/" target="_blank">#P2P_Versicherungen</a>-Kanal oder in unserem <a href="https://slack.byteball.org" target="_blank" title="Slack">Slack</a> und erstellen Sie einen Vertrag. Wenn Ihr Flug verspätet eintrifft, <a href="byteball:AuP4ngdv0S/rok+IaW1q2D6ye72eXLl3h+CqXNXzkBXn@byteball.org/bb#0000">sprechen Sie mit dem Flugverspätungs-Orakel</a>, damit es Daten über den Flug veröffentlicht und entsperren Sie dann den Vertrag.</span>
</div>
</li>
</ul>
</div>
<div class="col-md-6 hidden-xs">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/p2p_img.png" alt="">
</div>
</div>
</div>
<hr class="new-breaker-line new-breaker-line2">
<div class="row">
<div class="col-md-6">
<div class="section-content-image section-heading--center wow nofadeInLeft" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/predictions_markets_img.png" alt="">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">Prognosemärkte</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Verdienen Sie Geld, indem Sie zukünftige Ereignisse korrekt vorhersagen.</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Erstellen Sie einen P2P-Smart-Contract, der, im Falle eines bestimmten Ereignisses, entsperrt werden kann. Benutzen Sie es um <a href="https://medium.com/byteball/making-p2p-great-again-episode-iii-prediction-markets-f40d49c0abab" target="_blank">auf Preisbewegungen zu wetten</a>, Sportwetten und Versicherungen.<br><br>Finden Sie Ihren Vertragspartner unter<a href="https://byteball.slack.com/messages/C4UMVU4QZ/" target="_blank">#Prognosen_Märkte</a>-Kanal oder auf <a href="https://slack.byteball.org" target="_blank" title="Slack">Slack</a>.</span>
</div>
</li>
</ul>
</div>
</div>
<hr class="new-breaker-line">
<div class="row">
<div class="col-md-6 visible-xs" style="margin-top: 30px;">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/p2p_betting_img.png" alt="">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">P2P Wetten</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Gegen andere Nutzer auf Sportveranstaltungen wetten.</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Finden Sie Ihren Vertragspartner im <a href="https://byteball.slack.com/messages/C4UMVU4QZ/" target="_blank">#Prognosen_Märkte</a>-Kanal, oder unserem <a href="https://slack.byteball.org" target="_blank" title="Slack">Slack</a> und erstellen Sie einen neuen Vertrag, der, je nach Ausgang des zukünftigen Spieles, von Ihnen oder dem anderen Teilnehmer entsperrt werden kann.<br><br>
Nachdem das Ergebnis bekannt ist, <a href="byteball:Ar1O7dGgkkcABYNAbShlY2Pbx6LmUzoyRh6F14vM0vTZ@byteball.org/bb#0000">sprechen Sie mit dem Sport-Orakel</a>, damit es die Daten für das Ergebnis veröffentlicht und entsperren Sie dann den Vertrag.</span>
</div>
</li>
</ul>
</div>
<div class="col-md-6 hidden-xs">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/p2p_betting_img.png" alt="">
</div>
</div>
</div>
<hr class="new-breaker-line new-breaker-line2">
<div class="row">
<div class="col-md-6">
<div class="section-content-image section-heading--center wow nofadeInLeft" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/textcoins_img.png" alt="">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">Textcoins</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Senden Sie Kryptowährung an eine E-Mail oder via Chat.</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Der Absender fügt einfach eine E-Mail-Adresse ein, wo er normalerweise eine Byteball-Adresse schreibt. Der Empfänger klickt einfach auf einen Link, den er per E-Mail oder Chat erhält. Wenn der Empfänger noch nicht bei Byteball registriert ist, wird er aufgefordert das Wallet zu installieren. Auf Android startet die Installation automatisch. <a href="https://medium.com/byteball/sending-cryptocurrency-to-email-5c9bce22b8a9" target="_blank">Mehr erfahren</a>.</span>
</div>
</li>
</ul>
</div>
</div>
<hr class="new-breaker-line">
<div class="row">
<div class="col-md-6 visible-xs" style="margin-top: 30px;">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/sovereign_identity.png" alt="">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">Souveräne Identität</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Bewahren Sie Ihre ID in Ihrem Wallet auf. Entscheiden Sie, was Sie offenlegen möchten und an wen.</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Lassen Sie Ihre wirkliche Identität verifizieren und sicher in Ihrem Wallet aufbewahren. <a href="https://www.jumio.com/" target="_blank">Jumio</a> hilft bei der Identitätsverifizierung. Wenn Sie Ihre Identität einem Dienstanbieter offenlegen möchten, z.B. um an einem ICO teilzunehmen, holen Sie diese einfach mit ein paar Klicks aus Ihrer Wallet. <a href="https://medium.com/byteball/bringing-identity-to-crypto-b35964feee8e" target="_blank">Mehr erfahren</a>.</span>
</div>
</li>
</ul>
</div>
<div class="col-md-6 hidden-xs">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/sovereign_identity.png" alt="">
</div>
</div>
</div>
<hr class="new-breaker-line new-breaker-line2">
<div class="row">
<div class="col-md-6">
<div class="section-content-image section-heading--center wow nofadeInLeft" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/p2p_payments.png" alt="">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">P2P-Zahlungen im Chat</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Chatten und zahlen Sie in der gleichen App, durch einfaches klicken von Links.</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Das Kopieren und Einfügen von langen Krypto-Adressen ist nicht nötig.<br><br>Tippen Sie einfach in den Chat, um Ihre Adresse einzufügen. Der Zahlende klickt dann auf Ihre Adresse, um Geld zu senden.</span>
</div>
</li>
</ul>
</div>
</div>
<hr class="new-breaker-line">
<div class="row">
<div class="col-md-6 visible-xs" style="margin-top: 30px;">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/chatbots_img.png" alt="">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">Chatbots</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Sprechen Sie mit einem Bot, wie Sie mit einem Menschen sprechen würden.</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Kaufen Sie ein, indem Sie mit dem Bot eines Händlers chatten und bezahlen Sie mit zwei Klicks. Börsen und andere Dienstleistungen sind ebenfalls einfach im dialogorientierten Interface zu bedienen.</span>
</div>
</li>
</ul>
</div>
<div class="col-md-6 hidden-xs">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/chatbots_img.png" alt="">
</div>
</div>
</div>
<hr class="new-breaker-line new-breaker-line2">
<div class="row">
<div class="col-md-6">
<div class="section-content-image section-heading--center wow nofadeInLeft" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/eye_logo.png" alt="" style="box-shadow: none; filter: none;">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">Anonyme Währung: Blackbytes</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Bargeldähnliche Privatsphäre.</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Wenn Sie absolute Privatsphäre wollen, zahlen Sie mit Blackbytes, einer bargeldähnlichen, anonymen Währung, dessen Transaktionen nicht auf öffentlichen Datenbanken sichtbar sind, sondern Peer-to-Peer gesendet werden.<br><br>Verwenden Sie den eingebauten TOR-Switch direkt aus dem Wallet, um Ihre Privatsphäre noch mehr zu schützen.</span>
</div>
</li>
</ul>
</div>
</div>
<hr class="new-breaker-line">
<div class="row">
<div class="col-md-6 visible-xs" style="margin-top: 30px;">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/dag_img.png" alt="" style="box-shadow: none; filter: none; ">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">Nutzer, die sich gegenseitig helfen</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Sichern Sie ihre Transaktionen gegenseitig ab.</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Es gibt keine zentrale Eineheit, die alle Zahlungen speichert und verarbeitet. Stattdessen werden von Nutzern erstellte Transaktionen kryptografisch miteinander verknüpft. Sobald Sie Ihre Transaktion hinzufügen, werden neue Transaktionen von anderen Nutzern zu Ihrer Transaktion hinzugefügt und die Anzahl von Transaktionen, die mit Ihrer Transaktion verknüpft sind, wächst wie ein Schneeball (Deshalb nennen wir es Byteball).</span>
</div>
</li>
</ul>
</div>
<div class="col-md-6 hidden-xs">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/dag_img.png" alt="" style="box-shadow: none; filter: none;">
</div>
</div>
</div>
<hr class="new-breaker-line new-breaker-line2">
</div>
</section>
<!-- About end-->
<!-- Features start-->
<section class="section section-about-2 p-b-40 p-t-20 feature-block" id="features">
<div class="container">
<h3 class="section-heading section-heading--center section-heading--dark m-b-50 core-feature-title">Kernfunktionen</h3>
<div class="row section-content-inner">
<div class="col-sm-12 col-xs-12 col-md-12 col-lg-5 features-col1">
<ul class="v-list list-text-icon">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text iconbox-style-2-with-text-lg iconbox-style-2-with-text-right wow fadeInLeft col1-feature" data-wow-duration="0.8s" data-wow-delay="0.2s">
<p class="iconbox-item-title" href="#">
<span class="iconbox-text">ATOMARER AUSTAUSCH</span>
<i class="iconbox-icon" style="background-color: #0060C1"></i>
</p>
<p class="collapse show iconbox-item-text source-sans-pro-regular">Wenn zwei Parteien eine Einheit unterschreiben, die beide Seiten des Austausches ausführt, geschehen die beiden Transaktionen simultan, oder finden überhaupt nicht statt. Es ist daher nicht mehr nötig irgendwelchen zentralen Börsen trauen zu müssen.</p>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text iconbox-style-2-with-text-lg iconbox-style-2-with-text-right wow fadeInLeft" data-wow-duration="0.8s" data-wow-delay="0.4s">
<p class="iconbox-item-title" href="#">
<span class="iconbox-text">MULTI-SIGNATUR</span>
<i class="iconbox-icon" style="background-color: #0060C1"></i>
</p>
<p class="collapse show iconbox-item-text source-sans-pro-regular">Aus Sicherheitsgründen, können Sie verlangen, dass die Gelder nur ausgegeben werden können, wenn mehrere Unterschriften bereitgestellt werden, z. B. von Ihrem Laptop und Ihrem Mobiltelefon. Für die geteilte Kontrolle über Gelder können Signaturen von verschiedenen Personen nötig sein.</p>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text iconbox-style-2-with-text-lg iconbox-style-2-with-text-right wow fadeInLeft" data-wow-duration="0.8s" data-wow-delay="0.6s">
<p class="iconbox-item-title" href="#">
<span class="iconbox-text">UNVERÄNDERLICHES SPEICHERSYSTEM</span>
<i class="iconbox-icon" style="background-color: #0060C1"></i>
</p>
<p class="collapse show iconbox-item-text source-sans-pro-regular">Daten, die einmal in der Byteball-Datenbank gespeichert wurden, können nie wieder verändert oder gelöscht werden.</p>
</li>
</ul>
</div>
<div class="col-4 image-content wow fadeInUp" data-wow-duration="1s">
</div>
<div class="col-sm-12 col-xs-12 col-md-12 col-lg-5">
<ul class="v-list list-text-icon list-text-icon-invert">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text iconbox-style-2-with-text-lg wow fadeInRight" data-wow-duration="0.8s" data-wow-delay="0.2s">
<p class="iconbox-item-title" href="#">
<i class="iconbox-icon" style="background-color: #0060C1"></i>
<span class="iconbox-text">REGULIERTE ASSETS</span>
</p>
<p class="collapse show iconbox-item-text source-sans-pro-regular">Regulierte Institutionen können Assets (Vermögenswerte) ausgeben, die mit KYC (Kenne deinen Kunden)/AML (Anti-Geldwäsche) Anforderungen vereinbar sind. Jede Überweisung eines solchen Assets muss vom Emittenten mit unterzeichnet werden; und falls irgendetwas vorliegt, was den Regulationen widerspricht, so würde der Emittent auch nicht mit unterzeichnen.</p>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text iconbox-style-2-with-text-lg wow fadeInRight col4-feature" data-wow-duration="0.8s" data-wow-delay="0.4s">
<p class="iconbox-item-title" href="#">
<i class="iconbox-icon" style="background-color: #0060C1"></i>
<span class="iconbox-text">ON-CHAIN-ORAKEL</span>
</p>
<p class="collapse show iconbox-item-text source-sans-pro-regular">Beim Umgang mit nicht vertrauenswürdigen Geschäftspartnern, können die Gelder, die ausgegeben werden können, auf einer Adresse, entweder von Ihnen oder Ihrem Geschäftspartner, gesperrt werden. Dies ist abhängig von den Ereignissen, die von vertrauenswürdigen Anbietern — Orakeln registriert wurden.</p>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text iconbox-style-2-with-text-lg wow fadeInRight col6-feature" data-wow-duration="0.8s" data-wow-delay="0.6s">
<p class="iconbox-item-title" href="#">
<i class="iconbox-icon" style="background-color: #0060C1"></i>
<span class="iconbox-text">TRANSAKTIONEN SIND ENDGÜLTIG</span>
</p>
<p class="collapse show iconbox-item-text source-sans-pro-regular">Nachdem bestimmte Kriterien erfüllt wurden, werden neue Transaktionen endgültig. Sie können nicht manipuliert werden, nicht einmal von einem starken Angreifer. Keine Spekulationen über die richtige Anzahl an Bestätigungen, keine 51 % Angriffe.</p>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Features end-->
<!-- Pricing Tables start-->
<section class="section section-price-table p-b-90" id="dist">
<div class="container">
<hr class="new-breaker-line">
<div class="row justify-content-md-center">
<div class="col-md-12">
<h1 class="section-heading section-heading--center section-heading--dark m-b-40 m-t-20 distribution-title">Faire Anfangsverteilung</h1>
<h4 class="m-b-30 section-heading--center distribution-title2">Freie Verteilung zur massenhaften Übernahme.</h4>
</div>
</div>
<div class="row bg-gray-50">
<div class="col-lg-12 distibution-desc-div-padding">
<h3 class="m-b-30 distribution-text">Massenhafte Übernahme benötigt eine weite Verteilung. Deshalb sollen 99 % aller Bytes und Blackbytes frei verteilt werden. Derzeit verwenden wir mehrere Möglichkeiten, um sie zu verteilen:</h3>
<p class="distribution-text2">
- <a href="https://medium.com/byteball/byteball-cashback-program-9c717b8d3173" target="_blank">Cashback</a> für Käufe von Händlern, mit denen wir zusammenarbeiten. In den meisten Fällen beträgt der Cashback 10% des Einkaufswerts.
<br>- <a href="https://medium.com/byteball/byteball-cashback-program-9c717b8d3173" target="_blank">Füllen Sie das Antragsformular aus</a> oder <script>document.write('<a href="mailto:byteball'); document.write('@'); document.write('byteball.org">');</script>kontaktieren Sie uns<script>document.write('</a>');</script>, falls Sie ein Geschäft oder einen Zahlungsabwickler leiten und Teil des Cashback-Programmes werden möchten.
<br>- <a href="https://medium.com/byteball/distribution-to-verified-users-and-referrals-ed00b9b2a30e" target="_blank">Überprüfungs- und Empfehlungsprämien</a> für diejenigen, die Ihren realen Namen bestätigen.
<br>- <a href="https://medium.com/byteball/distribution-to-verified-emails-and-sending-cryptocurrency-to-email-episode-ii-cb955fe19d7e" target="_blank">Überprüfungs- und Empfehlungsprämien</a> für diejenigen, die Ihre E-Mail-Adresse bestätigen.
<br>- <a href="https://medium.com/byteball/attestation-of-accredited-investors-d4a8dabf683b" target="_blank">Überprüfungs- und Empfehlungsprämien</a> für anerkannte Investoren, die ihren anerkannten Status bestätigen.
<br>- Prämien für diejenigen, die ein <a href="https://medium.com/byteball/money-for-knowledge-distribution-via-telegram-quiz-bot-2dd400e22997">Quiz auf Telegram</a> lösen.
<br>- Subventionen, die einen Teil der gezahlten Gebühren beim <a href="https://medium.com/byteball/buying-bytes-with-visa-or-mastercard-d8ee2d1a2b07">Kauf von Bytes mit Visa oder Mastercard </a> ausgleichen.
<br>- Prämien für das Spenden von Computerressourcen an das <a href="https://medium.com/byteball/computing-for-good-again-3795336bdaed">World Community Grid</a>.
<br>- Werbegeschenke, die z. B. auf Youtube-Kanälen unserer Unterstützer verteilt werden. Siehe z. B. <a href="https://www.youtube.com/watch?v=hycluITNDBM" target="_blank">https://www.youtube.com/watch?v=hycluITNDBM</a>.
<br>- <a href="https://medium.com/byteball-help/using-mailchimp-to-mass-send-payments-as-textcoins-5c1db06342e3" target="_blank">Massensendung von Textcoins</a> an die Abonnenten unserer Unterstützer. Die <a href="https://docs.google.com/spreadsheets/d/1heT6TUSpTJgRW-FUM0LbcoVjXZRCb3PbXQQLmzvNRvM/edit#gid=323859176" target="_blank">Ergebnisse der vorherigen Kampagnen</a> ansehen.
<br>- <a href="https://medium.com/byteball/introducing-a-bridge-between-byteball-and-steem-and-an-airdrop-548d7958b9e9" target="_blank">Steem-Belohnungen und Empfehlungsprämien</a> an diejenigen, die ihr Steem-Konto bestätigen.</p>
</div>
</div>
<div class="row justify-content-md-center m-t-40 m-b-10">
<div class="col-md-12">
<h4 class="m-b-30 section-heading--center distribution-title2">Bisherige Verteilungen</h4>
</div>
</div>
<div class="row bg-gray-50">
<div class="col-lg-12 distibution-desc-div-padding">
<h3 class="m-b-40 distribution-text">
In der Vergangenheit wurden Bytes an BTC Besitzer und bestehender Besitzer von Bytes verteilt. Benutzter verknüpften ihre BTC- und Byteball-Adressen und erhielten neue Bytes im Verhältnis zu ihren vorhandenen Kontoständen in BTC und Bytes. Diese Verteilung wurde in mehreren Runden aufgeteilt.
<br><br>Die erste Verteilungsrunde fand am 25. Dezember 2016 statt, als das Netzwerk startete. Über 70.000 BTC wurden verlinkt und 10 % der Gesamtmenge an Bytes und Blackbytes wurde verteilt. In den folgenden Runden wurden insgesamt 64,5 % der Gesamtmenge verteilt:
</h3>
<p class="left-float col-lg-6 col-xs-12 m-b-10 distribution-text2">2. Runde am 11. Februar 2017: 121.763 BTC verlinkt, 1,8 % verteilt;</p>
<p class="left-float col-lg-6 col-xs-12 m-b-10 distribution-text2">3. Runde am 12. März 2017: 129.139 BTC verlinkt, 2,0 % verteilt;</p>
<p class="left-float col-lg-6 col-xs-12 m-b-10 distribution-text2">4. Runde am 11. April 2017: 145.441 BTC verlinkt, 2,3 % verteilt;</p>
<p class="left-float col-lg-6 col-xs-12 m-b-10 distribution-text2">5. Runde am 10. Mai 2017: 207.672 BTC verklinkt, 2,9 % verteilt;</p>
<p class="left-float col-lg-6 col-xs-12 m-b-10 distribution-text2">6. Runde am 9. Juni 2017: 453.621 BTC verlinkt, 6,6 % verteilt;</p>
<p class="left-float col-lg-6 col-xs-12 m-b-10 distribution-text2">7. Runde am 9. Juli 2017: 949.004 BTC verlinkt, 11,0 % verteilt.</p>
<p class="left-float col-lg-6 col-xs-12 m-b-10 distribution-text2">8. Runde am 7. August 2017: 1.395.899 BTC verlinkt, 16,0 % verteilt.</p>
<p class="left-float col-lg-6 col-xs-12 m-b-10 distribution-text2">9. Runde am 6. September 2017: 1.306.573 BTC verlinkt, 5,7 % verteilt.</p>
<p class="left-float col-lg-6 col-xs-12 m-b-10 distribution-text2">10. Runde am 4. November 2017: 1.093.155 BTC verlinkt, 6,1 % verteilt.</p>
</div>
</div>
<hr class="new-breaker-line m-t-50">
<div class="row justify-content-md-center" id="tech">
<div class="col-md-12">
<h1 class="section-heading section-heading--center section-heading--dark m-b-40 m-t-20 distribution-title">Völlig neue Technologie</h1> <h4 class="m-b-30 section-heading--center distribution-title2" style="max-width: 550px; margin-left: auto; margin-right: auto;">Unbegrenzte Skalierbarkeit, schnelle Bestätigungen, keine Miner, keine Blocks, niedrige Gebühren.</h4>
</div>
</div>
<div class="row bg-gray-50">
<div class="col-lg-12 distibution-desc-div-padding">
<p class="distribution-text3">
Byteball Daten werden in einem <a href="https://en.wikipedia.org/wiki/Directed_acyclic_graph" target="_blank">gerichteten azyklischen Graphen</a> (DAG) anstatt einer Blockchain gespeichert und geordnet. Dies ermöglicht allen Benutzer gegenseitig Ihre Daten zu sichern, indem auf früher erstellte Daten von anderen Benutzern verwiesen wird. Es beseitigt auch Einschränkungen in der Skalierbarkeit, wie es bei Blockchains üblich ist, z. B. Probleme mit der Blockgröße.
<br><br>
Ein blockloses Design ist einfacher, da es keine Blocks, sondern nur Transaktionen gibt. Benutzer fügen einfach ihre Transaktionen am Ende des DAG hinzu. Sie müssen nicht warten bis Miner einen neuen Block erstellen und es gibt keine Unsicherheit ob die Miner ihre Transaktion in diesen Block einbauen.
<br>
<br>Der Übereinstimmungsalgorithmus, der verwendet wird, um vor doppelten Ausgaben zu schützen, basiert auf der Ermittlung einer Gesamtbestellung innerhalb des DAG. Dies wird erreicht, indem eine Chain, genannt Main-Chain, ausgewählt wird, die sich zu Einheiten hinzieht, die von allgemein vertrauenswürdigen Nutzern gesendet wurden — sogenannten Zeugen.
<br><a href="https://byteball.org/Byteball.pdf" target="_blank">Näheres hierzu finden Sie im White-Paper.</a>
</p>
</div>
</div>
</div>
</section>
<!-- Pricing Tables end-->
<!-- Pricing Tables start-->
<section class="section section-price-table" id="download">
<div class="container">
<hr class="new-breaker-line">
<div class="row justify-content-md-center">
<div class="col-md-12 dybw-list-item">
<h1 class="section-heading section-heading--center section-heading--dark m-b-40 m-t-20 app-title">Laden Sie Ihr Byteball-Wallet herunter</h1>
<div class="section-heading--center">
<img src="img/inphone/wallet.png?v2" style="max-width: 300px">
</div>
<ul class="footer-menu-list app-icons h-list footer-social-new-ul m-b-50">
<li class="list-item">
<a href="https://itunes.apple.com/us/app/byteball/id1147137332?ls=1&mt=8" target="_blank">
<img src="static/images/app/icon-applestore.svg">
iOS<br />App Store
</a>
</li>
<li class="list-item">
<a href="https://play.google.com/store/apps/details?id=org.byteball.wallet" target="_blank">
<img src="static/images/app/android_robot.svg">
Android<br />Play Store
</a>
</li>
<li class="list-item">
<a href="/downloads/Byteball-win64.exe">
<img src="static/images/app/icon-microsoft.svg">
Windows<br />64bit
</a>
</li>
<li class="list-item">
<a href="/downloads/Byteball-win32.exe">
<img src="static/images/app/icon-microsoft.svg">
Windows<br />32bit
</a>
</li>
<li class="list-item">
<a href="/downloads/Byteball-osx64.dmg">
<img src="static/images/app/icon-mac-os-x.svg">
Mac<br />64bit
</a>
</li>
<li class="list-item">
<a href="/downloads/Byteball-linux64.zip">
<img src="static/images/app/linux.png">
Linux<br />64bit
</a>
</li>
<li class="list-item">
<a href="https://github.com/byteball/byteball/releases" target="_blank">
<img src="static/images/app/fi-social-github.svg">
GitHub<br />Veröffentlichungen
</a>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Pricing Tables end-->
<!-- Pricing Tables start 22-->
<section class="section section-price-table">
<div class="container">
<hr class="new-breaker-line">
<div class="row justify-content-md-center">
<div class="col-md-12">
<h1 class="section-heading section-heading--center section-heading--dark m-b-40 m-t-20 app-title">Testnet</h1>
<h4 class="m-b-30 section-heading--center noto-sans-display-regular" style="font-size: 20px; line-height: 1.5; max-width: 850px; margin: auto;">
<a href="testnet.html" target="_blank">Testnet Wallet</a> ist auch verfügbar, wenn Sie ein Entwickler sind oder die Funktionen von Byteball erleben möchten, ohne einen Cent auszugeben.
</h4>
</div>
</div>
</div>
</section>
<!-- Pricing Tables end-->
<!-- Team start-->
<section class="section section-team p-b-40" id="team">
<div class="container">
<hr class="new-breaker-line">
<h3 class="section-heading section-heading--center m-b-45">Treffen Sie das Team</h3>
<ul class="row list-reset">
<li class="col-lg-12 col-md-12 col-sm-12" style="margin: auto">
<div class="col-lg-3 col-md-6 col-sm-6 section-heading--center" style="margin: auto;">
<div class="box box-style-2">
<div class="box-image">
<img src="static/images/team/tony.png" alt="Tony Churyumoff" />
<div class="bg-overlay"></div>
<ul class="list-socials" style="margin: auto; left: 41%;">
<li class="list-item">
<a class="fab fa-linkedin-in" href="https://www.linkedin.com/in/anton-churyumov-32112b7/" target="_blank"></a>
</li>
<li class="list-item">
<a class="fab fa-github" href="https://github.com/tonyofbyteball" target="_blank"></a>
</li>
</ul>
</div>
<div class="box-body">
<h5 class="box-title noto-sans-symbols-bold">
Tony Churyumoff
</h5>
<p class="box-author-job source-sans-pro-regular">Gründer und leitender Entwickler</p>
</div>
</div>
</div>
</li>
<li class="col-lg-3 col-md-6 col-sm-6 section-heading--center">
<div class="box box-style-2">
<div class="box-image">
<img src="static/images/team/mikhail.png" alt="Mikhail Pustovalov" />
<div class="bg-overlay"></div>
<ul class="list-socials" style="margin: auto; left: 45%;">
<li class="list-item">
<a class="fab fa-github" href="https://github.com/kakysha" target="_blank"></a>
</li>
</ul>
</div>
<div class="box-body">
<h5 class="box-title noto-sans-symbols-bold">
Mikhail Pustovalov
</h5>
<p class="box-author-job source-sans-pro-regular">Entwickler</p>
</div>
</div>
</li>
<li class="col-lg-3 col-md-6 col-sm-6 section-heading--center">
<div class="box box-style-2">
<div class="box-image">
<img src="static/images/team/evgenii.png" alt="Evgeniy Stulnikov" />
<div class="bg-overlay"></div>
<ul class="list-socials" style="margin: auto; left: 45%;">
<li class="list-item">
<a class="fab fa-github" href="https://github.com/xJeneKx" target="_blank"></a>
</li>
</ul>
</div>
<div class="box-body">
<h5 class="box-title noto-sans-symbols-bold">
Evgeniy Stulnikov
</h5>
<p class="box-author-job source-sans-pro-regular">Entwickler</p>
</div>
</div>
</li>
<li class="col-lg-3 col-md-6 col-sm-6 section-heading--center">
<div class="box box-style-2">
<div class="box-image">
<img src="static/images/team/artem.png" alt="Artem Nagorny" />
<div class="bg-overlay"></div>
<ul class="list-socials" style="margin: auto; left: 45%;">
<li class="list-item">
<a class="fab fa-github" href="https://github.com/temikng" target="_blank"></a>
</li>
</ul>
</div>
<div class="box-body">
<h5 class="box-title noto-sans-symbols-bold">
Artem Nagorny
</h5>
<p class="box-author-job source-sans-pro-regular">Entwickler</p>
</div>
</div>
</li>
<li class="col-lg-3 col-md-6 col-sm-6 section-heading--center">
<div class="box box-style-2">
<div class="box-image">
<img src="static/images/team/steve.png" alt="Steve Safronoff" />
<div class="bg-overlay"></div>
<ul class="list-socials" style="margin: auto; left: 45%;">
<li class="list-item">
<a class="fab fa-linkedin-in" href="https://www.linkedin.com/in/vyacheslav-safronov-5607a04b/" target="_blank"></a>
</li>
</ul>
</div>
<div class="box-body">
<h5 class="box-title noto-sans-symbols-bold">
Steve Safronoff
</h5>
<p class="box-author-job source-sans-pro-regular">Partner und Head of Business Development</p>
</div>
</div>
</li>
<li class="col-lg-3 col-md-6 col-sm-6 section-heading--center">
<div class="box box-style-2">
<div class="box-image">
<img src="static/images/team/valerius.png" alt="Valerius Coppens" />
<div class="bg-overlay"></div>
<ul class="list-socials" style="margin: auto; left: 45%;">
<li class="list-item">
<a class="fab fa-linkedin-in" href="https://www.linkedin.com/in/valerius-coppens-29941a1" target="_blank"></a>
</li>
</ul>
</div>
<div class="box-body">
<h5 class="box-title noto-sans-symbols-bold">
Valerius Coppens
</h5>
<p class="box-author-job source-sans-pro-regular">Head of Strategy</p>
</div>
</div>
</li>
<li class="col-lg-3 col-md-6 col-sm-6 section-heading--center">
<div class="box box-style-2">
<div class="box-image">
<img src="static/images/team/elena.png" alt="Elena Tairova" />
<div class="bg-overlay"></div>
<ul class="list-socials" style="margin: auto; left: 45%;">
<li class="list-item">
<a class="fab fa-linkedin-in" href="https://www.linkedin.com/in/elena-tairova/" target="_blank"></a>
</li>
</ul>
</div>
<div class="box-body">
<h5 class="box-title noto-sans-symbols-bold">
Elena Tairova
</h5>
<p class="box-author-job source-sans-pro-regular">Leiter PR und Kommunikation</p>
</div>
</div>
</li>
<li class="col-lg-3 col-md-6 col-sm-6 section-heading--center">
<div class="box box-style-2">
<div class="box-image">
<img src="static/images/team/paul.png" alt="Paul Murray" />
<div class="bg-overlay"></div>
<ul class="list-socials" style="margin: auto; left: 45%;">
<li class="list-item">
<a class="fab fa-linkedin-in" href="https://www.linkedin.com/in/pauljvmurray/" target="_blank"></a>
</li>
</ul>
</div>
<div class="box-body">
<h5 class="box-title noto-sans-symbols-bold">
Paul Murray
</h5>
<p class="box-author-job source-sans-pro-regular">Leiter für digitale Inhalte</p>
</div>
</div>
</li>
<li class="col-lg-3 col-md-6 col-sm-6 section-heading--center">
<div class="box box-style-2">
<div class="box-image">
<img src="static/images/team/luke.png" alt="Luke Angell" />
<div class="bg-overlay"></div>
<ul class="list-socials" style="margin: auto; left: 45%;">
<li class="list-item">
<a class="fab fa-linkedin-in" href="https://www.linkedin.com/in/lukezangell/" target="_blank"></a>
</li>
</ul>
</div>
<div class="box-body">
<h5 class="box-title noto-sans-symbols-bold">
Luke Angell
</h5>
<p class="box-author-job source-sans-pro-regular">Events und Partnerschaften-Manager</p>
</div>
</div>
</li>
<li class="col-lg-3 col-md-6 col-sm-6 section-heading--center">