-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1148 lines (1122 loc) · 55.1 KB
/
index.html
File metadata and controls
1148 lines (1122 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>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>TOS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./assets/ui/semantic.css">
<link rel="stylesheet" type="text/css" href="./assets/css/animate.css">
<link rel="stylesheet" type="text/css" href="./assets/css/swiper-4.2.6.min.css">
<link rel="stylesheet" type="text/css" href="./assets/css/default.css">
<link rel="stylesheet" type="text/css" href="./assets/css/main.css">
<!--[if lte IE 8]>
<script src="./assets/js/html5.js"></script>
<![endif]-->
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<script src="./assets/ui/semantic.js"></script>
<script src="./assets/js/swiper-4.2.6.min.js"></script>
<script src="./assets/js/main.js"></script>
<!--[if lt IE 10]>
<script src="./assets/js/main.ie.js"></script>
<link rel="stylesheet" type="text/css" href="./assets/css/default.ie.css">
<![endif]-->
</head>
<body>
<header class="ui container pc">
<div class="ui secondary menu">
<div class="left menu logo">
<a href="./index.html">
<img class="imgae logo" src="./assets/img/logo.png" />
</a>
</div>
<a class="item scroll" href="#home">
Home
</a>
<a class="item scroll" href="#about">
About TOS
</a>
<a class="item scroll" href="#wallets">
Wallets
</a>
<a class="item scroll" href="#introduce">
Manual
</a>
<a class="item scroll" href="#notice">
Notice
</a>
<a class="item scroll" href="#press">
Press
</a>
<a class="item scroll" href="#home">
Giftcard
</a>
<a class="item scroll" href="#home">
Whitepaper
</a>
<a class="item scroll" href="#home">
SEC Howey Test
</a>
<div class="item right float">
<a class="ui dropdown link">
<i class="dropdown icon"></i>
<span>EN</span>
<div class="menu">
<div class="item">EN</div>
<div class="item">KO</div>
<div class="item">JA</div>
<div class="item">CH</div>
</div>
</a>
</div>
</div>
</header>
<header class="ui container mobile">
<div class="left menu logo">
<a href="./index.html">
<img class="imgae logo" src="./assets/img/logo.png" />
</a>
</div>
<div class="item">
<a class="ui dropdown link">
<i class="dropdown icon"></i>
<span>EN</span>
<div class="menu">
<div class="item">EN</div>
<div class="item">KO</div>
<div class="item">JA</div>
<div class="item">CH</div>
</div>
</a>
</div>
<div class="ui dropdown">
<div class="text"><i class="dropdown icon"></i> home</div>
<div class="ui vertical pointing menu">
<a class="item scroll" href="#home">
Home
</a>
<a class="item scroll" href="#about">
About TOS
</a>
<a class="item scroll" href="#wallets">
Wallets
</a>
<a class="item scroll" href="#introduce">
Manual
</a>
<a class="item scroll" href="#notice">
Notice
</a>
<a class="item scroll" href="#press">
Press
</a>
<a class="item scroll" href="#home">
Giftcard
</a>
<a class="item scroll" href="#home">
Whitepaper
</a>
<a class="item scroll" href="#home">
SEC Howey Test
</a>
</div>
</div>
</header>
<main>
<div id="home" class="ui inverted vertical">
<img class="bg bg1" src="./assets/img/main/home/home-bg1.png" alt="bg" />
<img class="bg bg-hand" src="./assets/img/main/home/home-hand.png" alt="bg" />
<div class="ui container">
<div class="description">
<h2>T.OS</h2>
<p>
T.OS is a kind of digital coin which has been based on block-chain technology
<br>t and aiming the new payment market by digital(virtual) currency system.
</p>
</div>
<div class="linkWrap">
<a class="item" href="#" target="_blank">
<img src="./assets/img/main/home/home-goAppstore.png" alt="appstore link" />
</a>
<a class="item" href="#" target="_blank">
<img src="./assets/img/main/home/home-goPlaystore.png" alt="playstore link" />
</a>
</div>
</div>
</div>
<div id="about" class="ui container">
<div class="description">
<h3>How do I use T.OS Coin?</h3>
<ul>
<li>
<div class="img-wrap">
<img src="./assets/img/main/about/about-ico1.png" alt="watch video" />
</div>
<span>Watch Introductory Video</span>
</li>
<li>
<div class="img-wrap">
<img src="./assets/img/main/about/about-ico2.png" alt="Introduce T.OS" />
</div>
<span>About T.OS</span>
</li>
<li>
<div class="img-wrap">
<img src="./assets/img/main/about/about-ico3.png" alt="Download T.OS wallet" />
</div>
<span>Download T.OS Wallet</span>
</li>
<li>
<div class="img-wrap">
<img src="./assets/img/main/about/about-ico4.png" alt="manual" />
</div>
<span>Refer to the manual</span>
</li>
<li>
<div class="img-wrap">
<img src="./assets/img/main/about/about-ico5.png" alt="press" />
</div>
<span>Press</span>
</li>
</ul>
</div>
<div class="shadow"></div>
</div>
<div id="introduce" class="ui container">
<img class="bg-hand" src="./assets/img/main/introduce/introduce-hand.png" alt="hnad" />
<h3>What is T.OS?</h3>
<div class="ui grid stackable row">
<div class="eight wide column">
<p>
<strong>
T.OS is a kind of digital coin which has been based on block-chain technology and aiming the new payment market by digital(virtual)
currency system.</strong>
<br>
<br> Many types of digital coin have issued world-widely in recent years, however any digital coins have
not been practical for economical or financial usage but booming up only on dealing themselves by
each other, that means the values of almost coins are ‘just possession’ such as old stamps, antique
or jewelry. It’s non-sense!
</p>
</div>
<div class="eight wide column">
<p>
Because we would be faced with emerging cashless world before long, we have prepared to create the new digital currency which
should be safer, swifter and smarter in paying process on real commercial market.
<br> T.OS could substitute intelligent paying method for cash, plastic card (credit / debit) and all
the other pay-system, so would pursue the lower paying-cost (commission) and shorter term for paying
the money to affiliated store, it might be a win-win model between the customers and the affiliated
store owners. That’s enough!
</p>
</div>
</div>
</div>
<div id="concept" class="ui inverted vertical">
<div class="ui container">
<h3>Concept for T.OS Payment System</h3>
<img src="assets/img/main/concept/concept-process.png" alt="process" />
<p>
In the real payment market, most of digital coins may be reluctant as payment currency because its value is fluctuated excessively
and it takes long time to be approved for complete payment. In T.OS payment system, T.OSp (private coin,
only for inner circulation) would be used exclusively for fixing the value of payment unit (T.OSp coin
not to be dealt in any exchange market), then owners of T.OSp can exchange T.OSp Coin to T.OS Coin or
also in reverse when they want to, with consideration for exchange ratio between T.OS coin T.OSp (T.OS
Coin price is changed, so exchange ratio is changed also between two coins). And Private coin T.OSp is
suitable for payment only since its processing speed is so fast, it means T.OS payment system is the
fittest for digital currency payment, most compliant with market demand!
</p>
</div>
</div>
<div id="process" class="ui container">
<h3>Real-Time Data Processing</h3>
<p>
The number of T.OS transactions per second is 10 times more than that of Bitcoin, and approximately 3 times more than Ethereum,
which means T.OS is optimized for payment system. T.OSp is about 14 times faster than T.OS in the real world.
</p>
<div class="ui grid stackable row">
<div class="four wide column">
<table class="ui celled table feature">
<thead>
<tr>
<th>Features</th>
</tr>
</thead>
<tbody>
<tr>
<td>Core feature</td>
</tr>
<tr>
<td>Coin limit</td>
</tr>
<tr>
<td>Decision Making Process</td>
</tr>
<tr>
<td>Consensus Algorithm</td>
</tr>
<tr>
<td>Algorithm</td>
</tr>
<tr>
<td>Mean block time</td>
</tr>
<tr>
<td>Transaction Speed</td>
</tr>
<tr>
<td>Creation date</td>
</tr>
</tbody>
</table>
</div>
<div class="four wide column">
<table class="ui celled table bitcoin">
<thead>
<tr>
<th>BitCoin</th>
</tr>
</thead>
<tbody>
<tr>
<td>Financial Transactions</td>
</tr>
<tr>
<td>21M</td>
</tr>
<tr>
<td>Non-systematic</td>
</tr>
<tr>
<td>Proof of work</td>
</tr>
<tr>
<td>Sha256</td>
</tr>
<tr>
<td>10min</td>
</tr>
<tr>
<td>7tx / sec</td>
</tr>
<tr>
<td>2009</td>
</tr>
</tbody>
</table>
</div>
<div class="four wide column">
<table class="ui celled table Ethereum">
<thead>
<tr>
<th>Ethereum</th>
</tr>
</thead>
<tbody>
<tr>
<td>Smart Contracts</td>
</tr>
<tr>
<td>-</td>
</tr>
<tr>
<td>Non-systematic</td>
</tr>
<tr>
<td>Proof of work</td>
</tr>
<tr>
<td>Ethash</td>
</tr>
<tr>
<td>15sec</td>
</tr>
<tr>
<td>25tx / sec</td>
</tr>
<tr>
<td>2013</td>
</tr>
</tbody>
</table>
</div>
<div class="four wide column">
<table class="ui celled table tos">
<thead>
<tr>
<th>T.OS Coin</th>
</tr>
</thead>
<tbody>
<tr>
<td>Payment Transaction</td>
</tr>
<tr>
<td>6B</td>
</tr>
<tr>
<td>Non-systematic</td>
</tr>
<tr>
<td>Proof of work</td>
</tr>
<tr>
<td>Scrypt</td>
</tr>
<tr>
<td class="twoline">1min
<br>4 sec for payment</td>
</tr>
<tr>
<td class="twoline">70tx / sec
<br> 1000tx / sec for payment</td>
</tr>
<tr>
<td>2017</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div id="wallets" class="ui inverted vertical">
<div class="ui grid container stackable row">
<div class="eight wide column">
<div class="description">
<h3>T.OS Coin Wallets</h3>
<p>
T.OS Coin is securely sored in a wallet on your PC and mobile device. Select your OS then download proper wallet application.
</p>
</div>
<ul>
<li>
<img src="./assets/img/main/wallets/wallet-window.jpg" alt="windows">
</li>
<li>
<img src="./assets/img/main/wallets/wallet-window.jpg" alt="android">
</li>
<li>
<img src="./assets/img/main/wallets/wallet-window.jpg" alt="iOS">
</li>
</ul>
</div>
<div class="eight wide column">
<div class="description">
<h3>How to use T.OS Coin?</h3>
</div>
<ul>
<li>
<img src="./assets/img/main/wallets/use-window.jpg" alt="windows download guide">
</li>
<li>
<img src="./assets/img/main/wallets/use-android.jpg" alt="android download guide">
</li>
<li>
<img src="./assets/img/main/wallets/use-ios.jpg" alt="iOS download guide">
</li>
</ul>
</div>
</div>
</div>
<div id="notice" class="ui container">
<h3 class="tal">Notice</h3>
<div class="bbs-list swiper-slide swiper-slide-active notice_box">
<div class="swiper-wrapper">
<div class="swiper-slide">
<ul>
<li>
<div class="thumb">
<img src="./assets/img/main/notice/bbs-default.jpg" alt="notice">
</div>
<div class="description">
<span class="date">June 11, 2018</span>
<br>
<p class="subject">Our website is currently undergoing a renewal.</p>
<p class="contents">TOScoin is now changed to have a new name 'T.OS.' Our website(tosblock.com) is currently
undergoing a renewal. We will come back with our new website as soon as possible.
You may find information on listing, meet-ups, and T.OS on our social media(Kakaotalk,
telegram, line@, twitter).
</p>
<a class="more" href="#none">
<img src="./assets/img/main/notice/moreBtn.png" alt="read more" />
</a>
</div>
</li>
<li>
<div class="thumb">
<img src="./assets/img/main/notice/bbs-default.jpg" alt="notice">
</span>
</div>
<div class="description">
<span class="date">June 11, 2018</span>
<br>
<p class="subject">Our website is currently undergoing a renewal.</p>
<p class="contents">TOScoin is now changed to have a new name 'T.OS.' Our website(tosblock.com) is currently
undergoing a renewal. We will come back with our new website as soon as possible.
You may find information on listing, meet-ups, and T.OS on our social media(Kakaotalk,
telegram, line@, twitter).
</p>
<a class="more" href="#none">
<img src="./assets/img/main/notice/moreBtn.png" alt="read more" />
</a>
</div>
</li>
<li>
<div class="thumb">
<img src="./assets/img/main/notice/notice-3.jpg" alt="notice">
</span>
</div>
<div class="description">
<span class="date">June 11, 2018</span>
<br>
<p class="subject">Our website is currently undergoing a renewal.</p>
<p class="contents">TOScoin is now changed to have a new name 'T.OS.' Our website(tosblock.com) is currently
undergoing a renewal. We will come back with our new website as soon as possible.
You may find information on listing, meet-ups, and T.OS on our social media(Kakaotalk,
telegram, line@, twitter).
</p>
<a class="more" href="#none">
<img src="./assets/img/main/notice/moreBtn.png" alt="read more" />
</a>
</div>
</li>
</ul>
</div>
<div class="swiper-slide">
<ul>
<li>
<div class="thumb">
<img src="./assets/img/main/notice/notice-3.jpg" alt="notice">
</div>
<div class="description">
<span class="date">June 11, 2018</span>
<br>
<p class="subject">Our website is currently undergoing a renewal.</p>
<p class="contents">TOScoin is now changed to have a new name 'T.OS.' Our website(tosblock.com) is currently
undergoing a renewal. We will come back with our new website as soon as possible.
You may find information on listing, meet-ups, and T.OS on our social media(Kakaotalk,
telegram, line@, twitter).
</p>
<a class="more" href="#none">
<img src="./assets/img/main/notice/moreBtn.png" alt="read more" />
</a>
</div>
</li>
<li>
<div class="thumb">
<img src="./assets/img/main/notice/bbs-default.jpg" alt="notice">
</span>
</div>
<div class="description">
<span class="date">June 11, 2018</span>
<br>
<p class="subject">Our website is currently undergoing a renewal.</p>
<p class="contents">TOScoin is now changed to have a new name 'T.OS.' Our website(tosblock.com) is currently
undergoing a renewal. We will come back with our new website as soon as possible.
You may find information on listing, meet-ups, and T.OS on our social media(Kakaotalk,
telegram, line@, twitter).
</p>
<a class="more" href="#none">
<img src="./assets/img/main/notice/moreBtn.png" alt="read more" />
</a>
</div>
</li>
<li>
<div class="thumb">
<img src="./assets/img/main/notice/notice-3.jpg" alt="notice">
</span>
</div>
<div class="description">
<span class="date">June 11, 2018</span>
<br>
<p class="subject">Our website is currently undergoing a renewal.</p>
<p class="contents">TOScoin is now changed to have a new name 'T.OS.' Our website(tosblock.com) is currently
undergoing a renewal. We will come back with our new website as soon as possible.
You may find information on listing, meet-ups, and T.OS on our social media(Kakaotalk,
telegram, line@, twitter).
</p>
<a class="more" href="#none">
<img src="./assets/img/main/notice/moreBtn.png" alt="read more" />
</a>
</div>
</li>
</ul>
</div>
<div class="swiper-slide">
<ul>
<li>
<div class="thumb">
<img src="./assets/img/main/notice/notice-3.jpg" alt="notice">
</div>
<div class="description">
<span class="date">June 11, 2018</span>
<br>
<p class="subject">Our website is currently undergoing a renewal.</p>
<p class="contents">TOScoin is now changed to have a new name 'T.OS.' Our website(tosblock.com) is currently
undergoing a renewal. We will come back with our new website as soon as possible.
You may find information on listing, meet-ups, and T.OS on our social media(Kakaotalk,
telegram, line@, twitter).
</p>
<a class="more" href="#none">
<img src="./assets/img/main/notice/moreBtn.png" alt="read more" />
</a>
</div>
</li>
<li>
<div class="thumb">
<img src="./assets/img/main/notice/notice-3.jpg" alt="notice">
</span>
</div>
<div class="description">
<span class="date">June 11, 2018</span>
<br>
<p class="subject">Our website is currently undergoing a renewal.</p>
<p class="contents">TOScoin is now changed to have a new name 'T.OS.' Our website(tosblock.com) is currently
undergoing a renewal. We will come back with our new website as soon as possible.
You may find information on listing, meet-ups, and T.OS on our social media(Kakaotalk,
telegram, line@, twitter).
</p>
<a class="more" href="#none">
<img src="./assets/img/main/notice/moreBtn.png" alt="read more" />
</a>
</div>
</li>
<li>
<div class="thumb">
<img src="./assets/img/main/notice/notice-3.jpg" alt="notice">
</span>
</div>
<div class="description">
<span class="date">June 11, 2018</span>
<br>
<p class="subject">Our website is currently undergoing a renewal.</p>
<p class="contents">TOScoin is now changed to have a new name 'T.OS.' Our website(tosblock.com) is currently
undergoing a renewal. We will come back with our new website as soon as possible.
You may find information on listing, meet-ups, and T.OS on our social media(Kakaotalk,
telegram, line@, twitter).
</p>
<a class="more" href="#none">
<img src="./assets/img/main/notice/moreBtn.png" alt="read more" />
</a>
</div>
</li>
</ul>
</div>
</div>
<!-- Add Pagination -->
<div class="swiper-pagination"></div>
<!-- Add Arrows -->
<div class="swiper-button-next">
<img src="./assets/img/before.jpg" alt="before">
</div>
<div class="swiper-button-prev">
<img src="./assets/img/next.jpg" alt="next">
</div>
</div>
<!-- Initialize Swiper -->
<script type="text/javascript">
var swiper = new Swiper('.notice_box', {
direction: 'horizontal',
pagination: {
el: '.notice_box .swiper-pagination',
clickable: true
},
navigation: {
nextEl: '.notice_box .swiper-button-next',
prevEl: '.notice_box .swiper-button-prev'
}
});
</script>
</div>
<div id="press" class="ui container">
<h3 class="tal">Press</h3>
<div class="bbs-list swiper-slide swiper-slide-active press_box">
<div class="swiper-wrapper">
<div class="swiper-slide">
<ul>
<li>
<div class="thumb">
<img src="./assets/img/main/press/bbs-default.jpg" alt="press">
</div>
<div class="description">
<span class="date">May 26, 2018</span>
<br>
<p class="subject">Event for launching of T.OS Singapore exchange.</p>
<p class="contents">Hello. We are T.OS. To celebrate the launch of Singapore exchange, T.OS is holding a
membership event. We will give T.OS coins to those who subscribe for membership and
will soon notify the detailed information about the event. Thank you.
</p>
<a class="more" href="#none">
<img src="./assets/img/main/press/moreBtn.png" alt="read more" />
</a>
</div>
</li>
<li>
<div class="thumb">
<img src="./assets/img/main/press/press-2.jpg" alt="press">
</span>
</div>
<div class="description">
<span class="date">April 19, 2018</span>
<br>
<p class="subject">TOS Coin has successfully ended its unique ICO event</p>
<p class="contents">TOS Coin has announced that its FREE ICO event has successfully ended. (on the date of
release) The event was held from March 26th~30th on its event-only website, garnering
a huge attention before its start due to a unique method of ICO. Those who want to
join the ICO event must install TOS wallet application and access to TOS ICO website
every 2 pm during the event period. They can finish registration by clicking ‘TOS
Coin Registration’ button and enter TOS wallet address and e-mail address.
</p>
<a class="more" href="#none">
<img src="./assets/img/main/press/moreBtn.png" alt="read more" />
</a>
</div>
</li>
<li>
<div class="thumb">
<img src="./assets/img/main/press/press-3.jpg" alt="press">
</span>
</div>
<div class="description">
<span class="date">June 11, 2018</span>
<br>
<p class="subject">Our website is currently undergoing a renewal.</p>
<p class="contents">TOScoin is now changed to have a new name 'T.OS.' Our website(tosblock.com) is currently
undergoing a renewal. We will come back with our new website as soon as possible.
You may find information on listing, meet-ups, and T.OS on our social media(Kakaotalk,
telegram, line@, twitter).
</p>
<a class="more" href="#none">
<img src="./assets/img/main/press/moreBtn.png" alt="read more" />
</a>
</div>
</li>
</ul>
</div>
<div class="swiper-slide">
<ul>
<li>
<div class="thumb">
<img src="./assets/img/main/press/press-3.jpg" alt="press">
</div>
<div class="description">
<span class="date">May 26, 2018</span>
<br>
<p class="subject">Event for launching of T.OS Singapore exchange.</p>
<p class="contents">Hello. We are T.OS. To celebrate the launch of Singapore exchange, T.OS is holding a
membership event. We will give T.OS coins to those who subscribe for membership and
will soon notify the detailed information about the event. Thank you.
</p>
<a class="more" href="#none">
<img src="./assets/img/main/press/moreBtn.png" alt="read more" />
</a>
</div>
</li>
<li>
<div class="thumb">
<img src="./assets/img/main/press/press-2.jpg" alt="press">
</span>
</div>
<div class="description">
<span class="date">April 19, 2018</span>
<br>
<p class="subject">TOS Coin has successfully ended its unique ICO event</p>
<p class="contents">TOS Coin has announced that its FREE ICO event has successfully ended. (on the date of
release) The event was held from March 26th~30th on its event-only website, garnering
a huge attention before its start due to a unique method of ICO. Those who want to
join the ICO event must install TOS wallet application and access to TOS ICO website
every 2 pm during the event period. They can finish registration by clicking ‘TOS
Coin Registration’ button and enter TOS wallet address and e-mail address.
</p>
<a class="more" href="#none">
<img src="./assets/img/main/press/moreBtn.png" alt="read more" />
</a>
</div>
</li>
<li>
<div class="thumb">
<img src="./assets/img/main/press/press-3.jpg" alt="press">
</span>
</div>
<div class="description">
<span class="date">June 11, 2018</span>
<br>
<p class="subject">Our website is currently undergoing a renewal.</p>
<p class="contents">TOScoin is now changed to have a new name 'T.OS.' Our website(tosblock.com) is currently
undergoing a renewal. We will come back with our new website as soon as possible.
You may find information on listing, meet-ups, and T.OS on our social media(Kakaotalk,
telegram, line@, twitter).
</p>
<a class="more" href="#none">
<img src="./assets/img/main/press/moreBtn.png" alt="read more" />
</a>
</div>
</li>
</ul>
</div>
</div>
<!-- Add Pagination -->
<div class="swiper-pagination"></div>
<!-- Add Arrows -->
<div class="swiper-button-next">
<img src="./assets/img/before.jpg" alt="before">
</div>
<div class="swiper-button-prev">
<img src="./assets/img/next.jpg" alt="next">
</div>
</div>
<!-- Initialize Swiper -->
<script type="text/javascript">
var swiper = new Swiper('.press_box', {
direction: 'horizontal',
pagination: {
el: '.press_box .swiper-pagination',
clickable: true
},
navigation: {
nextEl: '.press_box .swiper-button-next',
prevEl: '.press_box .swiper-button-prev'
}
});
</script>
</div>
</div>
<div id="dev-team" class="ui container">
<h3>We are the T.OS Developer Team</h3>
<div class="ui grid man-list stackable row">
<div class="four wide column">
<img src="./assets/img/main/dev-team/dev-team1.jpg" alt="team">
<div>
Shinri Takahashi
<br> (CEO)
</div>
<p>
· Samsung R&D Institute Japan
<br> · Samsung Digital Imaging
<br> · Kyocera
<br> · Shinshu Univ.
<br>
</p>
</div>
<div class="four wide column">
<img src="./assets/img/main/dev-team/dev-team2.jpg" alt="team">
<div>
Daisik Shin
<br> (COO)
</div>
<p>
· Desk manager of Japan Business
<br> in Samsung SDS for 28 years.
<br> · Overseas Business Marketing
<br> team of Strategy Marketing department
<br> · Kyocera 28-year career in Japan Business
<br> · working in Japan now
</p>
</div>
<div class="four wide column">
<img src="./assets/img/main/dev-team/dev-team3.jpg" alt="team">
<div>
Daniel Kang
<br> (CEO, Blockware)
<br>
<a href="#" target="_blank">
<img src="./assets/img/in.png" alt="in" />
</a>
</div>
<p>
· Developing the block-chain coin exchange
<br> system
<br> · Samsung S1, Manager of R&D PlanningTeam
<br> · Samsung SDS, Principal Engineer of Develop
<br> Center
<br> · Seoul National Univ., Mineral & Petroleum
<br> Engineering
</p>
</div>
<div class="four wide column">
<img src="./assets/img/main/dev-team/dev-team4.jpg" alt="team">
<div>
David Kim
<br> (Developer)
<br>
<a href="#" target="_blank">
<img src="./assets/img/in.png" alt="in" />
</a>
</div>
<p>
· Developing the block-chain coin exchange
<br> system
</p>
</div>
<!--4 col-->
<div class="four wide column">
<img src="./assets/img/main/dev-team/dev-team5.jpg" alt="team">
<div>
Paul Ryu
<br> (Developer)
<br>
<a href="#" target="_blank">
<img src="./assets/img/in.png" alt="in" />
</a>
</div>
<p>
· Developing the block-chain coin exchange
<br> system
<br> · OWLS CEO
<br> · Samsung SDS Security consulting dept.
<br> Developer
</p>
</div>
<div class="four wide column">
<img src="./assets/img/main/dev-team/dev-team6.jpg" alt="team">
<div>
Yoon Namyoung
<br> (Developer)
</div>
<p>
· Developing the block-chain coin exchange
<br> system
</p>
</div>
<div class="four wide column">
<img src="./assets/img/main/dev-team/dev-team7.jpg" alt="team">
<div>
Bryan G. Lee
<br> (Developer)
<br>
<a href="#" target="_blank">
<img src="./assets/img/cat.png" alt="cat" />
</a>
</div>
<p>
· Developing the block-chain coin exchange
<br> system
</p>
</div>
<div class="four wide column">
<img src="./assets/img/main/dev-team/dev-team8.jpg" alt="team">
<div>
Andrew Nam
<br> (Developer)
<br>
<a href="#" target="_blank">
<img src="./assets/img/in.png" alt="in" />
</a>
</div>
<p>
· Developing the block-chain coin exchange
<br> system
</p>
</div>
<!--8 col-->
<div class="four wide column">
<img src="./assets/img/main/dev-team/dev-team9.jpg" alt="team">
<div>
Bongki Jang
<br> (Developer)
</div>
<p>
· Developing the block-chain coin exchange
<br> system
</p>
</div>
<div class="four wide column">
<img src="./assets/img/main/dev-team/dev-team10.jpg" alt="team">
<div>
Yongjin Lim
<br> (Developer)
</div>
<p>
· Developing the block-chain coin exchange
<br> system
</p>
</div>
<div class="four wide column">
<img src="./assets/img/main/dev-team/dev-team11.jpg" alt="team">
<div>
James Ko
<br> (Developer)
</div>
<p>
· Developing the block-chain coin exchange system
</p>
</div>
<div class="four wide column">
<img src="./assets/img/main/dev-team/dev-team12.jpg" alt="team">
<div>
Wanchul Kim
<br> (Cryptologist)
</div>
<p>
· DoojinTech, R&D Center
<br> · Samsung S1 , R&D Center
<br> · Hoingik Univ., Mathmatics
</p>
</div>
<!--12 col-->
<div class="four wide column">
<img src="./assets/img/main/dev-team/dev-team13.jpg" alt="team">
<div>
Faruk TERCIOGLU
</div>
<p>
· Director knock coin Exchange
</p>
</div>
</div>
</div>
<div id="advisor" class="ui container">
<h3>We are the T.OS Advisor</h3>
<div class="ui grid man-list stackable row">
<div class="four wide column">
<img src="./assets/img/main/advisor-team/advisor-team1.jpg" alt="team">
<div>
Matt McKibbin
<br> (Advisor)
</div>
<p>
· A blockchain evangelist since 2013.
<br> · Coordination of the DC Blockchain Meetup from 2013 to 2016 .