-
Notifications
You must be signed in to change notification settings - Fork 0
/
kpabalco_betting (1).sql
2218 lines (1880 loc) · 766 KB
/
kpabalco_betting (1).sql
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
-- phpMyAdmin SQL Dump
-- version 4.7.7
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Jan 31, 2019 at 07:52 PM
-- Server version: 5.6.41-84.1
-- PHP Version: 5.6.30
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `kpabalco_betting`
--
-- --------------------------------------------------------
--
-- Table structure for table `admins`
--
CREATE TABLE `admins` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`username` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`mobile` text COLLATE utf8mb4_unicode_ci,
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` int(11) NOT NULL DEFAULT '1',
`login_time` datetime DEFAULT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `admins`
--
INSERT INTO `admins` (`id`, `name`, `username`, `email`, `mobile`, `image`, `status`, `login_time`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'Jhon Doe', 'admin@mn', '[email protected]', '8801825683631', 'admin_1526539271.jpg', 1, '2018-05-04 14:36:07', '$2y$10$NYFQWg04VTyzmdrJGKVA/eGzhMrrQC9J6U95FHnf9i3xFYLWtYfC.', 'gARxq5mwvI22lhusgt4aCCQ0WDmZpJDru7VKxMIZuL3xvM9ZHTMrODcU3Du0', '2018-03-26 06:08:23', '2018-05-17 00:41:11'),
(2, NULL, 'Jamal', '[email protected]', '017 000 00 000', NULL, 1, '2018-04-28 03:33:58', '$2y$10$.TXTntjqdgdyudcbaiwQMew/JQCcY88qhLigaJJqJ0yT0UCVY3r/m', 'ELp1rBoMGsKzDSIvp7dtTcnECWv9YCVhAWBLovzBLPRu2sgNCz6WD0QiVwPB', '2018-03-31 00:35:52', '2018-04-27 21:33:58');
-- --------------------------------------------------------
--
-- Table structure for table `admin_password_resets`
--
CREATE TABLE `admin_password_resets` (
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `ads`
--
CREATE TABLE `ads` (
`id` int(10) UNSIGNED NOT NULL,
`type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'image',
`size` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`src` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`link` text COLLATE utf8mb4_unicode_ci,
`script` text COLLATE utf8mb4_unicode_ci,
`views` int(11) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `basic_settings`
--
CREATE TABLE `basic_settings` (
`id` int(10) UNSIGNED NOT NULL,
`sitename` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`bg_color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`phone` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`address` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`currency` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`currency_sym` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`registration` tinyint(1) NOT NULL DEFAULT '0',
`email_verification` tinyint(1) NOT NULL DEFAULT '0',
`sms_verification` tinyint(1) NOT NULL DEFAULT '0',
`email_notification` tinyint(1) NOT NULL DEFAULT '0',
`sms_notification` tinyint(4) NOT NULL DEFAULT '0',
`withdraw_status` tinyint(1) NOT NULL DEFAULT '0',
`withdraw_charge` double DEFAULT '0',
`captcha` tinyint(4) NOT NULL DEFAULT '0',
`decimal` int(2) NOT NULL,
`adminWallet` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`refcom` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
`about` blob NOT NULL,
`policy` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`google_map` text COLLATE utf8mb4_unicode_ci,
`terms` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`copyright` text COLLATE utf8mb4_unicode_ci NOT NULL,
`fb_comment` text COLLATE utf8mb4_unicode_ci,
`rate` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `basic_settings`
--
INSERT INTO `basic_settings` (`id`, `sitename`, `color`, `bg_color`, `phone`, `email`, `address`, `currency`, `currency_sym`, `registration`, `email_verification`, `sms_verification`, `email_notification`, `sms_notification`, `withdraw_status`, `withdraw_charge`, `captcha`, `decimal`, `adminWallet`, `refcom`, `about`, `policy`, `google_map`, `terms`, `copyright`, `fb_comment`, `rate`, `created_at`, `updated_at`) VALUES
(1, 'KPABAL Betting', '0b4f60', '00d0d0', '+91-9784435350', '[email protected]', 'Sector# 11, Jaipur, , India', 'USD', '$', 1, 1, 1, 1, 1, 1, 12, 0, 2, '3H4X31j1pHswncoeasRjJt7TKBJLZz6ABE', '10', 0x3c64697620616c69676e3d226a757374696679223e3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b223e3c666f6e7420636f6c6f723d22233030303030302220666163653d224f70656e2053616e732c20417269616c2c2073616e732d7365726966223e49742069732061206c6f6e672065737461626c6973686564206661637420746861742061207265616465722077696c6c206265206469737472616374656420627920746865207265616461626c6520636f6e74656e74206f6620612070616765207768656e206c6f6f6b696e6720617420697473206c61796f75742e2054686520706f696e74206f66207573696e67204c6f72656d20497073756d2069732074686174206974206861732061206d6f72652d6f722d6c657373206e6f726d616c20646973747269627574696f6e206f66206c6574746572732c206173206f70706f73656420746f207573696e672027436f6e74656e7420686572652c20636f6e74656e742068657265272c206d616b696e67206974206c6f6f6b206c696b65207265616461626c6520456e676c6973682e204d616e79206465736b746f70207075626c697368696e67207061636b6167657320616e6420776562207061676520656469746f7273206e6f7720757365204c6f72656d20497073756d2061732074686569722064656661756c74206d6f64656c20746578742c20616e6420612073656172636820666f7220276c6f72656d20697073756d272077696c6c20756e636f766572206d616e7920776562207369746573207374696c6c20696e20746865697220696e66616e63792e266e6273703b3c2f666f6e743e3c2f703e3c703e3c2f703e3c703e3c2f703e3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b223e3c666f6e7420636f6c6f723d22233030303030302220666163653d224f70656e2053616e732c20417269616c2c2073616e732d7365726966223e3c7370616e207374796c653d22666f6e742d7765696768743a203730303b223e49742069732061206c6f6e672065737461626c6973686564206661637420746861742061207265616465722077696c6c206265206469737472616374656420627920746865207265616461626c6520636f6e74656e74206f6620612070616765207768656e206c6f6f6b696e6720617420697473206c61796f75742e266e6273703b3c2f7370616e3e54686520706f696e74206f66207573696e67204c6f72656d20497073756d2069732074686174206974206861732061206d6f72652d6f722d6c657373206e6f726d616c20646973747269627574696f6e206f66206c6574746572732c206173206f70706f73656420746f207573696e672027436f6e74656e7420686572652c20636f6e74656e742068657265272c206d616b696e67206974206c6f6f6b206c696b65207265616461626c6520456e676c6973682e204d616e79206465736b746f70207075626c697368696e67207061636b6167657320616e6420776562207061676520656469746f7273206e6f7720757365204c6f72656d20497073756d2061732074686569722064656661756c74206d6f64656c20746578742c20616e6420612073656172636820666f7220276c6f72656d20697073756d272077696c6c20756e636f766572206d616e7920776562207369746573207374696c6c20696e20746865697220696e66616e63792e20566172696f75732076657273696f6e7320686176652065766f6c766564206f766572207468652079656172732c20736f6d6574696d6573206279206163636964656e742c20736f6d6574696d6573206f6e20707572706f73652028696e6a65637465642068756d6f757220616e6420746865206c696b65292e3c2f666f6e743e3c2f703e3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b223e3c7370616e207374796c653d22666f6e742d7765696768743a203730303b223e3c62723e3c2f7370616e3e3c2f703e3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b223e3c666f6e7420636f6c6f723d22233030303030302220666163653d224f70656e2053616e732c20417269616c2c2073616e732d7365726966223e3c7370616e207374796c653d22666f6e742d7765696768743a203730303b223e49742069732061206c6f6e672065737461626c6973686564206661637420746861742061207265616465722077696c6c206265206469737472616374656420627920746865207265616461626c6520636f6e74656e74206f6620612070616765207768656e206c6f6f6b696e6720617420697473206c61796f75742e2054686520706f696e74206f66207573696e67204c6f72656d20497073756d2069732074686174206974206861732061206d6f72652d6f722d6c657373206e6f726d616c20646973747269627574696f6e206f66206c6574746572732c206173206f70706f73656420746f207573696e672027436f6e74656e7420686572652c20636f6e74656e742068657265272c206d616b696e67206974206c6f6f6b206c696b65207265616461626c6520456e676c6973682e204d616e79206465736b746f70207075626c697368696e67207061636b6167657320616e6420776562207061676520656469746f7273206e6f7720757365204c6f72656d202e3c2f7370616e3e3c2f666f6e743e3c2f703e3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b223e3c666f6e7420636f6c6f723d22233030303030302220666163653d224f70656e2053616e732c20417269616c2c2073616e732d7365726966223e3c62723e3c2f666f6e743e3c2f703e3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b223e3c666f6e7420636f6c6f723d22233030303030302220666163653d224f70656e2053616e732c20417269616c2c2073616e732d7365726966223e49742069732061206c6f6e672065737461626c6973686564206661637420746861742061207265616465722077696c6c206265206469737472616374656420627920746865207265616461626c6520636f6e74656e74206f6620612070616765207768656e206c6f6f6b696e6720617420697473206c61796f75742e2054686520706f696e74206f66207573696e67204c6f72656d20497073756d2069732074686174206974206861732061206d6f72652d6f722d6c657373206e6f726d616c20646973747269627574696f6e206f66206c6574746572732c206173206f70706f73656420746f207573696e672027436f6e74656e7420686572652c20636f6e74656e742068657265272c206d616b696e67206974206c6f6f6b206c696b65207265616461626c6520456e676c6973682e204d616e79206465736b746f70207075626c697368696e67207061636b6167657320616e6420776562207061676520656469746f7273206e6f7720757365204c6f72656d20497073756d2061732074686569722064656661756c74206d6f64656c20746578742c20616e6420612073656172636820666f7220276c6f72656d20697073756d272077696c6c20756e636f766572206d616e7920776562207369746573207374696c6c20696e20746865697220696e66616e63792e20566172696f75732076657273696f6e7320686176652065766f6c766564206f766572207468652079656172732c20736f6d6574696d6573206279206163636964656e742c20736f6d6574696d6573206f6e20707572706f73652028696e6a65637465642068756d6f757220616e6420746865206c696b65292e49742069732061206c6f6e672065737461626c6973686564206661637420746861742061207265616465722077696c6c206265206469737472616374656420627920746865207265616461626c6520636f6e74656e74206f6620612070616765207768656e206c6f6f6b696e6720617420697473206c61796f75742e2054686520706f696e74206f66207573696e67204c6f72656d20497073756d2069732074686174206974206861732061206d6f72652d6f722d6c657373206e6f726d616c20646973747269627574696f6e206f66206c6574746572732c206173206f70706f73656420746f207573696e672027436f6e74656e7420686572652c20636f6e74656e742068657265272c206d616b696e67206974206c6f6f6b206c696b65207265616461626c6520456e676c6973682e204d616e79206465736b746f70207075626c697368696e67207061636b6167657320616e6420776562207061676520656469746f7273206e6f7720757365204c6f72656d20497073756d2061732074686569722064656661756c74206d6f64656c20746578742c20616e6420612073656172636820666f7220276c6f72656d20697073756d272077696c6c20756e636f766572206d616e7920776562207369746573207374696c6c20696e20746865697220696e66616e63792e20566172696f75732076657273696f6e7320686176652065766f6c766564206f766572207468652079656172732c20736f6d6574696d6573206279206163636964656e742c20736f6d6574696d6573206f6e20707572706f73652028696e6a65637465642068756d6f757220616e6420746865206c696b65292e3c2f666f6e743e3c2f703e3c6469763e3c666f6e7420636f6c6f723d22233030303030302220666163653d224f70656e2053616e732c20417269616c2c2073616e732d7365726966223e3c62723e3c2f666f6e743e3c2f6469763e3c2f6469763e, '', NULL, '', 'Copyright © 2018 Betting- All Right Reserved.', '<div id=\"fb-root\"></div>\r\n<script>\r\n (function(d, s, id) {\r\n var js, fjs = d.getElementsByTagName(s)[0];\r\n if (d.getElementById(id)) return;\r\n js = d.createElement(s); js.id = id;\r\n js.src = \'https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.12&appId=205856110142667&autoLogAppEvents=1\';\r\n fjs.parentNode.insertBefore(js, fjs);\r\n }(document, \'script\', \'facebook-jssdk\'));\r\n</script>', '123', NULL, '2018-04-26 04:03:19');
-- --------------------------------------------------------
--
-- Table structure for table `bet_invests`
--
CREATE TABLE `bet_invests` (
`id` int(10) UNSIGNED NOT NULL,
`user_id` int(11) NOT NULL,
`betoption_id` int(11) NOT NULL,
`match_id` int(11) DEFAULT NULL,
`invest_amount` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT '0',
`return_amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
`status` tinyint(4) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `bet_invests`
--
INSERT INTO `bet_invests` (`id`, `user_id`, `betoption_id`, `match_id`, `invest_amount`, `return_amount`, `status`, `created_at`, `updated_at`) VALUES
(1, 1, 13, 2, '2', '6.00', 0, '2018-07-29 12:22:33', '2018-07-29 12:22:33');
-- --------------------------------------------------------
--
-- Table structure for table `bet_options`
--
CREATE TABLE `bet_options` (
`id` int(10) UNSIGNED NOT NULL,
`match_id` int(11) NOT NULL,
`question_id` int(11) NOT NULL,
`option_name` text COLLATE utf8mb4_unicode_ci,
`invest_amount` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT '0.001',
`return_amount` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT '0.001',
`min_amo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT '0.001',
`ratio1` text COLLATE utf8mb4_unicode_ci,
`ratio2` text COLLATE utf8mb4_unicode_ci,
`status` tinyint(4) NOT NULL DEFAULT '1',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `bet_options`
--
INSERT INTO `bet_options` (`id`, `match_id`, `question_id`, `option_name`, `invest_amount`, `return_amount`, `min_amo`, `ratio1`, `ratio2`, `status`, `created_at`, `updated_at`) VALUES
(1, 1, 1, 'Switzerland', '0.001', '0.001', '2', '1', '2', 1, '2018-06-02 14:10:30', '2018-06-02 14:10:30'),
(2, 1, 1, 'Brazil', '0.001', '0.001', '2', '1', '3', 1, '2018-06-02 14:10:30', '2018-06-02 14:10:30'),
(3, 1, 1, 'Draw', '0.001', '0.001', '3', '2', '3', 1, '2018-06-02 14:10:30', '2018-06-02 14:10:30'),
(4, 5, 5, 'Belgium', '0.001', '0.001', '1', '1', '2', 1, '2018-06-02 14:11:23', '2018-06-02 14:11:23'),
(5, 5, 5, 'England', '0.001', '0.001', '2', '1', '3', 1, '2018-06-02 14:11:23', '2018-06-02 14:11:23'),
(6, 5, 5, 'Draw', '0.001', '0.001', '1.6', '2', '3', 1, '2018-06-02 14:11:23', '2018-06-02 14:11:23'),
(7, 4, 4, 'Germany', '0.001', '0.001', '2', '2', '3', 1, '2018-06-02 14:12:09', '2018-06-02 14:12:09'),
(8, 4, 4, 'Sweden', '0.001', '0.001', '3', '2', '3', 1, '2018-06-02 14:12:10', '2018-06-02 14:12:10'),
(9, 4, 4, 'Draw', '0.001', '0.001', '1.6', '1', '3', 1, '2018-06-02 14:12:10', '2018-06-02 14:12:10'),
(10, 3, 3, 'Argentina', '0.001', '0.001', '2', '1', '3', 1, '2018-06-02 14:13:12', '2018-06-02 14:13:12'),
(11, 3, 3, 'Croatia', '0.001', '0.001', '1', '1', '2', 1, '2018-06-02 14:13:12', '2018-06-02 14:13:12'),
(12, 2, 2, 'France', '0.001', '0.001', '1.6', '1', '3', 1, '2018-06-02 14:13:51', '2018-06-02 14:13:51'),
(13, 2, 2, 'Peru', '0.001', '0.001', '1.8', '1', '3', 1, '2018-06-02 14:13:51', '2018-06-02 14:13:51'),
(14, 6, 6, 'South Africa', '0.001', '0.001', '2', '1', '3', 1, '2018-06-02 14:18:42', '2018-06-02 14:18:42'),
(15, 6, 6, 'West Indies', '0.001', '0.001', '1.6', '1', '2', 1, '2018-06-02 14:18:42', '2018-06-02 14:18:42'),
(16, 7, 7, 'Australia', '0.001', '0.001', '1', '1', '3', 1, '2018-06-02 14:19:18', '2018-06-02 14:19:18'),
(17, 7, 7, 'Zimbabwe', '0.001', '0.001', '1.6', '2', '3', 1, '2018-06-02 14:19:18', '2018-06-02 14:19:18'),
(18, 8, 8, 'Bangladesh', '0.001', '0.001', '2', '1', '3', 1, '2018-06-02 14:19:56', '2018-06-02 14:19:56'),
(19, 8, 8, 'West Indies', '0.001', '0.001', '3', '1', '3', 1, '2018-06-02 14:19:56', '2018-06-02 14:19:56'),
(20, 9, 9, 'Australia', '0.001', '0.001', '3', '2', '3', 1, '2018-06-02 14:20:33', '2018-06-02 14:20:33'),
(21, 9, 9, 'England', '0.001', '0.001', '1.8', '2', '3', 1, '2018-06-02 14:20:33', '2018-06-02 14:20:33'),
(22, 10, 13, 'Real Madrid', '0.001', '0.001', '1.3', '2', '3', 1, '2018-06-02 14:33:59', '2018-06-02 14:33:59'),
(23, 10, 13, 'Liverpool', '0.001', '0.001', '2.6', '2', '3', 1, '2018-06-02 14:34:00', '2018-06-02 14:34:00'),
(24, 11, 12, 'Barcelona', '0.001', '0.001', '2', '1', '3', 1, '2018-06-02 14:34:40', '2018-06-02 14:34:40'),
(25, 11, 12, 'Real Madrid', '0.001', '0.001', '2', '1', '2', 1, '2018-06-02 14:34:40', '2018-06-02 14:34:40'),
(26, 12, 11, 'Arsenal', '0.001', '0.001', '2', '1', '3', 1, '2018-06-02 14:35:18', '2018-06-02 14:35:18'),
(27, 12, 11, 'Menchester City', '0.001', '0.001', '3', '1', '2', 1, '2018-06-02 14:35:18', '2018-06-02 14:35:18'),
(28, 13, 10, 'Arsenal', '0.001', '0.001', '3', '1', '2', 1, '2018-06-02 14:35:52', '2018-06-02 14:35:52'),
(29, 13, 10, 'Burnley', '0.001', '0.001', '2.5', '1', '3', 1, '2018-06-02 14:35:52', '2018-06-02 14:35:52'),
(30, 17, 14, 'MI', '0.001', '0.001', '2', '2', '3', 1, '2018-06-02 14:45:55', '2018-06-02 14:45:55'),
(31, 17, 14, 'CSK', '0.001', '0.001', '1.6', '1', '2', 1, '2018-06-02 14:45:55', '2018-06-02 14:45:55'),
(32, 14, 17, 'SRH', '0.001', '0.001', '2', '1.5', '4', 1, '2018-06-02 14:47:01', '2018-06-02 14:47:01'),
(33, 14, 17, 'CSK', '0.001', '0.001', '1', '2', '3', 1, '2018-06-02 14:47:01', '2018-06-02 14:47:01'),
(34, 15, 16, 'KXIP', '0.001', '0.001', '2', '1', '3', 1, '2018-06-02 14:47:42', '2018-06-02 14:47:42'),
(35, 15, 16, 'DD', '0.001', '0.001', '3', '1', '3', 1, '2018-06-02 14:47:42', '2018-06-02 14:47:42'),
(36, 16, 15, 'RR', '0.001', '0.001', '3', '1', '2', 1, '2018-06-02 14:48:09', '2018-06-02 14:48:09'),
(37, 16, 15, 'KXIP', '0.001', '0.001', '1', '1', '3', 1, '2018-06-02 14:48:10', '2018-06-02 14:48:10'),
(38, 18, 18, 'Barcelona', '0.001', '0.001', '2', '2', '3', 1, '2018-06-02 14:54:57', '2018-06-02 14:54:57'),
(39, 18, 18, 'Real Madrid', '0.001', '0.001', '1.6', '1', '3', 1, '2018-06-02 14:54:57', '2018-06-02 14:54:57'),
(40, 19, 19, 'Deportivo', '0.001', '0.001', '3', '1', '3', 1, '2018-06-02 14:55:33', '2018-06-02 14:55:33'),
(41, 19, 19, 'Real Madrid', '0.001', '0.001', '2', '1', '2', 1, '2018-06-02 14:55:33', '2018-06-02 14:55:33'),
(42, 20, 20, 'Bercalona', '0.001', '0.001', '3', '2', '3', 1, '2018-06-02 14:56:20', '2018-06-02 14:56:20'),
(43, 20, 20, 'Deportivo Alaves', '0.001', '0.001', '2', '2', '3', 1, '2018-06-02 14:56:20', '2018-06-02 14:56:20');
-- --------------------------------------------------------
--
-- Table structure for table `bet_questions`
--
CREATE TABLE `bet_questions` (
`id` int(10) UNSIGNED NOT NULL,
`match_id` int(11) DEFAULT NULL,
`question` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` tinyint(4) NOT NULL DEFAULT '1',
`result` tinyint(4) NOT NULL DEFAULT '0',
`end_time` datetime DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `bet_questions`
--
INSERT INTO `bet_questions` (`id`, `match_id`, `question`, `status`, `result`, `end_time`, `created_at`, `updated_at`) VALUES
(1, 1, 'Who Will be Won??', 1, 0, '2019-06-02 20:08:30', '2018-06-02 14:08:43', '2018-06-02 14:08:43'),
(2, 2, 'Who Will be Won??', 1, 0, '2019-06-02 20:08:50', '2018-06-02 14:08:54', '2018-06-02 14:08:54'),
(3, 3, 'Who Will be Won??', 1, 0, '2019-06-02 20:09:01', '2018-06-02 14:09:06', '2018-06-02 14:09:06'),
(4, 4, 'Who Will be Won??', 1, 0, '2019-06-02 20:09:12', '2018-06-02 14:09:16', '2018-06-02 14:09:16'),
(5, 5, 'Who Will be Won??', 1, 0, '2019-06-02 20:09:22', '2018-06-02 14:09:29', '2018-06-02 14:09:29'),
(6, 6, 'Who Will be Won??', 2, 0, '2019-01-01 20:14:28', '2018-06-02 14:14:48', '2019-01-11 13:39:14'),
(7, 7, 'Who Will be Won??', 2, 0, '2019-01-02 20:14:55', '2018-06-02 14:15:19', '2019-01-11 13:39:14'),
(8, 8, 'Who Will be Won??', 1, 0, '2019-03-02 20:16:16', '2018-06-02 14:16:35', '2018-06-02 14:16:35'),
(9, 9, 'Who Will be Won??', 1, 0, '2019-03-02 20:17:34', '2018-06-02 14:17:44', '2018-06-02 14:17:44'),
(10, 13, 'Who Will be Won??', 1, 0, '2020-06-20 20:31:55', '2018-06-02 14:32:02', '2018-06-02 14:32:02'),
(11, 12, 'Who Will be Won??', 1, 0, '2020-06-02 20:32:10', '2018-06-02 14:32:17', '2018-06-02 14:32:17'),
(12, 11, 'Who Will be Won??', 1, 0, '2020-06-02 20:32:26', '2018-06-02 14:32:31', '2018-06-02 14:32:31'),
(13, 10, 'Who Will be Won??', 1, 0, '2019-03-02 20:33:03', '2018-06-02 14:33:14', '2018-06-02 14:33:14'),
(14, 17, 'Who Will be Won??', 1, 0, '2019-06-04 20:44:13', '2018-06-02 14:44:20', '2018-06-02 14:44:20'),
(15, 16, 'Who Will be Won??', 1, 0, '2019-06-04 19:44:29', '2018-06-02 14:44:37', '2018-06-02 14:44:37'),
(16, 15, 'Who Will be Won??', 1, 0, '2019-06-04 19:44:44', '2018-06-02 14:44:57', '2018-06-02 14:44:57'),
(17, 14, 'Who Will be Won??', 1, 0, '2019-06-04 20:45:07', '2018-06-02 14:45:15', '2018-06-02 14:45:15'),
(18, 18, 'Who Will be Won??', 1, 0, '2019-06-03 20:53:25', '2018-06-02 14:53:30', '2018-06-02 14:53:30'),
(19, 19, 'Who Will be Won??', 1, 0, '2019-06-03 20:53:35', '2018-06-02 14:53:43', '2018-06-02 14:53:43'),
(20, 20, 'Who Will be Won??', 1, 0, '2019-06-03 20:53:46', '2018-06-02 14:53:50', '2018-06-02 14:53:50');
-- --------------------------------------------------------
--
-- Table structure for table `deposits`
--
CREATE TABLE `deposits` (
`id` int(10) UNSIGNED NOT NULL,
`user_id` int(11) DEFAULT NULL,
`gateway_id` int(11) DEFAULT NULL,
`amount` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`charge` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`usd_amo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`btc_amo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`btc_wallet` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`trx` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` int(11) NOT NULL DEFAULT '0',
`try` int(11) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `deposits`
--
INSERT INTO `deposits` (`id`, `user_id`, `gateway_id`, `amount`, `charge`, `usd_amo`, `btc_amo`, `btc_wallet`, `trx`, `status`, `try`, `created_at`, `updated_at`) VALUES
(1, 6, 103, '100', '6', '1.33', '0', '', 'hhEyiybN7FBml0Cv', 1, 0, '2018-07-29 14:06:18', '2018-07-29 14:06:37'),
(2, 6, 103, '5050', '154.5', '65.06', '0', '', '0lfKxkV2GXY4FDog', 1, 0, '2018-07-29 14:08:58', '2018-07-29 14:09:18'),
(3, 1, 103, '200', '9', '2.61', '0', '', '6eXqGxoOYjWNrKEf', 1, 0, '2018-07-29 14:12:21', '2018-07-29 14:12:42'),
(4, 6, 103, '100', '6', '1.33', '0', '', 'SvSVJnB5wYEdsJrg', 1, 0, '2018-07-29 14:13:02', '2018-07-29 14:13:20');
-- --------------------------------------------------------
--
-- Table structure for table `etemplates`
--
CREATE TABLE `etemplates` (
`id` int(10) UNSIGNED NOT NULL,
`esender` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`mobile` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`emessage` text COLLATE utf8mb4_unicode_ci NOT NULL,
`smsapi` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `etemplates`
--
INSERT INTO `etemplates` (`id`, `esender`, `mobile`, `emessage`, `smsapi`, `created_at`, `updated_at`) VALUES
(1, '[email protected]', '+01234567890', '<br><div class=\"wrapper\" style=\"background-color: #f2f2f2;\"><table id=\"emb-email-header-container\" class=\"header\" style=\"border-collapse: collapse; table-layout: fixed; margin-left: auto; margin-right: auto;\" align=\"center\"><tbody><tr><td style=\"padding: 0; width: 600px;\"><br><div class=\"header__logo emb-logo-margin-box\" style=\"font-size: 26px; line-height: 32px; color: #c3ced9; font-family: Roboto,Tahoma,sans-serif; margin: 6px 20px 20px 20px;\"><img style=\"height: auto; width: 100%; border: 0; max-width: 312px;\" src=\"http://wow-offer.online/betting/assets/images/logo/logo.png\" alt=\"\" width=\"312\" height=\"44\" align=\"none\"><br></div></td></tr></tbody></table><br><table class=\"layout layout--no-gutter\" style=\"border-collapse: collapse; table-layout: fixed; margin-left: auto; margin-right: auto; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: #ffffff;\" align=\"center\"><tbody><tr><td class=\"column\" style=\"padding: 0; text-align: left; vertical-align: top; color: #60666d; font-size: 14px; line-height: 21px; font-family: sans-serif; width: 600px;\"><br><div style=\"margin-left: 20px; margin-right: 20px;\"><font size=\"4\">Hi {{name}},<br></font><p><strong>{{message}}</strong></p></div><div style=\"margin-left: 20px; margin-right: 20px; margin-bottom: 24px;\"><br><p class=\"size-14\" style=\"margin-top: 0; margin-bottom: 0; font-size: 14px; line-height: 21px;\">Thanks,<br><strong>Betting TEAM</strong></p><br></div><br></td></tr></tbody></table><br></div>', 'https://api.infobip.com/api/v3/sendsms/plain?user=****&password=****&sender=BETLAR&SMSText={{message}}&GSM={{number}}&type=longSMS', '2018-01-09 23:45:09', '2018-12-13 05:40:45');
-- --------------------------------------------------------
--
-- Table structure for table `events`
--
CREATE TABLE `events` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` tinyint(4) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `events`
--
INSERT INTO `events` (`id`, `name`, `slug`, `status`, `created_at`, `updated_at`) VALUES
(1, 'FIFA World Cup 2018', 'fifa-world-cup-2018', 1, '2018-06-02 13:46:35', '2018-06-02 13:46:35'),
(2, 'T20 World Cup', 't20-world-cup', 1, '2018-06-02 13:47:09', '2018-06-02 13:47:09'),
(3, 'IPL', 'ipl', 1, '2018-06-02 13:47:35', '2018-06-02 13:47:35'),
(4, 'LA LiGA', 'la-liga', 1, '2018-06-02 13:48:02', '2018-06-02 13:48:02'),
(5, 'El Clasico 2018', 'el-clasico-2018', 1, '2018-06-02 13:50:00', '2018-06-02 13:50:00');
-- --------------------------------------------------------
--
-- Table structure for table `faqs`
--
CREATE TABLE `faqs` (
`id` int(10) UNSIGNED NOT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` blob NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `faqs`
--
INSERT INTO `faqs` (`id`, `title`, `description`, `created_at`, `updated_at`) VALUES
(1, 'WELCOME TO BETLAR', 0x3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b20746578742d616c69676e3a206a7573746966793b20636f6c6f723a2072676228302c20302c2030293b20666f6e742d66616d696c793a202671756f743b4f70656e2053616e732671756f743b2c20417269616c2c2073616e732d73657269663b223e49742069732061206c6f6e672065737461626c6973686564206661637420746861742061207265616465722077696c6c206265206469737472616374656420627920746865207265616461626c6520636f6e74656e74206f6620612070616765207768656e206c6f6f6b696e6720617420697473206c61796f75742e2054686520706f696e74206f66207573696e67204c6f72656d20497073756d2069732074686174206974206861732061206d6f72652d6f722d6c657373206e6f726d616c20646973747269627574696f6e206f66206c6574746572732c206173206f70706f73656420746f207573696e672027436f6e74656e7420686572652c20636f6e74656e742068657265272c206d616b696e67206974206c6f6f6b206c696b65207265616461626c6520456e676c6973682e204d616e79206465736b746f70207075626c697368696e67207061636b6167657320616e6420776562207061676520656469746f7273206e6f7720757365204c6f72656d20497073756d2061732074686569722064656661756c74206d6f64656c20746578742c20616e6420612073656172636820666f7220276c6f72656d20697073756d272077696c6c20756e636f766572206d616e7920776562207369746573207374696c6c20696e20746865697220696e66616e63792e20566172696f75732076657273696f6e7320686176652065766f6c766564206f766572207468652079656172732c20736f6d6574696d6573206279206163636964656e742c20736f6d6574696d6573206f6e20707572706f73652028696e6a65637465642068756d6f757220616e6420746865206c696b65292e3c2f703e3c6469763e3c62723e3c2f6469763e, '2018-04-15 02:14:58', '2018-07-29 10:42:48'),
(2, 'BUILD YOUR DREAM WEBSITE WITH', 0x3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b20746578742d616c69676e3a206a7573746966793b20636f6c6f723a2072676228302c20302c2030293b20666f6e742d66616d696c793a202671756f743b4f70656e2053616e732671756f743b2c20417269616c2c2073616e732d73657269663b223e49742069732061206c6f6e672065737461626c6973686564206661637420746861742061207265616465722077696c6c206265206469737472616374656420627920746865207265616461626c6520636f6e74656e74206f6620612070616765207768656e206c6f6f6b696e6720617420697473206c61796f75742e2054686520706f696e74206f66207573696e67204c6f72656d20497073756d2069732074686174206974206861732061206d6f72652d6f722d6c657373206e6f726d616c20646973747269627574696f6e206f66206c6574746572732c206173206f70706f73656420746f207573696e672027436f6e74656e7420686572652c20636f6e74656e742068657265272c206d616b696e67206974206c6f6f6b206c696b65207265616461626c6520456e676c6973682e204d616e79206465736b746f70207075626c697368696e67207061636b6167657320616e6420776562207061676520656469746f7273206e6f7720757365204c6f72656d20497073756d2061732074686569722064656661756c74206d6f64656c20746578742c20616e6420612073656172636820666f7220276c6f72656d20697073756d272077696c6c20756e636f766572206d616e7920776562207369746573207374696c6c20696e20746865697220696e66616e63792e20566172696f75732076657273696f6e7320686176652065766f6c766564206f766572207468652079656172732c20736f6d6574696d6573206279206163636964656e742c20736f6d6574696d6573206f6e20707572706f73652028696e6a65637465642068756d6f757220616e6420746865206c696b65292e3c2f703e3c6469763e3c62723e3c2f6469763e, '2018-04-15 02:15:11', '2018-07-29 10:42:41'),
(3, 'Why do we use it?', 0x3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b20746578742d616c69676e3a206a7573746966793b20636f6c6f723a2072676228302c20302c2030293b20666f6e742d66616d696c793a202671756f743b4f70656e2053616e732671756f743b2c20417269616c2c2073616e732d73657269663b223e49742069732061206c6f6e672065737461626c6973686564206661637420746861742061207265616465722077696c6c206265206469737472616374656420627920746865207265616461626c6520636f6e74656e74206f6620612070616765207768656e206c6f6f6b696e6720617420697473206c61796f75742e2054686520706f696e74206f66207573696e67204c6f72656d20497073756d2069732074686174206974206861732061206d6f72652d6f722d6c657373206e6f726d616c20646973747269627574696f6e206f66206c6574746572732c206173206f70706f73656420746f207573696e672027436f6e74656e7420686572652c20636f6e74656e742068657265272c206d616b696e67206974206c6f6f6b206c696b65207265616461626c6520456e676c6973682e204d616e79206465736b746f70207075626c697368696e67207061636b6167657320616e6420776562207061676520656469746f7273206e6f7720757365204c6f72656d20497073756d2061732074686569722064656661756c74206d6f64656c20746578742c20616e6420612073656172636820666f7220276c6f72656d20697073756d272077696c6c20756e636f766572206d616e7920776562207369746573207374696c6c20696e20746865697220696e66616e63792e20566172696f75732076657273696f6e7320686176652065766f6c766564206f766572207468652079656172732c20736f6d6574696d6573206279206163636964656e742c20736f6d6574696d6573206f6e20707572706f73652028696e6a65637465642068756d6f757220616e6420746865206c696b65292e3c2f703e3c6469763e3c62723e3c2f6469763e, '2018-05-22 22:36:44', '2018-07-29 10:42:33'),
(4, 'WHY THIS PLATFORM ?', 0x3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b20746578742d616c69676e3a206a7573746966793b20636f6c6f723a2072676228302c20302c2030293b20666f6e742d66616d696c793a202671756f743b4f70656e2053616e732671756f743b2c20417269616c2c2073616e732d73657269663b223e49742069732061206c6f6e672065737461626c6973686564206661637420746861742061207265616465722077696c6c206265206469737472616374656420627920746865207265616461626c6520636f6e74656e74206f6620612070616765207768656e206c6f6f6b696e6720617420697473206c61796f75742e2054686520706f696e74206f66207573696e67204c6f72656d20497073756d2069732074686174206974206861732061206d6f72652d6f722d6c657373206e6f726d616c20646973747269627574696f6e206f66206c6574746572732c206173206f70706f73656420746f207573696e672027436f6e74656e7420686572652c20636f6e74656e742068657265272c206d616b696e67206974206c6f6f6b206c696b65207265616461626c6520456e676c6973682e204d616e79206465736b746f70207075626c697368696e67207061636b6167657320616e6420776562207061676520656469746f7273206e6f7720757365204c6f72656d20497073756d2061732074686569722064656661756c74206d6f64656c20746578742c20616e6420612073656172636820666f7220276c6f72656d20697073756d272077696c6c20756e636f766572206d616e7920776562207369746573207374696c6c20696e20746865697220696e66616e63792e20566172696f75732076657273696f6e7320686176652065766f6c766564206f766572207468652079656172732c20736f6d6574696d6573206279206163636964656e742c20736f6d6574696d6573206f6e20707572706f73652028696e6a65637465642068756d6f757220616e6420746865206c696b65292e3c2f703e3c6469763e3c62723e3c2f6469763e, '2018-06-03 18:00:39', '2018-07-29 10:42:26'),
(5, 'HOW IT WORKS?', 0x3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b20746578742d616c69676e3a206a7573746966793b20636f6c6f723a2072676228302c20302c2030293b20666f6e742d66616d696c793a202671756f743b4f70656e2053616e732671756f743b2c20417269616c2c2073616e732d73657269663b223e49742069732061206c6f6e672065737461626c6973686564206661637420746861742061207265616465722077696c6c206265206469737472616374656420627920746865207265616461626c6520636f6e74656e74206f6620612070616765207768656e206c6f6f6b696e6720617420697473206c61796f75742e2054686520706f696e74206f66207573696e67204c6f72656d20497073756d2069732074686174206974206861732061206d6f72652d6f722d6c657373206e6f726d616c20646973747269627574696f6e206f66206c6574746572732c206173206f70706f73656420746f207573696e672027436f6e74656e7420686572652c20636f6e74656e742068657265272c206d616b696e67206974206c6f6f6b206c696b65207265616461626c6520456e676c6973682e204d616e79206465736b746f70207075626c697368696e67207061636b6167657320616e6420776562207061676520656469746f7273206e6f7720757365204c6f72656d20497073756d2061732074686569722064656661756c74206d6f64656c20746578742c20616e6420612073656172636820666f7220276c6f72656d20697073756d272077696c6c20756e636f766572206d616e7920776562207369746573207374696c6c20696e20746865697220696e66616e63792e20566172696f75732076657273696f6e7320686176652065766f6c766564206f766572207468652079656172732c20736f6d6574696d6573206279206163636964656e742c20736f6d6574696d6573206f6e20707572706f73652028696e6a65637465642068756d6f757220616e6420746865206c696b65292e3c2f703e3c6469763e3c62723e3c2f6469763e, '2018-06-03 18:00:53', '2018-07-29 10:42:16'),
(6, 'HOW TO PLAY', 0x3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b20746578742d616c69676e3a206a7573746966793b20636f6c6f723a2072676228302c20302c2030293b20666f6e742d66616d696c793a202671756f743b4f70656e2053616e732671756f743b2c20417269616c2c2073616e732d73657269663b223e49742069732061206c6f6e672065737461626c6973686564206661637420746861742061207265616465722077696c6c206265206469737472616374656420627920746865207265616461626c6520636f6e74656e74206f6620612070616765207768656e206c6f6f6b696e6720617420697473206c61796f75742e2054686520706f696e74206f66207573696e67204c6f72656d20497073756d2069732074686174206974206861732061206d6f72652d6f722d6c657373206e6f726d616c20646973747269627574696f6e206f66206c6574746572732c206173206f70706f73656420746f207573696e672027436f6e74656e7420686572652c20636f6e74656e742068657265272c206d616b696e67206974206c6f6f6b206c696b65207265616461626c6520456e676c6973682e204d616e79206465736b746f70207075626c697368696e67207061636b6167657320616e6420776562207061676520656469746f7273206e6f7720757365204c6f72656d20497073756d2061732074686569722064656661756c74206d6f64656c20746578742c20616e6420612073656172636820666f7220276c6f72656d20697073756d272077696c6c20756e636f766572206d616e7920776562207369746573207374696c6c20696e20746865697220696e66616e63792e20566172696f75732076657273696f6e7320686176652065766f6c766564206f766572207468652079656172732c20736f6d6574696d6573206279206163636964656e742c20736f6d6574696d6573206f6e20707572706f73652028696e6a65637465642068756d6f757220616e6420746865206c696b65292e3c2f703e3c6469763e3c62723e3c2f6469763e3c6469763e3c62723e3c2f6469763e, '2018-06-03 18:01:06', '2018-07-29 10:42:09'),
(7, 'How To Deposit?', 0x3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b20746578742d616c69676e3a206a7573746966793b20636f6c6f723a2072676228302c20302c2030293b20666f6e742d66616d696c793a202671756f743b4f70656e2053616e732671756f743b2c20417269616c2c2073616e732d73657269663b223e49742069732061206c6f6e672065737461626c6973686564206661637420746861742061207265616465722077696c6c206265206469737472616374656420627920746865207265616461626c6520636f6e74656e74206f6620612070616765207768656e206c6f6f6b696e6720617420697473206c61796f75742e2054686520706f696e74206f66207573696e67204c6f72656d20497073756d2069732074686174206974206861732061206d6f72652d6f722d6c657373206e6f726d616c20646973747269627574696f6e206f66206c6574746572732c206173206f70706f73656420746f207573696e672027436f6e74656e7420686572652c20636f6e74656e742068657265272c206d616b696e67206974206c6f6f6b206c696b65207265616461626c6520456e676c6973682e204d616e79206465736b746f70207075626c697368696e67207061636b6167657320616e6420776562207061676520656469746f7273206e6f7720757365204c6f72656d20497073756d2061732074686569722064656661756c74206d6f64656c20746578742c20616e6420612073656172636820666f7220276c6f72656d20697073756d272077696c6c20756e636f766572206d616e7920776562207369746573207374696c6c20696e20746865697220696e66616e63792e20566172696f75732076657273696f6e7320686176652065766f6c766564206f766572207468652079656172732c20736f6d6574696d6573206279206163636964656e742c20736f6d6574696d6573206f6e20707572706f73652028696e6a65637465642068756d6f757220616e6420746865206c696b65292e3c2f703e3c6469763e3c62723e3c2f6469763e, '2018-06-03 18:01:17', '2018-07-29 10:41:40');
-- --------------------------------------------------------
--
-- Table structure for table `gateways`
--
CREATE TABLE `gateways` (
`id` int(10) UNSIGNED NOT NULL,
`main_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`minamo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`maxamo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`fixed_charge` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`percent_charge` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`rate` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`val1` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`val2` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` int(11) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `gateways`
--
INSERT INTO `gateways` (`id`, `main_name`, `name`, `minamo`, `maxamo`, `fixed_charge`, `percent_charge`, `rate`, `val1`, `val2`, `status`, `created_at`, `updated_at`) VALUES
(101, 'PayPal', 'PayPal', '5', '1000', '0.511', '2.52', '80', '[email protected]', NULL, 1, NULL, '2018-05-31 07:56:40'),
(102, 'PerfectMoney', 'Perfect Money', '20', '20000', '2', '1', '80', 'U5376900', 'G079qn4Q7XATZBqyoCkBteGRg', 1, NULL, '2018-05-20 11:58:59'),
(103, 'Stripe', 'Credit Card', '10', '50000', '3', '3', '80', 'sk_test_aat3tzBCCXXBkS4sxY3M8A1B', 'pk_test_AU3G7doZ1sbdpJLj0NaozPBu', 1, NULL, '2018-05-27 18:11:50'),
(104, 'Skrill', 'Skrill', '10', '50000', '3', '3', '80', '[email protected]', 'TheSoftKing', 1, NULL, '2018-05-20 12:01:09'),
(501, 'Blockchain.info', 'BitCoin', '1', '20000', '1', '0.5', '80', '3965f52f-ec19-43af-90ed-d613dc60657eSSS', 'xpub6DREmHywjNizvs9b4hhNekcjFjvL4rshJjnrHHgtLNCSbhhx5jKFRgqdmXAecLAddEPudDZY4xoDbV1NVHSCeDp1S7NumPCNNjbxB7sGasY0000', 1, NULL, '2018-05-21 01:20:29'),
(502, 'block.io - BTC', 'BitCoin', '1', '99999', '1', '0.5', '80', '1658-8015-2e5e-9afb', '09876softk', 1, '2018-01-27 18:00:00', '2018-05-31 09:12:55'),
(503, 'block.io - LTC', 'LiteCoin', '100', '10000', '0.4', '1', '80', 'cb91-a5bc-69d7-1c27', '09876softk', 1, NULL, '2018-05-31 09:27:34'),
(504, 'block.io - DOGE', 'DogeCoin', '1', '50000', '0.51', '2.52', '80', '2daf-d165-2135-5951', '09876softk', 1, NULL, '2018-05-31 09:28:54'),
(505, 'CoinPayment - BTC', 'BitCoin', '1', '50000', '0.51', '2.52', '80', '596f0097ed9d1ab8cfed05eb59c70e9f066513dfe4df64a8fc3917d309328315', '7472928395208f70E3cE30B9e10dc882cBDD3e9967b7942AaE492106d9C7bE44', 1, NULL, '2018-05-31 09:38:33'),
(506, 'CoinPayment - ETH', 'Etherium', '1', '50000', '0.51', '2.52', '80', '596f0097ed9d1ab8cfed05eb59c70e9f066513dfe4df64a8fc3917d309328315', '7472928395208f70E3cE30B9e10dc882cBDD3e9967b7942AaE492106d9C7bE44', 1, NULL, '2018-05-31 09:39:04'),
(507, 'CoinPayment - BCH', 'Bitcoin Cash', '1', '50000', '0.51', '2.52', '80', '596f0097ed9d1ab8cfed05eb59c70e9f066513dfe4df64a8fc3917d309328315', '7472928395208f70E3cE30B9e10dc882cBDD3e9967b7942AaE492106d9C7bE44', 1, NULL, '2018-05-31 09:39:04'),
(508, 'CoinPayment - DASH', 'DASH', '1', '50000', '0.51', '2.52', '80', '596f0097ed9d1ab8cfed05eb59c70e9f066513dfe4df64a8fc3917d309328315', '7472928395208f70E3cE30B9e10dc882cBDD3e9967b7942AaE492106d9C7bE44', 1, NULL, '2018-05-31 09:39:04'),
(509, 'CoinPayment - DOGE', 'DOGE', '1', '50000', '0.51', '2.52', '80', '596f0097ed9d1ab8cfed05eb59c70e9f066513dfe4df64a8fc3917d309328315', '7472928395208f70E3cE30B9e10dc882cBDD3e9967b7942AaE492106d9C7bE44', 1, NULL, '2018-05-31 09:39:04'),
(510, 'CoinPayment - LTC', 'LTC', '1', '50000', '0.51', '2.52', '80', '596f0097ed9d1ab8cfed05eb59c70e9f066513dfe4df64a8fc3917d309328315', '7472928395208f70E3cE30B9e10dc882cBDD3e9967b7942AaE492106d9C7bE44', 1, NULL, '2018-05-31 09:39:04'),
(512, 'CoinGate', 'CoinGate', '10', '1000', '5', '5', '80', 'Ba1VgPx6d437xLXGKCBkmwVCEw5kHzRJ6thbGo-N', NULL, 1, NULL, NULL),
(513, 'CoinPayment-ALL', 'Coin Payment', '10', '1000', '05', '5', '80', 'db1d9f12444e65c921604e289a281c56', NULL, 1, NULL, '2018-05-21 01:20:54');
-- --------------------------------------------------------
--
-- Table structure for table `lineups`
--
CREATE TABLE `lineups` (
`id` int(11) NOT NULL,
`match_id` varchar(198) COLLATE utf8_unicode_ci NOT NULL,
`competitor1` text COLLATE utf8_unicode_ci NOT NULL,
`competitor2` text COLLATE utf8_unicode_ci NOT NULL,
`language_code` varchar(191) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `lineups`
--
INSERT INTO `lineups` (`id`, `match_id`, `competitor1`, `competitor2`, `language_code`) VALUES
(1, 'sr:match:16594213', '{\"team\":\"home\",\"formation\":\"4-4-1-1\",\"manager\":{\"id\":\"sr:player:106445\",\"name\":\"Mantzios, Akis\",\"nationality\":\"\\uadf8\\ub9ac\\uc2a4\",\"country_code\":\"GRC\"},\"jersey\":{\"type\":\"home\",\"base\":\"66ccff\",\"sleeve\":\"3535ff\",\"number\":\"000099\",\"squares\":false,\"stripes\":true,\"stripes_color\":\"ff0000\",\"horizontal_stripes\":false,\"split\":false,\"shirt_type\":\"short_sleeves\",\"sleeve_detail\":\"ff0000\"},\"starting_lineup\":[{\"id\":\"sr:player:78891\",\"name\":\"Kotnik, Matic\",\"type\":\"goalkeeper\",\"jersey_number\":12,\"position\":\"Goalkeeper\",\"order\":1},{\"id\":\"sr:player:17341\",\"name\":\"Papageorgiou, Athanasios\",\"type\":\"defender\",\"jersey_number\":22,\"position\":\"Right back\",\"order\":2},{\"id\":\"sr:player:159741\",\"name\":\"\\uc57c\\uc57c \\ubc14\\ub098\\ub098\",\"type\":\"defender\",\"jersey_number\":29,\"position\":\"Central defender\",\"order\":4},{\"id\":\"sr:player:893822\",\"name\":\"Domingues Gustavo, Luis\",\"type\":\"defender\",\"jersey_number\":5,\"position\":\"Central defender\",\"order\":3},{\"id\":\"sr:player:354300\",\"name\":\"Saramantas, Giorgos\",\"type\":\"defender\",\"jersey_number\":3,\"position\":\"Left back\",\"order\":5},{\"id\":\"sr:player:352898\",\"name\":\"\\uc9c0\\uc624\\ub974\\uc870\\uc2a4 \\ub9cc\\ud0c0\\ud2f0\\uc2a4\",\"type\":\"midfielder\",\"jersey_number\":77,\"position\":\"Right winger\",\"order\":6},{\"id\":\"sr:player:115129\",\"name\":\"\\uc544\\ubbf8\\ub974 \\ucfe0\\ub974\\ub514\",\"type\":\"defender\",\"jersey_number\":2,\"position\":\"Central midfielder\",\"order\":7},{\"id\":\"sr:player:17350\",\"name\":\"Korbos, Panagiotis\",\"type\":\"midfielder\",\"jersey_number\":7,\"position\":\"Central midfielder\",\"order\":8},{\"id\":\"sr:player:1573030\",\"name\":\"Sidi Ali, Sofiane\",\"type\":\"forward\",\"jersey_number\":17,\"position\":\"Left winger\",\"order\":9},{\"id\":\"sr:player:595332\",\"name\":\"Tsiloulis, Sotiris\",\"type\":\"midfielder\",\"jersey_number\":23,\"position\":\"Striker\",\"order\":10},{\"id\":\"sr:player:592556\",\"name\":\"Durmishaj, Fiorin\",\"type\":\"forward\",\"jersey_number\":9,\"position\":\"Striker\",\"order\":11}],\"substitues\":[{\"id\":\"sr:player:820960\",\"name\":\"\\ud544\\ub9bd \\ub9c8\\ub178\\uc77c\\ub85c\\ube44\\uce58\",\"type\":\"goalkeeper\",\"jersey_number\":28},{\"id\":\"sr:player:1045879\",\"name\":\"Stavropoulos, Dimitrios\",\"type\":\"defender\",\"jersey_number\":14},{\"id\":\"sr:player:1573036\",\"name\":\"Mico, Antonio\",\"type\":\"defender\",\"jersey_number\":32},{\"id\":\"sr:player:335991\",\"name\":\"Kocic, Milan\",\"type\":\"defender\",\"jersey_number\":33},{\"id\":\"sr:player:973223\",\"name\":\"Makrillos, Peter\",\"type\":\"midfielder\",\"jersey_number\":6},{\"id\":\"sr:player:783092\",\"name\":\"Camara, Oumar\",\"type\":\"midfielder\",\"jersey_number\":11},{\"id\":\"sr:player:1097646\",\"name\":\"Oikonomidis, Ioannis\",\"type\":\"midfielder\",\"jersey_number\":16}]}', '{\"team\":\"away\",\"formation\":\"4-3-3\",\"manager\":{\"id\":\"sr:player:53492\",\"name\":\"Paraschos, Georgios\",\"nationality\":\"\\uadf8\\ub9ac\\uc2a4\",\"country_code\":\"GRC\"},\"jersey\":{\"type\":\"away\",\"base\":\"ff6600\",\"sleeve\":\"ff5353\",\"number\":\"000000\",\"squares\":false,\"stripes\":false,\"stripes_color\":\"ff0000\",\"horizontal_stripes\":false,\"split\":false,\"shirt_type\":\"short_sleeves\",\"sleeve_detail\":\"000000\"},\"starting_lineup\":[{\"id\":\"sr:player:175341\",\"name\":\"Papadopoulos, Nikolaos\",\"type\":\"goalkeeper\",\"jersey_number\":1,\"position\":\"Goalkeeper\",\"order\":1},{\"id\":\"sr:player:137981\",\"name\":\"Vlachos, Valentinos\",\"type\":\"defender\",\"jersey_number\":37,\"position\":\"Right back\",\"order\":2},{\"id\":\"sr:player:235502\",\"name\":\"Triantafyllopoulos, Konstantinos\",\"type\":\"defender\",\"jersey_number\":5,\"position\":\"Central defender\",\"order\":3},{\"id\":\"sr:player:1071898\",\"name\":\"Pasalidis, Triantafyllos\",\"type\":\"defender\",\"jersey_number\":4,\"position\":\"Central defender\",\"order\":4},{\"id\":\"sr:player:377302\",\"name\":\"Kyriakopoulos, Giorgos\",\"type\":\"defender\",\"jersey_number\":77,\"position\":\"Left back\",\"order\":5},{\"id\":\"sr:player:81176\",\"name\":\"Munafo, Juan\",\"type\":\"midfielder\",\"jersey_number\":8,\"position\":\"Central midfielder\",\"order\":7},{\"id\":\"sr:player:579372\",\"name\":\"\\ud504\\ub780\\ucf54 \\ubca8\\ub85c\\ud06c\",\"type\":\"midfielder\",\"jersey_number\":14,\"position\":\"Central midfielder\",\"order\":6},{\"id\":\"sr:player:994087\",\"name\":\"Kotsiras, Giannis\",\"type\":\"forward\",\"jersey_number\":27,\"position\":\"Central midfielder\",\"order\":8},{\"id\":\"sr:player:134407\",\"name\":\"Manias, Michalis\",\"type\":\"forward\",\"jersey_number\":11,\"position\":\"Striker\",\"order\":10},{\"id\":\"sr:player:351748\",\"name\":\"Tsilianidis, Kosmas\",\"type\":\"forward\",\"jersey_number\":19,\"position\":\"Striker\",\"order\":11},{\"id\":\"sr:player:133682\",\"name\":\"Kaltsas, Nikos\",\"type\":\"forward\",\"jersey_number\":23,\"position\":\"Striker\",\"order\":9}],\"substitues\":[{\"id\":\"sr:player:284851\",\"name\":\"Athanasiadis, Giorgos\",\"type\":\"goalkeeper\",\"jersey_number\":30},{\"id\":\"sr:player:340405\",\"name\":\"Matricardi, Patricio\",\"type\":\"defender\",\"jersey_number\":2},{\"id\":\"sr:player:99518\",\"name\":\"\\uc559\\ud5ec \\ub9c8\\ub974\\ud2f0\\ub124\\uc988 \\uc138\\ub974\\ubca0\\ub77c\",\"type\":\"defender\",\"jersey_number\":33},{\"id\":\"sr:player:249341\",\"name\":\"Salas, Lucas\",\"type\":\"midfielder\",\"jersey_number\":16},{\"id\":\"sr:player:252341\",\"name\":\"\\ub9c8\\ub974\\ud2f4 \\ub864\\ub808\",\"type\":\"midfielder\",\"jersey_number\":22},{\"id\":\"sr:player:170739\",\"name\":\"Fernandez Gracia, Marc\",\"type\":\"forward\",\"jersey_number\":7},{\"id\":\"sr:player:1264266\",\"name\":\"Douvikas, Anastasios\",\"type\":\"forward\",\"jersey_number\":28}]}', 'ko'),
(2, 'sr:match:16594213', '{\"team\":\"home\",\"formation\":\"4-4-1-1\",\"manager\":{\"id\":\"sr:player:106445\",\"name\":\"Mantzios, Akis\",\"nationality\":\"Greece\",\"country_code\":\"GRC\"},\"jersey\":{\"type\":\"home\",\"base\":\"66ccff\",\"sleeve\":\"3535ff\",\"number\":\"000099\",\"squares\":false,\"stripes\":true,\"stripes_color\":\"ff0000\",\"horizontal_stripes\":false,\"split\":false,\"shirt_type\":\"short_sleeves\",\"sleeve_detail\":\"ff0000\"},\"starting_lineup\":[{\"id\":\"sr:player:78891\",\"name\":\"Kotnik, Matic\",\"type\":\"goalkeeper\",\"jersey_number\":12,\"position\":\"Goalkeeper\",\"order\":1},{\"id\":\"sr:player:17341\",\"name\":\"Papageorgiou, Athanasios\",\"type\":\"defender\",\"jersey_number\":22,\"position\":\"Right back\",\"order\":2},{\"id\":\"sr:player:159741\",\"name\":\"Banana, Yaya\",\"type\":\"defender\",\"jersey_number\":29,\"position\":\"Central defender\",\"order\":4},{\"id\":\"sr:player:893822\",\"name\":\"Domingues Gustavo, Luis\",\"type\":\"defender\",\"jersey_number\":5,\"position\":\"Central defender\",\"order\":3},{\"id\":\"sr:player:354300\",\"name\":\"Saramantas, Giorgos\",\"type\":\"defender\",\"jersey_number\":3,\"position\":\"Left back\",\"order\":5},{\"id\":\"sr:player:352898\",\"name\":\"Manthatis, Giorgos\",\"type\":\"midfielder\",\"jersey_number\":77,\"position\":\"Right winger\",\"order\":6},{\"id\":\"sr:player:115129\",\"name\":\"Kurdi, Amiri\",\"type\":\"defender\",\"jersey_number\":2,\"position\":\"Central midfielder\",\"order\":7},{\"id\":\"sr:player:17350\",\"name\":\"Korbos, Panagiotis\",\"type\":\"midfielder\",\"jersey_number\":7,\"position\":\"Central midfielder\",\"order\":8},{\"id\":\"sr:player:1573030\",\"name\":\"Sidi Ali, Sofiane\",\"type\":\"forward\",\"jersey_number\":17,\"position\":\"Left winger\",\"order\":9},{\"id\":\"sr:player:595332\",\"name\":\"Tsiloulis, Sotiris\",\"type\":\"midfielder\",\"jersey_number\":23,\"position\":\"Striker\",\"order\":10},{\"id\":\"sr:player:592556\",\"name\":\"Durmishaj, Fiorin\",\"type\":\"forward\",\"jersey_number\":9,\"position\":\"Striker\",\"order\":11}],\"substitues\":[{\"id\":\"sr:player:820960\",\"name\":\"Manojlovic, Filip\",\"type\":\"goalkeeper\",\"jersey_number\":28},{\"id\":\"sr:player:1045879\",\"name\":\"Stavropoulos, Dimitrios\",\"type\":\"defender\",\"jersey_number\":14},{\"id\":\"sr:player:1573036\",\"name\":\"Mico, Antonio\",\"type\":\"defender\",\"jersey_number\":32},{\"id\":\"sr:player:335991\",\"name\":\"Kocic, Milan\",\"type\":\"defender\",\"jersey_number\":33},{\"id\":\"sr:player:973223\",\"name\":\"Makrillos, Peter\",\"type\":\"midfielder\",\"jersey_number\":6},{\"id\":\"sr:player:783092\",\"name\":\"Camara, Oumar\",\"type\":\"midfielder\",\"jersey_number\":11},{\"id\":\"sr:player:1097646\",\"name\":\"Oikonomidis, Ioannis\",\"type\":\"midfielder\",\"jersey_number\":16}]}', '{\"team\":\"away\",\"formation\":\"4-3-3\",\"manager\":{\"id\":\"sr:player:53492\",\"name\":\"Paraschos, Georgios\",\"nationality\":\"Greece\",\"country_code\":\"GRC\"},\"jersey\":{\"type\":\"away\",\"base\":\"ff6600\",\"sleeve\":\"ff5353\",\"number\":\"000000\",\"squares\":false,\"stripes\":false,\"stripes_color\":\"ff0000\",\"horizontal_stripes\":false,\"split\":false,\"shirt_type\":\"short_sleeves\",\"sleeve_detail\":\"000000\"},\"starting_lineup\":[{\"id\":\"sr:player:175341\",\"name\":\"Papadopoulos, Nikolaos\",\"type\":\"goalkeeper\",\"jersey_number\":1,\"position\":\"Goalkeeper\",\"order\":1},{\"id\":\"sr:player:137981\",\"name\":\"Vlachos, Valentinos\",\"type\":\"defender\",\"jersey_number\":37,\"position\":\"Right back\",\"order\":2},{\"id\":\"sr:player:235502\",\"name\":\"Triantafyllopoulos, Konstantinos\",\"type\":\"defender\",\"jersey_number\":5,\"position\":\"Central defender\",\"order\":3},{\"id\":\"sr:player:1071898\",\"name\":\"Pasalidis, Triantafyllos\",\"type\":\"defender\",\"jersey_number\":4,\"position\":\"Central defender\",\"order\":4},{\"id\":\"sr:player:377302\",\"name\":\"Kyriakopoulos, Giorgos\",\"type\":\"defender\",\"jersey_number\":77,\"position\":\"Left back\",\"order\":5},{\"id\":\"sr:player:81176\",\"name\":\"Munafo, Juan\",\"type\":\"midfielder\",\"jersey_number\":8,\"position\":\"Central midfielder\",\"order\":7},{\"id\":\"sr:player:579372\",\"name\":\"Bellocq, Franco\",\"type\":\"midfielder\",\"jersey_number\":14,\"position\":\"Central midfielder\",\"order\":6},{\"id\":\"sr:player:994087\",\"name\":\"Kotsiras, Giannis\",\"type\":\"forward\",\"jersey_number\":27,\"position\":\"Central midfielder\",\"order\":8},{\"id\":\"sr:player:134407\",\"name\":\"Manias, Michalis\",\"type\":\"forward\",\"jersey_number\":11,\"position\":\"Striker\",\"order\":10},{\"id\":\"sr:player:351748\",\"name\":\"Tsilianidis, Kosmas\",\"type\":\"forward\",\"jersey_number\":19,\"position\":\"Striker\",\"order\":11},{\"id\":\"sr:player:133682\",\"name\":\"Kaltsas, Nikos\",\"type\":\"forward\",\"jersey_number\":23,\"position\":\"Striker\",\"order\":9}],\"substitues\":[{\"id\":\"sr:player:284851\",\"name\":\"Athanasiadis, Giorgos\",\"type\":\"goalkeeper\",\"jersey_number\":30},{\"id\":\"sr:player:340405\",\"name\":\"Matricardi, Patricio\",\"type\":\"defender\",\"jersey_number\":2},{\"id\":\"sr:player:99518\",\"name\":\"Martinez, Angel\",\"type\":\"defender\",\"jersey_number\":33},{\"id\":\"sr:player:249341\",\"name\":\"Salas, Lucas\",\"type\":\"midfielder\",\"jersey_number\":16},{\"id\":\"sr:player:252341\",\"name\":\"Rolle, Martin\",\"type\":\"midfielder\",\"jersey_number\":22},{\"id\":\"sr:player:170739\",\"name\":\"Fernandez Gracia, Marc\",\"type\":\"forward\",\"jersey_number\":7},{\"id\":\"sr:player:1264266\",\"name\":\"Douvikas, Anastasios\",\"type\":\"forward\",\"jersey_number\":28}]}', 'en');
-- --------------------------------------------------------
--
-- Table structure for table `matches`
--
CREATE TABLE `matches` (
`id` int(10) UNSIGNED NOT NULL,
`event_id` int(11) NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`src` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`start_date` datetime DEFAULT NULL,
`end_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`status` tinyint(4) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `matches`
--
INSERT INTO `matches` (`id`, `event_id`, `name`, `slug`, `src`, `start_date`, `end_date`, `status`, `created_at`, `updated_at`) VALUES
(1, 1, 'Brazil vs Switzerland', 'brazil-vsswitzerland', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/yx09UsrM2Dw\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', '2018-06-02 19:53:00', '2020-06-02 19:53:00', 1, '2018-06-02 13:53:50', '2018-06-02 13:53:50'),
(2, 1, 'France Vs Peru', 'france-vs-peru', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/ghYwR_aC4qg\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', '2018-06-02 19:53:00', '2020-06-02 19:53:00', 1, '2018-06-02 13:54:52', '2018-06-02 13:54:52'),
(3, 1, 'Argentina Vs Croatia', 'argentina-vs-croatia', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/5tOA79nppoY\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', '2018-06-02 19:53:00', '2021-06-02 19:53:00', 1, '2018-06-02 13:57:31', '2018-06-02 13:57:31'),
(4, 1, 'Germany vs Sweden', 'germany-vssweden', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/E8HKL22PIkQ\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', '2018-06-02 19:53:00', '2021-06-02 19:53:00', 1, '2018-06-02 13:58:41', '2018-06-02 13:58:41'),
(5, 1, 'England vs Belgium', 'englandvs-belgium', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/OMkVSSFLGiU\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', '2018-06-02 19:53:00', '2021-06-02 19:53:00', 1, '2018-06-02 14:00:45', '2018-06-02 14:00:45'),
(6, 2, 'South Africa vs West Indies', 'south-africa-vs-west-indies', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/CnSBj2TtW3E\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', '2019-06-02 19:53:00', '2019-06-02 19:53:00', 1, '2018-06-02 14:03:53', '2018-06-02 14:03:53'),
(7, 2, 'Australia vs Zimbabwe', 'australia-vs-zimbabwe', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/VM6NTYKM3a8\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', '2019-06-02 19:53:00', '2019-06-02 19:53:00', 1, '2018-06-02 14:05:11', '2018-06-02 14:05:11'),
(8, 2, 'Bangladesh vs West Indies', 'bangladesh-vs-west-indies', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/3pkb9-aNc9M\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', '2019-06-02 19:53:00', '2019-06-02 19:53:00', 1, '2018-06-02 14:06:23', '2018-06-02 14:06:23'),
(9, 2, 'Australia Vs England', 'australia-vs-england', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/7w9hIg2BRR4\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', '2019-06-02 19:53:00', '2019-06-02 19:53:00', 1, '2018-06-02 14:07:23', '2018-06-02 14:07:23'),
(10, 5, 'Real Madrid VS Liverpool', 'real-madrid-vs-liverpool', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/TFNVtGXKAxw\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', '2018-06-02 20:23:00', '2019-06-02 20:24:00', 1, '2018-06-02 14:24:16', '2018-06-02 14:24:16'),
(11, 5, 'Barcelona vs Real Madrid', 'barcelona-vs-real-madrid', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/TFNVtGXKAxw\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', '2018-06-02 20:23:00', '2021-06-02 20:24:00', 1, '2018-06-02 14:25:23', '2018-06-02 14:25:23'),
(12, 5, 'Arsenal Vs Menchester City', 'arsenal-vs-menchester-city', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/TFNVtGXKAxw\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', '2018-06-02 20:23:00', '2021-06-02 20:24:00', 1, '2018-06-02 14:29:03', '2018-06-02 14:29:03'),
(13, 5, 'Burnley Vs Arsenal', 'burnley-vs-arsenal', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/TFNVtGXKAxw\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', '2018-06-02 20:23:00', '2021-06-02 20:24:00', 1, '2018-06-02 14:30:29', '2018-06-02 14:30:29'),
(14, 3, 'Sunrisers Hyderabad VS Chennai Super Kings', 'sunrisers-hyderabad-vs-chennai-super-kings', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/G-bbJZUS2Qw\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', '2018-06-02 21:03:05', '2019-06-05 20:39:00', 1, '2018-06-02 14:40:00', '2018-06-02 14:40:00'),
(15, 3, 'Delhi Daredevils VS Kings XI Punjab', 'delhi-daredevils-vs-kings-xi-punjab', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/UQj7WEkrDs0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', '2018-06-02 21:02:57', '2019-06-05 20:39:00', 1, '2018-06-02 14:41:09', '2018-06-02 14:41:09'),
(16, 3, 'Rajasthan Royals VS Kings XI Punjab', 'rajasthan-royals-vs-kings-xi-punjab', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/LYfqLDvkr9w\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', '2018-06-02 21:02:52', '2019-06-05 20:39:00', 1, '2018-06-02 14:42:23', '2018-06-02 14:42:23'),
(17, 3, 'Mumbai Indians vs Chennai Super Kings', 'mumbai-indians-vs-chennai-super-kings', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/oMRlIO3ICRU\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', '2018-06-02 21:02:47', '2019-06-05 20:39:00', 1, '2018-06-02 14:43:37', '2018-06-02 14:43:37'),
(18, 4, 'Barcelona Vs Real Madrid', 'barcelona-vs-real-madrid', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/yxDL1EuEnng\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', '2018-06-02 21:02:40', '2019-06-04 20:50:00', 1, '2018-06-02 14:50:50', '2018-06-02 14:50:50'),
(19, 4, 'Deportivo vs Real Madrid', 'deportivo-vs-real-madrid', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/yxDL1EuEnng\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', '2018-06-02 21:02:36', '2019-06-04 20:50:00', 1, '2018-06-02 14:51:26', '2018-06-02 14:51:26'),
(20, 4, 'Bercalona vs Deportivo Alaves', 'bercalona-vs-deportivo-alaves', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/yxDL1EuEnng\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', '2018-06-02 21:02:31', '2019-06-04 20:50:00', 1, '2018-06-02 14:52:20', '2018-06-02 14:52:20');
-- --------------------------------------------------------
--
-- Table structure for table `match_funs`
--
CREATE TABLE `match_funs` (
`id` int(11) NOT NULL,
`match_id` varchar(191) CHARACTER SET utf8 NOT NULL,
`funs` text COLLATE utf8_unicode_ci,
`language_code` varchar(191) CHARACTER SET utf8 NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `match_funs`
--
INSERT INTO `match_funs` (`id`, `match_id`, `funs`, `language_code`) VALUES
(3, 'sr:match:16594213', '\0[\0\"\0W\0h\0e\0n\0 \0p\0l\0a\0y\0i\0n\0g\0 \0a\0t\0 \0h\0o\0m\0e\0,\0 \0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0h\0a\0v\0e\0 \0n\0o\0t\0 \0l\0o\0s\0t\0 \0t\0o\0 \0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0i\0n\0 \0t\0h\0e\0i\0r\0 \0l\0a\0s\0t\0 \08\0 \0e\0n\0c\0o\0u\0n\0t\0e\0r\0s\0.\0\"\0,\0\"\0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0i\0s\0 \0u\0n\0d\0e\0f\0e\0a\0t\0e\0d\0 \0t\0h\0i\0s\0 \0s\0e\0a\0s\0o\0n\0 \0w\0h\0e\0n\0 \0p\0l\0a\0y\0i\0n\0g\0 \0a\0t\0 \0h\0o\0m\0e\0 \0a\0n\0d\0 \0t\0a\0k\0i\0n\0g\0 \0t\0h\0e\0 \0l\0e\0a\0d\0 \01\0-\00\0.\0\"\0,\0\"\0I\0f\0 \0 \0K\0o\0n\0s\0t\0a\0n\0t\0i\0n\0o\0s\0 \0T\0r\0i\0a\0n\0t\0a\0f\0y\0l\0l\0o\0p\0o\0u\0l\0o\0s\0 \0r\0e\0c\0e\0i\0v\0e\0s\0 \0a\0 \0y\0e\0l\0l\0o\0w\0 \0c\0a\0r\0d\0 \0i\0n\0 \0t\0o\0d\0a\0y\0\'\0s\0 \0m\0a\0t\0c\0h\0,\0 \0h\0e\0 \0w\0i\0l\0l\0 \0b\0e\0 \0s\0u\0s\0p\0e\0n\0d\0e\0d\0 \0a\0f\0t\0e\0r\0 \0c\0o\0l\0l\0e\0c\0t\0i\0n\0g\0 \07\0 \0y\0e\0l\0l\0o\0w\0 \0c\0a\0r\0d\0s\0 \0s\0o\0 \0f\0a\0r\0 \0t\0h\0i\0s\0 \0s\0e\0a\0s\0o\0n\0.\0\"\0,\0\"\0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0\'\0s\0 \0a\0w\0a\0y\0 \0r\0e\0c\0o\0r\0d\0 \0t\0h\0i\0s\0 \0s\0e\0a\0s\0o\0n\0:\0 \01\0-\02\0-\05\0.\0\"\0,\0\"\0T\0h\0e\0 \0m\0o\0s\0t\0 \0c\0o\0m\0m\0o\0n\0 \0r\0e\0s\0u\0l\0t\0 \0o\0f\0 \0m\0a\0t\0c\0h\0e\0s\0 \0b\0e\0t\0w\0e\0e\0n\0 \0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0a\0n\0d\0 \0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0i\0s\0 \00\0-\01\0.\0 \05\0 \0m\0a\0t\0c\0h\0e\0s\0 \0h\0a\0v\0e\0 \0e\0n\0d\0e\0d\0 \0w\0i\0t\0h\0 \0t\0h\0i\0s\0 \0r\0e\0s\0u\0l\0t\0.\0\"\0,\0\"\0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0w\0i\0n\0s\0 \01\0s\0t\0 \0h\0a\0l\0f\0 \0i\0n\0 \02\07\0%\0 \0o\0f\0 \0t\0h\0e\0i\0r\0 \0m\0a\0t\0c\0h\0e\0s\0,\0 \0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0i\0n\0 \02\03\0%\0 \0o\0f\0 \0t\0h\0e\0i\0r\0 \0m\0a\0t\0c\0h\0e\0s\0.\0\"\0,\0\"\0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0w\0i\0n\0s\0 \02\07\0%\0 \0o\0f\0 \0h\0a\0l\0f\0t\0i\0m\0e\0s\0,\0 \0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0w\0i\0n\0s\0 \02\03\0%\0.\0\"\0,\0\"\0B\0o\0t\0h\0 \0t\0e\0a\0m\0s\0 \0l\0o\0s\0t\0 \0t\0h\0e\0i\0r\0 \0l\0a\0s\0t\0 \0m\0a\0t\0c\0h\0.\0\"\0,\0\"\0B\0o\0t\0h\0 \0t\0e\0a\0m\0s\0 \0h\0a\0v\0e\0n\0\'\0t\0 \0w\0o\0n\0 \0t\0h\0e\0i\0r\0 \0l\0a\0s\0t\0 \0m\0a\0t\0c\0h\0 \0i\0n\0 \0S\0u\0p\0e\0r\0 \0L\0e\0a\0g\0u\0e\0.\0\"\0,\0\"\0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0\'\0s\0 \0p\0e\0r\0f\0o\0r\0m\0a\0n\0c\0e\0 \0o\0f\0 \0t\0h\0e\0 \0l\0a\0s\0t\0 \05\0 \0m\0a\0t\0c\0h\0e\0s\0 \0i\0s\0 \0b\0e\0t\0t\0e\0r\0 \0t\0h\0a\0n\0 \0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0\'\0s\0.\0\"\0,\0\"\0I\0n\0 \0S\0u\0p\0e\0r\0 \0L\0e\0a\0g\0u\0e\0,\0 \0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0h\0a\0s\0 \0b\0e\0t\0t\0e\0r\0 \0p\0e\0r\0f\0o\0r\0m\0a\0n\0c\0e\0 \0t\0h\0a\0n\0 \0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0.\0\"\0,\0\"\0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0h\0a\0v\0e\0 \0l\0o\0s\0t\0 \0j\0u\0s\0t\0 \00\0 \0o\0f\0 \0t\0h\0e\0i\0r\0 \0l\0a\0s\0t\0 \05\0 \0S\0u\0p\0e\0r\0 \0L\0e\0a\0g\0u\0e\0 \0g\0a\0m\0e\0s\0 \0a\0g\0a\0i\0n\0s\0t\0 \0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0.\0\"\0,\0\"\0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0h\0a\0v\0e\0 \0w\0o\0n\0 \0j\0u\0s\0t\0 \00\0 \0o\0f\0 \0t\0h\0e\0i\0r\0 \0l\0a\0s\0t\0 \05\0 \0S\0u\0p\0e\0r\0 \0L\0e\0a\0g\0u\0e\0 \0g\0a\0m\0e\0s\0 \0a\0g\0a\0i\0n\0s\0t\0 \0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0.\0\"\0,\0\"\0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0h\0a\0v\0e\0 \0l\0o\0s\0t\0 \0j\0u\0s\0t\0 \00\0 \0o\0f\0 \0t\0h\0e\0i\0r\0 \0l\0a\0s\0t\0 \05\0 \0g\0a\0m\0e\0s\0 \0a\0g\0a\0i\0n\0s\0t\0 \0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0(\0i\0n\0 \0a\0l\0l\0 \0c\0o\0m\0p\0e\0t\0i\0t\0i\0o\0n\0s\0)\0.\0\"\0,\0\"\0I\0n\0 \0t\0h\0e\0 \0l\0a\0s\0t\0 \05\0 \0m\0e\0e\0t\0i\0n\0g\0s\0 \0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0w\0o\0n\0 \02\0,\0 \0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0w\0o\0n\0 \00\0,\0 \03\0 \0d\0r\0a\0w\0s\0.\0\"\0,\0\"\0T\0h\0e\0i\0r\0 \0l\0a\0s\0t\0 \0m\0e\0e\0t\0i\0n\0g\0 \0w\0a\0s\0 \0a\0 \0d\0r\0a\0w\0.\0 \0(\00\0-\00\0)\0\"\0,\0\"\0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0s\0c\0o\0r\0e\0s\0 \01\0 \0g\0o\0a\0l\0s\0 \0i\0n\0 \0a\0 \0m\0a\0t\0c\0h\0 \0a\0g\0a\0i\0n\0s\0t\0 \0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0a\0n\0d\0 \0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0s\0c\0o\0r\0e\0s\0 \00\0.\02\0 \0g\0o\0a\0l\0s\0 \0a\0g\0a\0i\0n\0s\0t\0 \0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0(\0o\0n\0 \0a\0v\0e\0r\0a\0g\0e\0)\0.\0\"\0,\0\"\0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0s\0c\0o\0r\0e\0s\0 \01\0.\01\06\0 \0g\0o\0a\0l\0s\0 \0w\0h\0e\0n\0 \0p\0l\0a\0y\0i\0n\0g\0 \0a\0t\0 \0h\0o\0m\0e\0 \0a\0n\0d\0 \0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0s\0c\0o\0r\0e\0s\0 \01\0.\01\06\0 \0g\0o\0a\0l\0s\0 \0w\0h\0e\0n\0 \0p\0l\0a\0y\0i\0n\0g\0 \0a\0w\0a\0y\0 \0(\0o\0n\0 \0a\0v\0e\0r\0a\0g\0e\0)\0.\0\"\0,\0\"\0A\0v\0e\0r\0a\0g\0e\0 \0n\0u\0m\0b\0e\0r\0 \0o\0f\0 \0g\0o\0a\0l\0s\0 \0i\0n\0 \0m\0e\0e\0t\0i\0n\0g\0s\0 \0b\0e\0t\0w\0e\0e\0n\0 \0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0a\0n\0d\0 \0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0i\0s\0 \01\0.\02\0.\0\"\0,\0\"\0W\0h\0e\0n\0 \0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0l\0e\0a\0d\0s\0 \01\0-\00\0 \0a\0t\0 \0h\0o\0m\0e\0,\0 \0t\0h\0e\0y\0 \0w\0i\0n\0 \0i\0n\0 \07\02\0%\0 \0o\0f\0 \0t\0h\0e\0i\0r\0 \0m\0a\0t\0c\0h\0e\0s\0.\0\"\0,\0\"\0W\0h\0e\0n\0 \0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0l\0e\0a\0d\0s\0 \00\0-\01\0 \0a\0w\0a\0y\0,\0 \0t\0h\0e\0y\0 \0w\0i\0n\0 \0i\0n\0 \07\05\0%\0 \0o\0f\0 \0t\0h\0e\0i\0r\0 \0m\0a\0t\0c\0h\0e\0s\0.\0\"\0,\0\"\0W\0h\0e\0n\0 \0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0i\0s\0 \0d\0o\0w\0n\0 \00\0-\01\0 \0h\0o\0m\0e\0,\0 \0t\0h\0e\0y\0 \0w\0i\0n\0 \00\0%\0 \0o\0f\0 \0t\0h\0e\0i\0r\0 \0m\0a\0t\0c\0h\0e\0s\0.\0\"\0,\0\"\0W\0h\0e\0n\0 \0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0i\0s\0 \0d\0o\0w\0n\0 \01\0-\00\0 \0a\0w\0a\0y\0,\0 \0t\0h\0e\0y\0 \0w\0i\0n\0 \00\0%\0 \0o\0f\0 \0t\0h\0e\0i\0r\0 \0m\0a\0t\0c\0h\0e\0s\0.\0\"\0,\0\"\0A\0v\0e\0r\0a\0g\0e\0 \0n\0u\0m\0b\0e\0r\0 \0o\0f\0 \0g\0o\0a\0l\0s\0 \0i\0n\0 \0t\0h\0e\0 \0f\0i\0r\0s\0t\0 \0h\0a\0l\0f\0 \0i\0n\0 \0m\0e\0e\0t\0i\0n\0g\0s\0 \0b\0e\0t\0w\0e\0e\0n\0 \0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0a\0n\0d\0 \0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0i\0s\0 \00\0.\04\0.\0\"\0,\0\"\0B\0o\0t\0h\0 \0t\0e\0a\0m\0s\0 \0d\0i\0d\0n\0\'\0t\0 \0s\0c\0o\0r\0e\0 \0o\0n\0 \0t\0h\0e\0i\0r\0 \0l\0a\0s\0t\0 \0m\0a\0t\0c\0h\0.\0\"\0,\0\"\0T\0h\0e\0 \0m\0o\0s\0t\0 \0c\0o\0m\0m\0o\0n\0 \0e\0n\0d\0-\0r\0e\0s\0u\0l\0t\0 \0w\0h\0e\0n\0 \0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0l\0e\0a\0d\0s\0 \01\0-\00\0 \0a\0t\0 \0h\0o\0m\0e\0 \0t\0h\0i\0s\0 \0s\0e\0a\0s\0o\0n\0 \0i\0s\0 \01\0-\00\0.\0\"\0,\0\"\0T\0h\0i\0s\0 \0w\0a\0s\0 \0 \0S\0o\0t\0i\0r\0i\0s\0 \0T\0s\0i\0l\0o\0u\0l\0i\0s\0\'\0s\0 \05\0t\0h\0 \0y\0e\0l\0l\0o\0w\0 \0c\0a\0r\0d\0 \0f\0o\0r\0 \0t\0h\0e\0 \0s\0e\0a\0s\0o\0n\0.\0\"\0,\0\"\0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0h\0a\0v\0e\0 \0c\0o\0n\0c\0e\0d\0e\0d\0 \0a\0 \0g\0o\0a\0l\0 \0i\0n\0 \0e\0a\0c\0h\0 \0o\0f\0 \0t\0h\0e\0i\0r\0 \0l\0a\0s\0t\0 \05\0 \0m\0a\0t\0c\0h\0e\0s\0.\0\"\0,\0\"\0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0h\0a\0v\0e\0 \0a\0 \0l\0o\0s\0i\0n\0g\0 \0s\0t\0r\0e\0a\0k\0 \0o\0f\0 \03\0 \0m\0a\0t\0c\0h\0e\0s\0 \0i\0n\0 \0S\0u\0p\0e\0r\0 \0L\0e\0a\0g\0u\0e\0.\0\"\0,\0\"\0D\0u\0r\0i\0n\0g\0 \0t\0h\0e\0 \0l\0a\0s\0t\0 \01\02\0 \0m\0e\0e\0t\0i\0n\0g\0s\0 \0w\0i\0t\0h\0 \0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0p\0l\0a\0y\0i\0n\0g\0 \0a\0t\0 \0h\0o\0m\0e\0,\0 \0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0h\0a\0v\0e\0 \0w\0o\0n\0 \07\0 \0t\0i\0m\0e\0s\0,\0 \0t\0h\0e\0r\0e\0 \0h\0a\0v\0e\0 \0b\0e\0e\0n\0 \03\0 \0d\0r\0a\0w\0s\0 \0w\0h\0i\0l\0e\0 \0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0h\0a\0v\0e\0 \0w\0o\0n\0 \02\0 \0t\0i\0m\0e\0s\0.\0 \0T\0h\0e\0 \0g\0o\0a\0l\0 \0d\0i\0f\0f\0e\0r\0e\0n\0c\0e\0 \0i\0s\0 \02\00\0-\07\0 \0i\0n\0 \0f\0a\0v\0o\0u\0r\0 \0o\0f\0 \0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0.\0\"\0,\0\"\0I\0f\0 \0 \0M\0i\0c\0h\0a\0l\0i\0s\0 \0M\0a\0n\0i\0a\0s\0 \0s\0c\0o\0r\0e\0s\0 \0a\0g\0a\0i\0n\0s\0t\0 \0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0i\0t\0 \0w\0i\0l\0l\0 \0b\0e\0 \0h\0i\0s\0 \05\0t\0h\0 \0g\0o\0a\0l\0 \0f\0o\0r\0 \0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0t\0h\0i\0s\0 \0s\0e\0a\0s\0o\0n\0.\0\"\0,\0\"\0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0\'\0s\0 \0l\0a\0s\0t\0 \0a\0w\0a\0y\0 \0w\0i\0n\0 \0a\0g\0a\0i\0n\0s\0t\0 \0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0w\0a\0s\0 \0i\0n\0 \02\00\00\09\0.\0\"\0,\0\"\0L\0a\0s\0t\0 \0s\0e\0a\0s\0o\0n\0\'\0s\0 \0m\0a\0t\0c\0h\0e\0s\0:\0 \00\0-\00\0 \0(\0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0a\0t\0 \0h\0o\0m\0e\0)\0 \0a\0n\0d\0 \00\0-\01\0 \0(\0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0a\0t\0 \0h\0o\0m\0e\0)\0.\0\"\0,\0\"\0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0h\0a\0v\0e\0n\0\'\0t\0 \0s\0c\0o\0r\0e\0d\0 \0i\0n\0 \03\0 \0o\0f\0 \0t\0h\0e\0i\0r\0 \09\0 \0h\0o\0m\0e\0 \0m\0a\0t\0c\0h\0e\0s\0 \0i\0n\0 \0S\0u\0p\0e\0r\0 \0L\0e\0a\0g\0u\0e\0 \0t\0h\0i\0s\0 \0s\0e\0a\0s\0o\0n\0.\0\"\0,\0\"\0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0h\0a\0v\0e\0n\0\'\0t\0 \0s\0c\0o\0r\0e\0d\0 \0i\0n\0 \04\0 \0o\0f\0 \0t\0h\0e\0i\0r\0 \08\0 \0a\0w\0a\0y\0 \0m\0a\0t\0c\0h\0e\0s\0 \0i\0n\0 \0S\0u\0p\0e\0r\0 \0L\0e\0a\0g\0u\0e\0 \0t\0h\0i\0s\0 \0s\0e\0a\0s\0o\0n\0.\0\"\0,\0\"\0D\0u\0r\0i\0n\0g\0 \0t\0h\0e\0 \0l\0a\0s\0t\0 \02\05\0 \0m\0e\0e\0t\0i\0n\0g\0s\0,\0 \0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0h\0a\0v\0e\0 \0w\0o\0n\0 \09\0 \0t\0i\0m\0e\0s\0,\0 \0t\0h\0e\0r\0e\0 \0h\0a\0v\0e\0 \0b\0e\0e\0n\0 \04\0 \0d\0r\0a\0w\0s\0 \0w\0h\0i\0l\0e\0 \0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0h\0a\0v\0e\0 \0w\0o\0n\0 \01\02\0 \0t\0i\0m\0e\0s\0.\0 \0T\0h\0e\0 \0g\0o\0a\0l\0 \0d\0i\0f\0f\0e\0r\0e\0n\0c\0e\0 \0i\0s\0 \02\09\0-\02\08\0 \0i\0n\0 \0f\0a\0v\0o\0u\0r\0 \0o\0f\0 \0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0.\0\"\0,\0\"\0D\0i\0d\0 \0y\0o\0u\0 \0k\0n\0o\0w\0 \0t\0h\0a\0t\0 \0P\0a\0n\0i\0o\0n\0i\0o\0s\0 \0A\0t\0h\0e\0n\0s\0 \0s\0c\0o\0r\0e\0s\0 \03\05\0%\0 \0o\0f\0 \0t\0h\0e\0i\0r\0 \0g\0o\0a\0l\0s\0 \0b\0e\0t\0w\0e\0e\0n\0 \0t\0h\0e\0 \0m\0i\0n\0u\0t\0e\0s\0 \07\06\0-\09\00\0?\0\"\0,\0\"\0D\0i\0d\0 \0y\0o\0u\0 \0k\0n\0o\0w\0 \0t\0h\0a\0t\0 \0A\0s\0t\0e\0r\0a\0s\0 \0T\0r\0i\0p\0o\0l\0i\0s\0 \0s\0c\0o\0r\0e\0s\0 \03\06\0%\0 \0o\0f\0 \0t\0h\0e\0i\0r\0 \0g\0o\0a\0l\0s\0 \0b\0e\0t\0w\0e\0e\0n\0 \0t\0h\0e\0 \0m\0i\0n\0u\0t\0e\0s\0 \07\06\0-\09\00\0?\0\"\0]', 'en'),
(4, 'sr:match:16594213', '[\"\\ud648\\uad6c\\uc7a5\\uc5d0\\uc11c \\uacbd\\uae30\\ub97c \\ud560 \\uacbd\\uc6b0, \\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\ub294\\/\\uc740 \\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\uc640\\/\\uacfc\\uc758 \\ub9c8\\uc9c0\\ub9c9 8 \\ub9de\\ub300\\uacb0\\uc5d0\\uc11c \\uc9c0\\uc9c0 \\uc54a\\uc558\\uc2b5\\ub2c8\\ub2e4.\",\"\\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\ub294\\/\\uc740 \\uc774\\ubc88 \\uc2dc\\uc98c\\uc758 \\ud648\\uacbd\\uae30\\uc5d0\\uc11c \\uc9c4 \\uc801\\uc774 \\uc5c6\\uc5c8\\uc73c\\uba70 \\uc9c0\\uae08\\uc740 1-0\\uc73c\\ub85c \\ub9ac\\ub4dc\\ud558\\uace0 \\uc788\\uc2b5\\ub2c8\\ub2e4.\",\"\\ub9cc\\uc57d \\uc624\\ub298\\uc758 \\uacbd\\uae30\\uc5d0\\uc11c Konstantinos Triantafyllopoulos\\uac00\\/\\uc774 \\uc610\\ub85c\\uce74\\ub4dc\\ub97c \\ud55c \\uc7a5 \\ubc1b\\uc73c\\uba74 \\uadf8\\ub294 \\uc774\\ubc88 \\uc2dc\\uc98c\\uc5d0\\uc11c \\uc9c0\\uae08 \\uae4c\\uc9c0 7\\uc7a5 \\uc610\\ub85c\\uce74\\ub4dc\\ub97c \\ubc1b\\uc544 \\ucd9c\\uc7a5\\uc774 \\uc815\\uc9c0\\ub418\\uac8c \\ub429\\ub2c8\\ub2e4.\",\"\\uc774\\ubc88 \\uc2dc\\uc98c\\uc5d0\\uc11c \\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\uc758 \\uc6d0\\uc815 \\uacbd\\uae30 \\uae30\\ub85d: 1-2-5.\",\"\\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\uacfc\\/\\uc640 \\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\uc758 \\uacbd\\uae30\\uc5d0\\uc11c \\uac00\\uc7a5 \\ud754\\ud55c \\uacbd\\uae30 \\uacb0\\uacfc\\ub294 0-1 \\uc785\\ub2c8\\ub2e4. 5\\ud310 \\uacbd\\uae30\\uac00 \\ubaa8\\ub450 \\uc774 \\uacb0\\uacfc\\ub85c \\ub05d\\ub0ac\\uc2b5\\ub2c8\\ub2e4.\",\"\\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\ub294\\/\\uc740 \\uc804\\ubc18\\uc804\\uc5d0\\uc11c \\uacbd\\uae30\\uc758 27%\\ub97c \\uc774\\uacbc\\uace0, \\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\ub294\\/\\uc740 23%\\ub97c \\uc774\\uacbc\\ub2e4.\",\"\\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\ub294\\/\\uc740 \\ud558\\ud504\\ud0c0\\uc784\\uc758 27%\\ub97c \\uc774\\uacbc\\uace0, \\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\ub294\\/\\uc740 23%\\ub97c \\uc774\\uacbc\\ub2e4.\",\"\\ub450 \\ud300\\uc740 \\ubaa8\\ub450 \\uadf8\\ub4e4\\uc758 \\uc9c0\\ub09c \\uacbd\\uae30\\uc5d0\\uc11c \\ud328\\ud588\\ub2e4.\",\"\\ub450 \\ud300\\uc740 \\ubaa8\\ub450 \\uadf8\\ub4e4\\uc758 \\uc9c0\\ub09c \\uc218\\ud37c \\ub9ac\\uadf8 \\uacbd\\uae30\\uc5d0\\uc11c \\uc774\\uae30\\uc9c0 \\ubabb\\ud588\\ub2e4.\",\"\\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\'s performance of the last 5 matches is better than \\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\'s.\",\"\\uc218\\ud37c \\ub9ac\\uadf8\\uc5d0\\uc11c \\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\uc758 \\ucd5c\\uadfc \\uc2e4\\uc801\\uc740 \\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\ubcf4\\ub2e4 \\uc88b\\ub2e4.\",\"\\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\uc740\\/\\ub294 \\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\uc640\\/\\uacfc\\uc758 \\uc9c0\\ub09c 5 \\uc218\\ud37c \\ub9ac\\uadf8\\uc5d0\\uc11c 0\\ub9cc \\uc84c\\ub2e4.\",\"\\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\uc740\\/\\ub294 \\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\uc640\\/\\uacfc\\uc758 \\uc9c0\\ub09c 5 \\uc218\\ud37c \\ub9ac\\uadf8\\uc5d0\\uc11c 0\\ub9cc \\uc774\\uacbc\\ub2e4.\",\"\\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\uc740\\/\\ub294 \\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\uc640\\/\\uacfc\\uc758 \\uc9c0\\ub09c 5 \\uac8c\\uc784\\uc5d0\\uc11c 0\\ub9cc \\uc84c\\ub2e4.(\\ubaa8\\ub4e0 \\uacbd\\uae30\\uc5d0\\uc11c)\",\"\\uc9c0\\ub09c 5 \\ubbf8\\ud305\\uc5d0\\uc11c \\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\uc740\\/\\ub294 2 \\uc774\\uacbc\\uace0 \\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\uc740\\/\\ub294 0 \\uc774\\uacbc\\uace0 3 \\ubb34\\uc2b9\\ubd80 \\ud558\\uc600\\ub2e4.\",\"\\uc9c0\\ub09c \\ubbf8\\ud305\\uc740 \\ubb34\\uc2b9\\ubd80\\uc600\\ub2e4.(0-0)\",\"\\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\uc740\\/\\ub294 \\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\uc640\\/\\uacfc\\uc758 \\uacbd\\uae30\\uc5d0\\uc11c 1\\uace8 \\ub4dd\\uc810\\ud558\\uc600\\uace0 \\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac \\uc740\\/\\ub294 \\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\uc640\\/\\uacfc\\uc758 \\uacbd\\uae30\\uc5d0\\uc11c 0.2\\uace8 \\ub4dd\\uc810\\ud558\\uc600\\ub2e4. (\\ud3c9\\uade0)\",\"\\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\uc740\\/\\ub294 \\ud648 \\uacbd\\uae30\\uc5d0\\uc11c 1.16\\uace8 \\ub4dd\\uc810\\ud558\\uc600\\uace0 \\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\uc740\\/\\ub294 \\uc6d0\\uc815\\uacbd\\uae30\\uc5d0\\uc11c 1.16\\uace8 \\ub4dd\\uc810\\ud558\\uc600\\ub2e4.(\\ud3c9\\uade0)\",\"\\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\uc640\\/\\uacfc \\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\uc758 \\ubbf8\\ud305\\uc758 \\ud3c9\\uade0 \\ub4dd\\uc810\\uc740 1.2\\uace8\\uc774\\ub2e4.\",\"\\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\uc774\\/\\uac00 \\ud648\\uacbd\\uae30\\uc5d0\\uc11c 1-0\\uc73c\\ub85c \\ub9ac\\ub4dc\\ud560 \\ub54c \\uadf8\\ub4e4\\uc740 \\ub9e4\\uce58\\uc758 72% \\uc774\\uae34\\ub2e4.\",\"\\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\uc774\\/\\uac00 \\uc6d0\\uc815\\uacbd\\uae30\\uc5d0\\uc11c 0-1\\uc73c\\ub85c \\ub9ac\\ub4dc\\ud560 \\ub54c \\uadf8\\ub4e4\\uc740 \\ub9e4\\uce58\\uc758 75% \\uc774\\uae34\\ub2e4.\",\"\\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\uc774\\/\\uac00 \\ud648\\uacbd\\uae30\\uc5d0\\uc11c 0-1\\ub85c \\ub4a4\\uc9c8 \\ub54c \\uadf8\\ub4e4\\uc740 \\ub9e4\\uce58\\uc758 0% \\uc774\\uae34\\ub2e4.\",\"\\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\uc774\\/\\uac00 \\uc6d0\\uc815\\uacbd\\uae30\\uc5d0\\uc11c 1-0\\uc73c\\ub85c \\ub4a4\\uc9c8 \\ub54c \\uadf8\\ub4e4\\uc740 \\ub9e4\\uce58\\uc758 0% \\uc774\\uae34\\ub2e4.\",\"\\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\uc640\\/\\uacfc \\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\uc758 \\ubbf8\\ud305\\uc5d0\\uc11c\\uc758 \\uc804\\ubc18\\uc804 \\ud3c9\\uade0 \\ub4dd\\uc810\\uc740 0.4\\uace8 \\uc774\\ub2e4.\",\"\\ub450 \\ud300\\uc740 \\ubaa8\\ub450 \\uadf8\\ub4e4\\uc758 \\uc9c0\\ub09c \\uacbd\\uae30\\uc5d0\\uc11c \\ub4dd\\uc810\\ud558\\uc9c0 \\ubabb\\ud588\\ub2e4.\",\"\\uc774\\ubc88 \\uc2dc\\uc98c\\uc5d0\\uc11c \\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\uac00\\/\\uc774 1-0\\uc73c\\ub85c \\ud648\\uacbd\\uae30\\uc5d0\\uc11c \\uc2b9\\ub9ac\\ub97c \\uac70\\ub450\\uac8c \\ub418\\uba74 \\uac00\\uc7a5 \\ud754\\ud55c \\ucd5c\\uc885 \\uacb0\\uacfc\\ub294 1-0\\uc785\\ub2c8\\ub2e4.\",\"\\uc774\\ub294 Sotiris Tsiloulis\\uac00\\/\\uc774 \\uc774\\ubc88 \\uc2dc\\uc98c\\uc5d0\\uc11c \\ubc1b\\uc740 5\\ubc88\\uc9f8 \\uc610\\ub85c\\uce74\\ub4dc \\uc785\\ub2c8\\ub2e4.\",\"\\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\ub294\\/\\uc740 \\uadf8\\ub4e4\\uc758 \\ub9c8\\uc9c0\\ub9c9 5 \\uacbd\\uae30\\uc5d0\\uc11c \\ubaa8\\ub450 \\uace8\\uc744 \\ub0b4\\uc8fc\\uc5c8\\uc2b5\\ub2c8\\ub2e4.\",\"\\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\ub294\\/\\uc740 \\uc218\\ud37c \\ub9ac\\uadf8\\uc5d0\\uc11c 3\\ubc88 \\uc5f0\\ud328 \\ud558\\uc600\\uc2b5\\ub2c8\\ub2e4.\",\"\\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\uc640\\/\\uacfc\\uc758 \\ub9c8\\uc9c0\\ub9c9 12\\ud310\\uc758 \\ud648\\uacbd\\uae30\\uc5d0\\uc11c \\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\ub294\\/\\uc740 7\\ud310 \\uc774\\uacbc\\uace0, 3\\ud310\\uc740 \\ubb34\\uc2b9\\ubd80\\uc600\\uc73c\\uba70 \\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\uac00\\/\\uc774 2\\ud310 \\uc774\\uacbc\\uc2b5\\ub2c8\\ub2e4. \\ub450 \\ud300\\uc758 \\ub4dd\\uc810\\ucc28\\ub294 20-7\\uc810\\uc73c\\ub85c \\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\uc758 \\ub4dd\\uc810\\uc774 \\ub9ce\\uc558\\uc2b5\\ub2c8\\ub2e4.\",\"\\ub9cc\\uc57d Michalis Manias\\uac00\\/\\uc774 \\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\uacfc\\/\\uc640\\uc758 \\uc2dc\\ud569\\uc5d0\\uc11c \\ub4dd\\uc810\\uc744 \\ud558\\uac8c \\ub418\\uba74 \\uc774\\ub294 \\uadf8\\uac00 \\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\ub97c\\/\\uc744 \\uc704\\ud574 \\uc774\\ubc88 \\uc2dc\\uc98c\\uc5d0\\uc11c \\ub123\\uc740 5\\ubc88\\uc9f8 \\uace8\\uc774 \\ub420 \\uac83\\uc785\\ub2c8\\ub2e4.\",\"2009\\uc5d0 \\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\ub294\\/\\uc740 \\ub9c8\\uc9c0\\ub9c9 \\uc6d0\\uc815 \\uacbd\\uae30\\uc5d0\\uc11c \\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\uacfc\\/\\uc640 \\ub9de\\ub300\\uacb0\\ud558\\uc5ec \\uc2b9\\ub9ac\\ub97c \\uac70\\ub450\\uc5c8\\uc2b5\\ub2c8\\ub2e4.\",\"\\ub9c8\\uc9c0\\ub9c9 \\uc2dc\\uc98c \\uacbd\\uae30: 0-0 (\\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124 \\ud648 \\uacbd\\uae30)\\uc640 0-1 (\\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac \\ud648 \\uacbd\\uae30).\",\"\\uc774\\ubc88 \\uc2dc\\uc98c\\uc758 \\uc218\\ud37c \\ub9ac\\uadf8\\uc5d0\\uc11c \\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\ub294\\/\\uc740 \\uadf8\\ub4e4\\uc758 3\\uc911 9\\ud310 \\ud648\\uacbd\\uae30\\uc5d0\\uc11c \\ub4dd\\uc810\\uc744 \\ud558\\uc9c0 \\ubabb\\ud588\\uc2b5\\ub2c8\\ub2e4.\",\"\\uc774\\ubc88 \\uc2dc\\uc98c\\uc758 \\uc218\\ud37c \\ub9ac\\uadf8\\uc5d0\\uc11c \\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\ub294\\/\\uc740 \\uadf8\\ub4e4\\uc758 4\\uc911 8\\ud310 \\uc6d0\\uc815 \\uacbd\\uae30\\uc5d0\\uc11c \\ub4dd\\uc810\\uc744 \\ud558\\uc9c0 \\ubabb\\ud588\\uc2b5\\ub2c8\\ub2e4.\",\"\\ub9c8\\uc9c0\\ub9c9 25\\ud310\\uc758 \\uacbd\\uae30\\uc5d0\\uc11c \\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\ub294\\/\\uc740 9\\ud310 \\uc774\\uacbc\\uace0, 4\\ud310\\uc740 \\ubb34\\uc2b9\\ubd80\\uc600\\uc73c\\uba70 \\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\uac00\\/\\uc774 12\\ud310 \\uc774\\uacbc\\uc2b5\\ub2c8\\ub2e4. \\ub450 \\ud300\\uc758 \\ub4dd\\uc810\\ucc28\\ub294 29-28\\uc810\\uc73c\\ub85c \\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\uc758 \\ub4dd\\uc810\\uc774 \\ub9ce\\uc558\\uc2b5\\ub2c8\\ub2e4.\",\"\\ud30c\\ub2c8\\uc624\\ub2c8\\uc624\\uc2a4 \\uc544\\ud14c\\ub124\\uac00\\/\\uc774 76-90\\ubd84 \\uc0ac\\uc774\\uc5d0 35%\\uc758 \\uace8\\uc744 \\ub123\\uc5c8\\ub2e4\\ub294 \\uac83\\uc744 \\uc544\\uc2ed\\ub2c8\\uae4c?\",\"\\uc544\\uc2a4\\ud14c\\ub77c\\uc2a4 \\ud2b8\\ub9ac\\ud3f4\\ub9ac\\uac00\\/\\uc774 76-90\\ubd84 \\uc0ac\\uc774\\uc5d0 36%\\uc758 \\uace8\\uc744 \\ub123\\uc5c8\\ub2e4\\ub294 \\uac83\\uc744 \\uc544\\uc2ed\\ub2c8\\uae4c?\"]', 'ko');
-- --------------------------------------------------------
--
-- Table structure for table `menus`
--
CREATE TABLE `menus` (
`id` int(11) NOT NULL,
`name` varchar(191) DEFAULT NULL,
`slug` varchar(191) DEFAULT NULL,
`description` blob NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `menus`
--
INSERT INTO `menus` (`id`, `name`, `slug`, `description`, `created_at`, `updated_at`) VALUES
(1, 'EXTRA MENU', 'extra-menu', 0x3c64697620616c69676e3d226a757374696679223e3c64697620616c69676e3d226a757374696679223e3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b223e3c666f6e7420636f6c6f723d22233030303030302220666163653d224f70656e2053616e732c20417269616c2c2073616e732d7365726966223e49742069732061206c6f6e672065737461626c6973686564206661637420746861742061207265616465722077696c6c206265206469737472616374656420627920746865207265616461626c6520636f6e74656e74206f6620612070616765207768656e206c6f6f6b696e6720617420697473206c61796f75742e2054686520706f696e74206f66207573696e67204c6f72656d20497073756d2069732074686174206974206861732061206d6f72652d6f722d6c657373206e6f726d616c20646973747269627574696f6e206f66206c6574746572732c206173206f70706f73656420746f207573696e672027436f6e74656e7420686572652c20636f6e74656e742068657265272c206d616b696e67206974206c6f6f6b206c696b65207265616461626c6520456e676c6973682e204d616e79206465736b746f70207075626c697368696e67207061636b6167657320616e6420776562207061676520656469746f7273206e6f7720757365204c6f72656d20497073756d2061732074686569722064656661756c74206d6f64656c20746578742c20616e6420612073656172636820666f7220276c6f72656d20697073756d272077696c6c20756e636f766572206d616e7920776562207369746573207374696c6c20696e20746865697220696e66616e63792e266e6273703b3c2f666f6e743e3c2f703e3c703e3c2f703e3c703e3c2f703e3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b223e3c666f6e7420636f6c6f723d22233030303030302220666163653d224f70656e2053616e732c20417269616c2c2073616e732d7365726966223e3c623e49742069732061206c6f6e672065737461626c6973686564206661637420746861742061207265616465722077696c6c206265206469737472616374656420627920746865207265616461626c6520636f6e74656e74206f6620612070616765207768656e206c6f6f6b696e6720617420697473206c61796f75742e203c2f623e54686520706f696e74206f66207573696e67204c6f72656d20497073756d2069732074686174206974206861732061206d6f72652d6f722d6c657373206e6f726d616c20646973747269627574696f6e206f66206c6574746572732c206173206f70706f73656420746f207573696e672027436f6e74656e7420686572652c20636f6e74656e742068657265272c206d616b696e67206974206c6f6f6b206c696b65207265616461626c6520456e676c6973682e204d616e79206465736b746f70207075626c697368696e67207061636b6167657320616e6420776562207061676520656469746f7273206e6f7720757365204c6f72656d20497073756d2061732074686569722064656661756c74206d6f64656c20746578742c20616e6420612073656172636820666f7220276c6f72656d20697073756d272077696c6c20756e636f766572206d616e7920776562207369746573207374696c6c20696e20746865697220696e66616e63792e20566172696f75732076657273696f6e7320686176652065766f6c766564206f766572207468652079656172732c20736f6d6574696d6573206279206163636964656e742c20736f6d6574696d6573206f6e20707572706f73652028696e6a65637465642068756d6f757220616e6420746865206c696b65292e3c2f666f6e743e3c2f703e3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b223e3c623e3c62723e3c2f623e3c2f703e3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b223e3c666f6e7420636f6c6f723d22233030303030302220666163653d224f70656e2053616e732c20417269616c2c2073616e732d7365726966223e3c623e49742069732061206c6f6e672065737461626c6973686564206661637420746861742061207265616465722077696c6c206265206469737472616374656420627920746865207265616461626c6520636f6e74656e74206f6620612070616765207768656e206c6f6f6b696e6720617420697473206c61796f75742e2054686520706f696e74206f66207573696e67204c6f72656d20497073756d2069732074686174206974206861732061206d6f72652d6f722d6c657373206e6f726d616c20646973747269627574696f6e206f66206c6574746572732c206173206f70706f73656420746f207573696e672027436f6e74656e7420686572652c20636f6e74656e742068657265272c206d616b696e67206974206c6f6f6b206c696b65207265616461626c6520456e676c6973682e204d616e79206465736b746f70207075626c697368696e67207061636b6167657320616e6420776562207061676520656469746f7273206e6f7720757365204c6f72656d202e3c2f623e3c2f666f6e743e3c2f703e3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b223e3c666f6e7420636f6c6f723d22233030303030302220666163653d224f70656e2053616e732c20417269616c2c2073616e732d7365726966223e3c62723e3c2f666f6e743e3c2f703e3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b223e3c666f6e7420636f6c6f723d22233030303030302220666163653d224f70656e2053616e732c20417269616c2c2073616e732d7365726966223e49742069732061206c6f6e672065737461626c6973686564206661637420746861742061207265616465722077696c6c206265206469737472616374656420627920746865207265616461626c6520636f6e74656e74206f6620612070616765207768656e206c6f6f6b696e6720617420697473206c61796f75742e2054686520706f696e74206f66207573696e67204c6f72656d20497073756d2069732074686174206974206861732061206d6f72652d6f722d6c657373206e6f726d616c20646973747269627574696f6e206f66206c6574746572732c206173206f70706f73656420746f207573696e672027436f6e74656e7420686572652c20636f6e74656e742068657265272c206d616b696e67206974206c6f6f6b206c696b65207265616461626c6520456e676c6973682e204d616e79206465736b746f70207075626c697368696e67207061636b6167657320616e6420776562207061676520656469746f7273206e6f7720757365204c6f72656d20497073756d2061732074686569722064656661756c74206d6f64656c20746578742c20616e6420612073656172636820666f7220276c6f72656d20697073756d272077696c6c20756e636f766572206d616e7920776562207369746573207374696c6c20696e20746865697220696e66616e63792e20566172696f75732076657273696f6e7320686176652065766f6c766564206f766572207468652079656172732c20736f6d6574696d6573206279206163636964656e742c20736f6d6574696d6573206f6e20707572706f73652028696e6a65637465642068756d6f757220616e6420746865206c696b65292e49742069732061206c6f6e672065737461626c6973686564206661637420746861742061207265616465722077696c6c206265206469737472616374656420627920746865207265616461626c6520636f6e74656e74206f6620612070616765207768656e206c6f6f6b696e6720617420697473206c61796f75742e2054686520706f696e74206f66207573696e67204c6f72656d20497073756d2069732074686174206974206861732061206d6f72652d6f722d6c657373206e6f726d616c20646973747269627574696f6e206f66206c6574746572732c206173206f70706f73656420746f207573696e672027436f6e74656e7420686572652c20636f6e74656e742068657265272c206d616b696e67206974206c6f6f6b206c696b65207265616461626c6520456e676c6973682e204d616e79206465736b746f70207075626c697368696e67207061636b6167657320616e6420776562207061676520656469746f7273206e6f7720757365204c6f72656d20497073756d2061732074686569722064656661756c74206d6f64656c20746578742c20616e6420612073656172636820666f7220276c6f72656d20697073756d272077696c6c20756e636f766572206d616e7920776562207369746573207374696c6c20696e20746865697220696e66616e63792e20566172696f75732076657273696f6e7320686176652065766f6c766564206f766572207468652079656172732c20736f6d6574696d6573206279206163636964656e742c20736f6d6574696d6573206f6e20707572706f73652028696e6a65637465642068756d6f757220616e6420746865206c696b65292e3c2f666f6e743e3c2f703e3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b223e3c666f6e7420636f6c6f723d22233030303030302220666163653d224f70656e2053616e732c20417269616c2c2073616e732d7365726966223e3c62723e3c2f666f6e743e3c2f703e3c70207374796c653d226d617267696e2d626f74746f6d3a20313570783b2070616464696e673a203070783b20636f6c6f723a2072676228302c20302c2030293b20666f6e742d66616d696c793a202671756f743b4f70656e2053616e732671756f743b2c20417269616c2c2073616e732d73657269663b223e3c62723e3c2f703e3c2f6469763e3c2f6469763e, '2018-05-04 08:26:57', '2018-07-29 10:13:03');
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2014_10_12_100000_create_password_resets_table', 2),
(3, '2018_05_15_060641_create_events_table', 2),
(4, '2018_05_15_073146_create_matches_table', 3),
(5, '2018_05_15_130147_create_bet_questions_table', 4),
(7, '2018_05_16_060816_create_bet_options_table', 5),
(8, '2018_05_23_102456_create_bet_invests_table', 6),
(9, '2018_07_29_151129_create_commission_logs_table', 7);
-- --------------------------------------------------------
--
-- Table structure for table `missing_players`
--
CREATE TABLE `missing_players` (
`id` int(11) NOT NULL,
`tournament_id` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`players` text COLLATE utf8_unicode_ci NOT NULL,
`language_code` varchar(191) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `missing_players`
--
INSERT INTO `missing_players` (`id`, `tournament_id`, `players`, `language_code`) VALUES
(1, 'sr:tournament:8', '[{\"team_id\":\"sr:competitor:2825\",\"players\":[{\"id\":\"sr:player:4581\",\"name\":\"\\ub77c\\uc6b8 \\uac00\\ub974\\uc2dc\\uc544\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:14250\",\"name\":\"\\uc544\\ub9ac\\uce20 \\uc544\\ub450\\ub9ac\\uc2a4\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:83247\",\"name\":\"\\ubbf8\\ucf08 \\ub9ac\\ucf54\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:791759\",\"name\":\"\\uc54c\\ub808\\ud55c\\ub4dc\\ub85c \\ub808\\ubbf8\\ub85c\",\"status\":\"missing\",\"reason\":\"other\"},{\"id\":\"sr:player:864636\",\"name\":\"\\uc774\\ub2c8\\uace0 \\ub808\\ucfe0\",\"status\":\"missing\",\"reason\":\"injured\"}]},{\"team_id\":\"sr:competitor:2833\",\"players\":[{\"id\":\"sr:player:11869\",\"name\":\"\\ud5e4\\uc218\\uc2a4 \\ub098\\ubc14\\uc2a4\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:82555\",\"name\":\"\\ub9c9\\uc2ec \\uace0\\ub0a0\\ub860\\uc2a4\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:88859\",\"name\":\"\\uc138\\ub974\\uc9c0\\uc624 \\uc5d0\\uc2a4\\ucfe0\\ub370\\ub85c\",\"status\":\"doubtful\",\"reason\":\"injured\"},{\"id\":\"sr:player:123977\",\"name\":\"\\ub9c8\\ub204\\uc5d8 \\ub180\\ub9ac\\ud1a0\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:350170\",\"name\":\"\\uc5d8 \\ud558\\ub2e4\\ub514 \\ubb34\\ub2c8\\ub974\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:921452\",\"name\":\"\\uc870\\ub9ac\\uc2a4 \\ub098\\ub18d\",\"status\":\"doubtful\",\"reason\":\"injured\"}]},{\"team_id\":\"sr:competitor:2818\",\"players\":[{\"id\":\"sr:player:14766\",\"name\":\"\\uace0\\ub974\\uce74 \\uc5d8\\ub8e8\\uc2a4\\ud1a4\\ub3c4\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:46387\",\"name\":\"\\uac00\\uc5d8 \\uce74\\ucfe0\\ud0c0\",\"status\":\"doubtful\",\"reason\":\"injured\"},{\"id\":\"sr:player:792103\",\"name\":\"\\uc54c\\ub809\\uc2a4 \\uc54c\\ub808\\uadf8\\ub9ac\\uc544\",\"status\":\"doubtful\",\"reason\":\"other\"}]},{\"team_id\":\"sr:competitor:2819\",\"players\":[{\"id\":\"sr:player:18248\",\"name\":\"\\ube0c\\ub8e8\\ub178 \\uc18c\\ub9ac\\uc544\\ub178\",\"status\":\"missing\",\"reason\":\"injured\"}]},{\"team_id\":\"sr:competitor:2821\",\"players\":[{\"id\":\"sr:player:19356\",\"name\":\"\\uc774\\uc544\\uace0 \\uc544\\uc2a4\\ud30c\\uc2a4\",\"status\":\"doubtful\",\"reason\":\"injured\"},{\"id\":\"sr:player:97967\",\"name\":\"\\uc624\\uce74\\uc774 \\uc694\\ucfe0\\uc274\\ub8e8\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:345333\",\"name\":\"\\ub2e4\\ube44\\ub4dc \\ucf54\\uc2a4\\ud0c0\\uc2a4\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:355572\",\"name\":\"\\uc5e0\\ub808 \\ubb34\\ub974\",\"status\":\"missing\",\"reason\":\"other\"}]},{\"team_id\":\"sr:competitor:2836\",\"players\":[{\"id\":\"sr:player:21212\",\"name\":\"\\ub514\\uc5d0\\uace0 \\ucf54\\uc2a4\\ud0c0\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:26029\",\"name\":\"\\ud544\\ub9ac\\ud398 \\ub8e8\\uc774\\uc2a4\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:76265\",\"name\":\"\\uc2a4\\ud14c\\ud310 \\uc0ac\\ube44\\uce58\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:84539\",\"name\":\"\\uc870\\ub974\\uc81c \\ucf54\\ucf00\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:129452\",\"name\":\"\\ub9c8\\uce5c \\ube44\\ud1a8\\ub85c\",\"status\":\"missing\",\"reason\":\"injured\"}]},{\"team_id\":\"sr:competitor:2885\",\"players\":[{\"id\":\"sr:player:24464\",\"name\":\"\\uc774\\ub204\\uc774 \\ud0c0\\uce74\\uc2dc\",\"status\":\"missing\",\"reason\":\"other\"},{\"id\":\"sr:player:168745\",\"name\":\"\\ub85c\\ub4dc\\ub9ac\\uace0 \\uc5d8\\ub9ac\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:547242\",\"name\":\"\\uc544\\ub4dc\\ub9ac\\uc548 \\ub9c8\\ub9b0\",\"status\":\"missing\",\"reason\":\"injured\"}]},{\"team_id\":\"sr:competitor:2839\",\"players\":[{\"id\":\"sr:player:28221\",\"name\":\"\\ud398\\ub4dc\\ub85c \\ub808\\uc628\",\"status\":\"missing\",\"reason\":\"injured\"}]},{\"team_id\":\"sr:competitor:2824\",\"players\":[{\"id\":\"sr:player:32946\",\"name\":\"\\ud5e5\\ud1a0\\ub974 \\ubaa8\\ub808\\ub178\",\"status\":\"doubtful\",\"reason\":\"injured\"},{\"id\":\"sr:player:234232\",\"name\":\"\\ucf00\\ube48 \\ub85c\\ub4dc\\ub9ac\\uac8c\\uc2a4\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:353238\",\"name\":\"\\uc548\\ub3c4\\ub2c8 \\uace0\\ub85c\\uc0ac\\ubca8\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:353252\",\"name\":\"\\ub9c8\\ub974\\ud2f4 \\uba54\\ub974\\ud020\\ub780\\uce20\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:353258\",\"name\":\"\\uc874 \\uadc0\\ub9ac\\ub514\",\"status\":\"missing\",\"reason\":\"other\"},{\"id\":\"sr:player:353262\",\"name\":\"\\uc874 \\ubc14\\uc6b0\\ud2f0\\uc2a4\\ud0c0\",\"status\":\"missing\",\"reason\":\"injured\"}]},{\"team_id\":\"sr:competitor:2814\",\"players\":[{\"id\":\"sr:player:33587\",\"name\":\"\\uc5d0\\ub974\\ub09c \\ud398\\ub808\\uc988\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:135116\",\"name\":\"\\ub2e4\\ub2c8 \\ub85c\\ud398\\uc988\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:156401\",\"name\":\"\\uc624\\uc2a4\\uce74 \\ub450\\uc544\\ub974\\ud14c\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:243719\",\"name\":\"\\ub098\\uc6b0\\ub450\",\"status\":\"missing\",\"reason\":\"injured\"}]},{\"team_id\":\"sr:competitor:2845\",\"players\":[{\"id\":\"sr:player:39320\",\"name\":\"\\ub8e8\\ubca4 \\ud398\\ub808\\uc988\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:42450\",\"name\":\"\\uc5d0\\uc81c\\ud0a4\\uc5d8 \\ubb34\\ub178\\uc988\",\"status\":\"doubtful\",\"reason\":\"injured\"},{\"id\":\"sr:player:158637\",\"name\":\"\\ub514\\uc5d0\\uace0 \\ub864\\ub780\",\"status\":\"missing\",\"reason\":\"other\"},{\"id\":\"sr:player:174519\",\"name\":\"\\uadc0\\ub3c4 \\uce74\\ub9ac\\uc694\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:178015\",\"name\":\"\\uc54c\\ub809\\uc0b0\\ub354 \\uc288\\uc9c0\\ub9c8\\ub189\\uc2a4\\ud0a4\",\"status\":\"missing\",\"reason\":\"injured\"}]},{\"team_id\":\"sr:competitor:2831\",\"players\":[{\"id\":\"sr:player:44679\",\"name\":\"\\ub450\\ud5e4 \\ucf65\",\"status\":\"doubtful\",\"reason\":\"injured\"},{\"id\":\"sr:player:383438\",\"name\":\"\\ub8e8\\uc774\\uc2a4\\ubbf8\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:547280\",\"name\":\"\\uc774\\ube44 \\uc54c\\ubc14\\ub808\\uc988\",\"status\":\"doubtful\",\"reason\":\"injured\"}]},{\"team_id\":\"sr:competitor:2859\",\"players\":[{\"id\":\"sr:player:53778\",\"name\":\"\\ub9c8\\ub974\\ucf08 \\ubca0\\ub974\\uac00\\ub77c\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:148352\",\"name\":\"\\uc2dc\\ubc14\\uc0ac\\ud0a4 \\uac00\\ucfe0\",\"status\":\"missing\",\"reason\":\"other\"},{\"id\":\"sr:player:605318\",\"name\":\"\\uc544\\ub9c8\\uc2a4 \\uc740\\ub514\\uc544\\uc608\",\"status\":\"missing\",\"reason\":\"injured\"}]},{\"team_id\":\"sr:competitor:24265\",\"players\":[{\"id\":\"sr:player:78520\",\"name\":\"\\ud540\\ud22c \\ub8e8\\uc774\\uc2dc\\ub274\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:803448\",\"name\":\"\\uace4\\uc0b4\\ub85c \\uba5c\\ub808\\ub85c\",\"status\":\"doubtful\",\"reason\":\"injured\"}]},{\"team_id\":\"sr:competitor:2817\",\"players\":[{\"id\":\"sr:player:96367\",\"name\":\"\\uc54c\\uce78\\ud0c0\\ub77c \\ud558\\ud53c\\ub0d0\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:96547\",\"name\":\"\\uc0ac\\ubb34\\uc5d8 \\uc6c0\\ud2f0\\ud2f0\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:361350\",\"name\":\"\\uc624\\uc2a4\\ub9cc \\ub380\\ubca8\\ub808\",\"status\":\"missing\",\"reason\":\"injured\"}]},{\"team_id\":\"sr:competitor:2828\",\"players\":[{\"id\":\"sr:player:96544\",\"name\":\"\\uc870\\ud504\\ub9ac \\ucf58\\ub3c4\\ube44\\uc544\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:129617\",\"name\":\"\\ub80c\\ub4dc\\ub85c \\uc544\\ub378\\ub780 \\uc0b0\\ud1a0\\uc2a4\",\"status\":\"missing\",\"reason\":\"other\"},{\"id\":\"sr:player:280979\",\"name\":\"\\uace4\\uce7c\\ub85c \\uac8c\\ub370\\uc2a4\",\"status\":\"doubtful\",\"reason\":\"injured\"}]},{\"team_id\":\"sr:competitor:24264\",\"players\":[{\"id\":\"sr:player:114154\",\"name\":\"\\uce74\\ub97c\\ub808\\uc2a4 \\ud50c\\ub77c\\ub098\\uc2a4\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:129472\",\"name\":\"\\ubcf4\\ub974\\ud558 \\uac00\\ub974\\uc2dc\\uc544\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:141897\",\"name\":\"\\ud504\\ub780\\uc2dc\\uc2a4\\ucf54 \\uc544\\ub2e4\\uc774\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:344847\",\"name\":\"\\uc694\\ud55c \\ubaa8\\ud788\\uce74\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:361326\",\"name\":\"\\ud328\\ud2b8\\ub9ad \\ub85c\\ubc84\\uce20\",\"status\":\"missing\",\"reason\":\"injured\"}]},{\"team_id\":\"sr:competitor:2849\",\"players\":[{\"id\":\"sr:player:217384\",\"name\":\"\\uc138\\ub974\\uc9c0\\uc624 \\ud3ec\\uc2a4\\ud2f0\\uace0\",\"status\":\"missing\",\"reason\":\"injured\"},{\"id\":\"sr:player:345193\",\"name\":\"\\ud638\\uc138 \\ub9c8\\ub204\\uc5d8 \\ucf00\\ub9c8\",\"status\":\"missing\",\"reason\":\"injured\"}]},{\"team_id\":\"sr:competitor:2829\",\"players\":[{\"id\":\"sr:player:355048\",\"name\":\"\\ud5e4\\uc218\\uc2a4 \\ubc14\\uc608\\ud638\",\"status\":\"missing\",\"reason\":\"injured\"}]},{\"team_id\":\"sr:competitor:2816\",\"players\":[{\"id\":\"sr:player:1137501\",\"name\":\"\\ud6c4\\ub2c8\\uc624\\ub974 \\ud53c\\ub974\\ud3ec\",\"status\":\"doubtful\",\"reason\":\"injured\"}]}]', 'ko');
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--
CREATE TABLE `password_resets` (
`id` int(11) NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `password_resets`
--
INSERT INTO `password_resets` (`id`, `email`, `token`, `created_at`, `updated_at`) VALUES
(1, '[email protected]', 'IFsbuBWs5ZgZcoQGMivzLXy8XCvOne', '2018-05-16 01:28:41', NULL),
(2, '[email protected]', 'fHkcBEMW78ef43pmSswx8kVHqLcgDx', '2018-05-23 00:19:47', NULL),
(3, '[email protected]', 'tNPjzNUcsdEYeSPCutmDy8VfbECMUY', '2018-05-23 00:28:28', NULL),
(4, '[email protected]', 'GXtEiyl8MGzNwMR5tNdRCEI7dTyuVX', '2018-05-27 16:02:22', NULL),
(5, '[email protected]', 'Z6sHQHOATk5fluqi0vAJeyqzEd0ZXz', '2018-05-27 05:54:38', NULL),
(6, '[email protected]', 'IDx0BrjOWN6p0FGFpmOdgG6wrdtqO2', '2018-05-28 21:20:01', NULL),
(7, '[email protected]', 'dD4UFej2PEFSEmBil48SJPw1l2zUSv', '2018-05-28 21:26:54', NULL),
(8, '[email protected]', 'gbchqenwrcLnZPhzdjAtpR92V8vwwm', '2018-05-28 21:51:15', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `referees`
--
CREATE TABLE `referees` (
`id` int(11) NOT NULL,
`referee_id` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`name` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`nationality` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`country_code` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`language_code` varchar(191) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `referees`
--
INSERT INTO `referees` (`id`, `referee_id`, `name`, `nationality`, `country_code`, `language_code`) VALUES
(3, 'sr:referee:285135', 'Tsamouris, Alexandros', '그리스', 'GRC', 'ko'),
(4, 'sr:referee:285135', 'Tsamouris, Alexandros', 'Greece', 'GRC', 'en');
-- --------------------------------------------------------
--
-- Table structure for table `seasons`
--
CREATE TABLE `seasons` (
`id` int(11) NOT NULL,
`season_id` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`tournament_id` varchar(191) CHARACTER SET utf8 NOT NULL,
`name` varchar(191) CHARACTER SET utf8 NOT NULL,
`start_date` date NOT NULL,
`end_date` date NOT NULL,
`year` varchar(191) CHARACTER SET utf8 NOT NULL,
`language_code` varchar(191) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `seasons`
--
INSERT INTO `seasons` (`id`, `season_id`, `tournament_id`, `name`, `start_date`, `end_date`, `year`, `language_code`) VALUES
(1, 'sr:season:58282', 'sr:tournament:335', 'Coupe de France 18/19', '2018-11-09', '2019-05-27', '18/19', 'ko'),
(2, 'sr:season:54373', 'sr:tournament:34', '리그 1 18/19', '2018-08-10', '2019-06-01', '18/19', 'ko'),
(3, 'sr:season:54533', 'sr:tournament:7', 'UEFA 챔피언스리그 18/19', '2018-06-26', '2019-06-02', '18/19', 'ko'),
(4, 'sr:season:55917', 'sr:tournament:8', '라리가 18/19', '2018-08-17', '2019-05-20', '18/19', 'ko'),
(5, 'sr:season:54571', 'sr:tournament:17', '프리미어 리그 18/19', '2018-08-10', '2019-05-13', '18/19', 'ko'),
(6, 'sr:season:55737', 'sr:tournament:23', '세리에 A 18/19', '2018-08-18', '2019-05-27', '18/19', 'ko'),
(7, 'sr:season:55017', 'sr:tournament:35', '분데스리가 18/19', '2018-08-24', '2019-05-28', '18/19', 'ko'),
(8, 'sr:season:54555', 'sr:tournament:37', '에레디비시 18/19', '2018-08-10', '2019-05-27', '18/19', 'ko'),
(9, 'sr:season:54539', 'sr:tournament:38', 'First Division A 18/19', '2018-07-27', '2019-05-30', '18/19', 'ko'),
(10, 'sr:season:55287', 'sr:tournament:52', '터키 1부 리그 18/19', '2018-08-10', '2019-05-26', '18/19', 'ko'),
(11, 'sr:season:55979', 'sr:tournament:185', '수퍼 리그 18/19', '2018-08-25', '2019-05-01', '18/19', 'ko'),
(12, 'sr:season:55279', 'sr:tournament:203', '러시아 프리미어리그 18/19', '2018-07-28', '2019-06-03', '18/19', 'ko'),
(13, 'sr:season:54563', 'sr:tournament:218', '프리미어리그 18/19', '2018-07-21', '2019-05-27', '18/19', 'ko'),
(14, 'sr:season:55243', 'sr:tournament:238', '프리메이라리가 18/19', '2018-08-10', '2019-05-19', '18/19', 'ko'),
(15, 'sr:season:54030', 'sr:tournament:465', 'UEFA 풋살 컵 2018', '2018-08-15', '2018-08-16', '2018', 'ko'),
(16, 'sr:season:54531', 'sr:tournament:679', 'UEFA 유로파 리그 18/19', '2018-06-26', '2019-05-30', '18/19', 'ko'),
(17, 'sr:season:57622', 'sr:tournament:2324', 'UEFA Youth League 18/19', '2018-09-18', '2019-04-30', '18/19', 'ko'),
(18, 'sr:season:50817', 'sr:tournament:23755', 'UEFA Nations League 18/19', '2018-09-06', '2019-06-10', '2018', 'ko'),
(19, 'sr:season:55979', 'sr:tournament:185', 'Super League 18/19', '2018-08-25', '2019-05-01', '18/19', 'en');
-- --------------------------------------------------------
--
-- Table structure for table `season_coverage_infos`
--
CREATE TABLE `season_coverage_infos` (
`id` int(11) NOT NULL,
`season_id` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`scheduled` int(11) NOT NULL,
`played` int(11) NOT NULL,
`max_coverage_level` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`max_covered` int(11) NOT NULL,
`min_coverage_level` varchar(191) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `season_coverage_infos`
--
INSERT INTO `season_coverage_infos` (`id`, `season_id`, `scheduled`, `played`, `max_coverage_level`, `max_covered`, `min_coverage_level`) VALUES
(50, 'sr:season:57622', 152, 144, 'gold', 1, 'silver'),
(49, 'sr:season:54531', 459, 459, 'gold', 229, 'silver'),
(48, 'sr:season:54030', 1, 1, 'gold', 1, 'gold'),
(47, 'sr:season:55243', 306, 171, 'gold', 171, 'gold'),
(46, 'sr:season:54563', 133, 109, 'gold', 108, 'silver'),
(44, 'sr:season:55979', 249, 152, 'gold', 143, 'silver'),
(45, 'sr:season:55279', 243, 137, 'gold', 135, 'bronze'),
(43, 'sr:season:55287', 306, 171, 'gold', 171, 'gold'),
(41, 'sr:season:54555', 307, 172, 'gold', 172, 'gold'),
(42, 'sr:season:54539', 244, 184, 'gold', 99, 'silver'),
(40, 'sr:season:55017', 309, 171, 'platinum', 171, 'platinum'),
(39, 'sr:season:54373', 396, 232, 'platinum', 217, 'silver'),
(38, 'sr:season:55737', 383, 212, 'platinum', 210, 'silver'),
(37, 'sr:season:54571', 380, 240, 'platinum', 240, 'platinum'),
(36, 'sr:season:55917', 383, 211, 'platinum', 210, 'silver'),
(35, 'sr:season:54533', 188, 188, 'platinum', 96, 'bronze'),
(51, 'sr:season:50817', 138, 138, 'platinum', 24, 'silver');
-- --------------------------------------------------------
--
-- Table structure for table `services`
--
CREATE TABLE `services` (
`id` int(10) UNSIGNED NOT NULL,
`icon` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`details` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `services`
--
INSERT INTO `services` (`id`, `icon`, `details`, `created_at`, `updated_at`) VALUES
(1, '<i class=\"fa fa-headphones\"></i>', '24/7 Customer Support', NULL, '2018-04-24 12:26:35'),
(2, '<i class=\"fa fa-envelope\"></i>', '[email protected]', NULL, NULL),
(3, '<i class=\"fa fa-comments-o\"></i>', '\r\nFriendly Support Ticket', NULL, NULL),
(4, '<i class=\"fa fa-phone\"></i>', '+88-0100-44-22-00', NULL, '2018-05-27 05:35:16');
-- --------------------------------------------------------
--
-- Table structure for table `sliders`
--
CREATE TABLE `sliders` (
`id` int(10) UNSIGNED NOT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`sub_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `sliders`
--
INSERT INTO `sliders` (`id`, `title`, `sub_title`, `description`, `image`, `created_at`, `updated_at`) VALUES
(2, 'WELCOME TO MAMA SERVER', 'Why do we use it?', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters,', 'slider_1523783387.jpg', '2018-04-15 03:09:48', '2018-04-15 03:09:48'),
(3, 'THR SOFT KING', 'Why do we use it?', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters,', 'slider_1523783406.jpg', '2018-04-15 03:10:06', '2018-04-15 03:10:06'),
(4, 'BUILD YOUR DREAM WEBSITE WITH', 'Why do we use it?', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters,', 'slider_1523783431.jpg', '2018-04-15 03:10:32', '2018-04-15 03:10:32');
-- --------------------------------------------------------
--
-- Table structure for table `soccers`
--
CREATE TABLE `soccers` (
`id` int(10) UNSIGNED NOT NULL,
`match_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`scheduled` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`season` text COLLATE utf8mb4_unicode_ci,
`venue` text COLLATE utf8mb4_unicode_ci,
`tournament` text COLLATE utf8mb4_unicode_ci,
`competitors` text COLLATE utf8mb4_unicode_ci,
`tournament_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`tournament_round` text COLLATE utf8mb4_unicode_ci,
`tournament_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`start_date` datetime NOT NULL,
`end_date` datetime NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `soccers`
--
INSERT INTO `soccers` (`id`, `match_id`, `scheduled`, `season`, `venue`, `tournament`, `competitors`, `tournament_id`, `tournament_round`, `tournament_name`, `start_date`, `end_date`, `status`, `created_at`, `updated_at`) VALUES
(2979, '15109331', '2019-01-13T11:00:00+00:00', 'O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"sr:season:55917\";s:4:\"name\";s:12:\"LaLiga 18/19\";s:10:\"start_date\";s:10:\"2018-08-17\";s:8:\"end_date\";s:10:\"2019-05-20\";s:4:\"year\";s:5:\"18/19\";s:13:\"tournament_id\";s:15:\"sr:tournament:8\";}', 'O:8:\"stdClass\":7:{s:2:\"id\";s:14:\"sr:venue:21414\";s:4:\"name\";s:19:\"Wanda Metropolitano\";s:8:\"capacity\";i:67829;s:9:\"city_name\";s:6:\"Madrid\";s:12:\"country_name\";s:5:\"Spain\";s:15:\"map_coordinates\";s:19:\"40.436111,-3.599444\";s:12:\"country_code\";s:3:\"ESP\";}', 'O:8:\"stdClass\":4:{s:2:\"id\";s:15:\"sr:tournament:8\";s:4:\"name\";s:6:\"LaLiga\";s:5:\"sport\";O:8:\"stdClass\":2:{s:2:\"id\";s:10:\"sr:sport:1\";s:4:\"name\";s:6:\"Soccer\";}s:8:\"category\";O:8:\"stdClass\":3:{s:2:\"id\";s:14:\"sr:category:32\";s:4:\"name\";s:5:\"Spain\";s:12:\"country_code\";s:3:\"ESP\";}}', 'a:2:{i:0;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:2836\";s:4:\"name\";s:15:\"Atletico Madrid\";s:7:\"country\";s:5:\"Spain\";s:12:\"country_code\";s:3:\"ESP\";s:12:\"abbreviation\";s:3:\"ATM\";s:9:\"qualifier\";s:4:\"home\";}i:1;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:2849\";s:4:\"name\";s:10:\"UD Levante\";s:7:\"country\";s:5:\"Spain\";s:12:\"country_code\";s:3:\"ESP\";s:12:\"abbreviation\";s:3:\"LUD\";s:9:\"qualifier\";s:4:\"away\";}}', '8', 'O:8:\"stdClass\":3:{s:4:\"type\";s:5:\"group\";s:6:\"number\";i:19;s:5:\"phase\";s:14:\"regular season\";}', 'LaLiga', '2018-08-17 00:00:00', '2019-05-20 00:00:00', 1, '2019-01-31 05:13:33', '2019-02-01 09:50:31'),
(2980, '14701031', '2019-01-13T14:00:00+00:00', 'O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"sr:season:54373\";s:4:\"name\";s:13:\"Ligue 1 18/19\";s:10:\"start_date\";s:10:\"2018-08-10\";s:8:\"end_date\";s:10:\"2019-06-01\";s:4:\"year\";s:5:\"18/19\";s:13:\"tournament_id\";s:16:\"sr:tournament:34\";}', 'O:8:\"stdClass\":7:{s:2:\"id\";s:12:\"sr:venue:953\";s:4:\"name\";s:21:\"Stade de la Beaujoire\";s:8:\"capacity\";i:37473;s:9:\"city_name\";s:6:\"Nantes\";s:12:\"country_name\";s:6:\"France\";s:15:\"map_coordinates\";s:19:\"47.255631,-1.525375\";s:12:\"country_code\";s:3:\"FRA\";}', 'O:8:\"stdClass\":4:{s:2:\"id\";s:16:\"sr:tournament:34\";s:4:\"name\";s:7:\"Ligue 1\";s:5:\"sport\";O:8:\"stdClass\":2:{s:2:\"id\";s:10:\"sr:sport:1\";s:4:\"name\";s:6:\"Soccer\";}s:8:\"category\";O:8:\"stdClass\":3:{s:2:\"id\";s:13:\"sr:category:7\";s:4:\"name\";s:6:\"France\";s:12:\"country_code\";s:3:\"FRA\";}}', 'a:2:{i:0;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:1647\";s:4:\"name\";s:9:\"FC Nantes\";s:7:\"country\";s:6:\"France\";s:12:\"country_code\";s:3:\"FRA\";s:12:\"abbreviation\";s:3:\"FCN\";s:9:\"qualifier\";s:4:\"home\";}i:1;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:1658\";s:4:\"name\";s:12:\"Stade Rennes\";s:7:\"country\";s:6:\"France\";s:12:\"country_code\";s:3:\"FRA\";s:12:\"abbreviation\";s:4:\"SRFC\";s:9:\"qualifier\";s:4:\"away\";}}', '34', 'O:8:\"stdClass\":3:{s:4:\"type\";s:5:\"group\";s:6:\"number\";i:20;s:5:\"phase\";s:14:\"regular season\";}', 'Ligue 1', '2018-08-10 00:00:00', '2019-06-01 00:00:00', 1, '2019-01-31 05:13:33', '2019-02-01 09:50:31'),
(2981, '14736671', '2019-01-13T14:15:00+00:00', 'O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"sr:season:54571\";s:4:\"name\";s:20:\"Premier League 18/19\";s:10:\"start_date\";s:10:\"2018-08-10\";s:8:\"end_date\";s:10:\"2019-05-13\";s:4:\"year\";s:5:\"18/19\";s:13:\"tournament_id\";s:16:\"sr:tournament:17\";}', 'O:8:\"stdClass\":7:{s:2:\"id\";s:11:\"sr:venue:12\";s:4:\"name\";s:13:\"Goodison Park\";s:8:\"capacity\";i:39571;s:9:\"city_name\";s:9:\"Liverpool\";s:12:\"country_name\";s:7:\"England\";s:15:\"map_coordinates\";s:19:\"53.439255,-2.967065\";s:12:\"country_code\";s:3:\"ENG\";}', 'O:8:\"stdClass\":4:{s:2:\"id\";s:16:\"sr:tournament:17\";s:4:\"name\";s:14:\"Premier League\";s:5:\"sport\";O:8:\"stdClass\":2:{s:2:\"id\";s:10:\"sr:sport:1\";s:4:\"name\";s:6:\"Soccer\";}s:8:\"category\";O:8:\"stdClass\":3:{s:2:\"id\";s:13:\"sr:category:1\";s:4:\"name\";s:7:\"England\";s:12:\"country_code\";s:3:\"ENG\";}}', 'a:2:{i:0;O:8:\"stdClass\":6:{s:2:\"id\";s:16:\"sr:competitor:48\";s:4:\"name\";s:10:\"Everton FC\";s:7:\"country\";s:7:\"England\";s:12:\"country_code\";s:3:\"ENG\";s:12:\"abbreviation\";s:3:\"EVE\";s:9:\"qualifier\";s:4:\"home\";}i:1;O:8:\"stdClass\":6:{s:2:\"id\";s:16:\"sr:competitor:60\";s:4:\"name\";s:15:\"AFC Bournemouth\";s:7:\"country\";s:7:\"England\";s:12:\"country_code\";s:3:\"ENG\";s:12:\"abbreviation\";s:3:\"BOU\";s:9:\"qualifier\";s:4:\"away\";}}', '17', 'O:8:\"stdClass\":3:{s:4:\"type\";s:5:\"group\";s:6:\"number\";i:22;s:5:\"phase\";s:14:\"regular season\";}', 'Premier League', '2018-08-10 00:00:00', '2019-05-13 00:00:00', 1, '2019-01-31 05:13:33', '2019-02-01 09:50:31'),
(2982, '14946053', '2019-01-13T15:00:00+00:00', 'O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"sr:season:55243\";s:4:\"name\";s:19:\"Primeira Liga 18/19\";s:10:\"start_date\";s:10:\"2018-08-10\";s:8:\"end_date\";s:10:\"2019-05-19\";s:4:\"year\";s:5:\"18/19\";s:13:\"tournament_id\";s:17:\"sr:tournament:238\";}', 'O:8:\"stdClass\":7:{s:2:\"id\";s:13:\"sr:venue:1335\";s:4:\"name\";s:18:\"Estadio da Madeira\";s:8:\"capacity\";i:5132;s:9:\"city_name\";s:7:\"Funchal\";s:12:\"country_name\";s:8:\"Portugal\";s:15:\"map_coordinates\";s:20:\"32.670834,-16.883333\";s:12:\"country_code\";s:3:\"PRT\";}', 'O:8:\"stdClass\":4:{s:2:\"id\";s:17:\"sr:tournament:238\";s:4:\"name\";s:13:\"Primeira Liga\";s:5:\"sport\";O:8:\"stdClass\":2:{s:2:\"id\";s:10:\"sr:sport:1\";s:4:\"name\";s:6:\"Soccer\";}s:8:\"category\";O:8:\"stdClass\":3:{s:2:\"id\";s:14:\"sr:category:44\";s:4:\"name\";s:8:\"Portugal\";s:12:\"country_code\";s:3:\"PRT\";}}', 'a:2:{i:0;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:3013\";s:4:\"name\";s:11:\"CD Nacional\";s:7:\"country\";s:8:\"Portugal\";s:12:\"country_code\";s:3:\"PRT\";s:12:\"abbreviation\";s:3:\"CDN\";s:9:\"qualifier\";s:4:\"home\";}i:1;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:3004\";s:4:\"name\";s:16:\"CF Os Belenenses\";s:7:\"country\";s:8:\"Portugal\";s:12:\"country_code\";s:3:\"PRT\";s:12:\"abbreviation\";s:3:\"BEL\";s:9:\"qualifier\";s:4:\"away\";}}', '238', 'O:8:\"stdClass\":3:{s:4:\"type\";s:5:\"group\";s:6:\"number\";i:17;s:5:\"phase\";s:12:\"main_round_1\";}', 'Primeira Liga', '2018-08-10 00:00:00', '2019-05-19 00:00:00', 1, '2019-01-31 05:13:33', '2019-02-01 09:50:31'),
(2983, '15109329', '2019-01-13T15:15:00+00:00', 'O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"sr:season:55917\";s:4:\"name\";s:12:\"LaLiga 18/19\";s:10:\"start_date\";s:10:\"2018-08-17\";s:8:\"end_date\";s:10:\"2019-05-20\";s:4:\"year\";s:5:\"18/19\";s:13:\"tournament_id\";s:15:\"sr:tournament:8\";}', 'O:8:\"stdClass\":7:{s:2:\"id\";s:12:\"sr:venue:751\";s:4:\"name\";s:9:\"San Mames\";s:8:\"capacity\";i:53289;s:9:\"city_name\";s:6:\"Bilbao\";s:12:\"country_name\";s:5:\"Spain\";s:15:\"map_coordinates\";s:19:\"43.263476,-2.948150\";s:12:\"country_code\";s:3:\"ESP\";}', 'O:8:\"stdClass\":4:{s:2:\"id\";s:15:\"sr:tournament:8\";s:4:\"name\";s:6:\"LaLiga\";s:5:\"sport\";O:8:\"stdClass\":2:{s:2:\"id\";s:10:\"sr:sport:1\";s:4:\"name\";s:6:\"Soccer\";}s:8:\"category\";O:8:\"stdClass\":3:{s:2:\"id\";s:14:\"sr:category:32\";s:4:\"name\";s:5:\"Spain\";s:12:\"country_code\";s:3:\"ESP\";}}', 'a:2:{i:0;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:2825\";s:4:\"name\";s:15:\"Athletic Bilbao\";s:7:\"country\";s:5:\"Spain\";s:12:\"country_code\";s:3:\"ESP\";s:12:\"abbreviation\";s:3:\"ATH\";s:9:\"qualifier\";s:4:\"home\";}i:1;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:2833\";s:4:\"name\";s:10:\"Sevilla FC\";s:7:\"country\";s:5:\"Spain\";s:12:\"country_code\";s:3:\"ESP\";s:12:\"abbreviation\";s:3:\"SFC\";s:9:\"qualifier\";s:4:\"away\";}}', '8', 'O:8:\"stdClass\":3:{s:4:\"type\";s:5:\"group\";s:6:\"number\";i:19;s:5:\"phase\";s:14:\"regular season\";}', 'LaLiga', '2018-08-17 00:00:00', '2019-05-20 00:00:00', 1, '2019-01-31 05:13:33', '2019-02-01 09:50:31'),
(2984, '15382680', '2019-01-13T15:15:00+00:00', 'O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"sr:season:55979\";s:4:\"name\";s:18:\"Super League 18/19\";s:10:\"start_date\";s:10:\"2018-08-25\";s:8:\"end_date\";s:10:\"2019-05-01\";s:4:\"year\";s:5:\"18/19\";s:13:\"tournament_id\";s:17:\"sr:tournament:185\";}', 'O:8:\"stdClass\":7:{s:2:\"id\";s:13:\"sr:venue:1153\";s:4:\"name\";s:16:\"Levadias Stadium\";s:8:\"capacity\";i:6500;s:9:\"city_name\";s:7:\"Levadia\";s:12:\"country_name\";s:6:\"Greece\";s:15:\"map_coordinates\";s:19:\"38.435897,22.882844\";s:12:\"country_code\";s:3:\"GRC\";}', 'O:8:\"stdClass\":4:{s:2:\"id\";s:17:\"sr:tournament:185\";s:4:\"name\";s:12:\"Super League\";s:5:\"sport\";O:8:\"stdClass\":2:{s:2:\"id\";s:10:\"sr:sport:1\";s:4:\"name\";s:6:\"Soccer\";}s:8:\"category\";O:8:\"stdClass\":3:{s:2:\"id\";s:14:\"sr:category:67\";s:4:\"name\";s:6:\"Greece\";s:12:\"country_code\";s:3:\"GRC\";}}', 'a:2:{i:0;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:5063\";s:4:\"name\";s:18:\"Apo Levadeiakos FC\";s:7:\"country\";s:6:\"Greece\";s:12:\"country_code\";s:3:\"GRC\";s:12:\"abbreviation\";s:3:\"APO\";s:9:\"qualifier\";s:4:\"home\";}i:1;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:3245\";s:4:\"name\";s:13:\"Olympiacos FC\";s:7:\"country\";s:6:\"Greece\";s:12:\"country_code\";s:3:\"GRC\";s:12:\"abbreviation\";s:3:\"OLY\";s:9:\"qualifier\";s:4:\"away\";}}', '185', 'O:8:\"stdClass\":2:{s:4:\"type\";s:5:\"group\";s:6:\"number\";i:16;}', 'Super League', '2018-08-25 00:00:00', '2019-05-01 00:00:00', 1, '2019-01-31 05:13:33', '2019-02-01 09:50:31'),
(2985, '14701025', '2019-01-13T16:00:00+00:00', 'O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"sr:season:54373\";s:4:\"name\";s:13:\"Ligue 1 18/19\";s:10:\"start_date\";s:10:\"2018-08-10\";s:8:\"end_date\";s:10:\"2019-06-01\";s:4:\"year\";s:5:\"18/19\";s:13:\"tournament_id\";s:16:\"sr:tournament:34\";}', 'O:8:\"stdClass\":7:{s:2:\"id\";s:13:\"sr:venue:1866\";s:4:\"name\";s:19:\"Stade Gaston Gerard\";s:8:\"capacity\";i:16098;s:9:\"city_name\";s:5:\"Dijon\";s:12:\"country_name\";s:6:\"France\";s:15:\"map_coordinates\";s:18:\"47.324383,5.068342\";s:12:\"country_code\";s:3:\"FRA\";}', 'O:8:\"stdClass\":4:{s:2:\"id\";s:16:\"sr:tournament:34\";s:4:\"name\";s:7:\"Ligue 1\";s:5:\"sport\";O:8:\"stdClass\":2:{s:2:\"id\";s:10:\"sr:sport:1\";s:4:\"name\";s:6:\"Soccer\";}s:8:\"category\";O:8:\"stdClass\":3:{s:2:\"id\";s:13:\"sr:category:7\";s:4:\"name\";s:6:\"France\";s:12:\"country_code\";s:3:\"FRA\";}}', 'a:2:{i:0;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:1686\";s:4:\"name\";s:9:\"Dijon FCO\";s:7:\"country\";s:6:\"France\";s:12:\"country_code\";s:3:\"FRA\";s:12:\"abbreviation\";s:4:\"DFCO\";s:9:\"qualifier\";s:4:\"home\";}i:1;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:1642\";s:4:\"name\";s:15:\"Montpellier HSC\";s:7:\"country\";s:6:\"France\";s:12:\"country_code\";s:3:\"FRA\";s:12:\"abbreviation\";s:4:\"MHSC\";s:9:\"qualifier\";s:4:\"away\";}}', '34', 'O:8:\"stdClass\":3:{s:4:\"type\";s:5:\"group\";s:6:\"number\";i:20;s:5:\"phase\";s:14:\"regular season\";}', 'Ligue 1', '2018-08-10 00:00:00', '2019-06-01 00:00:00', 1, '2019-01-31 05:13:33', '2019-02-01 09:50:31'),
(2986, '14701037', '2019-01-13T16:00:00+00:00', 'O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"sr:season:54373\";s:4:\"name\";s:13:\"Ligue 1 18/19\";s:10:\"start_date\";s:10:\"2018-08-10\";s:8:\"end_date\";s:10:\"2019-06-01\";s:4:\"year\";s:5:\"18/19\";s:13:\"tournament_id\";s:16:\"sr:tournament:34\";}', 'O:8:\"stdClass\":7:{s:2:\"id\";s:12:\"sr:venue:848\";s:4:\"name\";s:19:\"Stadium de Toulouse\";s:8:\"capacity\";i:33150;s:9:\"city_name\";s:8:\"Toulouse\";s:12:\"country_name\";s:6:\"France\";s:15:\"map_coordinates\";s:18:\"43.583056,1.434167\";s:12:\"country_code\";s:3:\"FRA\";}', 'O:8:\"stdClass\":4:{s:2:\"id\";s:16:\"sr:tournament:34\";s:4:\"name\";s:7:\"Ligue 1\";s:5:\"sport\";O:8:\"stdClass\":2:{s:2:\"id\";s:10:\"sr:sport:1\";s:4:\"name\";s:6:\"Soccer\";}s:8:\"category\";O:8:\"stdClass\":3:{s:2:\"id\";s:13:\"sr:category:7\";s:4:\"name\";s:6:\"France\";s:12:\"country_code\";s:3:\"FRA\";}}', 'a:2:{i:0;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:1681\";s:4:\"name\";s:11:\"Toulouse FC\";s:7:\"country\";s:6:\"France\";s:12:\"country_code\";s:3:\"FRA\";s:12:\"abbreviation\";s:3:\"TFC\";s:9:\"qualifier\";s:4:\"home\";}i:1;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:1659\";s:4:\"name\";s:17:\"Racing Strasbourg\";s:7:\"country\";s:6:\"France\";s:12:\"country_code\";s:3:\"FRA\";s:12:\"abbreviation\";s:4:\"RCSA\";s:9:\"qualifier\";s:4:\"away\";}}', '34', 'O:8:\"stdClass\":3:{s:4:\"type\";s:5:\"group\";s:6:\"number\";i:20;s:5:\"phase\";s:14:\"regular season\";}', 'Ligue 1', '2018-08-10 00:00:00', '2019-06-01 00:00:00', 1, '2019-01-31 05:13:33', '2019-02-01 09:50:31'),
(2987, '14736677', '2019-01-13T16:30:00+00:00', 'O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"sr:season:54571\";s:4:\"name\";s:20:\"Premier League 18/19\";s:10:\"start_date\";s:10:\"2018-08-10\";s:8:\"end_date\";s:10:\"2019-05-13\";s:4:\"year\";s:5:\"18/19\";s:13:\"tournament_id\";s:16:\"sr:tournament:17\";}', 'O:8:\"stdClass\":7:{s:2:\"id\";s:10:\"sr:venue:8\";s:4:\"name\";s:15:\"Wembley Stadium\";s:8:\"capacity\";i:90000;s:9:\"city_name\";s:6:\"London\";s:12:\"country_name\";s:7:\"England\";s:15:\"map_coordinates\";s:19:\"51.555833,-0.279722\";s:12:\"country_code\";s:3:\"ENG\";}', 'O:8:\"stdClass\":4:{s:2:\"id\";s:16:\"sr:tournament:17\";s:4:\"name\";s:14:\"Premier League\";s:5:\"sport\";O:8:\"stdClass\":2:{s:2:\"id\";s:10:\"sr:sport:1\";s:4:\"name\";s:6:\"Soccer\";}s:8:\"category\";O:8:\"stdClass\":3:{s:2:\"id\";s:13:\"sr:category:1\";s:4:\"name\";s:7:\"England\";s:12:\"country_code\";s:3:\"ENG\";}}', 'a:2:{i:0;O:8:\"stdClass\":6:{s:2:\"id\";s:16:\"sr:competitor:33\";s:4:\"name\";s:17:\"Tottenham Hotspur\";s:7:\"country\";s:7:\"England\";s:12:\"country_code\";s:3:\"ENG\";s:12:\"abbreviation\";s:3:\"TOT\";s:9:\"qualifier\";s:4:\"home\";}i:1;O:8:\"stdClass\":6:{s:2:\"id\";s:16:\"sr:competitor:35\";s:4:\"name\";s:17:\"Manchester United\";s:7:\"country\";s:7:\"England\";s:12:\"country_code\";s:3:\"ENG\";s:12:\"abbreviation\";s:3:\"MUN\";s:9:\"qualifier\";s:4:\"away\";}}', '17', 'O:8:\"stdClass\":3:{s:4:\"type\";s:5:\"group\";s:6:\"number\";i:22;s:5:\"phase\";s:14:\"regular season\";}', 'Premier League', '2018-08-10 00:00:00', '2019-05-13 00:00:00', 1, '2019-01-31 05:13:33', '2019-02-01 09:50:31'),
(2988, '15382684', '2019-01-13T17:00:00+00:00', 'O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"sr:season:55979\";s:4:\"name\";s:18:\"Super League 18/19\";s:10:\"start_date\";s:10:\"2018-08-25\";s:8:\"end_date\";s:10:\"2019-05-01\";s:4:\"year\";s:5:\"18/19\";s:13:\"tournament_id\";s:17:\"sr:tournament:185\";}', 'O:8:\"stdClass\":7:{s:2:\"id\";s:12:\"sr:venue:926\";s:4:\"name\";s:28:\"Spiros Louis Olympic Stadium\";s:8:\"capacity\";i:69638;s:9:\"city_name\";s:6:\"Athens\";s:12:\"country_name\";s:6:\"Greece\";s:15:\"map_coordinates\";s:19:\"38.036092,23.787633\";s:12:\"country_code\";s:3:\"GRC\";}', 'O:8:\"stdClass\":4:{s:2:\"id\";s:17:\"sr:tournament:185\";s:4:\"name\";s:12:\"Super League\";s:5:\"sport\";O:8:\"stdClass\":2:{s:2:\"id\";s:10:\"sr:sport:1\";s:4:\"name\";s:6:\"Soccer\";}s:8:\"category\";O:8:\"stdClass\":3:{s:2:\"id\";s:14:\"sr:category:67\";s:4:\"name\";s:6:\"Greece\";s:12:\"country_code\";s:3:\"GRC\";}}', 'a:2:{i:0;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:3248\";s:4:\"name\";s:20:\"Panathinaikos Athens\";s:7:\"country\";s:6:\"Greece\";s:12:\"country_code\";s:3:\"GRC\";s:12:\"abbreviation\";s:3:\"PAN\";s:9:\"qualifier\";s:4:\"home\";}i:1;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:3254\";s:4:\"name\";s:12:\"AO Xanthi FC\";s:7:\"country\";s:6:\"Greece\";s:12:\"country_code\";s:3:\"GRC\";s:12:\"abbreviation\";s:3:\"AOX\";s:9:\"qualifier\";s:4:\"away\";}}', '185', 'O:8:\"stdClass\":2:{s:4:\"type\";s:5:\"group\";s:6:\"number\";i:16;}', 'Super League', '2018-08-25 00:00:00', '2019-05-01 00:00:00', 1, '2019-01-31 05:13:33', '2019-02-01 09:50:31'),
(2989, '14946069', '2019-01-13T17:30:00+00:00', 'O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"sr:season:55243\";s:4:\"name\";s:19:\"Primeira Liga 18/19\";s:10:\"start_date\";s:10:\"2018-08-10\";s:8:\"end_date\";s:10:\"2019-05-19\";s:4:\"year\";s:5:\"18/19\";s:13:\"tournament_id\";s:17:\"sr:tournament:238\";}', 'O:8:\"stdClass\":7:{s:2:\"id\";s:14:\"sr:venue:12071\";s:4:\"name\";s:45:\"Estadio Municipal Eng. Manuel Branco Teixeira\";s:8:\"capacity\";i:9000;s:9:\"city_name\";s:6:\"Chaves\";s:12:\"country_name\";s:8:\"Portugal\";s:15:\"map_coordinates\";s:19:\"41.750552,-7.464952\";s:12:\"country_code\";s:3:\"PRT\";}', 'O:8:\"stdClass\":4:{s:2:\"id\";s:17:\"sr:tournament:238\";s:4:\"name\";s:13:\"Primeira Liga\";s:5:\"sport\";O:8:\"stdClass\":2:{s:2:\"id\";s:10:\"sr:sport:1\";s:4:\"name\";s:6:\"Soccer\";}s:8:\"category\";O:8:\"stdClass\":3:{s:2:\"id\";s:14:\"sr:category:44\";s:4:\"name\";s:8:\"Portugal\";s:12:\"country_code\";s:3:\"PRT\";}}', 'a:2:{i:0;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:3025\";s:4:\"name\";s:9:\"GD Chaves\";s:7:\"country\";s:8:\"Portugal\";s:12:\"country_code\";s:3:\"PRT\";s:12:\"abbreviation\";s:3:\"CHA\";s:9:\"qualifier\";s:4:\"home\";}i:1;O:8:\"stdClass\":6:{s:2:\"id\";s:19:\"sr:competitor:38396\";s:4:\"name\";s:10:\"CD Tondela\";s:7:\"country\";s:8:\"Portugal\";s:12:\"country_code\";s:3:\"PRT\";s:12:\"abbreviation\";s:3:\"TON\";s:9:\"qualifier\";s:4:\"away\";}}', '238', 'O:8:\"stdClass\":3:{s:4:\"type\";s:5:\"group\";s:6:\"number\";i:17;s:5:\"phase\";s:12:\"main_round_1\";}', 'Primeira Liga', '2018-08-10 00:00:00', '2019-05-19 00:00:00', 1, '2019-01-31 05:13:33', '2019-02-01 09:50:31'),
(2990, '15109333', '2019-01-13T17:30:00+00:00', 'O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"sr:season:55917\";s:4:\"name\";s:12:\"LaLiga 18/19\";s:10:\"start_date\";s:10:\"2018-08-17\";s:8:\"end_date\";s:10:\"2019-05-20\";s:4:\"year\";s:5:\"18/19\";s:13:\"tournament_id\";s:15:\"sr:tournament:8\";}', 'O:8:\"stdClass\":7:{s:2:\"id\";s:12:\"sr:venue:709\";s:4:\"name\";s:8:\"Camp Nou\";s:8:\"capacity\";i:98787;s:9:\"city_name\";s:9:\"Barcelona\";s:12:\"country_name\";s:5:\"Spain\";s:15:\"map_coordinates\";s:18:\"41.380890,2.122813\";s:12:\"country_code\";s:3:\"ESP\";}', 'O:8:\"stdClass\":4:{s:2:\"id\";s:15:\"sr:tournament:8\";s:4:\"name\";s:6:\"LaLiga\";s:5:\"sport\";O:8:\"stdClass\":2:{s:2:\"id\";s:10:\"sr:sport:1\";s:4:\"name\";s:6:\"Soccer\";}s:8:\"category\";O:8:\"stdClass\":3:{s:2:\"id\";s:14:\"sr:category:32\";s:4:\"name\";s:5:\"Spain\";s:12:\"country_code\";s:3:\"ESP\";}}', 'a:2:{i:0;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:2817\";s:4:\"name\";s:12:\"FC Barcelona\";s:7:\"country\";s:5:\"Spain\";s:12:\"country_code\";s:3:\"ESP\";s:12:\"abbreviation\";s:3:\"FCB\";s:9:\"qualifier\";s:4:\"home\";}i:1;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:2839\";s:4:\"name\";s:8:\"SD Eibar\";s:7:\"country\";s:5:\"Spain\";s:12:\"country_code\";s:3:\"ESP\";s:12:\"abbreviation\";s:3:\"EIB\";s:9:\"qualifier\";s:4:\"away\";}}', '8', 'O:8:\"stdClass\":3:{s:4:\"type\";s:5:\"group\";s:6:\"number\";i:19;s:5:\"phase\";s:14:\"regular season\";}', 'LaLiga', '2018-08-17 00:00:00', '2019-05-20 00:00:00', 1, '2019-01-31 05:13:33', '2019-02-01 09:50:31'),
(2991, '15382676', '2019-01-13T17:30:00+00:00', 'O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"sr:season:55979\";s:4:\"name\";s:18:\"Super League 18/19\";s:10:\"start_date\";s:10:\"2018-08-25\";s:8:\"end_date\";s:10:\"2019-05-01\";s:4:\"year\";s:5:\"18/19\";s:13:\"tournament_id\";s:17:\"sr:tournament:185\";}', 'O:8:\"stdClass\":7:{s:2:\"id\";s:13:\"sr:venue:1174\";s:4:\"name\";s:30:\"Theodoros Kolokotronis Stadium\";s:8:\"capacity\";i:7616;s:9:\"city_name\";s:7:\"Tripoli\";s:12:\"country_name\";s:6:\"Greece\";s:15:\"map_coordinates\";s:19:\"37.521989,22.378164\";s:12:\"country_code\";s:3:\"GRC\";}', 'O:8:\"stdClass\":4:{s:2:\"id\";s:17:\"sr:tournament:185\";s:4:\"name\";s:12:\"Super League\";s:5:\"sport\";O:8:\"stdClass\":2:{s:2:\"id\";s:10:\"sr:sport:1\";s:4:\"name\";s:6:\"Soccer\";}s:8:\"category\";O:8:\"stdClass\":3:{s:2:\"id\";s:14:\"sr:category:67\";s:4:\"name\";s:6:\"Greece\";s:12:\"country_code\";s:3:\"GRC\";}}', 'a:2:{i:0;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:6342\";s:4:\"name\";s:16:\"Asteras Tripolis\";s:7:\"country\";s:6:\"Greece\";s:12:\"country_code\";s:3:\"GRC\";s:12:\"abbreviation\";s:3:\"AST\";s:9:\"qualifier\";s:4:\"home\";}i:1;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:3251\";s:4:\"name\";s:7:\"PAOK FC\";s:7:\"country\";s:6:\"Greece\";s:12:\"country_code\";s:3:\"GRC\";s:12:\"abbreviation\";s:3:\"PAO\";s:9:\"qualifier\";s:4:\"away\";}}', '185', 'O:8:\"stdClass\":2:{s:4:\"type\";s:5:\"group\";s:6:\"number\";i:16;}', 'Super League', '2018-08-25 00:00:00', '2019-05-01 00:00:00', 1, '2019-01-31 05:13:33', '2019-02-01 09:50:31'),
(2992, '15109335', '2019-01-13T19:45:00+00:00', 'O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"sr:season:55917\";s:4:\"name\";s:12:\"LaLiga 18/19\";s:10:\"start_date\";s:10:\"2018-08-17\";s:8:\"end_date\";s:10:\"2019-05-20\";s:4:\"year\";s:5:\"18/19\";s:13:\"tournament_id\";s:15:\"sr:tournament:8\";}', 'O:8:\"stdClass\":7:{s:2:\"id\";s:13:\"sr:venue:1045\";s:4:\"name\";s:17:\"Benito Villamarin\";s:8:\"capacity\";i:60721;s:9:\"city_name\";s:7:\"Seville\";s:12:\"country_name\";s:5:\"Spain\";s:15:\"map_coordinates\";s:19:\"37.356483,-5.981768\";s:12:\"country_code\";s:3:\"ESP\";}', 'O:8:\"stdClass\":4:{s:2:\"id\";s:15:\"sr:tournament:8\";s:4:\"name\";s:6:\"LaLiga\";s:5:\"sport\";O:8:\"stdClass\":2:{s:2:\"id\";s:10:\"sr:sport:1\";s:4:\"name\";s:6:\"Soccer\";}s:8:\"category\";O:8:\"stdClass\":3:{s:2:\"id\";s:14:\"sr:category:32\";s:4:\"name\";s:5:\"Spain\";s:12:\"country_code\";s:3:\"ESP\";}}', 'a:2:{i:0;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:2816\";s:4:\"name\";s:19:\"Real Betis Balompie\";s:7:\"country\";s:5:\"Spain\";s:12:\"country_code\";s:3:\"ESP\";s:12:\"abbreviation\";s:3:\"RBB\";s:9:\"qualifier\";s:4:\"home\";}i:1;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:2829\";s:4:\"name\";s:11:\"Real Madrid\";s:7:\"country\";s:5:\"Spain\";s:12:\"country_code\";s:3:\"ESP\";s:12:\"abbreviation\";s:3:\"MAD\";s:9:\"qualifier\";s:4:\"away\";}}', '8', 'O:8:\"stdClass\":3:{s:4:\"type\";s:5:\"group\";s:6:\"number\";i:19;s:5:\"phase\";s:14:\"regular season\";}', 'LaLiga', '2018-08-17 00:00:00', '2019-05-20 00:00:00', 1, '2019-01-31 05:13:33', '2019-02-01 09:50:31'),
(2993, '14701039', '2019-01-13T20:00:00+00:00', 'O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"sr:season:54373\";s:4:\"name\";s:13:\"Ligue 1 18/19\";s:10:\"start_date\";s:10:\"2018-08-10\";s:8:\"end_date\";s:10:\"2019-06-01\";s:4:\"year\";s:5:\"18/19\";s:13:\"tournament_id\";s:16:\"sr:tournament:34\";}', 'O:8:\"stdClass\":7:{s:2:\"id\";s:12:\"sr:venue:839\";s:4:\"name\";s:16:\"Orange Velodrome\";s:8:\"capacity\";i:67000;s:9:\"city_name\";s:9:\"Marseille\";s:12:\"country_name\";s:6:\"France\";s:15:\"map_coordinates\";s:18:\"43.269722,5.395833\";s:12:\"country_code\";s:3:\"FRA\";}', 'O:8:\"stdClass\":4:{s:2:\"id\";s:16:\"sr:tournament:34\";s:4:\"name\";s:7:\"Ligue 1\";s:5:\"sport\";O:8:\"stdClass\":2:{s:2:\"id\";s:10:\"sr:sport:1\";s:4:\"name\";s:6:\"Soccer\";}s:8:\"category\";O:8:\"stdClass\":3:{s:2:\"id\";s:13:\"sr:category:7\";s:4:\"name\";s:6:\"France\";s:12:\"country_code\";s:3:\"FRA\";}}', 'a:2:{i:0;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:1641\";s:4:\"name\";s:19:\"Olympique Marseille\";s:7:\"country\";s:6:\"France\";s:12:\"country_code\";s:3:\"FRA\";s:12:\"abbreviation\";s:2:\"OM\";s:9:\"qualifier\";s:4:\"home\";}i:1;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:1653\";s:4:\"name\";s:9:\"AS Monaco\";s:7:\"country\";s:6:\"France\";s:12:\"country_code\";s:3:\"FRA\";s:12:\"abbreviation\";s:3:\"ASM\";s:9:\"qualifier\";s:4:\"away\";}}', '34', 'O:8:\"stdClass\":3:{s:4:\"type\";s:5:\"group\";s:6:\"number\";i:20;s:5:\"phase\";s:14:\"regular season\";}', 'Ligue 1', '2018-08-10 00:00:00', '2019-06-01 00:00:00', 1, '2019-01-31 05:13:33', '2019-02-01 09:50:31'),
(2994, '14946059', '2019-01-13T20:00:00+00:00', 'O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"sr:season:55243\";s:4:\"name\";s:19:\"Primeira Liga 18/19\";s:10:\"start_date\";s:10:\"2018-08-10\";s:8:\"end_date\";s:10:\"2019-05-19\";s:4:\"year\";s:5:\"18/19\";s:13:\"tournament_id\";s:17:\"sr:tournament:238\";}', 'O:8:\"stdClass\":7:{s:2:\"id\";s:13:\"sr:venue:2013\";s:4:\"name\";s:17:\"Estadio Dos Arcos\";s:8:\"capacity\";i:9065;s:9:\"city_name\";s:13:\"Vila do Conde\";s:12:\"country_name\";s:8:\"Portugal\";s:15:\"map_coordinates\";s:19:\"41.362755,-8.740186\";s:12:\"country_code\";s:3:\"PRT\";}', 'O:8:\"stdClass\":4:{s:2:\"id\";s:17:\"sr:tournament:238\";s:4:\"name\";s:13:\"Primeira Liga\";s:5:\"sport\";O:8:\"stdClass\":2:{s:2:\"id\";s:10:\"sr:sport:1\";s:4:\"name\";s:6:\"Soccer\";}s:8:\"category\";O:8:\"stdClass\":3:{s:2:\"id\";s:14:\"sr:category:44\";s:4:\"name\";s:8:\"Portugal\";s:12:\"country_code\";s:3:\"PRT\";}}', 'a:2:{i:0;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:3036\";s:4:\"name\";s:10:\"Rio Ave FC\";s:7:\"country\";s:8:\"Portugal\";s:12:\"country_code\";s:3:\"PRT\";s:12:\"abbreviation\";s:3:\"RAV\";s:9:\"qualifier\";s:4:\"home\";}i:1;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:3008\";s:4:\"name\";s:15:\"Vitoria Setubal\";s:7:\"country\";s:8:\"Portugal\";s:12:\"country_code\";s:3:\"PRT\";s:12:\"abbreviation\";s:3:\"SET\";s:9:\"qualifier\";s:4:\"away\";}}', '238', 'O:8:\"stdClass\":3:{s:4:\"type\";s:5:\"group\";s:6:\"number\";i:17;s:5:\"phase\";s:12:\"main_round_1\";}', 'Primeira Liga', '2018-08-10 00:00:00', '2019-05-19 00:00:00', 1, '2019-01-31 05:13:33', '2019-02-01 09:50:31'),
(2995, '16446217', '2019-01-15T18:00:00+00:00', 'O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"sr:season:54373\";s:4:\"name\";s:13:\"Ligue 1 18/19\";s:10:\"start_date\";s:10:\"2018-08-10\";s:8:\"end_date\";s:10:\"2019-06-01\";s:4:\"year\";s:5:\"18/19\";s:13:\"tournament_id\";s:16:\"sr:tournament:34\";}', 'O:8:\"stdClass\":7:{s:2:\"id\";s:14:\"sr:venue:19889\";s:4:\"name\";s:18:\"Stade Raymond Kopa\";s:8:\"capacity\";i:17835;s:9:\"city_name\";s:6:\"Angers\";s:12:\"country_name\";s:6:\"France\";s:15:\"map_coordinates\";s:19:\"47.460458,-0.530741\";s:12:\"country_code\";s:3:\"FRA\";}', 'O:8:\"stdClass\":4:{s:2:\"id\";s:16:\"sr:tournament:34\";s:4:\"name\";s:7:\"Ligue 1\";s:5:\"sport\";O:8:\"stdClass\":2:{s:2:\"id\";s:10:\"sr:sport:1\";s:4:\"name\";s:6:\"Soccer\";}s:8:\"category\";O:8:\"stdClass\":3:{s:2:\"id\";s:13:\"sr:category:7\";s:4:\"name\";s:6:\"France\";s:12:\"country_code\";s:3:\"FRA\";}}', 'a:2:{i:0;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:1684\";s:4:\"name\";s:10:\"SCO Angers\";s:7:\"country\";s:6:\"France\";s:12:\"country_code\";s:3:\"FRA\";s:12:\"abbreviation\";s:3:\"SCO\";s:9:\"qualifier\";s:4:\"home\";}i:1;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:1645\";s:4:\"name\";s:21:\"FC Girondins Bordeaux\";s:7:\"country\";s:6:\"France\";s:12:\"country_code\";s:3:\"FRA\";s:12:\"abbreviation\";s:4:\"FCGB\";s:9:\"qualifier\";s:4:\"away\";}}', '34', 'O:8:\"stdClass\":3:{s:4:\"type\";s:5:\"group\";s:6:\"number\";i:17;s:5:\"phase\";s:14:\"regular season\";}', 'Ligue 1', '2018-08-10 00:00:00', '2019-06-01 00:00:00', 1, '2019-01-31 05:51:17', '2019-01-31 05:51:17'),
(2996, '16446215', '2019-01-15T20:00:00+00:00', 'O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"sr:season:54373\";s:4:\"name\";s:13:\"Ligue 1 18/19\";s:10:\"start_date\";s:10:\"2018-08-10\";s:8:\"end_date\";s:10:\"2019-06-01\";s:4:\"year\";s:5:\"18/19\";s:13:\"tournament_id\";s:16:\"sr:tournament:34\";}', 'O:8:\"stdClass\":7:{s:2:\"id\";s:12:\"sr:venue:843\";s:4:\"name\";s:16:\"Parc Des Princes\";s:8:\"capacity\";i:45000;s:9:\"city_name\";s:5:\"Paris\";s:12:\"country_name\";s:6:\"France\";s:15:\"map_coordinates\";s:18:\"48.841389,2.253056\";s:12:\"country_code\";s:3:\"FRA\";}', 'O:8:\"stdClass\":4:{s:2:\"id\";s:16:\"sr:tournament:34\";s:4:\"name\";s:7:\"Ligue 1\";s:5:\"sport\";O:8:\"stdClass\":2:{s:2:\"id\";s:10:\"sr:sport:1\";s:4:\"name\";s:6:\"Soccer\";}s:8:\"category\";O:8:\"stdClass\":3:{s:2:\"id\";s:13:\"sr:category:7\";s:4:\"name\";s:6:\"France\";s:12:\"country_code\";s:3:\"FRA\";}}', 'a:2:{i:0;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:1644\";s:4:\"name\";s:19:\"Paris Saint-Germain\";s:7:\"country\";s:6:\"France\";s:12:\"country_code\";s:3:\"FRA\";s:12:\"abbreviation\";s:3:\"PSG\";s:9:\"qualifier\";s:4:\"home\";}i:1;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"sr:competitor:1642\";s:4:\"name\";s:15:\"Montpellier HSC\";s:7:\"country\";s:6:\"France\";s:12:\"country_code\";s:3:\"FRA\";s:12:\"abbreviation\";s:4:\"MHSC\";s:9:\"qualifier\";s:4:\"away\";}}', '34', 'O:8:\"stdClass\":3:{s:4:\"type\";s:5:\"group\";s:6:\"number\";i:17;s:5:\"phase\";s:14:\"regular season\";}', 'Ligue 1', '2018-08-10 00:00:00', '2019-06-01 00:00:00', 1, '2019-01-31 05:51:17', '2019-01-31 05:51:17');
-- --------------------------------------------------------
--
-- Table structure for table `socials`
--
CREATE TABLE `socials` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`link` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `socials`
--
INSERT INTO `socials` (`id`, `name`, `code`, `link`, `created_at`, `updated_at`) VALUES
(3, 'Facebook', '<i class=\"fa fa-facebook\"></i>', '#', '2018-05-22 22:56:12', '2018-12-13 05:42:10'),
(4, 'Twitter', '<i class=\"fa fa-twitter\"></i>', '#', '2018-05-22 23:57:46', '2018-12-13 05:42:25'),
(5, 'Linkedin', '<i class=\"fa fa-linkedin\"></i>', '#', '2018-05-22 23:58:14', '2018-12-13 05:42:41'),
(6, 'G-Plus', '<i class=\"fa fa-google-plus\"></i>', '#', '2018-05-22 23:58:34', '2018-12-13 05:42:56'),
(8, 'pinterest', '<i class=\"fa fa-pinterest\"></i>', '#', '2018-07-30 14:18:38', '2018-12-13 05:43:10');
-- --------------------------------------------------------
--
-- Table structure for table `sport_events`
--
CREATE TABLE `sport_events` (
`id` int(11) NOT NULL,
`match_id` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`scheduled` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`start_time_tbd` varchar(191) COLLATE utf8_unicode_ci DEFAULT NULL,
`status` varchar(191) COLLATE utf8_unicode_ci DEFAULT NULL,
`tournament_round_type` varchar(191) COLLATE utf8_unicode_ci DEFAULT NULL,
`tournament_round_name` varchar(191) COLLATE utf8_unicode_ci DEFAULT NULL,
`tournament_round_cup_round_match_number` int(11) DEFAULT NULL,
`tournament_round_cup_round_matches` int(11) DEFAULT NULL,
`tournament_round_other_match_id` varchar(191) COLLATE utf8_unicode_ci DEFAULT NULL,
`tournament_round_phase` varchar(191) COLLATE utf8_unicode_ci DEFAULT NULL,
`compatitor_id1` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`compatitor_id2` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`season_id` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`tournament_id` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`venue_id` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`language_code` varchar(191) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `sport_events`
--
INSERT INTO `sport_events` (`id`, `match_id`, `scheduled`, `start_time_tbd`, `status`, `tournament_round_type`, `tournament_round_name`, `tournament_round_cup_round_match_number`, `tournament_round_cup_round_matches`, `tournament_round_other_match_id`, `tournament_round_phase`, `compatitor_id1`, `compatitor_id2`, `season_id`, `tournament_id`, `venue_id`, `language_code`) VALUES
(1, 'sr:match:14701085', '2019-02-13T18:30:00+00:00', '0', 'not_started', 'group', NULL, NULL, NULL, NULL, 'regular season', 'sr:competitor:1667', 'sr:competitor:1647', 'sr:season:54373', 'sr:tournament:34', '', 'en'),
(2, 'sr:match:16514887', '2019-02-13T20:00:00+00:00', '0', 'not_started', 'cup', 'round_of_16', 1, 2, 'sr:match:16514889', 'final_phase', 'sr:competitor:33', 'sr:competitor:2673', 'sr:season:54533', 'sr:tournament:7', '', 'en'),
(3, 'sr:match:16514901', '2019-02-13T20:00:00+00:00', '0', 'not_started', 'cup', 'round_of_16', 1, 2, 'sr:match:16514903', 'final_phase', 'sr:competitor:2953', 'sr:competitor:2829', 'sr:season:54533', 'sr:tournament:7', '', 'en'),
(4, 'sr:match:14701085', '2019-02-13T18:30:00+00:00', '0', 'not_started', 'group', NULL, NULL, NULL, NULL, 'regular season', 'sr:competitor:1667', 'sr:competitor:1647', 'sr:season:54373', 'sr:tournament:34', '', 'ko'),
(5, 'sr:match:16514887', '2019-02-13T20:00:00+00:00', '0', 'not_started', 'cup', 'round_of_16', 1, 2, 'sr:match:16514889', 'final_phase', 'sr:competitor:33', 'sr:competitor:2673', 'sr:season:54533', 'sr:tournament:7', '', 'ko'),
(6, 'sr:match:16514901', '2019-02-13T20:00:00+00:00', '0', 'not_started', 'cup', 'round_of_16', 1, 2, 'sr:match:16514903', 'final_phase', 'sr:competitor:2953', 'sr:competitor:2829', 'sr:season:54533', 'sr:tournament:7', '', 'ko'),
(7, 'sr:match:16594213', '2019-01-30T13:00:00+00:00', '0', NULL, 'group', NULL, NULL, NULL, NULL, NULL, 'sr:competitor:3247', 'sr:competitor:6342', 'sr:season:55979', 'sr:tournament:185', '', 'ko'),
(8, 'sr:match:16594213', '2019-01-30T13:00:00+00:00', '0', NULL, 'group', NULL, NULL, NULL, NULL, NULL, 'sr:competitor:3247', 'sr:competitor:6342', 'sr:season:55979', 'sr:tournament:185', '', 'en');
-- --------------------------------------------------------
--
-- Table structure for table `sport_event_conditions`
--
CREATE TABLE `sport_event_conditions` (
`id` int(11) NOT NULL,
`match_id` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`referee_id` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`venue_id` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`weather_pitch` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`weather_conditions` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`language_code` varchar(191) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `sport_event_conditions`
--
INSERT INTO `sport_event_conditions` (`id`, `match_id`, `referee_id`, `venue_id`, `weather_pitch`, `weather_conditions`, `language_code`) VALUES
(1, 'sr:match:16594213', 'sr:referee:285135', 'sr:venue:942', 'good', 'good', 'en'),
(2, 'sr:match:16594213', 'sr:referee:285135', 'sr:venue:942', 'good', 'good', 'ko');
-- --------------------------------------------------------
--
-- Table structure for table `sport_event_results`
--
CREATE TABLE `sport_event_results` (
`id` int(11) NOT NULL,
`match_id` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`status` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`match_status` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`home_score` int(11) NOT NULL,
`away_score` int(11) NOT NULL,
`winner_id` varchar(191) COLLATE utf8_unicode_ci DEFAULT NULL,
`period_score1_home_score` int(11) NOT NULL,
`period_score1_away_score` int(11) NOT NULL,
`period_score1_type` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`period_score1_number` int(11) NOT NULL,
`period_score2_home_score` int(11) NOT NULL,
`period_score2_away_score` int(11) NOT NULL,
`period_score2_type` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`period_score2_number` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `sport_event_results`
--
INSERT INTO `sport_event_results` (`id`, `match_id`, `status`, `match_status`, `home_score`, `away_score`, `winner_id`, `period_score1_home_score`, `period_score1_away_score`, `period_score1_type`, `period_score1_number`, `period_score2_home_score`, `period_score2_away_score`, `period_score2_type`, `period_score2_number`) VALUES
(36, 'sr:match:16594217', 'closed', 'ended', 2, 1, 'sr:competitor:120154', 2, 1, 'regular_period', 1, 0, 0, 'regular_period', 2),
(34, 'sr:match:14700945', 'closed', 'ended', 1, 2, 'sr:competitor:1663', 0, 1, 'regular_period', 1, 1, 1, 'regular_period', 2),
(35, 'sr:match:16594213', 'closed', 'ended', 1, 0, 'sr:competitor:3247', 1, 0, 'regular_period', 1, 0, 0, 'regular_period', 2),
(25, 'sr:match:14701069', 'closed', 'ended', 2, 0, 'sr:competitor:1642', 0, 0, 'regular_period', 1, 2, 0, 'regular_period', 2),
(26, 'sr:match:16681225', 'closed', 'ended', 0, 6, 'sr:competitor:1667', 0, 3, 'regular_period', 1, 0, 3, 'regular_period', 2),
(27, 'sr:match:14701045', 'closed', 'ended', 0, 1, 'sr:competitor:1641', 0, 0, 'regular_period', 1, 0, 1, 'regular_period', 2),
(28, 'sr:match:14701023', 'closed', 'ended', 1, 3, 'sr:competitor:1643', 0, 2, 'regular_period', 1, 1, 1, 'regular_period', 2),
(29, 'sr:match:16484235', 'closed', 'ended', 0, 1, 'sr:competitor:1667', 0, 0, 'regular_period', 1, 0, 1, 'regular_period', 2),
(30, 'sr:match:14701013', 'closed', 'ended', 2, 2, NULL, 1, 2, 'regular_period', 1, 1, 0, 'regular_period', 2),
(31, 'sr:match:16488653', 'closed', 'ended', 2, 1, 'sr:competitor:1667', 1, 1, 'regular_period', 1, 1, 0, 'regular_period', 2),
(32, 'sr:match:14700983', 'postponed', 'postponed', 0, 0, NULL, 0, 0, '', 0, 0, 0, '', 0),
(33, 'sr:match:14700977', 'closed', 'ended', 2, 2, NULL, 2, 1, 'regular_period', 1, 0, 1, 'regular_period', 2),
(37, 'sr:match:16594215', 'closed', 'ended', 1, 0, 'sr:competitor:3250', 1, 0, 'regular_period', 1, 0, 0, 'regular_period', 2),
(38, 'sr:match:16594223', 'closed', 'ended', 2, 1, 'sr:competitor:3251', 1, 0, 'regular_period', 1, 1, 1, 'regular_period', 2),
(39, 'sr:match:16594209', 'closed', 'ended', 0, 1, 'sr:competitor:3248', 0, 1, 'regular_period', 1, 0, 0, 'regular_period', 2),
(40, 'sr:match:16594219', 'closed', 'ended', 4, 0, 'sr:competitor:3245', 3, 0, 'regular_period', 1, 1, 0, 'regular_period', 2),
(41, 'sr:match:14946093', 'closed', 'ended', 1, 1, NULL, 1, 0, 'regular_period', 1, 0, 1, 'regular_period', 2),
(42, 'sr:match:14736703', 'closed', 'ended', 4, 0, 'sr:competitor:60', 0, 0, 'regular_period', 1, 4, 0, 'regular_period', 2),
(43, 'sr:match:14736715', 'closed', 'ended', 1, 1, NULL, 0, 1, 'regular_period', 1, 1, 0, 'regular_period', 2),
(44, 'sr:match:14736717', 'closed', 'ended', 1, 1, NULL, 1, 1, 'regular_period', 1, 0, 0, 'regular_period', 2),
(45, 'sr:match:14736719', 'closed', 'ended', 2, 1, 'sr:competitor:33', 0, 1, 'regular_period', 1, 2, 0, 'regular_period', 2),
(46, 'sr:match:17122441', 'closed', 'ended', 1, 1, NULL, 0, 0, 'regular_period', 1, 1, 1, 'regular_period', 2),
(47, 'sr:match:14946103', 'closed', 'ended', 3, 0, 'sr:competitor:3002', 2, 0, 'regular_period', 1, 1, 0, 'regular_period', 2),
(48, 'sr:match:14700811', 'closed', 'ended', 2, 0, 'sr:competitor:1641', 2, 0, 'regular_period', 1, 0, 0, 'regular_period', 2),
(49, 'sr:match:11832834', 'closed', '', 0, 2, 'sr:competitor:1641', 0, 0, 'regular_period', 1, 0, 2, 'regular_period', 2),
(50, 'sr:match:11833190', 'closed', '', 5, 0, 'sr:competitor:1641', 1, 0, 'regular_period', 1, 4, 0, 'regular_period', 2),
(51, 'sr:match:9540123', 'closed', '', 1, 5, 'sr:competitor:1641', 1, 3, 'regular_period', 1, 0, 2, 'regular_period', 2),
(52, 'sr:match:9539795', 'closed', '', 1, 0, 'sr:competitor:1641', 0, 0, 'regular_period', 1, 1, 0, 'regular_period', 2),
(53, 'sr:match:7473808', 'closed', '', 1, 3, 'sr:competitor:1641', 0, 1, 'regular_period', 1, 1, 2, 'regular_period', 2),
(54, 'sr:match:8548756', 'closed', '', 0, 0, 'sr:competitor:1641', 0, 0, 'regular_period', 1, 0, 0, 'regular_period', 2),
(55, 'sr:match:7473106', 'closed', '', 0, 1, 'sr:competitor:1667', 0, 1, 'regular_period', 1, 0, 0, 'regular_period', 2),
(56, 'sr:match:5509676', 'closed', '', 2, 3, 'sr:competitor:1667', 1, 0, 'regular_period', 1, 1, 3, 'regular_period', 2),
(57, 'sr:match:5509310', 'closed', '', 1, 2, 'sr:competitor:1641', 0, 0, 'regular_period', 1, 1, 2, 'regular_period', 2),
(58, 'sr:match:1763647', 'closed', '', 1, 1, NULL, 1, 1, 'regular_period', 1, 0, 0, 'regular_period', 2),
(59, 'sr:match:2116621', 'closed', '', 0, 3, 'sr:competitor:1641', 0, 2, 'regular_period', 1, 0, 1, 'regular_period', 2),
(60, 'sr:match:1763486', 'closed', '', 1, 2, 'sr:competitor:1641', 1, 1, 'regular_period', 1, 0, 1, 'regular_period', 2),
(61, 'sr:match:1370347', 'closed', '', 2, 2, NULL, 2, 0, 'regular_period', 1, 0, 2, 'regular_period', 2),
(62, 'sr:match:1369976', 'closed', '', 1, 2, 'sr:competitor:1667', 0, 0, 'regular_period', 1, 1, 2, 'regular_period', 2),
(63, 'sr:match:770163', 'closed', '', 0, 1, 'sr:competitor:1641', 0, 0, 'regular_period', 1, 0, 1, 'regular_period', 2),
(64, 'sr:match:769643', 'closed', '', 2, 1, 'sr:competitor:1641', 1, 1, 'regular_period', 1, 1, 0, 'regular_period', 2),
(65, 'sr:match:508424', 'closed', '', 6, 1, 'sr:competitor:1641', 3, 1, 'regular_period', 1, 3, 0, 'regular_period', 2),
(66, 'sr:match:507592', 'closed', '', 1, 2, 'sr:competitor:1641', 0, 1, 'regular_period', 1, 1, 1, 'regular_period', 2),
(67, 'sr:match:105038', 'closed', '', 2, 3, 'sr:competitor:1667', 1, 2, 'regular_period', 1, 1, 1, 'regular_period', 2),
(68, 'sr:match:104629', 'closed', '', 2, 3, 'sr:competitor:1641', 1, 1, 'regular_period', 1, 1, 2, 'regular_period', 2),
(69, 'sr:match:360577', 'closed', '', 1, 0, 'sr:competitor:1667', 1, 0, 'regular_period', 1, 0, 0, 'regular_period', 2),
(70, 'sr:match:360395', 'closed', '', 0, 1, 'sr:competitor:1667', 0, 0, 'regular_period', 1, 0, 1, 'regular_period', 2),
(71, 'sr:match:361794', 'closed', '', 1, 0, 'sr:competitor:1667', 0, 0, '', 0, 0, 0, '', 0),
(72, 'sr:match:361614', 'closed', '', 2, 0, 'sr:competitor:1641', 0, 0, '', 0, 0, 0, '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `statistics`
--
CREATE TABLE `statistics` (
`id` int(11) NOT NULL,
`match_id` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
`competitor1` text COLLATE utf8_unicode_ci NOT NULL,
`competitor2` text COLLATE utf8_unicode_ci NOT NULL,
`language_code` varchar(191) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `statistics`
--
INSERT INTO `statistics` (`id`, `match_id`, `competitor1`, `competitor2`, `language_code`) VALUES
(1, 'sr:match:16594213', '{\"team_id\":\"sr:competitor:3247\",\"statistics\":{\"throw_ins\":20,\"free_kicks\":16,\"corner_kicks\":3,\"shots_off_target\":4,\"goal_kicks\":7,\"fouls\":15,\"shots_on_target\":4,\"offsides\":4,\"shots_saved\":1,\"yellow_cards\":2,\"injuries\":2},\"players\":[{\"id\":\"sr:player:78891\",\"name\":\"Kotnik, Matic\",\"substituted_in\":0,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:17341\",\"name\":\"Papageorgiou, Athanasios\",\"substituted_in\":0,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:159741\",\"name\":\"\\uc57c\\uc57c \\ubc14\\ub098\\ub098\",\"substituted_in\":0,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:893822\",\"name\":\"Domingues Gustavo, Luis\",\"substituted_in\":0,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:354300\",\"name\":\"Saramantas, Giorgos\",\"substituted_in\":0,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:352898\",\"name\":\"\\uc9c0\\uc624\\ub974\\uc870\\uc2a4 \\ub9cc\\ud0c0\\ud2f0\\uc2a4\",\"substituted_in\":0,\"substituted_out\":1,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":1,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:115129\",\"name\":\"\\uc544\\ubbf8\\ub974 \\ucfe0\\ub974\\ub514\",\"substituted_in\":0,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:17350\",\"name\":\"Korbos, Panagiotis\",\"substituted_in\":0,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:1573030\",\"name\":\"Sidi Ali, Sofiane\",\"substituted_in\":0,\"substituted_out\":1,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:595332\",\"name\":\"Tsiloulis, Sotiris\",\"substituted_in\":0,\"substituted_out\":1,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":1,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:592556\",\"name\":\"Durmishaj, Fiorin\",\"substituted_in\":0,\"substituted_out\":0,\"goals_scored\":1,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:1097646\",\"name\":\"Oikonomidis, Ioannis\",\"substituted_in\":1,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:783092\",\"name\":\"Camara, Oumar\",\"substituted_in\":1,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:1045879\",\"name\":\"Stavropoulos, Dimitrios\",\"substituted_in\":1,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0}]}', '{\"team_id\":\"sr:competitor:6342\",\"statistics\":{\"throw_ins\":23,\"free_kicks\":19,\"corner_kicks\":5,\"shots_off_target\":4,\"goal_kicks\":9,\"fouls\":15,\"shots_on_target\":3,\"offsides\":1,\"shots_saved\":3,\"yellow_cards\":2,\"injuries\":2},\"players\":[{\"id\":\"sr:player:175341\",\"name\":\"Papadopoulos, Nikolaos\",\"substituted_in\":0,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:137981\",\"name\":\"Vlachos, Valentinos\",\"substituted_in\":0,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:235502\",\"name\":\"Triantafyllopoulos, Konstantinos\",\"substituted_in\":0,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":1,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:1071898\",\"name\":\"Pasalidis, Triantafyllos\",\"substituted_in\":0,\"substituted_out\":1,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":1,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:377302\",\"name\":\"Kyriakopoulos, Giorgos\",\"substituted_in\":0,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:81176\",\"name\":\"Munafo, Juan\",\"substituted_in\":0,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:579372\",\"name\":\"\\ud504\\ub780\\ucf54 \\ubca8\\ub85c\\ud06c\",\"substituted_in\":0,\"substituted_out\":1,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:994087\",\"name\":\"Kotsiras, Giannis\",\"substituted_in\":0,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:134407\",\"name\":\"Manias, Michalis\",\"substituted_in\":0,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:351748\",\"name\":\"Tsilianidis, Kosmas\",\"substituted_in\":0,\"substituted_out\":1,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:133682\",\"name\":\"Kaltsas, Nikos\",\"substituted_in\":0,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:170739\",\"name\":\"Fernandez Gracia, Marc\",\"substituted_in\":1,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:252341\",\"name\":\"\\ub9c8\\ub974\\ud2f4 \\ub864\\ub808\",\"substituted_in\":1,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0},{\"id\":\"sr:player:1264266\",\"name\":\"Douvikas, Anastasios\",\"substituted_in\":1,\"substituted_out\":0,\"goals_scored\":0,\"assists\":0,\"own_goals\":0,\"yellow_cards\":0,\"yellow_red_cards\":0,\"red_cards\":0}]}', 'ko');
-- --------------------------------------------------------
--
-- Table structure for table `teams`
--
CREATE TABLE `teams` (
`id` int(11) NOT NULL,