-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjpn.json
More file actions
1966 lines (1966 loc) · 126 KB
/
Copy pathjpn.json
File metadata and controls
1966 lines (1966 loc) · 126 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
{
"lang": "ja",
"links": {
"termsAndConditions": "規約と条件",
"privacyPolicy": "プライバシーーポリシー",
"subscribe": "Subscribe",
"commitForPresale": "JOIN PRESALE",
"commitForPresaleHeader": "JOIN PRESALE WITH 30% BONUS",
"commitWith30bonus": "JOIN PRESALE WITH 30% BONUS",
"commitWith10bonus": "Join pre-ico with 10% bonus",
"commitWith7bonus": "Join pre-ico with 7% bonus",
"commitWith5bonus": "Join pre-ico with 5% bonus",
"commitWith3bonus": "Join pre-ico with 3% bonus",
"commit": "Join ico",
"tokenSale": "トークンセール",
"whitepaper": "ホワイトペーパー",
"documents": "文件",
"stateOfMarket": "State of market",
"howItWorks": "どのように使用されるか?",
"tokenDistribution": "トークン配布",
"roadmap": "ロードマップ",
"media": "Media",
"ourTeam": "チーム",
"about": "about",
"myProfile": "My profile",
"myAccount": "My account",
"mainPage": "Main page",
"community": "社区",
"logout": "Logout",
"signin": "登录",
"signinty": "sign in to your account",
"cryptoKittie": "Kitty giveaway",
"signUpAndSubscribe": "Join pre-sale with 20% bonus",
"tryBeta": "BETA版平台",
"tryPlatformBeta": "ベータ版を試す",
"joinTokenSale": "トークンセールに参加",
"buyTokens": "トークンを購入",
"shorter": "短い",
"whitePaper": "ホワイトペーパー",
"smartContract": "スマートコントラクト",
"becomeInfluencer": "Become influencer",
"becomeAdvertiser": "Become advertiser"
},
"presaleLive": {
"headingLarge": "Presale is now live!",
"heading": "Join now and get bonus up to 30%",
"joinNow": "Join now"
},
"countdown": {
"title": "Token presale <span>終了まで</span>",
"preICO": "PRE-ICO IS LIVE!",
"preIcoStartsIn": "ICO Pre-sale starts in",
"icoStartsIn": "ICO starts <b>february 9</b>",
"icoStarted": "トークンセール実施中!",
"icoEnd": "Token Sale is Closed<br> Thank You for Support",
"tokenSaleIsOpen": "Public token sale<br> is open now!",
"days": "天",
"hours": "小时",
"minutes": "分",
"seconds": "秒",
"bonus%%%EndsIn": "Bonus %%% 終了まで"
},
"documents": {
"heading": "文件",
"documents": [
{
"id": "SMM_Shorter",
"title": "短期",
"languages": [
"eng",
"rus"
]
},
{
"id": "SMM_White-Paper",
"title": "ホワイトペーパー",
"languages": [
"eng",
"rus"
]
},
{
"id": "SMM_Marketing-Research",
"title": "マーケティングリサーチ",
"languages": [
"eng"
]
},
{
"id": "SMM_SEC-Howey-Test",
"title": "Sec howey テスト",
"languages": [
"eng"
]
}
]
},
"footer": {
"company": "Company",
"aboutUs": "About us",
"careers": "Careers",
"contactUs": "連絡先",
"solutions": "Solutions",
"resources": "Resources",
"tipsForInfluencers": "Tips for influencers",
"tipsForAdvertisers": "Tips for advertisers",
"faqAndSupport": "FAQ & Support",
"blog": "Blog",
"webinars": "Webinars",
"aboutBlockchain": "About blockchain",
"copyright": "Copyright © 2017 by SocialMedia.Market. All rights reserved."
},
"popup": {
"messages": {
"invalidEmail": "Please, make sure your email is valid",
"alreadySubscribed": "You've subscribed already. Please, check your email for confirmation.",
"fillInTheField": "Please, fill in the field",
"success": "You've successfully subscribed!",
"choosePaymentMethod": "Please, choose payment method"
},
"subscribe": {
"title": "トークンセールに参加",
"description": "Please, enter your email below to receive notification about the start of the Social Media Token sale",
"email": "Email",
"name": "Name",
"receive": "Receive Push Notification about the start of the sale",
"toCalendar": "Add Event to your Google Calendar",
"thankYou": {
"title": "Thank you!",
"description": "Thank you for subscription on SocialMedia.Market news and Public Token Sale!",
"telegramChatDescription": "If you have any questions, please reach out to us on our Telegram chat:",
"joinTelegram": "Join telegram chat"
}
},
"presale": {
"title": "Join token pre-sale",
"description": "Join Token Presale with special bonuses: <br/> • contribution less than 100 ETH +20% SMT <br/> • contribution more than 100 ETH +30% SMT",
"firstName": "First name",
"lastName": "Last name",
"email": "Email",
"industry": "Industry",
"chooseField": "Choose your field",
"chooseAmount": "Choose amount",
"industryOptions": [
"Private investor",
"Fund representative",
"Brand",
"Marketing agency",
"Influencer"
],
"amountOptions": [
"less than 25 000",
"25 000 - 50 000",
"50 000 - 100 000",
"100 000 - 300 000",
"300 000+"
],
"paymentMethod": "Prefered payment method",
"estimated": "Estimated amount range (in US Dollars)",
"mandatory": "Mandatory fields",
"confirm": "Hereby I confirm that I'm not a citizen or resident of the United States of America or Singapore or acting on behalf of a resident of the United States of America or Singapore",
"receive": "Receive Push Notification about the start of the sale",
"toCalendar": "Add Event to your Google Calendar",
"join": "Join white list",
"thankYou": {
"title": "Thank you!",
"description": "Thank you for joining SocialMedia.Market token presale White List. <br/> We will send you all necessary details on your email.",
"telegramChatDescription": "If you have any questions, please reach out to us on our Telegram chat:",
"joinTelegram": "Join telegram chat"
}
}
},
"firstScreen": {
"heading": "影響力をマネタイズする",
"subheading": "分散型インフルエンサー広告マーケットプレイス",
"joinTokenSale": "トークンセールに参加",
"projectRatings": "プロジェクト評価",
"subscribe": "Subscribe to news",
"description": "コミュニティ",
"joinPresale": "Join presale now",
"technicalPartner": "Technical partner",
"mediaPartner": "Media partner",
"joinBounty": "Join<br> bounty <span>campaign</span>",
"backers": "Backers",
"tokenSold": "プレICO期間中の調達金額",
"fundsRaised": "調達金額",
"ourPartners": "パートナー",
"projectInfo": "プロジェクト情報",
"referralProgram": "アフィリエイト",
"bountyCampaign": "バウンティキャンペーン",
"betaProduct": "BETA版平台",
"USAResidentsCannotParticipate": "米国市民と住民は参加することができません",
"softCapReached": "ソフトキャップ達成",
"hardCapReached": "Hard Сap Reached"
},
"landing":{
"slogan":{
"header":"Choose the way to your triumph",
"body": "Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque."
},
"become":{
"inf":"Become Influencer",
"adv": "Become Advertizer"
},
"reson":{
"one":"どのような種類のインフルエンサーにとってもコンテンツの収益化の障壁はありません。",
"two":"どのような種類のインフルエンサーにとってもコンテンツの収益化の障壁はありません。",
"three":"世界中のインフルエンサーに無制限にアクセスする広告主。"
},
"block1":{
"header": "Unlimited opportunities for your business",
"body": "SocialMedia.Market creates a global marketplace for advertisers and opinion leaders within all major social networks, providing convenient and transparent tools for interaction between participants. Unlimited opportunities to promote brands and earnings in social networks with a simple application!",
"button": "Try demo"
},
"block2":{
"header": "Security of transactions and operations",
"body": "SM.M. excludes holdings and non-payments, providing only secure transactions. The platform operates on the basis of Ethereum and uses a fail-safe escrow payment system, which automatically keeps money transfers until the terms of the smart contract are fulfilled.",
"button": "もっと詳しく知る"
},
"block3":{
"header": "Easy to manage, simple to interact!",
"body": "The modern CRM-system of the platform contains many tips and templates that help to build effective interaction. The analytical system SM.M itself will offer you the best ways of development. The advertising campaign is created with the help of Smart Contract and greatly simplifies the cooperation.",
"button": "How to start"
},
"block4":{
"header": "Decentralized dispute solution system",
"body": "The unique arbitration system of our platform will help objectively evaluate different points of view and resolve the conflict with the maximum benefit for both sides. We offer a system of independent dispute resolution for participants in the process of the involvement of independent experts.",
"button": "もっと詳しく知る"
},
"trusted": {
"footer": "パートナー"
},
"about": {
"first": {
"title": "インフルエンサーと広告を繋ぐ初めての分散型マーケット",
"description": "SocialMedia.Marketはマーケティングの主要な問題を解決し、コンテンツ収益化、コミュニティエンゲージメントなどの新しい機会を作り出します。新しい、ブロックチェーンとソーシャルメディアトークンによるエコシステムがビジネスとインフルエンサーの関係を単純化します。"
},
"second": {
"title": "ブランドにとって、インフルエンサーマーケティングは最も効率が良いマーケティングです。",
"description": "92%の消費者はインフルエンサーマーケティングで広告を行うブランドを信用するという調査結果があります。さらに、インフルエンサーマーケティングは従来型の広告よりも費用対効果がよく、より信頼できるブランドをオススメします。これらの理由からインフルエンサーマーケティングはもっとも長期的に効率的なマーケティング戦略となりました。"
},
"actions": {
"readShorter": "要約資料",
"checkWhitePaper": "ホワイトペーパー",
"joinCommunity": "コミュニティ"
}
},
"videos": {
"sectionTitle": "SMMのビデオを視聴する",
"videosList": [
{
"id": "projectReviews",
"title": "プロジェクトレビュー",
"videos": [
{
"channelName": "Keith Teare",
"date": "15.02.18",
"country": "-",
"video": "https://www.youtube.com/watch?v=OrYQh_jpqt8&t=3693s",
"thumb": "https://img.youtube.com/vi/OrYQh_jpqt8/sddefault.jpg",
"share": "https://www.youtube.com/watch?v=OrYQh_jpqt8=3693s",
"title": "Keith Teare, co-founder of Techcrunch about SocialMedia.Market",
"desc": "Influencer advertising market has a huge potential, which is halted by the issues it has yet to overcome. Nevertheless, the blockchain technology provides all the means to deal with fraud, transparency, and pricing problems in influencer advertising campaigns. That’s why SocialMedia.Market utilizes the technology to connect advertisers and publishers in a new influencer marketing ecosystem. I have always focused on the point at which change is happening. That’s why we are together in this with the SocialMedia.Market team."
},
{
"channelName": "Tatsunari Ono",
"date": "15.02.18",
"country": "-",
"video": "https://www.youtube.com/watch?v=FUUcqxpOaAA&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/FUUcqxpOaAA/sddefault.jpg",
"share": "https://www.youtube.com/watch?v=FUUcqxpOaAA&feature=youtu.be",
"title": "Tatsunari Ono talks about SocialMedia.Market",
"desc": ""
},
{
"channelName": "Andrew Playford",
"date": "15.02.18",
"country": "-",
"video": "https://www.youtube.com/watch?v=2mJl9nt0Ny4&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/2mJl9nt0Ny4/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=2mJl9nt0Ny4&feature=youtu.be",
"title": "Influencer Marketing Comes to the Blockchain",
"desc": ""
},
{
"channelName": "Coin Bloq",
"date": "26.12.17",
"country": "-",
"video": "https://www.youtube.com/watch?v=l6zicPYDsK0&t=3693s",
"thumb": "https://img.youtube.com/vi/l6zicPYDsK0/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=l6zicPYDsK0&t=3693s",
"title": "Coin Bloq | ICO Review: Social Media.Market, Bee Token, X8, SocialX and other",
"desc": "From decentralized housing rentals on the blockchain to Ethereum-based lending platforms ICOs offer investors a high-octane strategy that has the potential to net them untold riches or mire them in loss and despair."
},
{
"channelName": "Crypto Camacho",
"date": "29.01.17",
"country": "United States",
"video": "https://www.youtube.com/watch?v=EWcd_X2esXw",
"thumb": "https://img.youtube.com/vi/EWcd_X2esXw/mqdefault.jpg",
"share": "https://www.youtube.com/watch?v=EWcd_X2esXw",
"title": "Crypto Camacho | Influencers and Advertisers On The Blockchain - Match Made in Heaven?",
"desc": "Hi! I'm Dan and I run CryptoCamacho.com - I teach people how to profitably trade Cryptocurrency like Bitcoin, Ethereum, Litecoin, etc. We are in the early days of this train and those who get on will significantly profit. Join me on this crypto journey. I hope you enjoy the videos!"
},
{
"channelName": "RICH TV LIVE",
"date": "17.01.18",
"country": "Canada",
"video": "https://www.youtube.com/watch?v=MzPDHBCdmMg&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/MzPDHBCdmMg/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=MzPDHBCdmMg&feature=youtu.be",
"title": "RICH TV LIVE | SocialMedia.Market ICO Review",
"desc": "Today i look at a social media platform that may improve the blockchain."
},
{
"channelName": "ICO Talk TV - interviews with ICO projects",
"date": "02.02.18",
"country": "United States",
"video": "https://www.youtube.com/watch?v=TiPbK4zO7uI&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/TiPbK4zO7uI/sddefault.jpg",
"share": "https://www.youtube.com/watch?v=TiPbK4zO7uI&feature=youtu.be",
"title": "ICO Talk TV | \"SOCIALMEDIA.MARKET\" interview with Dmitry Shyshov",
"desc": "SocialMedia.Market will create a global marketplace for Advertisers and Influencers among every major social network, providing convenient and transparent tools for the interaction of any party involved. For maintaining commercial relationships between participants, SocialMedia.Market will use Blockchain technology to simplify integration, reduce fraud and costs for all market participants. Token value is going to be upheld not only by transaction means within platform services, but also supported with the ability to participate in the decentralized dispute solution system gaining additional earnings for token holders. Project: SOCIALMEDIA.MARKET"
},
{
"channelName": "Crypto Hype",
"date": "11.11.17",
"country": "United Kingdom",
"video": "https://www.youtube.com/watch?v=nyJHXR4A5qk",
"thumb": "https://img.youtube.com/vi/nyJHXR4A5qk/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=nyJHXR4A5qk",
"title": "Crypto Hype | The First Blockchain Based On Influencer Marketing?",
"desc": "Please watch this video to unlock my system I use for deciding which cryptocurrencies are the best investment today and which are worth selling?"
},
{
"channelName": "CryptoCoinShow",
"date": "03.11.17",
"country": "Canada",
"video": "https://www.youtube.com/watch?v=coM7oX_tBrg",
"thumb": "https://img.youtube.com/vi/coM7oX_tBrg/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=coM7oX_tBrg",
"title": "CryptoCoinShow | SocialMedia.Market Overview",
"desc": "The tech team leading socialmedia.market, including CEO and Founder Dmitry Shyshov, who has over 15 years experience in the tech and game industry, and founded R.Games which has sold over 10 million games in the past 3 years."
},
{
"channelName": "Investor Town Hall Show",
"date": "16.11.17",
"country": "United States",
"video": "https://www.youtube.com/watch?v=Dk4vglTGu-o",
"thumb": "https://img.youtube.com/vi/Dk4vglTGu-o/sddefault.jpg",
"share": "https://www.youtube.com/watch?v=Dk4vglTGu-o",
"title": "Investor Town Hall | First Blockchain Online Advertising Platform",
"desc": "SocialMedia.Market's Founder and CEO Dmitry Shyshov was on Investor Town Hall Show today talking about the company's ICO token sale project, the first blockchain-base online advertising platform that takes influencer marketing to the next level."
},
{
"channelName": "Сообщество Онлайн Инвесторов iTuber",
"date": "17.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=tgqOYSzmR_0",
"thumb": "https://img.youtube.com/vi/tgqOYSzmR_0/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=tgqOYSzmR_0",
"title": "iTuber | ИНТЕРВЬЮ с ОСНОВАТЕЛЕМ ДМИТРИЙ ШИШОВ",
"desc": "Все подробности о проекте в интервью с Основателем и СЕО проекта Дмитрием Шишовым."
},
{
"channelName": "Pro3xplain",
"date": "30.01.18",
"country,": "Morocco",
"video": "https://www.youtube.com/watch?v=tOHZr_xdynQ",
"thumb": "https://img.youtube.com/vi/tOHZr_xdynQ/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=tOHZr_xdynQ",
"title": "Pro3xplain | شرح منصة SocialMedia Market للإستفادة ماديا من مواقع التواصل الإجتماعي و الإستثمار",
"desc": "موقع محترفو الشرح هو عبار عن مدونة جديدة في عالم الانترنات العربي عامة و التونسي خاصة تحتوي على العديد من الدروس التعليمية التقتية و المعلوماتية الى جانب العديد من الاخبار التي تهم الشباب العربي ."
},
{
"channelName": "Krypto Raport",
"date": "13.11.17",
"country": "Poland",
"video": "https://www.youtube.com/watch?v=4qE27tjDlfM",
"thumb": "https://img.youtube.com/vi/4qE27tjDlfM/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=4qE27tjDlfM",
"title": "Krypto Raport| Jak zarobić na reklamach?",
"desc": "SocialMedia.Market jest to decentralizowana platforma do tworzenia, wykonywania i analizowania kampanii reklamowych za pomocą mediów społecznościowych"
},
{
"channelName": "Investupscale Академия криптовалют",
"date": "01.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=pG5Y5KdbmMQ&feature=em-share_video_user",
"thumb": "https://img.youtube.com/vi/pG5Y5KdbmMQ/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=pG5Y5KdbmMQ&feature=em-share_video_user",
"title": "Investupscale | Socialmedia.market ICO. Обзор проекта",
"desc": "Биткоин и криптовалюты завоевывают мир, не оставайтесь в стороне - начните инвестировать уже сейчас, станьте одними из первых на этом рынке."
},
{
"channelName": "Perfect Bitcoiner Monty",
"date": "02.11.17",
"country": "India",
"video": "https://www.youtube.com/watch?v=JW7ADM0CJKo&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/JW7ADM0CJKo/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=JW7ADM0CJKo&feature=youtu.be",
"title": "Perfect Bitcoiner Monty | Social Media ICO Review",
"desc": "The first blockchain based influencer marketing platform. Join SocialMedia.Market Token Sale."
},
{
"channelName": "CryptoView - ICO Reviews & News",
"date": "10.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=ssBqgQn4EHQ&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/ssBqgQn4EHQ/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=ssBqgQn4EHQ&feature=youtu.be",
"title": "CryptoView | SOCIAL MEDIA MARKET - НОВЫЙ вид РЕКЛАМЫ на БЛОКЧЕЙНЕ!",
"desc": "Присоединяйтесь к продаже токенов на SocialMedia.Market!"
},
{
"channelName": "CRYPTODEALERS",
"date": "18.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=iJnDe3EmmiY&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/iJnDe3EmmiY/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=iJnDe3EmmiY&feature=youtu.be",
"title": "CRYPTODEALERS | Обзор платформы для блогеров и рекламодателей на блокчейне.",
"desc": "Рынок Маркетинга Влияния имеет ряд существенных проблем, связанных с непрозрачностью ценообразования, хаотичностью взаимодействия между участниками, посредничеством, а также мошенничеством. https://socialmedia.market - упростит взаимодействие между участниками рынка и уменьшит их затраты, а также значительно "
},
{
"channelName": "MiningMin",
"date": "02.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=l6ZUeDOyNd4",
"thumb": "https://img.youtube.com/vi/l6ZUeDOyNd4/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=l6ZUeDOyNd4",
"title": "MiningMin | SocialMedia.Market обзор сервиса",
"desc": "SocialMedia.Market – первая децентрализованная экосистема для планирования, создания, запуска и анализа рекламных кампаний у лидеров мнений. Платформа создаст безопасные и прозрачные условия на рынке маркетинга влияния."
},
{
"channelName": "Копеечка в кошельке",
"date": "13.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=Vhg1PeVk1y8",
"thumb": "https://img.youtube.com/vi/Vhg1PeVk1y8/sddefault.jpg",
"share": "https://www.youtube.com/watch?v=Vhg1PeVk1y8",
"title": "SocialMedia.Market Новое поколение рекламы. Умная экосистема.",
"desc": "Основанная на технологии блокчейн, платформа SocialMediamarket выведет маркетинговые отношения между брендами и лидерами мнений на новый уровень взаимодействия, обеспечивая прозрачность и безопасность."
},
{
"channelName": "PRO BLOCKCHAIN",
"date": "02.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=dG1lPuFDT6o&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/dG1lPuFDT6o/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=dG1lPuFDT6o&feature=youtu.be",
"title": "PRO BLOCKCHAIN | СОЗДАЕМ НОВОЕ ПОКОЛЕНИЕ ОНЛАЙН РЕКЛАМЫ",
"desc": "Обзор SocialMedia.Market. Основанная на технологии блокчейн, платформа SocialMedia.market выведет маркетинговые отношения между брендами и лидерами мнений на новый уровень взаимодействия, обеспечивая прозрачность и безопасность."
},
{
"channelName": "420BitcoinsTV",
"date": "20.01.18",
"country": "Ukraine",
"video": "https://www.youtube.com/watch?v=rYkKSu5CUBs",
"thumb": "https://img.youtube.com/vi/rYkKSu5CUBs/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=rYkKSu5CUBs",
"title": "420BitcoinsTV | Маркетплейс для блогеров и рекламодателей",
"desc": "SocialMedia.Market – децентрализованная платформа, позволяющая создавать, запускать и анализировать рекламные кампании у блогеров. Работает на базе технологии блокчейна, что обеспечивает прозрачность и безопасность взаимоотношений блогеров и рекламодателей."
},
{
"channelName": "Sit On My Bits",
"date": "05.12.17",
"country": "-",
"video": "https://www.youtube.com/watch?v=ETRUEb6LnhI",
"thumb": "https://img.youtube.com/vi/ETRUEb6LnhI/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=ETRUEb6LnhI",
"title": "Sit On My Bits | What Is Going On With Bitcoin + Social Media Market New ICO",
"desc": "Welcome to Sit On My Bits and this is a review on an ICO called Social Media Market and also all the latest in the markets."
},
{
"channelName": "Михаил Каплунов",
"date": "29.01.18",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=CeUIzLzrSOo",
"thumb": "https://img.youtube.com/vi/CeUIzLzrSOo/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=CeUIzLzrSOo",
"title": "Skychain, Dether и SocialMedia.Market / ICO АЛЬМАНАХ №15",
"desc": "Skychain, Dether и Socialmedia.market — в этом выпуске «ICO АЛЬМАНАХ», вы узнаете о том, чем занимаются эти компании, чтобы принять верное решение об инвестировании в ICO."
},
{
"channelName": "IT FIRM BD",
"date": "29.01.18",
"country": "Bangladesh",
"video": "https://www.youtube.com/watch?v=UDijziFcqC8",
"thumb": "https://img.youtube.com/vi/UDijziFcqC8/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=UDijziFcqC8",
"title": "IT FIRM BD | ICO-New Expert Rated Legitimate ICO!",
"desc": "SocialMedia.Market has a good potentiality like any other good rated ico by ICO bench and other ICO rated sites. I hope it is our next good decision about legitimate ICO. More Legitimate ICO: https://scorumcoins.com/en-us/affilia... More help: facebook:https://www.facebook.com/itfirmbd Google plus: https://plus.google.com/1111836980418... twitter:https://twitter.com/itfirmbd Thank you to watch my video and don't miss to subscribe my channel and don't forget to like my facebook page. Thanks to all again."
},
{
"channelName": "Crypto Max",
"date": "08.01.18",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=5mxCxftWKgk",
"thumb": "https://img.youtube.com/vi/5mxCxftWKgk/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=5mxCxftWKgk",
"title": "Crypto Max | Social media market-биржа рекламы для блогеров|•|#ЧЕСТНЫЙОБЗОР ПРОЕКТА|•|",
"desc": "Сервис создаст безопасные и прозрачные условия для работы на рынке Маркетинга Влияния. Это откроет возможности для роста и развития миллионам начинающих блогеров, а также малому и среднему бизнесу по всему миру. Их платформа займет весомую долю рынка Маркетинга Влияния и онлайн рекламы в целом, благодаря высокой востребованности, удобству и постоянному развитию блокчейн технологий."
},
{
"channelName": "Крипто День",
"date": "24.01.18",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=J17rMFbShjY",
"thumb": "https://img.youtube.com/vi/J17rMFbShjY/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=J17rMFbShjY",
"title": "Ревью SocialMedia.Market от \"Крипто День\"",
"desc": ""
},
{
"channelName": "Đầu Tư 4.0",
"date": "29.01.18",
"country": "Vietnam",
"video": "https://www.youtube.com/watch?v=JIT54sbtSIc",
"thumb": "https://img.youtube.com/vi/JIT54sbtSIc/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=JIT54sbtSIc",
"title": "Review dự án Socialmedia market ico (SMT) - Đầu tư 4.0.",
"desc": "Chanel chia sẻ các thông tin về thị trường Cryptocurrency. Các cơ hội đầu tư đồng Coin tiềm năng được các chuyên gia hàng đầu kiểm duyệt."
}
]
},
{
"id": "ブロガー",
"title": "ブロガー",
"videos": [
{
"channelName": "Brandon Kelly Crypto Trader",
"date": "05.12.17",
"country": "United States",
"video": "https://www.youtube.com/watch?v=iVoiR1Ar4hc",
"thumb": "https://img.youtube.com/vi/iVoiR1Ar4hc/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=iVoiR1Ar4hc",
"title": "Brandon Kelly | ICO Spotlight: Social Media Market (SMT)",
"desc": "Brandon Kelly is a cryptocurrency consultant and one of the industry's top crypto traders, who outpaced the market over 1000% in 2017 with his patent-pending method. He specializes in digital technology, design thinking, fintech, and business innovation."
},
{
"channelName": "Donnyboy8",
"date": "25.01.18",
"country": "United States",
"video": "https://www.youtube.com/watch?v=o5t--KMpibM&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/o5t--KMpibM/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=o5t--KMpibM&feature=youtu.be",
"title": "Donnyboy8 | SocialMedia Marketing ICO starting soon will change online advertising",
"desc": "Staying up to date with many new investment opportunities. Very interested in Bitcoin and the crypto currencies - I really think this will change the world and the future of how we use money and invest. Also continually growing my commercial cleaning company and learning any where I can."
},
{
"channelName": "Ronnie Sen",
"date": "31.01.18",
"country": "India",
"video": "https://www.youtube.com/watch?v=gbGI24QolHQ&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/gbGI24QolHQ/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=gbGI24QolHQ&feature=youtu.be",
"title": "Ronnie Sen | SocialMedia.Market ICO Social MONETIZE YOUR INFLUENCE",
"desc": "Affiliate Marketer / Network Marketer / Crypto Currency Enthusiast. Let's Ride the Revolution To Success"
},
{
"channelName": "Bitcoin Criptomonedas",
"date": "01.02.18",
"country": "Spain",
"video": "https://www.youtube.com/watch?v=91Poh_ya83Y",
"thumb": "https://img.youtube.com/vi/91Poh_ya83Y/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=91Poh_ya83Y",
"title": "Bitcoin Criptomonedas | MONETICE SU INFLUENCIA con Socialmedia.market",
"desc": "Blockchain Based Influencer Marketing Platform entra en: https://goo.gl/8GHWqe y obten una bonificación del 3% en los tokens que compres."
},
{
"channelName": "BalkanTech",
"date": "03.11.17",
"country": "Serbia",
"video": "https://www.youtube.com/watch?v=URMPidtYx-g",
"thumb": "https://img.youtube.com/vi/URMPidtYx-g/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=URMPidtYx-g",
"title": "BalkanTech | Nova Platforma Za YouTube Zaradu",
"desc": ""
},
{
"channelName": "ЮТУБЕР",
"date": "15.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=4EvOAckr1pA&feature=youtu.be&t=3m57s",
"thumb": "https://img.youtube.com/vi/4EvOAckr1pA/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=4EvOAckr1pA&feature=youtu.be&t=3m57s",
"title": "ЮТУБЕР | ДЕВОЧКА ИЗ \"ЛАЙК ТВ ШОУ\" ОБОГНАЛА PewDiePie ПО ПОДПИСЧИКАМ",
"desc": "Когда я сел писать сценарий к этому видео, на канале Алины “ЛайкТВ шоу” было уже 400 тысяч подписчиков. Кто-то радуется за внезапный успех ребенка, кто-то недоумевает, считает, что она не заслужила эту аудиторию. Груз ответственности на ее плечи только упал, поэтому время покажет, сможет ли она справиться. А пока, я же предлагаю проанализировать, какие фундаментальные изменения произошли за последние 7 дней у неё. Потому что я уверен, это была самая насыщенная на события неделя в ее жизни."
},
{
"channelName": "Дмитрий Гриценко. Криптовалюты",
"date": "22.01.18",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=aajTmO0KtHQ",
"thumb": "https://img.youtube.com/vi/aajTmO0KtHQ/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=aajTmO0KtHQ",
"title": "Дмитрий Гриценко | ICO Social Media Market - площадка для взаимодействия блогеров и рекламодателей",
"desc": "Меня зовут Дмитрий Гриценко, и на этом канале я рассказываю про криптовалюты и другие виды заработка в интернете."
}
]
},
{
"id": "platform",
"title": "プラットフォームの機能",
"videos": [
{
"channelName": "SocialMedia.Market",
"date": "16.11.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=k5XUH_KQEUY",
"thumb": "https://img.youtube.com/vi/k5XUH_KQEUY/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=k5XUH_KQEUY",
"title": "SocialMedia.Market - Blockchain Based Influencer Marketing Platform",
"desc": "We are building SocialMedia.market – the first decentralized ecosystem to discover, create, perform and analyze advertising campaigns with"
},
{
"channelName": "SocialMedia.Market",
"date": "25.01.18",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=AfUlYnaQMRQ",
"thumb": "https://img.youtube.com/vi/AfUlYnaQMRQ/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=AfUlYnaQMRQ",
"title": "Q&A with Founder of Socialmedia.Market — Dmitry Shyshov",
"desc": "Our founder Dmitry Shyshov will be holding a Q&A-session with our users. During the stream Dmitry will tell about the main changes in the Social Media token economy, our referral program and will answer all your questions!"
},
{
"channelName": "SocialMedia.Market",
"date": "16.11.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=o0s14UyNcig",
"thumb": "https://img.youtube.com/vi/o0s14UyNcig/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=o0s14UyNcig",
"title": "Aleksandra Morozova about Influencer Marketing. SocialMedia.Market ICO",
"desc": "Learn about the project from Co-founder and CMO - Aleksandra Morozova."
},
{
"channelName": "SocialMedia.Market",
"date": "08.12.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=JUx6XMRUVwQ",
"thumb": "https://img.youtube.com/vi/JUx6XMRUVwQ/mqdefault.jpg",
"share": "https://www.youtube.com/watch?v=JUx6XMRUVwQ",
"title": "Q&A session with SocialMedia.Market CEO - Dmitry Shyshov and BDM - Viktor Perekhod",
"desc": "Project news from founder and CEO - Dmitry Shyshov and business development manager - Viktor Perekhod"
},
{
"channelName": "SocialMedia.Market",
"date": "16.11.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=G4N-BDqYTX0",
"thumb": "https://img.youtube.com/vi/G4N-BDqYTX0/mqdefault.jpg",
"share": "https://www.youtube.com/watch?v=G4N-BDqYTX0",
"title": "SocialMedia.Market - Первая децентрализованая площадка, объединяющая блогеров и рекламодателей",
"desc": "Мы создаем первую децентрализованую площадку, которая объединит социальные медиа, блогеров и рекламодателей."
},
{
"channelName": "SocialMedia.Market",
"date": "06.12.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=EvCSiTTR1Ds",
"thumb": "https://img.youtube.com/vi/EvCSiTTR1Ds/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=EvCSiTTR1Ds",
"title": "Александра Морозова про Маркетинг Влияния. SocialMedia.Market ICO",
"desc": "Узнайте подробности о проекте от ко-фаундера и директора по маркетингу проекта - Александры Морозовой!"
},
{
"channelName": "SocialMedia.Market",
"date": "08.12.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=b71Fh3Dol0w",
"thumb": "https://img.youtube.com/vi/b71Fh3Dol0w/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=b71Fh3Dol0w",
"title": "Вебинар с основателем проекта SocialMedia.Market - Дмитрием Шишовым",
"desc": "Вебинар с основателем - Дмитрием Шишовым, и менеджером по развитию бизнеса - Виктором Переходом. Узнайте подробности об экономике проекта и итогах presale Pre-ICO."
},
{
"channelName": "SocialMedia.Market",
"date": "28.12.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=fe72wwhr-2E",
"thumb": "https://img.youtube.com/vi/fe72wwhr-2E/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=fe72wwhr-2E",
"title": "Q&A-сессия с основателем и руководителем отдела разработки SocialMedia.Market",
"desc": "Заработай на влиянии вместе с SocialMedia.Market - https://goo.gl/BZHbvT Facebook: https://www.facebook.com/Socialmedia...."
},
{
"channelName": "SocialMedia.Market",
"date": "25.01.18",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=5qOB1MBYd14",
"thumb": "https://img.youtube.com/vi/5qOB1MBYd14/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=5qOB1MBYd14",
"title": "Q&A сессия с основателем Socialmedia.Market — Дмитрием Шишовым",
"desc": "Q&A сессия с основателем Socialmedia.Market Дмитрием Шишовым. Во время трансляции Дмитрий расскажет об основных изменениях в экономике Social Media токена, нашей реферальной программе и ответит на все ваши вопросы! Будем рады пообщаться!"
}
]
}
],
"share": "Share video",
"cardTitle": "The first blockchain based on influancer marketing?"
},
"partners": {
"sectionTitle": "パートナー",
"partnersList": [
{
"alt": "Civic",
"img": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/partner/civic.jpg"
},
{
"alt": "Crypterium",
"img": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/partner/crypterium.jpg"
},
{
"alt": "Icobox",
"img": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/partner/icobox.jpg"
},
{
"alt": "Imh",
"img": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/partner/imh.jpg"
},
{
"alt": "Stox",
"img": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/partner/stox.jpg"
}
]
},
"benefits": {
"sectionTitle": "<strong><span class='market'>Socialmedia.Market</span></strong> メリット",
"benefitsList": [
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit1.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit1-bg.png",
"title": "詐欺防止"
},
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit2.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit2-bg.png",
"title": "運営コスト削減"
},
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit3.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit3-bg.png",
"title": "安全で、早いトランザクション"
},
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit4.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit4-bg.png",
"title": "分散型紛争解決"
},
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit5.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit5-bg.png",
"title": "グローバルでの簡単な支払"
},
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit6.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit6-bg.png",
"title": "簡単なエンゲージメント"
}
],
"joinTokenSale": "トークンセールに参加"
},
"experts": {
"sectionTitle": "Socialmedia.marketに関してのエキスパート",
"expertsList": [
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/teary.png",
"name": "Keith Teare",
"status": "co-founder of Techcrunch.",
"company": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/teary-techcrunch.jpg",
"description": "Influencer advertising market has a huge potential, which is halted by the issues it has yet to overcome. Nevertheless, the blockchain technology provides all the means to deal with fraud, transparency, and pricing problems in influencer advertising campaigns. That’s why SocialMedia.Market utilizes the technology to connect advertisers and publishers in a new influencer marketing ecosystem. I have always focused on the point at which change is happening. That’s why we are together in this with the SocialMedia.Market team."
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/david.png",
"name": "David Meerman Scott",
"status": "ベストセラー「The New Rules of Marketing and PR」作者",
"company": "",
"description": "ブロックチェーン技術は、インフルエンサーとの業務において、透明性があります。"
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/werner.png",
"name": "Werner Geyser",
"status": "創業者、インフルエンサーマーケティングハブ",
"company": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/imh.jpg",
"description": "インフルエンサーのマーケティングは、幅広い層の人々へ情報を届ける機会を提供します。SocialMeida.Marketのブロックチェーン技術により、このブルーミング市場への手段を提供し、透明性とセキュリティを確保します。"
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/Ono.png",
"name": "Tatsunari Ono",
"status": "CEO, VALUE BRAIN CO., LTD. (JAPAN) ",
"company": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/airbnb.jpg",
"description": "Despite its exponential growth, influencer advertising market has its own set of challenges, like inefficiency in pricing and complex communications, while agency fees and fraud consume large portions of budget. SocialMedia.Market is bent to solve these issues with the blockchain technology. The social media audience in Japan alone is huge. And SocialMedia.Market will help expand influencer marketing plans and keep the community growing. That’s the reason why I’m supporting the project and will be among its early adopters."
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/peter.png",
"name": "Peter Zhalov",
"status": "前Wargaming.netマーケティング&広告VP",
"company": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/wargaming.jpg",
"description": "今日おいて、顧客は広告ブロックを使い、デジタル広告を無視し続けています。インフルエンサーとeSportsマーケティングは、若年層からの大衆に対し、効果的な2つの方法となっています。Socialmedia.marketには、インフルエンサーマーケティングに必要な透明な市場を創り出す方法があります。"
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/alex.png",
"name": "Alex Yastremski",
"status": "Bitfury Group Ltdジェネラルカウンセル",
"company": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/bitfury.jpg",
"description": "このプロジェクトは、市場参加者の価値を高め、マーケティング側の売上を最大化できる挑戦的な目標で魅了します。このプロジェクトは、デジタル広告の成功かつ効果的なオールインワンソリューションになるでしょう。"
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/slavik.png",
"name": "Slavik Nenaydokh",
"status": "国際デルファイソフトウェアディレクター",
"company": "",
"description": "SocialMedia.Marketは、ソーシャルマーケティングの変動に対するノウハウを賢く活用しています。 私は、SocialMedia.Marketチームと共にこのビジョンに参加することを謙虚としており、企業の成熟段階を通じて彼らと歩みたいと考えています。"
}
]
},
"ourTeam": {
"sectionTitle": "团队",
"sectionDesc": "現在31人のメンバーがプロジェクトに参加しており、より多くのマーケティングスペシャリストを雇用しています。ブロックチェーン開発チームの増員もあり、私たちはSocialMedia.Marketの成長を期待しています 次の4ヶ月間に最大70人のチームを構成する予定です。",
"fullTeam": "全チーム",
"hideFullTeam": "フルチームを非表示",
"viewVideo": "View video",
"teamList": [
{
"id": "keithTeare",
"name": "Keith Teare",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/keith-teare.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "http://linkedin.com/in/kteare/"
}
],
"jobTitle": "Adviser",
"description": "エグゼクティブチェア 英国のベンチャー企業Accelerated Digital Ventures. Keith Teareは、最近、ICOBox(4000 BTC)とクリプテリウム(5千万ドル)の成功したICOについてアドバイスしました。 以前は、TechCrunchの創設者であり、ヨーロッパで初めてのインターネットサービスプロバイダでもありました(EasyNet)。 EasyNetとRealNamesはどちらも1990年代後半にUnicornの地位を獲得しました。",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/teare.jpg"
}
],
"video": "https://www.youtube.com/embed/OrYQh_jpqt8"
},
{
"id": "andrewPlayford",
"name": "Andrew Playford",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/andrew-playford.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://www.linkedin.com/in/andrewplayford/"
}
],
"jobTitle": "Adviser",
"description": "Sonic Foundry、Inc 副社長. Sonic Foundryの前は、デジタルマーケティングとウェブ開発会社を買収し合併したナスダックに上場しているThink New Ideasの事業を運営していました。 Think New Ideasは最終的に$ 250mm以上で買収されました。.",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/sonic.jpg"
}
],
"video": "https://www.youtube.com/embed/dX0n0k7yskg"
},
{
"id": "tatsunariOno",
"name": "Tatsunari Ono",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/tatsunari-ono.jpg",
"socialLinks": [
{
"socialIcon": "fa-facebook",
"link": "https://www.facebook.com/tatsunari.ono.1?ref=br_rs/"
}
],
"jobTitle": "Adviser",
"description": "CEO, Value Brain Co., Ltd. (日本) <br/> CEO, Beducate.ltd (香港)<br/>Author ” Worries Make Money ” Kadokawa Foresta. 不動産、株式、エアバンブオペレーション、および暗号違反で投資活動に積極的に従事するビジネスマン。NEO、LISK、Quantum、Ardorなどの有名な暗号化企業の東京ミートアップを開催しました。",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/ono.jpg"
}
],
"video": "https://www.youtube.com/embed/FUUcqxpOaAA"
},
{
"id": "gabrielZanko",
"name": "Gabriel Zanko",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/gabriel-zanko.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://co.linkedin.com/in/gabrielzanko/"
}
],
"jobTitle": "Adviser",
"description": "Tax Manager & Advisor for Nokia Canada & Support for Nokia Chile. Fintech起業家アドバイザー。 Mobileyour Lifeの創始者であり、B-2 B空間にソリューションを提供するAI-Fintech空間に携わっています。 資金調達資本および国際ビジネス開発におけるICOアドバイザー。",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/zanko.jpg"
}
],
"video": ""
},
{
"id": "dariaGeneralova",
"name": "Daria Generalova",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/daria-generalova.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://www.linkedin.com/in/daria-generalova-842a3a85/"
}
],
"jobTitle": "Adviser",
"description": "Co-Founder, ICOBox. 10年以上のマーケティング経験、PR&コミュニケーションの専門家。 約2年前にブロックチェーン産業に加わり、Argon Groupのコンサルタントとして働き、ICOプラットフォームCryptonomosの立ち上げを支援しました。",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/daria.jpg"
}
],
"video": ""
},
{
"id": "chafikAbdellaoui",
"name": "Chafik Abdellaoui",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/chafik-abdellaoui.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://www.linkedin.com/in/chafikabdellaouiacbmc/"
}
],
"jobTitle": "Adviser",
"description": "起業家にして創業者 ACBMC、Bizzant、および XEDYAS IT HYBRID SOLUTIONS. Chaficは、電子商取引、ゲーム、電子決済に関する豊富な経験を持つ熟練したビジネス開発専門家です。Mobile Go ICOの成功に貢献しました。",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/chafic.jpg"
}
],
"video": ""
},
{
"id": "peterZhalov",
"name": "Peter Zhalov",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/peter-zhalov.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://www.linkedin.com/in/peter-zhalov-35149225/"
}
],
"jobTitle": "Adviser",
"description": "Wargaming.netの元VPマーケティング&広告担当、eSportsとブロックチェーン愛好家. コンピュータゲーム業界で働く実績のある、マーケティング担当者およびビジネス開発担当の最高執行役員。 eSports、Blockchain、Advertisingに熟練しています。",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/jalov.jpg"
}
],
"video": ""
},
{
"id": "dimaZaitsev",
"name": "Dima Zaitsev, PhD",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/dima-zaitsev.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://www.linkedin.com/in/dima-zaitsev/"
}
],
"jobTitle": "Adviser",
"description": "Head of International PR & Business Analytics Department Chief, ICOBox. 2017年Dimaはブロックチェインとクリプトクロスに関心を持ち、限られた範囲の市場調査を開始した。 彼は、FXStreet.com、CoinSpeaker.comなど、米国のいくつかのメディアアウトレットに独自のコラムを持っています。",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/dima.jpg"
}
],
"video": ""
},
{
"id": "alexYastremski",
"name": "Alex Yastremski",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/alex-yastremski.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://www.linkedin.com/in/alex-yastremski-b1889514/"
}
],
"jobTitle": "Adviser",
"description": "法律顧問<br>カリフォルニア州サンフランシスコ<br>ブロックチェーンの規制/コンプライアンスの専門家<br>BitfuryGroupLtdの法律顧問<br>Fintech弁護士Bingham McCutchen LLP. Bitfury Group Ltdジェネラルカウンセル <br/> Fintech counsel Bingham McCutchen LLP",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/bitfury.jpg"