forked from ethcon-kr/2019.ethcon.kr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1823 lines (1661 loc) · 98.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="ko-KR">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-131452835-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);
gtag('js', new Date());
gtag('config', 'UA-131452835-3');
</script>
<meta property="og:image" content="/assets/img/cover.jpg" />
<meta name="description" content="한국 이더리움 개발자 생태계가 같이 만들어나가는 오픈 컨퍼런스입니다." />
<meta name="keywords" content="이드콘, 이더리움, 개발자, 탈중앙, Ethereum, Conference, Ethcon, Korea" />
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--<link rel="apple-touch-icon" sizes="76x76" href="./assets/img/apple-icon.png">-->
<link rel="icon" type="image/png" href="./assets/img/favicon.ico">
<title>
이드콘 한국 ETHCon Korea
</title>
<!-- Fonts and icons -->
<link href="https://fonts.googleapis.com/css?family=Poppins:200,300,400,600,700,800" rel="stylesheet" />
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet">
<!-- Nucleo Icons -->
<link href="./assets/css/nucleo-icons.css" rel="stylesheet" />
<!-- CSS Files -->
<link href="./assets/css/blk-design-system.css?v=1.0.0" rel="stylesheet" />
<link href="./assets/demo/demo.css" rel="stylesheet" />
</head>
<body class="index-page">
<!-- Navbar -->
<nav class="navbar navbar-expand-lg fixed-top navbar-transparent " color-on-scroll="100">
<div class="container">
<div class="navbar-translate">
<a class="navbar-brand" href="https://ethcon.kr/" data-placement="bottom">
<span>이드콘 한국</span> ETHCon Korea
</a>
<button class="navbar-toggler navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation" aria-controls="navigation-index" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-bar bar1"></span>
<span class="navbar-toggler-bar bar2"></span>
<span class="navbar-toggler-bar bar3"></span>
</button>
</div>
<div class="collapse navbar-collapse justify-content-end" id="navigation">
<div class="navbar-collapse-header">
<div class="row">
<div class="col-6 collapse-brand">
<a class="navbar-brand" href="https://ethcon.kr/" data-placement="bottom">
<span>이드콘 한국</span> ETHCon Korea
</a>
</div>
<div class="col-6 collapse-close text-right">
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navigation" aria-controls="navigation-index" aria-expanded="false" aria-label="Toggle navigation">
<i class="tim-icons icon-simple-remove"></i>
</button>
</div>
</div>
</div>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#" onclick="scrollToItem('agenda')">발표</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link" href="#" onclick="scrollToItem('jobfair')">프로그램</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">파트너</a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<ul class="list-style-none">
<li><a class="dropdown-item" href="#" onclick="scrollToItem('sponsor')">스폰서</a></li>
<li><a class="dropdown-item" href="#" onclick="scrollToItem('medias')">미디어</a></li>
</ul>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="#" onclick="scrollToItem('donate')">기부하기</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Language</a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<ul class="list-style-none">
<li><a class="dropdown-item" href="./index.html">한국어</a></li>
<li><a class="dropdown-item" href="./index.en.html">English</a></li>
</ul>
</div>
</li>
<li class="nav-item p-0">
<a class="nav-link" rel="tooltip" title="Follow us on Twitter" data-placement="bottom" href="https://twitter.com/ethconkr" target="_blank">
<i class="fab fa-twitter"></i>
<p class="d-lg-none d-xl-none">Twitter</p>
</a>
</li>
<li class="nav-item p-0">
<a class="nav-link" rel="tooltip" title="Like us on Facebook" data-placement="bottom" href="https://www.facebook.com/ethconkr" target="_blank">
<i class="fab fa-facebook-square"></i>
<p class="d-lg-none d-xl-none">Facebook</p>
</a>
</li>
<li class="dropdown nav-item">
<!--
<a href="#" class="dropdown-toggle nav-link" data-toggle="dropdown">
<i class="fa fa-cogs d-lg-none d-xl-none"></i> Getting started
</a>
<div class="dropdown-menu dropdown-with-icons">
<a href="https://demos.creative-tim.com/blk-design-system/docs/1.0/getting-started/overview.html" class="dropdown-item">
<i class="tim-icons icon-paper"></i> Documentation
</a>
<a href="examples/register-page.html" class="dropdown-item">
<i class="tim-icons icon-bullet-list-67"></i>Register Page
</a>
<a href="examples/landing-page.html" class="dropdown-item">
<i class="tim-icons icon-image-02"></i>Landing Page
</a>
<a href="examples/profile-page.html" class="dropdown-item">
<i class="tim-icons icon-single-02"></i>Profile Page
</a>
</div>
-->
</li>
<li class="nav-item">
<a class="nav-link btn btn-default btn-simple d-none d-lg-block" href="https://festa.io/events/250" target="_blank">티켓 사러가기</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- End Navbar -->
<div class="wrapper">
<div class="page-header header-filter">
<img class="squares square1" src="assets/img/logo.svg"/>
<img class="squares square2" src="assets/img/logo.svg"/>
<img class="squares square3" src="assets/img/logo.svg"/>
<img class="squares square4" src="assets/img/logo.svg"/>
<img class="squares square5" src="assets/img/logo.svg"/>
<img class="squares square6" src="assets/img/logo.svg"/>
<img class="squares square7" src="assets/img/logo.svg"/>
<div class="container">
<div class="content-center brand">
<img src="assets/img/new-logo.png" style="height:auto"/>
<!--<h1 class="h1-seo primary" style="text-transform: none">ethcon Korea</h1>-->
<h3 class="primary">Discover the Light</h3>
<h3 class="secondary" >5/27 - 5/28<br/>코엑스 그랜드볼룸</h3>
<!-- <button class="btn btn-primary btn-simple" onclick="scrollToItem('agenda')">아젠다 보기</button> -->
<!-- <a class="btn btn-primary btn-simple" href="https://festa.io/events/250" target="_blank">티켓 사러가기</a> -->
<a class="btn btn-primary btn-simple" href="https://forms.gle/qxLoMoZhpNrkfY9t5" target="_blank">설문 응답하기</a>
<a class="btn btn-primary btn-simple" href="https://forms.gle/WQwq7Jg3vjy5TX7v8" target="_blank">이드콘 2기 관심보이기</a>
<!--<button class="btn btn-primary btn-simple" onclick="scrollToItem('jobfair')">잡페어 보기</button>-->
</div>
</div>
</div>
<div class="main">
<!-- Agenda -->
<div class="section" id="agenda">
<img src="assets/img/path1.png" class="path">
<img src="assets/img/path3.png" class="path path1">
<div class="container">
<h1 class="title primary">발표</h1>
<hr class="line-primary">
<br/>
<div class="row">
<div class="col">
<table class="table table-striped">
<thead>
<tr>
<th class="text-center" colspan="3" scope="col">
<h2><span class="text-primary font-weight-bold">Day 1(May 27)</span></h2>
</th>
</tr>
<tr>
<th scope="col"></th>
<th scope="col"><h4><span class="text-success font-weight-bold">Track A (Room 103)</span></h4></th>
<th scope="col"><h4><span class="text-warning font-weight-bold">Track B (Room 102)</span></h4></th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">9:30 ~ 10:00</th>
<td><span class="text-danger font-weight-bold">Opening Ceremony</span></td>
<td></td>
</tr>
<tr>
<th scope="row">10:00 ~ 10:25</th>
<td>
<span class="text-success">김성재</span><br/>
EVM과 함께한 smart contract language 개발기</td>
<td>
<span class="text-warning">이진호</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-case-study/136" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
스마트 컨트랙트 보안 취약점 Case study
</td>
</tr>
<tr>
<th scope="row">10:25 ~ 10: 50</th>
<td>
<span class="text-success">최윤성</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-decentralized-identity-for-real-world/105" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
Decentralized Identity for Real World</td>
<td>
<span class="text-warning">김부연</span><br/>
코스모스 자바스크립트 라이브러리, cosmosjs 개발기</td>
</tr>
<tr>
<th scope="row">10:50 ~ 11:15</th>
<td>
<span class="text-success">박찬현</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-modelling-language-for-cryptoeconomic-systems/129" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
Modelling Language for Cryptoeconomic Systems</td>
<td>
<span class="text-warning">박상현</span><br/>
Dogethereum으로 바라본 인터체인의 현주소</td>
</tr>
<tr>
<th scope="row">11:15 ~ 11:40</th>
<td>
<span class="text-success">김지윤</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-parsing-ethereum-database-db-schema/85" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
Parsing Ethereum Database:<br/>
이더리움의 DB schema를 분석하고, 실제 파싱하는 코드를 생성하여, 데이터를 분석</td>
<td>
<span class="text-warning">Kendrick Tan</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-feeding-my-cat-with-ethereum-kendrick-tan/81" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
Feeding My Cat With Ethereum</td>
</tr>
<tr>
<th scope="row">11:40 ~ 12:05</th>
<td>
<span class="text-success">심상규</span><br/>
우리가 믿는 미래 <br />(펜타시큐리티 스폰서 세션)</td>
<td>
<span class="text-warning">서기준</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019/131" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
온라인 게임은 완전한 탈중앙화를 꿈꾸는가? <br />(Planetarium 스폰서 세션)</td>
</tr>
<tr>
<th scope="row">12:05 ~ 13:20</th>
<td class="text-center" colspan="2">
<span class="text-info font-weight-bold">점심시간</span>
</td>
</tr>
<tr>
<th scope="row">13:20 ~ 13:45</th>
<td>
<span class="text-success">한우영</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-ipfs-dapp/134" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
중학생도 만드는 IPFS Dapp 만들기</td>
<td>
<span class="text-warning">신만선</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-porting-geth-on-pine64-rock64-arm-embedded-board/89" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
porting geth on pine64, rock64 arm embedded board</td>
</tr>
<tr>
<th scope="row">13:45 ~ 14:10</th>
<td>
<span class="text-success">Brantly Millegan</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-your-dapp-isnt-finished-without-ens-brantly-millegan/73" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
Your dapp isn't finished without ENS</td>
<td>
<span class="text-warning">Daisaku Yamamoto</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-developing-an-interface-for-blockchain-based-protocols-in-decentralized-finance-applications-daisaku-yamamoto/80" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
Developing an interface for blockchain-based protocols<br/>
in decentralized finance applications</td>
</tr>
<tr>
<th scope="row">14:10 ~ 14:35</th>
<td>
<span class="text-success">김종광</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-dapp-universal-login/84" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
DApp 에 Universal Login 을 붙여 손쉽게 신규 사용자를 모집하자</td>
<td>
<span class="text-warning">강형석</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-polkadot-substrate/133" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
Polkadot/Substrate: 인터체인 개발 튜토리얼</td>
</tr>
<tr>
<th scope="row">14:35 ~ 15:00</th>
<td>
<span class="text-success">Tai Ling Chen</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-manage-geth-node-on-kubernetes-tai-ling-chen/82" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
Manage Geth node on Kubernetes</td>
<td>
<span class="text-warning">안상선</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-erc20/90" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
ERC20코인에 대한 경제적 분석: 효율성과 공평성을 중심으로</td>
</tr>
<tr>
<th scope="row">15:00 ~ 15:25</th>
<td>
<span class="text-success">김택균</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019/135" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
프라이빗 블록체인의 신뢰를 높여주는 하이브리드 블록체인 <br />(Berith 스폰서 세션)</td>
<td>
<span class="text-warning">김준수</span><br/>
PoS/DPoS를 포괄하는 global staking 산업의 현주소 <br />(stake.fish 스폰서 세션)</td>
</tr>
<tr>
<th scope="row">15:25 ~ 15:35</th>
<td class="text-center" colspan="2">
<span class="text-info font-weight-bold">Break Time</span>
</td>
</tr>
<tr>
<th scope="row">15:35 ~ 16:00</th>
<td>
<span class="text-success">김효준</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-100/130" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
100만 데이터를 거래하는 블록체인 프로토콜 개발기</td>
<td>
<span class="text-warning">김준용</span>
<a href="https://drive.google.com/file/d/1S9jYtiuhaI-WM5oXWJcenAYMn7oUmKG_/view" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
커뮤니티가 걸어가야 할 방향 : 커뮤니티 운영 경험담<br/>
해외사례 및 건전한 생태계 기여에 관한 사항<br/>
DAO 커뮤니티, 활성화를 위한 제언</td>
</tr>
<tr>
<th scope="row">16:00 ~ 16:25</th>
<td>
<span class="text-success">강하다</span><br/>
프로덕트 매니저가 접근하는 댑과 UX 디자인</td>
<td>
<span class="text-warning">한재영</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019/107" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
이더리움과 토큰의 분실이 방지되는 지갑 개발기</td>
</tr>
<tr>
<th scope="row">16:25 ~ 16:50</th>
<td>
<span class="text-success">Adrian Li</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-live-stream-your-smart-contract-adrian-li/72" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
Live Streaming Your Smart Contract</td>
<td>
<span class="text-warning">Henry Chen</span><br/>
Blockchain Resource Pricing and the State "Rent"</td>
</tr>
<tr>
<th scope="row">16:50 ~ 17:15</th>
<td>
<span class="text-success">문영훈</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-21/86" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
블록체인과 21세기 디지털 자본주의와 민주주의</td>
<td>
<span class="text-warning">이흥노</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-scalable-decentralized-secure-blockchains/95" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
Scalable Decentralized Secure Blockchains<br/>
블록체인 합의알고리즘과 재중앙화 문제 해결 방안 제시</td>
</tr>
<tr>
<th scope="row">17:15 ~ 17:40</th>
<td>
<span class="text-success">정순형</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-tokamak-network-turing-complete-scalable-plasma-chain/103" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
Tokamak Network: Turing Complete,<br/>
Scalable Plasma Chain</td>
<td>
<span class="text-warning">현수영</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-2/108" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
제주 삼도2동 지역 화폐 도입 테스트 후기</td>
</tr>
<tr>
<th scope="row">17:40 ~ 18:00</th>
<td>
<span class="text-success">유민호</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019/92" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
안전한 트랜잭션을 위한 보안 기술 훑어보기 <br />(D'CENT 스폰서 세션)
</td>
<td>
<span class="text-warning">수호</span><br />
Sooho's view on De-Fi(수호 스폰서 세션)</td>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row mt-5">
<div class="col">
<table class="table table-striped">
<thead>
<tr>
<th class="text-center" colspan="3" scope="col">
<h2><span class="text-primary font-weight-bold">Day 2(May 28)</span></h2>
</th>
</tr>
<tr>
<th scope="col"></th>
<th scope="col"><h4><span class="text-success font-weight-bold">Track A (Room 103)</span></h4></th>
<th scope="col"><h4><span class="text-warning font-weight-bold">Track B (Room 102)</span></h4></th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">10:00 ~ 10:25</th>
<td>
<span class="text-success">유윤재</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-evm/93" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
EVM 기반 탈중앙 금융 서비스를 만들면서 얻은 교훈들</td>
<td>
<span class="text-warning">임도형</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-daoauth/132" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
인증수단으로 스마트컨트랙트를 사용하는 커뮤니티 싸이트의 개발 <br />(daoauth와 커뮤니티)</td>
</tr>
<tr>
<th scope="row">10:25 ~ 10: 50</th>
<td>
<span class="text-success">윤성준</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019/94" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
이더리움 기반 오목 게임 개발기</td>
<td>
<span class="text-warning">한상일</span><br/>
폴리매스 STO 컨트랙트 예제를 통해 배우는<br/>
업그레이더블 컨트랙트 설계</td>
</tr>
<tr>
<th scope="row">10:50 ~ 11:15</th>
<td>
<span class="text-success">최민석</span><br/>
Dex 모바일 앱 개발 및 배포기</td>
<td>
<span class="text-warning">이종건/김민수</span><br/>
블록체인과 데이터분석: 빅데이터 분석 활용사례</td>
</tr>
<tr>
<th scope="row">11:15 ~ 11:40</th>
<td>
<span class="text-success">박주형</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-examples-and-best-practice-to-implement-requestable-contract-for-plasma-evm/87" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
Examples and Best Practice to Implement<br/>
Requestable Contract for Plasma EVM</td>
<td>
<span class="text-warning">엄지용</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-atomic-swap/91" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
해시타임 락 컨트랙트를 이용한 Atomic Swap 구현</td>
</tr>
<tr>
<th scope="row">11:40 ~ 12:05</th>
<td>
<span class="text-success">김종호</span><br/>
Henesis: 블록체인 활용시 마주하는 기술적 진입 장벽들을 낮춰줄 해결책 <br />(Haechi Labs 세션)</td>
<td>
<span class="text-warning">손위준</span><br/>
Growth of E-Wallet <br /> (코스믹 BC 스폰서 세션)</td>
</tr>
<tr>
<th scope="row">12:05 ~ 13:20</th>
<td class="text-center" colspan="2">
<span class="text-info font-weight-bold">점심시간</span>
</td>
</tr>
<tr>
<th scope="row">13:20 ~ 13:45</th>
<td>
<span class="text-success">장재혁</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019/97" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
이중지불공격 위험성 분석 알고리즘</td>
<td>
<span class="text-warning">조산구</span><br/>
DAO Cooperativism of the Sharing Economy on Blockchain</td>
</tr>
<tr>
<th scope="row">13:45 ~ 14:10</th>
<td>
<span class="text-success">홍태오</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019/109" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
스마트 컨트랙트 보안 위협과 개발자 도구</td>
<td>
<span class="text-warning">차승훈</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-mimblewimble-scalable-privacy-protocol/128" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
Mimblewimble: Scalable Privacy Protocol</td>
</tr>
<tr>
<th scope="row">14:10 ~ 14:35</th>
<td>
<span class="text-success">박정원</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-data-availability-solution-in-plasma-for-global-state-continuous-rebase/127" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
Data availability solution in plasma for global state: Continuous Rebase</td>
<td>
<span class="text-warning">배경일</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-secure-mpc-multi-party-computation-deep-dive/88" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
Secure MPC(Multi Party Computation) Deep Dive</td>
</tr>
<tr>
<th scope="row">14:35 ~ 15:00</th>
<td>
<span class="text-success">임완섭</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-git-karma-on-layer-2-solutions/96" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
Git karma on Layer 2 solutions</td>
<td>
<span class="text-warning">주일택</span><br/>
이더리움 외부 정보 접근을 위한 스마트 컨트랙트 오라클 기술</td>
</tr>
<tr>
<th scope="row">15:00 ~ 15:25</th>
<td>
<span class="text-success">장진호</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-whisper/98" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
위스퍼(Whisper)란 무엇이고 어떻게 사용할 수 있을까?</td>
<td>
<span class="text-warning">김관래</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-web3js-web-socket/83" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
이더리움 블록체인 이벤트 모니터링 : web3js와 web socket 기반</td>
</tr>
<tr>
<th scope="row">15:25 ~ 15:35</th>
<td class="text-center" colspan="2">
<span class="text-info font-weight-bold">Break Time</span>
</td>
</tr>
<tr>
<th scope="row">15:35 ~ 16:00</th>
<td>
<span class="text-success">정우현</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-threshold-sig-multi-sig/104" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
예제를 통한 Threshold Sig 와 Multi Sig 비교</td>
<td>
<span class="text-warning">박시은</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-agent-based-computational-economics-beyond-nash-equilibrium/126" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
Agent-based computational economics,<br/>
beyond nash equilibrium: 암호경제학 방법론 분석</td>
</tr>
<tr>
<th scope="row">16:00 ~ 16:25</th>
<td>
<span class="text-success">오지은</span><br/>
블록체인 응용 서비스 디자인을 위한 방향성 가이드</td>
<td>
<span class="text-warning">남두완</span><br/>
암호경제학으로 이해하는 스테이블코인 & DeFi</td>
</tr>
<tr>
<th scope="row">16:25 ~ 16:50</th>
<td>
<span class="text-success">Gilles Fedak</span><br/>
iExec V3: A Decentralized Marketplace for Trading Datasets</td>
<td>
<span class="text-warning">Calvin Kim</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-statechains-scalable-ledger-agnostic-off-chain-transactions-calvin-kim/79" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
Statechains : scalable ledger-agnostic off-chain transactions</td>
</tr>
<tr>
<th scope="row">16:50 ~ 17:15</th>
<td>
<span class="text-success">이더도둑챌린지 우승팀 발표</span><br/>
The Ethereum hacking competition</br>
winning team's presentation</td>
<td>
<span class="text-warning">최지혁</span>
<a href="https://ethresearch.kr/t/ethcon-kr-2019-vvisp-a-smart-way-to-operate-smart-contracts/106" target="_blank">
<span class="ml-2 badge badge-primary">발표자료</span>
</a>
<br/>
VVISP: A Smart Way to Operate Smart Contracts</td>
</tr>
<tr>
<th scope="row">17:15 ~ 17:40</th>
<td>
<span class="text-success">장병국</span><br />
Demystify the crypto ecosystem<br /> : 자전 거래 탐지와 지갑 클러스터링을 중심으로 <br />(Cryptoquant 스폰서 세션)</td>
<td>
<span class="text-warning">김영기</span><br />
토큰 이코노미 생태계 구축을 위한 효과적 노드 시스템 <br />(We Go 스폰서 세션)</td>
</tr>
<tr>
<th scope="row">17:40 ~ 18:00</th>
<td colspan="2">
<span class="text-danger font-weight-bold">Closing Ceremony</span></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!--
<div class="container mt-5">
<h1 class="title primary">Agendas List</h1>
<hr class="line-primary">
<br/>
<div class="row"><h4 class="col-md-2"><strong> 오지은 </strong><br/> De-labtory </h4><h3 class="col-md-10 text-primary"> UX 디자이너의 블록체인 게임 기획, 웹 IDE 만들기 _ UX 문제 분석 및 개선 방안 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> Brantly Millegan </strong><br/> Ethereum Name Service </h4><h3 class="col-md-10 text-info"> Your dapp isn't finished without ENS </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 김종광 </strong><br/> 이더리움연구회 </h4><h3 class="col-md-10 text-success"> DApp 에 Universal Login 을 붙여 손쉽게 신규 사용자를 모집하자 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 엄지용 </strong><br/> GameXCoin </h4><h3 class="col-md-10 text-danger"> 해시타임 락 컨트랙트를 이용한 Atomic Swap 구현 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 한우영 </strong><br/> 골든타임 </h4><h3 class="col-md-10 text-primary"> 중학생도 만드는 IPFS Dapp 만들기 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 장진호 </strong><br/> Status.im </h4><h3 class="col-md-10 text-info"> 위스퍼(Whisper)란 무엇이고 어떻게 사용할 수 있을까? </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 김효준 </strong><br/> Airbloc </h4><h3 class="col-md-10 text-success"> 100만 데이터를 거래하는 블록체인 프로토콜 개발기 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 강하다 </strong><br/> MBGA </h4><h3 class="col-md-10 text-danger"> 프로덕트 매니저가 접근하는 댑과 UX 디자인 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 임완섭 </strong><br/> nonce </h4><h3 class="col-md-10 text-primary"> Git karma on Layer 2 solutions </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 강형석 </strong><br/> W3F </h4><h3 class="col-md-10 text-success"> Polkadot/Substrate: 인터체인 개발 튜토리얼 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> Adrian Li </strong><br/> Truffle </h4><h3 class="col-md-10 text-danger"> Live Streaming Your Smart Contract </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 박정원 </strong><br/> Onther Inc. </h4><h3 class="col-md-10 text-primary"> Data availability solution in plasma for global state: Continuous Rebase </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 배경일 </strong><br/> Atomrigs Consulting </h4><h3 class="col-md-10 text-info"> Secure MPC(Multi Party Computation) Deep Dive </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 주일택 </strong><br/> IoTrust </h4><h3 class="col-md-10 text-success"> 이더리움 외부 정보 접근을 위한 스마트 컨트랙트 오라클 기술 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 김지윤 </strong><br/> Dsrv Labs </h4><h3 class="col-md-10 text-primary"> Parsing Ethereum Database: 이더리움의 DB schema를 분석하고, 실제 파싱하는 코드를 생성하여, 데이터를 분석 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 홍태오 </strong><br/> 알고리마 </h4><h3 class="col-md-10 text-info"> 스마트 컨트랙트 보안 위협과 개발자 도구 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 최윤성 </strong><br/> Haechi Labs </h4><h3 class="col-md-10 text-success"> Decentralized Identity for Real World </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 박시은 </strong><br/> </h4><h3 class="col-md-10 text-danger"> Agent-based computational economics, beyond nash equilibrium: 암호경제학 방법론 분석 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> Tai Ling Chen </strong><br/> AMIS </h4><h3 class="col-md-10 text-primary"> Manage Geth node on Kubernetes </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 임도형 </strong><br/> DaoAuth </h4><h3 class="col-md-10 text-info"> 인증수단으로 스마트컨트랙트를 사용하는 커뮤니티 싸이트의 개발 (daoauth와 커뮤니티) </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 남두완 </strong><br/> 메이커다오 (MakerDAO) </h4><h3 class="col-md-10 text-success"> 암호경제학으로 이해하는 스테이블코인 & DeFi </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 김성재 </strong><br/> DE-labtory </h4><h3 class="col-md-10 text-danger"> EVM과 함께한 smart contract language 개발기 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 정우현 </strong><br/> Atomrigs Consulting </h4><h3 class="col-md-10 text-primary"> 예제를 통한 Threshold Sig 와 Multi Sig 비교 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 최지혁 </strong><br/> 해치랩스 </h4><h3 class="col-md-10 text-info"> VVISP: A Smart Way to Operate Smart Contracts </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 김부연 </strong><br/> Cosmostation </h4><h3 class="col-md-10 text-success"> 코스모스 자바스크립트 라이브러리, cosmosjs 개발기 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 박상현 </strong><br/> 서울대학교 가상머신 및 최적화 연구실 </h4><h3 class="col-md-10 text-danger"> Dogethereum으로 바라본 인터체인의 현주소 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> Kendrick Tan </strong><br/> </h4><h3 class="col-md-10 text-primary"> Feeding My Cat With Ethereum </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 박찬현 </strong><br/> 디사이퍼 </h4><h3 class="col-md-10 text-info"> Modelling Language for Cryptoeconomic Systems </h3></div>
<div class="row"><h4 class="col-md-2"><strong> Haichao </strong><br/> Nervos </h4><h3 class="col-md-10 text-success"> Blockchain Resource Pricing and the State "Rent" </h3></div>
<div class="row"><h4 class="col-md-2"><strong> Daisaku Yamamoto </strong><br/> TimeTicket, Inc. </h4><h3 class="col-md-10 text-danger"> Developing an interface for blockchain-based protocols in decentralized finance applications </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 정순형 </strong><br/> 온더 </h4><h3 class="col-md-10 text-primary"> Tokamak Network: Turing Complete, Scalable Plasma Chain </h3></div>
<div class="row"><h4 class="col-md-2"><strong> Tony Tran </strong><br/> Liquidity Network </h4><h3 class="col-md-10 text-info"> NOCUST- A securely scalable commit-chain </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 김관래 </strong><br/> </h4><h3 class="col-md-10 text-success"> 이더리움 블록체인 이벤트 모니터링: web3js와 web socket 기반 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 차승훈 </strong><br/> SNEK </h4><h3 class="col-md-10 text-danger"> Mimblewimble: Scalable Privacy Protocol </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 신만선 </strong><br/> 위고컴퍼니 </h4><h3 class="col-md-10 text-primary"> porting geth on pine64,rock64 arm embedded board </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 김준용 </strong><br/> LANDINGBLOCK </h4><h3 class="col-md-10 text-info"> 커뮤니티가 걸어가야 할 방향 : 커뮤니티 운영 경험담, 해외사례 및 건전한 생태계 기여에 관한 사항, DAO 커뮤니티, 활성화를 위한 제언 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 한재영 </strong><br/> 크립토 주식회사 </h4><h3 class="col-md-10 text-success"> 이더리움과 토큰의 분실이 방지되는 지갑 개발기 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 유윤재 </strong><br/> 디넥스트 </h4><h3 class="col-md-10 text-danger"> EVM 기반 탈중앙 금융 서비스를 만들면서 얻은 교훈들 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 이흥노 </strong><br/> GIST </h4><h3 class="col-md-10 text-primary"> Scalable Decentralized Secure Blockchains : 블록체인 합의알고리즘과 재중앙화 문제 해결 방안 제시 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 윤성준 </strong><br/> </h4><h3 class="col-md-10 text-info"> 블록체인 게임 포스트모템 - 닌자의숲 (이더리움 기반 오목 게임) </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 최민석 </strong><br/> 위고컴퍼니 </h4><h3 class="col-md-10 text-success"> Dex 모바일 앱 개발 및 배포기 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> Ruben Somsen </strong><br/> seoulbitcoin.kr </h4><h3 class="col-md-10 text-danger"> Statechains -- scalable ledger-agnostic off-chain transactions </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 이진호 </strong><br/> 헥슬란트 </h4><h3 class="col-md-10 text-primary"> 스마트 컨트랙트 보안 취약점 Case study </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 한상일 </strong><br/> 디지털 골드 익스체인지 </h4><h3 class="col-md-10 text-info"> 폴리매스 STO 컨트랙트를 통해 배우는 업그레이더블 컨트랙트 설계 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 박주형 </strong><br/> Onther Inc. </h4><h3 class="col-md-10 text-success"> Examples and Best Practice to Implement Requestable Contract for Plasma EVM </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 장재혁 </strong><br/> 광주과학기술원 </h4><h3 class="col-md-10 text-danger"> 이중지불공격 위험성 분석 알고리즘 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 이종건/김민수 </strong><br/> Ground X </h4><h3 class="col-md-10 text-primary"> 블록체인과 데이터분석: 빅데이터 분석 활용사례 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 문영훈 </strong><br/> 논스(nonce) </h4><h3 class="col-md-10 text-info"> 블록체인과 21세기 디지털 자본주의와 민주주의 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 안상선 </strong><br/> 매일경제 사외벤처 (주)M-Robo </h4><h3 class="col-md-10 text-success"> ERC20코인에 대한 경제적 분석: 효율성과 공평성을 중심으로 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 현수영 </strong><br/> Jeju Blockchain User Group </h4><h3 class="col-md-10 text-danger"> 제주 삼도2동 지역 화폐 도입 테스트 후기 </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 조산구 </strong><br/> wehome.me </h4><h3 class="col-md-10 text-primary"> DAO Cooperativism of the Sharing Economy on Blockchain </h3></div>
<div class="row"><h4 class="col-md-2"><strong> Gilles Fedak </strong><br/> iExec </h4><h3 class="col-md-10 text-info"> iExec V3: A Decentralized Marketplace for Trading Datasets </h3></div>
<div class="row"><h4 class="col-md-2"><strong> 김준수 </strong><br/> bitfish | stake.fish </h4><h3 class="col-md-10 text-success"> PoS/DPoS를 포괄하는 global staking 산업의 현주소 </h3></div>
<br/>
<a href="https://festa.io/events/250" target="_blank" class="btn btn-primary default"><strong>티켓 사러가기</strong></a>
<br/>
</div>
-->
<div class="space-50"></div>
<!-- speakers -->
<div class="section" id="speakers">
<div class="container">
<h1 class="title primary mb-5">Speakers</h1>
<div class="row speakersShuffle">
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/kanghada.jpg" alt="강하다" class="img-fluid rounded shadow mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">강하다 / MBGA</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/kimbooyeon.jpg" alt="김부연" class="img-fluid rounded shadow-lg mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">김부연 / Cosmostation</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/kimjonggwang.jpg" alt="김종광" class="img-fluid rounded shadow-lg mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">김종광 / 이더리움 연구회</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/kimjiyeun.jpg" alt="김지윤" class="img-fluid rounded shadow mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">김지윤 / Dsrv Labs</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/parkchanhyun.jpg" alt="박찬현" class="img-fluid rounded shadow mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">박찬현 / 디사이퍼</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/baekyungil.jpg" alt="배경일" class="img-fluid rounded shadow mb-4" style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">배경일 / Atomrigs Consulting</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/shinmansun.jpg" alt="신만선" class="img-fluid rounded shadow-lg mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">신만선 / 위고컴퍼니</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/limdohyun.jpg" alt="임도형" class="img-fluid rounded shadow-lg mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">임도형</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/limwanseob.jpg" alt="임완섭" class="img-fluid rounded shadow mb-4" style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">임완섭 / nonce</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/jangjinho.jpeg" alt="장진호" class="img-fluid rounded shadow mb-4"
style="height: 180px;">
<!-- <small class="d-block">
<a href="https://github.com/"><img src="assets/img/github.png" alt="github" class="img-fluid speaker-logo"></a>
<a href="https://www.linkedin.com/"><img src="assets/img/linkedin.png" alt="linkedin" class="img-fluid speaker-logo"></a>
</small> -->
<small class="d-block text-uppercase font-weight-bold mb-5">장진호 / Status.im</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/jeongwoohyun.jpg" alt="정우현" class="img-fluid rounded shadow mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">정우현 / Atomrigs Consulting</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/chaseunghoon.jpg" alt="차승훈" class="img-fluid rounded shadow-lg mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">차승훈 / SNEK</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/choiminseok.jpg" alt="최민석" class="img-fluid rounded shadow mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">최민석 / 위고컴퍼니</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/hansangil.jpg" alt="한상일" class="img-fluid rounded shadow mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">한상일 / 디지털 골드 익스체인지</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/hanwooyoung.jpg" alt="한우영" class="img-fluid rounded shadow mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">한우영 / 골든타임</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/hyunsooyoung.jpg" alt="현수영" class="img-fluid rounded shadow-lg mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">현수영 / Jeju Blockchain User Group</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/Brantly Millegan.jpg" alt="Brantly Millegan" class="img-fluid rounded shadow mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">Brantly Millegan / ENS</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/Gilles Fedak.jpg" alt="Gilles Fedak" class="img-fluid rounded shadow mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">Gilles Fedak / iExec</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/Henry Chen.jpg" alt="Henry Chen" class="img-fluid rounded shadow-lg mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">Henry Chen / Nervos</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/Kendrick Tan.jpg" alt="Kendrick Tan" class="img-fluid rounded shadow mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">Kendrick Tan</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/Ruben Somsen.jpg" alt="Ruben Somsen" class="img-fluid rounded shadow mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">Ruben Somsen / seoulbitcoin.kr</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/Tai Ling Chen.jpeg" alt="Tai Ling Chen" class="img-fluid rounded shadow-lg mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">Tai Ling Chen / AMIS</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/hanjaeyoung.jpg" alt="한재영" class="img-fluid rounded shadow-lg mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">한재영 / 크립토 주식회사</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/hongtaeoh.jpeg" alt="홍태오" class="img-fluid rounded shadow-lg mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">홍태오 / 알고리마</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/kimkwanlae.jpg" alt="김관래" class="img-fluid rounded shadow-lg mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">김관래</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/namdoowan.jpg" alt="남두완" class="img-fluid rounded shadow-lg mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">남두완 / MakerDAO</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/umjeeyong.jpg" alt="엄지용" class="img-fluid rounded shadow-lg mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">엄지용 / GameXCoin</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/kimjoonyong.jpg" alt="김준용" class="img-fluid rounded shadow-lg mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">김준용 / LANDINGBLOCK</small>
</div>
<div class="col-md-3 col-6 text-center">
<img src="assets/img/profiles/jooiltaek.jpg" alt="주일택" class="img-fluid rounded shadow-lg mb-4"
style="height: 180px;">
<small class="d-block text-uppercase font-weight-bold mb-5">주일택 / IoTrust</small>
</div>
<div class="col-md-3 col-6 text-center">