-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1389 lines (1218 loc) · 55.1 KB
/
index.html
File metadata and controls
1389 lines (1218 loc) · 55.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="en-us">
<head>
<script type="text/javascript" src="js/jquery.min.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-118680504-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-118680504-1');
</script>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-4454443434708248",
enable_page_level_ads: true
});
</script>
<script type="text/javascript" src="js/page-common.js"></script>
<script type="text/javascript" src="//js.growsurf.com/v1"></script>
<link rel="stylesheet" type="text/css" href="css/page-common.css">
<link rel="stylesheet" type="text/css" href="css/app-common.css">
<link rel="stylesheet" type="text/css" href="css/page-custom.css">
<link rel="stylesheet" type="text/css" href="css/app-custom.css">
<link href="Fonts/Roboto/font.css" rel="stylesheet">
<link href="Fonts/Material Icons/font.css" rel="stylesheet">
<link rel="icon" href="icon.ico" />
<link rel="logo" href="icon.svg#icon" border="true" />
<title color="">Communicator - Decentralized, lovely and funny messenger in Ethereum blockchain</title>
<meta name="pehtml" content="true">
<meta name="directory" content="css, js, img, snd">
<meta name="description" content="Can a messenger be funny and friendly to non-blockchain users and be in blockchain? Decentralized, lovely and funny messenger in Ethereum blockchain.">
<meta name="keywords" content="blockchain, decentralized, ico, pre-ico, bounty, signature, avatar, campaign, project, crowdsale, pre-sale, messenger, im, communicator">
<script type="text/javascript" src="script.js"></script>
</head>
<body class=" js_enabled js_enabled js_enabled">
<header id="navbar"><logo>Communicator</logo>
<nav style="position: absolute;right: 1px;margin-right: 14px;">
<ul style="
overflow: hidden!important;
">
<a href="#features"><li><div><i class="material-icons">bookmark_border</i></div><p>Features</p></li></a><a href="#tokens"><li><div><img width="40px" src="img/COMM token_metal.png"></div><p>Token(s)</p></li></a>
<a href="#scam"><li><div><i class="material-icons">help</i></div><p>Scam?</p></li></a>
<a href="#team"><li><div><i class="material-icons">assignment_ind</i></div><p>Team</p></li></a>
<a href="#roadmap"><li><div><i class="material-icons">map</i></div><p>Roadmap</p></li></a>
<a href="#referral"><li><div><i class="material-icons pulse">link</i></div><p>Bounties</p></li></a>
<a href="#faq"><li><div><i class="material-icons">question_answer</i></div><p>FAQs</p></li></a>
<a href="#whitepaper"><li><div><i class="material-icons">book</i></div><p>Whitepaper</p></li></a>
</ul>
</nav></header>
<div id="cookie-message" data-cookie-expiry="60" style="display: block;">
<p>
Communicator uses cookies to ensure we give you the best experience on our website.
<a href="cookie-policy.html" title="View our Cookie Policy">Find out more about cookies</a>
</p>
</div>
<content class="content">
<article><div class="area heading" style="position: relative;top: -15px;width: 100%;"><div style="
background: url(img/header.png) no-repeat;
background-size: cover;
width: 100%;
height: 668px;
/* position: absolute; */
z-index: 0;
"></div>
</div><div class="area" style="position: relative;width: 100%;"><center><h6>Can a messenger be funny and friendly to non-blockchain users and be in blockchain?<p></p></h6></center><center><h2>Welcome to <span style="color: #393;font-size:70px;">Communicator</span></h2>
<center><img src="img/messenger.png" width="550px"></center>
<h5>Decentralized, lovely and funny messenger in Ethereum blockchain.</h5></center><h1 id="features" style="
"><i class="material-icons">bookmark_border</i> Features</h1></div>
<div class="area" style="width: 70%;margin: 0 8px 90px 8px;position;position: relative;right: 0px;"><div style="
background: url(img/green-balloon_right.png) no-repeat;
background-size: 100%;
width: 99%;
height: 98px;
position: absolute;
z-index: 0;
"></div>
<img class="align-left" src="img/1.png" width="200" height="200" style="
position: relative;
z-index: 2;
border-radius: 22px;
"><h2 style="
color: #fff!important;
z-index: 2;
position: relative;
">Colored chat balloons</h2><div class="area" style="
position: relative;
top: -22px;
width: calc(100% - 30px);
background: #393;
z-index: 1;
">
<p style="
color: #fff!important;
">Users can pick a color from a pre-defined set to apply to every balloon (and/or make a default of his balloons).
</p><p style="
color: #fff!important;
">With the tokens, user can:</p><ul style="
color: #fff!important;
z-index: 1;
position: relative;
left: 8px;
">
<li>Apply your own HEX color</li>
<li>Apply a border and set his color</li>
</ul></div>
<div style="
background: url(img/green-balloon_right.png);
background-position: 0 106px;
background-size: 100%;
width: calc(100% - 13px);
height: 106px;
margin-top: -119px;
/* width: calc(100% - 300px); */
/* margin-left: 308px; */
/* float: left; */
position: absolute;
z-index: 0;
"></div></div>
<div class="area" style="margin: 0 8px 170px 8px;"><div style="
background: url(img/green-balloon_left.png) no-repeat;
background-size: 100%;
width: 99%;
height: 98px;
position: absolute;
z-index: 0;
"></div>
<img class="align-right" src="img/2.png" width="200" height="200" style="
position: relative;
z-index: 2;
border-radius: 22px;
"><h2 style="
color: #fff!important;
z-index: 2;
position: relative;
text-align: right;
">Very, very personalized balloons</h2><div class="area" style="
position: relative;
top: -22px;
left: 34px;
c(100% - 9px);
c(100% - -3px);
width: calc(100% - 31px);
background: #393;
z-index: 1;
text-align: right;
margin-bottom: 91px;
">
<p style="
color: #fff!important;
margin-right: 204px!important;
">Do a normal speaking, a shout, a thinking balloon, a whisper, a citation, etc.</p>
<p style="
color: #fff!important;
margin-right: 204px!important;
">With the tokens, user can purchase new balloon forms.</p></div>
<div style="
background: url(img/green-balloon_left.png);
background-position: 0 106px;
background-size: 100%;
width: calc(100% - 13px);
height: 106px;
margin-top: -119px;
/* width: calc(100% - 300px); */
/* margin-left: 308px; */
/* float: left; */
position: absolute;
z-index: 0;
"></div></div>
<div class="area" style="margin: 0 8px 90px 8px;"><div style="
background: url(img/green-balloon_right.png) no-repeat;
background-size: 100%;
width: 99%;
height: 98px;
position: absolute;
z-index: 0;
"></div>
<img class="align-left" src="img/3.png" width="250" height="250" style="
position: relative;
z-index: 2;
border-radius: 22px;
"><h2 style="
color: #fff!important;
z-index: 2;
position: relative;
">No costs in GAS is needed</h2><div class="area" style="
position: relative;
top: -22px;
width: calc(100% - 30px);
background: #393;
z-index: 1;
">
<p style="
color: #fff!important;
">What? Use Ethereum's blockchain but no costs needed? Yes.
</p><p style="
color: #fff!important;
">Users will have two options: to use Ethereum blockchain, his devices or the servers when needed (to not be expensive in any thing). In blockchain, only will have costs if the message is posted in public chat (but you can message in public chat without registering in blockchain). Also, the chat room owner can set to store the chat history in owners/mods device or in the servers. Users will store his private messages in his devices and optionally can store the history of chat rooms.</p><p style="
color: #fff!important;
z-index: 1;
position: relative;
left: 8px;">Want to store a important message in blockchain? You can register important things with a low GAS cost!</p></div>
<div style="
background: url(img/green-balloon_right.png);
background-position: 0 106px;
background-size: 100%;
width: calc(100% - 13px);
height: 106px;
margin-top: -119px;
/* width: calc(100% - 300px); */
/* margin-left: 308px; */
/* float: left; */
position: absolute;
z-index: 0;
"></div></div>
<div class="area" style="margin: 0 8px 150px 8px;"><div style="
background: url(img/green-balloon_left.png) no-repeat;
background-size: 100%;
width: 99%;
height: 98px;
position: absolute;
z-index: 0;
"></div>
<img class="align-right" src="img/4.png" width="200" height="200" style="
position: relative;
z-index: 2;
border-radius: 22px;
"><h2 style="
color: #fff!important;
z-index: 2;
position: relative;
text-align: right;
">Reactions</h2><div class="area" style="
position: relative;
top: -22px;
left: 34px;
c(100% - 9px);
c(100% - -3px);
width: calc(100% - 31px);
background: #393;
z-index: 1;
text-align: right;
margin-bottom: 55px;
">
<p style="
color: #fff!important;
margin-right: 204px!important;
">Take a picture to appear in every message to show your reaction.</p><p style="
color: #fff!important;
margin-right: 204px!important;
">The avatar that uses a reaction have a greater size.</p></div>
<div style="
background: url(img/green-balloon_left.png);
background-position: 0 106px;
background-size: 100%;
width: calc(100% - 13px);
height: 106px;
margin-top: -119px;
/* width: calc(100% - 300px); */
/* margin-left: 308px; */
/* float: left; */
position: absolute;
z-index: 0;
"></div></div>
<div class="area" style="margin: 0 8px 170px 8px;"><div style="
background: url(img/green-balloon_right.png) no-repeat;
background-size: 100%;
width: 99%;
height: 98px;
position: absolute;
z-index: 0;
"></div>
<img class="align-left" src="img/5.png" width="376" height="200" style="
position: relative;
z-index: 2;
border-radius: 22px;
"><h2 style="
color: #fff!important;
z-index: 2;
position: relative;
">Multiple themes</h2><div class="area" style="
position: relative;
top: -22px;
width: calc(100% - 30px);
background: #393;
z-index: 1;
">
<p style="
color: #fff!important;
margin-bottom: 88px;
">Not only the default background, but you can apply advanced themes that changes all the look of your messenger.
</p></div>
<div style="
background: url(img/green-balloon_right.png);
background-position: 0 106px;
background-size: 100%;
width: calc(100% - 13px);
height: 106px;
margin-top: -119px;
/* width: calc(100% - 300px); */
/* margin-left: 308px; */
/* float: left; */
position: absolute;
z-index: 0;
"></div></div>
<div class="area" style="margin: 0 8px 150px 8px;"><div style="
background: url(img/green-balloon_left.png) no-repeat;
background-size: 100%;
width: 99%;
height: 98px;
position: absolute;
z-index: 0;
"></div>
<img class="align-right" src="img/6.png" width="376" height="200" style="
position: relative;
z-index: 2;
border-radius: 22px;
"><h2 style="
color: #fff!important;
z-index: 2;
position: relative;
text-align: right;
">MSN feeling</h2><div class="area" style="
position: relative;
top: -22px;
left: 34px;
c(100% - 9px);
c(100% - -3px);
width: calc(100% - 31px);
background: #393;
z-index: 1;
text-align: right;
margin-bottom: 55px;
">
<p style="
color: #fff!important;
margin-right: 380px!important;
">Do you like the MSN look and don't see his elements in other messengers?</p><p style="
color: #fff!important;
margin-right: 380px!important;
">Communicator can make you remember these times!</p></div>
<div style="
background: url(img/green-balloon_left.png);
background-position: 0 106px;
background-size: 100%;
width: calc(100% - 13px);
height: 106px;
margin-top: -119px;
/* width: calc(100% - 300px); */
/* margin-left: 308px; */
/* float: left; */
position: absolute;
z-index: 0;
"></div></div>
<div class="area" style="margin: 0 8px 125px 8px;"><div style="
background: url(img/green-balloon_right.png) no-repeat;
background-size: 100%;
width: 99%;
height: 98px;
position: absolute;
z-index: 0;
"></div>
<img class="align-left" src="img/7.png" width="512" height="272" style="
position: relative;
z-index: 2;
border-radius: 22px;
">
<h2 style="
color: #fff!important;
z-index: 2;
position: relative;
">Embed chat groups</h2><div class="area" style="
position: relative;
top: -22px;
width: calc(100% - 30px);
height: 179px;
background: #393;
z-index: 1;
">
<p style="
color: #fff!important;
">Turn chat groups into amazing embeddeds in your site.</p><p style="
color: #fff!important;
">Chatip is the embed version of Communicator.</p></div>
<div style="
background: url(img/green-balloon_right.png);
background-position: 0 106px;
background-size: 100%;
width: calc(100% - 13px);
height: 106px;
margin-top: -106px;
/* width: calc(100% - 300px); */
/* margin-left: 308px; */
/* float: left; */
position: absolute;
z-index: 0;
"></div></div>
<div class="area" style="margin: 0 8px 150px 8px;"><div style="
background: url(img/green-balloon_left.png) no-repeat;
background-size: 100%;
width: 99%;
height: 98px;
position: absolute;
z-index: 0;
"></div>
<img class="align-right" src="img/8.png" width="200" height="200" style="
position: relative;
z-index: 2;
border-radius: 22px;
"><h2 style="
color: #fff!important;
z-index: 2;
position: relative;
text-align: right;
">Send tokens to contacts</h2><div class="area" style="
position: relative;
top: -22px;
left: 34px;
c(100% - 9px);
c(100% - -3px);
width: calc(100% - 31px);
background: #393;
z-index: 1;
text-align: right;
margin-bottom: 55px;
">
<p style="
color: #fff!important;
margin-right: 204px!important;
">Easily send CMM, Days, Powers and Super Stickers to your contacts, or to any people.</p><p style="
color: #fff!important;
margin-right: 204px!important;
">You can also receive tokens by creating a link/button.</p></div>
<div style="
background: url(img/green-balloon_left.png);
background-position: 0 106px;
background-size: 100%;
width: calc(100% - 13px);
height: 106px;
margin-top: -119px;
/* width: calc(100% - 300px); */
/* margin-left: 308px; */
/* float: left; */
position: absolute;
z-index: 0;
"></div></div>
<div class="area" style="margin: 0 8px 90px 8px;"><div style="
background: url(img/green-balloon_right.png) no-repeat;
background-size: 100%;
width: 99%;
height: 98px;
position: absolute;
z-index: 0;
"></div>
<img class="align-left" src="img/9.png" width="250" height="250" style="
position: relative;
z-index: 2;
border-radius: 22px;
">
<h2 style="
color: #fff!important;
z-index: 2;
position: relative;
">Multiple tokens</h2><div class="area" style="
position: relative;
top: -22px;
width: calc(100% - 30px);
background: #393;
z-index: 1;
">
<p style="
color: #fff!important;
">We are one of the first project to use 3 tokens.
</p><p style="
color: #fff!important;
">And we are introducting the Communicator Day token, which have the singularity to be burned one per user everyday. See the <a href="#whitepaper">Whitepaper</a> for more details.
</p>
<ul style="
color: #fff!important;
">
<li>CMM: the main token. Used to buy days, powers and other items.</li>
<li>Day: represents how many days you can have your powers working.</li>
<li>Power: can be a colored name, a name with a glow, a emoji pack, chat room features, etc. Powers will be crypto collectibles.</li>
</ul></div>
<div style="
background: url(img/green-balloon_right.png);
background-position: 0 106px;
background-size: 100%;
width: calc(100% - 13px);
height: 106px;
margin-top: -119px;
/* width: calc(100% - 300px); */
/* margin-left: 308px; */
/* float: left; */
position: absolute;
z-index: 0;
"></div></div>
<div class="area" style="margin: 0 8px 150px 8px;"><div style="
background: url(img/green-balloon_left.png) no-repeat;
background-size: 100%;
width: 99%;
height: 98px;
position: absolute;
z-index: 0;
"></div>
<img class="align-right" src="icon.svg#icon" width="200" height="200" style="
position: relative;
z-index: 2;
border-radius: 22px;
"><h2 style="
color: #fff!important;
z-index: 2;
position: relative;
text-align: right;
">SMS & phone</h2><div class="area" style="
position: relative;
top: -22px;
left: 34px;
c(100% - 9px);
c(100% - -3px);
width: calc(100% - 31px);
background: #393;
z-index: 1;
text-align: right;
margin-bottom: 55px;
">
<p style="
color: #fff!important;
margin-right: 204px!important;
">Communicator also will acts as a lightweight dialer and SMS app.</p><p style="
color: #fff!important;
margin-right: 204px!important;
">Bonus: work as a modem dialer.</p></div>
<div style="
background: url(img/green-balloon_left.png);
background-position: 0 106px;
background-size: 100%;
width: calc(100% - 13px);
height: 106px;
margin-top: -119px;
/* width: calc(100% - 300px); */
/* margin-left: 308px; */
/* float: left; */
position: absolute;
z-index: 0;
"></div></div>
<div class="area" style="margin: 0 8px 125px 8px;"><div style="
background: url(img/green-balloon_right.png) no-repeat;
background-size: 100%;
width: 99%;
height: 98px;
position: absolute;
z-index: 0;
"></div>
<img class="align-left" src="img/10.png" width="512" height="272" style="
position: relative;
z-index: 2;
border-radius: 22px;
">
<h2 style="
color: #fff!important;
z-index: 2;
position: relative;
">Super Stickers</h2><div class="area" style="
position: relative;
top: -22px;
width: calc(100% - 30px);
height: 179px;
background: #393;
z-index: 1;
">
<p style="
color: #fff!important;
">Not just another sticker you send.</p>
<p style="
color: #fff!important;
">Super Stickers are animated stickers that are crypto collectibles and haves a DNA system.</p><p style="
color: #fff!important;
">Also, if someone sends a Super Sticker and you send another in sequence, they can breed and drop a egg.</p></div>
<div style="
background: url(img/green-balloon_right.png);
background-position: 0 106px;
background-size: 100%;
width: calc(100% - 13px);
height: 106px;
margin-top: -106px;
/* width: calc(100% - 300px); */
/* margin-left: 308px; */
/* float: left; */
position: absolute;
z-index: 0;
"></div></div>
<div class="area" style="margin: 0 8px 150px 8px;"><div style="
background: url(img/green-balloon_left.png) no-repeat;
background-size: 100%;
width: 99%;
height: 98px;
position: absolute;
z-index: 0;
"></div>
<img class="align-right" src="img/11.png" width="216" height="200" style="
position: relative;
z-index: 2;
border-radius: 22px;
"><h2 style="
color: #fff!important;
z-index: 2;
position: relative;
text-align: right;
">P2P games</h2><div class="area" style="
position: relative;
top: -22px;
left: 34px;
c(100% - 9px);
c(100% - -3px);
width: calc(100% - 31px);
background: #393;
z-index: 1;
text-align: right;
margin-bottom: 88px;
">
<p style="
color: #fff!important;
margin-right: 235px!important;
">You can open a list of games in your message/group window, then play games such as: drawings, tic tac toe, mines, etc</p></div>
<div style="
background: url(img/green-balloon_left.png);
background-position: 0 106px;
background-size: 100%;
width: calc(100% - 13px);
height: 106px;
margin-top: -119px;
/* width: calc(100% - 300px); */
/* margin-left: 308px; */
/* float: left; */
position: absolute;
z-index: 0;
"></div></div>
<div class="area" style="margin: 0 8px 125px 8px;"><div style="
background: url(img/green-balloon_right.png) no-repeat;
background-size: 100%;
width: 99%;
height: 98px;
position: absolute;
z-index: 0;
"></div>
<img class="align-left" src="img/12.png" width="512" height="272" style="
position: relative;
z-index: 2;
border-radius: 22px;
">
<h4 style="
color: #fff!important;
z-index: 2;
position: relative;
">A bridge between your devices</h4><div class="area" style="
position: relative;
top: -22px;
width: calc(100% - 29px);
height: 192px;
border-radius: 28px;
background: #393;
z-index: 1;
">
<p style="
color: #fff!important;
">Receives a notification on your PC, and your smartwatch rings.</p>
<p style="
color: #fff!important;
">Receives a SMS on your phone, replies to it on your PC or TV.</p><p style="
color: #fff!important;
">These are a few of a lot of possibilities for communication integration between your devices.</p></div>
<div style="
background: url(img/green-balloon_right.png);
background-position: 0 106px;
background-size: 100%;
width: calc(100% - 13px);
height: 106px;
margin-top: -106px;
/* width: calc(100% - 300px); */
/* margin-left: 308px; */
/* float: left; */
position: absolute;
z-index: 0;
"></div></div>
<h1 id="tokens"><img width="65px" src="img/COMM token_metal.png" style="
margin-right: 15px;
">Token(s)</h1><h2><img width="55px" src="img/COMM-P token.png" style="
margin-right: 10px;
"> COMM-P</h2>
<p><b>Protocol</b>: ERC-20</p><p><b>Decimals</b>: 18</p>
<p><b>Name</b>: Communicator Token Placeholder</p><p>Placeholder token distributed right after the crowdsale for: airdrop/signature/bounty hunters, team, contributors and buyers. Is the precessor of COMM tokens.</p>
<p>We will not immediately issue the main tokens (COMM) because they need a contract that is better than an simple ERC-20 crowdsale contract. In some weeks after crowdsale we will build the COMM contract (ERC-223, compatible with ERC-20 and is its successor).</p><p>Users will move to COMM contract by exchanging COMM-P to COMM tokens in an 1:1 basis. Placeholder tokens will be burned when transferred to the new contract.</p><span>As our crowdsale will be on CoinLaunch platform, the contract will be ERC-20. But the project will give another bounty and the tokens needs to be ERC-223. After crowdsale all airdrop/bounty/signature participants and sale buyers will receive COMM-P tokens. So when we launch the COMM token (it will be some weeks after crowdsale) users will can exchange his COMM-P tokens to COMM tokens in a 1:1 basis (for sample, send 700 COMM-P and receive 700 COMM). All COMM-P sent to the COMM contract will be burned. 900,000,000 will be the total supply of this token.</span>
<h4>Total supply</h4>
<p>900,000,000 tokens.</p><h4>Token allocation</h4><img src="img/Allocation.png">
<br><span><b>Note<b>: those values doesn't count the numbers after the comma in percentage calcs. 1% is the sum of the numbers that where after the comma, so 99% appear when you calc 73+11+15. But those numbers are correct, even not showing 100% when you calc.</b></b></span><h6>Allocation for Other (15%)</h6>
<img src="img/OthersAllocation.png"><p>Airdrop: 12,187,500
</p><p>Bounty: 46,191,250
</p><p>Signature campaign (stakes): 5,000,000
</p><p>Crowdsale Advisors: 38,310,625
</p><p>Partnerships: 38,310,625
</p><p>Crowdsale buyers: 660,000,000
</p><p>Team: 100,000,000</p>
<h2><img width="55px" src="img/COMM token.png" style="
margin-right: 10px;
"> COMM</h2><p><b>Protocol</b>: ERC-223</p>
<p><b>Decimals</b>: 18</p><p><b>Name</b>: Communicator Token</p><p>The main token of Communicator. Is a ERC-223 token used to buy Days, Powers, themes, Super Stickers and other digital assets used in the app.
</p><p>1,000,000,000 will be the total supply of this token, including 90% from the old contract (COMM-P).
</p><p>This contract will vest/freeze 100,000,000 tokens for the new and automatic airdrop/bounty campaign that will begin when the app reach some user amount.
</p>
<h4>Total supply</h4><p>1,000,000,000 tokens (90% from COMM-P contract).</p><h4>Token allocation</h4><img src="img/AllocationCOMM.png"><p>From COMM-P: 900,000,000
</p><p>Automatic airdrop (stakes): 25,000,000
</p><p>Automatic bounty (stakes): 75,000,000</p>
<h2><img width="55px" src="img/DAY token.png" style="
margin-right: 5px;
"> DAY</h2><p><b>Protocol</b>: ERC-223</p>
<p><b>Decimals</b>: 4</p><p><b>Name</b>: Communicator Day token</p><p>ERC-223 token that represents how many days the holder can have his powers active (works like a subscription).
</p><p>DAY tokens needs to be cheap. User can buy any amount of days he wants.
</p><p>Every day one DAY token will be burnt per each user. For sample, if we have 5.000 token holders, 5.000 tokens will be burnt in one day. If a user bought 600 DAY tokens yesterday, today he have 599 tokens and tomorrow 598 tokens.
</p><p>DAY tokens will be divisible in four decimals:
<br><span>1.0401 = 1[day].04[hour]01[minute]
</span></p><p>Each COMM token sent to this contract, will mint DAY tokens according to the exchanging price.
</p><p>Total supply will be changed while new DAY tokens are generated.
</p><p>Instead of burning COMM tokens sent, they will be available to be bought using ETH.
</p><p>DAY tokens are transferable between users, and with the Exchange power they can trade DAY tokens to COMM tokens.
</p><p>If the DAY tokens price gets too much expensive, users will get a limit of token amount bought per day. After it, if the value returns to be expensive, other workarounds will be done, such as mint 1 token every 2 days (giving one month free after holding for two months).
</p>
<h4>Total supply</h4>
<p>Scalable according to the sent COMM tokens to buy DAY tokens</p>
<h2><img width="55px" src="img/POWER token.png" style="
margin-right: 5px;
"> POWER</h2>
<p><b>Protocol</b>: ERC-721</p>
<p><b>Name</b>: Communicator Power token</p><p>Is a ERC-721 token that represents the powers. Powers are special features that are only available by purchasing with COMM tokens, and they are active while the user have DAY tokens in his wallet.
</p><p>Powers price in COMM tokens are changed according to exchange rates.
</p><p>Powers are transferable between users, having possibility to sell them.
</p><h4>Total supply</h4><p>Not applicable since powers are like crypto collectibles.</p>
<div class="area" style="margin: 0 8px 0 8px;"><div style="
background: url(img/red-balloon.png) no-repeat;
background-size: 100%;
width: 99%;
height: 104px;
position: absolute;
z-index: 0;
"></div>
<h1 id="scam" style="
color: #fff!important;
z-index: 2;
position: relative;
"><i class="material-icons">help</i> Is this a scam?</h1><div class="area" style="
position: relative;
top: -15px;
width: calc(100% - 30px);
background: #c00;
z-index: 1;
">
<div style="
background: #fff;
margin: 0 5px 0 5px;
border-radius: 15px;
padding: 1px 0 5px 0;
"><p style="
">I know that this whole project and site are being designed by just me and without impressive images and amazing animations, and now is just a few people in the team. It can raise some alerts and doubts.</p><p style="
">2011 I started this project as "Plasmmer Messenger/Peeper Messenger" projecting his features and in 2013 I created his icon/color (that is still today) and renamed it to Communicator. And in April 24 2018 I started this project as a ICO.</p><p style="
">Some people in groups where I talked about Communicator, called it as "scam" without even reading about. Then here are some answers about the risks.</p><p style="
"><b>In the ICO, the funds will not be sent to me (Daniell Mesquita) and not even sent to Communicator, but to our partner <a href="https://coinlaunch.market/" target="blank">CoinLaunch</a>. They will act like a escrow. And after the end of the ICO, CoinLaunch will send the raised funds to the ICO wallet that I created.</b></p><p style="
">So the risk here is that the project don't succeed (investing with conscience and research is your responsability), can't achieve his soft cap and/or for when the funds will be sent to Communicator's wallet after the end of ICO.</p><p style="
"><b>If the project don't achieve his minimum thresholds, the amounts will be refunded to buyers by CoinLaunch accourding to his <a href="https://coinlaunch.market/faq/#refund-policy">Refund Policy</a>. Then, in this step, you don't need to trust Communicator's team, but in the project and in CoinLaunch.</b></p><p style="
">Reading with more attention, the risk in this part is that after the ICO, the funds will be sent to Communicator's Ethereum wallet (which I have access). So only join this ICO with so much sure and research, it's your sole responsibility.</p><p style="
z-index: 1;
position: relative;
"><b>I'm doing some researches about the team, ICO campaign, the contract (since a Reddit user has recently found a vulnerability in the ERC20 protocol), airdrop, the Communicator Day token and his daily one token burn per user, the Communicator Power token linked with powers as crypto collectibles, bounties, etc. Also I'm improving the Whitepaper, in a early stage. Please help these questions in our threads: <a href="https://www.reddit.com/r/Communicator/comments/8eyd2q/questions_for_the_community/">Questions for the community</a> and <a href="https://bitcointalk.org/index.php?topic=3424188">Bounty for community's initial help</a>.</b></p></div><p style="
color: #ffffff80!important;
z-index: 1;
position: relative;
">Kindly regards,</p><p style="
color: #ffffff80!important;
z-index: 1;
position: relative;
">Daniell Mesquita - CEO of Communicator.</p></div>
<div style="
background: url(img/red-balloon.png);
background-position: 0 106px;
background-size: 100%;
width: calc(100% - 13px);
height: 106px;
margin-top: -119px;
/* width: calc(100% - 300px); */
/* margin-left: 308px; */
/* float: left; */
position: absolute;
z-index: 0;
"></div></div><div class="area" style="margin: 0 8px 125px 8px;"><div style="
background: url(img/team.png) no-repeat;
width: 99%;
height: 440px;
position: absolute;
z-index: 0;
"></div>
<h1 id="team" style="
z-index: 2;
position: relative;
"><i class="material-icons" style="
color: #fff;
">assignment_ind</i> Team</h1><h2 style="
z-index: 2;
position: relative;
">Core</h2>
<ul class="tiled longcard">
<h3>Board of directors</h3>
<li style="background: #fff;height: initial;padding: 12px 0 0 0;"><div class="no-opacity" style="
height: initial;
"><center><img width="150px" src="img/CEO.png" style="
border-radius: 50%;
"><p style="
color: #000;
">Daniell Mesquita</p>
<p style="
color: #00000080;
line-height: 0px;
">CEO</p>
<p style="
color: #00000080;
line-height: 0px;
">UI/UX Designer</p>
<p style="
color: #00000080;
line-height: 0px;
">Chatip's Developer</p>
<span>Brazil</span><div class="social-icons" style="
">
<a href="https://www.linkedin.com/in/daniellmesquita/" target="blank"><img src="img/social/LinkedIn.png" width="20px" title="LinkedIn" alt="LinkedIn"></a><a href="https://angel.co/daniellmesquita" target="blank"><img src="img/social/AngelList.png" width="20px" title="AngelList" alt="AngelList"></a>
<a href="https://daniellmesquito.deviantart.com" target="blank"><img src="img/social/DeviantArt.png" width="20px" title="DeviantArt" alt="DeviantArt"></a><a href="https://facebook.com/daniellmesquita" target="blank"><img src="img/social/Facebook.png" width="20px" title="Facebook" alt="Facebook"></a>
<a href="https://twitter.com/MesquitaDaniell" target="blank"><img src="img/social/Twitter.png" width="20px" title="Twitter" alt="Twitter"></a>
<a href="https://medium.com/@DaniellPlasmmer?source=communicator_ico" target="blank"><img src="img/social/Medium.png" width="20px" title="Blog" alt="Blog"></a>
<a href="https://t.me/plasmmer" target="blank"><img src="img/social/Telegram.jpg" width="20px" title="Telegram" alt="Telegram"></a>
<a href="https://github.com/DaniellMesquita" target="blank"><img src="img/social/GitHub.png" width="20px" title="GitHub" alt="GitHub"></a>
</div>
<p style="
color: #000;
font-size: 16px;
line-height: initial;
">In 2011 started developing and in 2012 launched and began managing his own social network called Peeper, but closed it in Oct 2014 due to server expenses.<br>Is good at projecting and designing <a href="https://daniellmesquito.deviantart.com/" target="blank">concepts</a>. No known positions in companies and not a famous interpreneur, just is starting his first ICO.</p></center>
</div></li>
<li style="background: #fff;height: initial;padding: 12px 0 0 0;"><div class="no-opacity" style="
height: initial;
"><center><img width="150px" height="150px" src="https://i.imgur.com/u3uIdcI.jpg" style="
border-radius: 50%;
"><p style="
color: #000;
">Tanjin Alam</p><p style="
color: #00000080;
line-height: 0px;
">COO</p>
<p style="
color: #00000080;
line-height: 0px;
">Community Manager</p><p style="
color: #00000080;
line-height: 0px;
">Promotion Advisor</p>
<span>Bangladesh</span><div class="social-icons" style="
">
<a href="https://www.linkedin.com/in/tanjin-alam-piash-471925139/" target="blank"><img src="img/social/LinkedIn.png" width="20px" title="LinkedIn" alt="LinkedIn"></a>
<a href="https://twitter.com/MdTanjinAlam2" target="blank"><img src="img/social/Twitter.png" width="20px" title="Twitter" alt="Twitter"></a>
<a href="https://www.facebook.com/piash.tanjin" target="blank"><img src="img/social/Facebook.png" width="20px" title="Facebook" alt="Facebook"></a><a href="https://t.me/tanjin_007" target="blank"><img src="img/social/Telegram.jpg" width="20px" title="Telegram" alt="Telegram"></a>
</div>
<p style="
color: #000;
font-size: 16px;
line-height: initial;
">Currently I have involved myself as being an advisor of different ICO besides that I am running my studies in the field of computer science engineering.<br>Having more than one and half years of experience in social media management, such as Facebook marketing, LinkedIn marketing, Twitter marketing and also a years of experience in crypto and block chain.</p></center>
</div></li>
<h3>Board of developers</h3><p>Hiring</p>
<h3>Advisory board</h3>
<p>Hiring</p>
<h2>Temporary board</h2><li style="background: #fff;height: initial;padding: 12px 0 0 0;"><div class="no-opacity" style="
height: initial;
"><center><img width="150px" height="150px" src="img/avatar.png" style="
border-radius: 50%;
"><p style="
color: #000;
">"Iceman"</p>
<p style="
color: #00000080;
line-height: 0px;
">Smart contract developer</p>
<span>Prefer to not reveal his country</span><div class="social-icons" style="
">
<a href="https://bitcointalk.org/index.php?action=profile;u=1210047" target="blank"><img src="img/social/BitcoinTalk.png" width="20px" title="BitcoinTalk" alt="BitcoinTalk"></a>