-
Notifications
You must be signed in to change notification settings - Fork 8
/
answers.zpln
1987 lines (1987 loc) · 276 KB
/
answers.zpln
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
{
"paragraphs": [
{
"text": "%flink.ssql\n-- Note: Please run only one query at a time as Apache Flink SQL queries runs continuously on the data (as new row is added to the source table in time).\n-- Use pause (||) button at the right of each paragraph to stop the query. Alternatively, run below paragraph to cancel all running queries.",
"user": "anonymous",
"dateUpdated": "2023-08-03T15:48:49+0000",
"progress": 0,
"config": {
"editorSetting": {
"language": "sql",
"editOnDblClick": false,
"completionKey": "TAB",
"completionSupport": true
},
"colWidth": 12,
"editorMode": "ace/mode/sql",
"fontSize": 9,
"results": {},
"enabled": true
},
"settings": {
"params": {},
"forms": {}
},
"apps": [],
"runtimeInfos": {},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1690906197071_1069960839",
"id": "paragraph_1690886156102_1343599895",
"dateCreated": "2023-08-01T16:09:57+0000",
"status": "READY",
"focus": true,
"$$hashKey": "object:53"
},
{
"text": "%flink.pyflink\n# Cancel ALL Running Queries\nimport requests\n\nr = requests.get(\"https://zeppelin-flink:8082/jobs\", verify=False)\njobs = r.json()['jobs']\nprint(jobs)\n\nfor job in jobs:\n if (job[\"status\"] == \"RUNNING\"):\n print(requests.patch(\"https://zeppelin-flink:8082/jobs/{}\".format(job[\"id\"]), verify=False))",
"user": "anonymous",
"dateUpdated": "2023-08-03T16:43:04+0000",
"progress": 0,
"config": {
"editorSetting": {
"language": "python",
"editOnDblClick": false,
"completionKey": "TAB",
"completionSupport": true
},
"colWidth": 12,
"editorMode": "ace/mode/python",
"fontSize": 9,
"results": {},
"enabled": true
},
"settings": {
"params": {},
"forms": {}
},
"apps": [],
"runtimeInfos": {},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1691009386200_317726874",
"id": "paragraph_1691009386200_317726874",
"dateCreated": "2023-08-02T20:49:46+0000",
"dateStarted": "2023-08-03T16:43:04+0000",
"dateFinished": "2023-08-03T16:43:05+0000",
"status": "FINISHED",
"$$hashKey": "object:54"
},
{
"text": "%flink.ssql\n-- Part 1: Streaming ingestion.\n-- Ref: https://nightlies.apache.org/flink/flink-docs-release-1.15/docs/connectors/table/kinesis/\nDROP TABLE IF EXISTS `events`;\nCREATE TABLE `events` (\n `player_id` STRING,\n `speed_kmph` BIGINT,\n `distance_meters` BIGINT,\n `event_time` TIMESTAMP(3),\n `event_time_tz` AS CAST(event_time AS TIMESTAMP_LTZ(3)),\n WATERMARK FOR event_time_tz AS event_time_tz - INTERVAL '5' SECOND\n)\nWITH (\n 'connector' = 'kinesis', -- connect to the kinesis stream\n 'stream' = 'GamingLeaderboardStack-events',\n 'aws.region' = 'eu-west-1', -- example: eu-west-1\n 'scan.stream.initpos' = 'LATEST', -- read from the end of the stream\n 'format' = 'json' -- source data in json format\n);\n",
"user": "anonymous",
"dateUpdated": "2023-08-03T16:43:19+0000",
"progress": 0,
"config": {
"editorSetting": {
"language": "sql",
"editOnDblClick": false,
"completionKey": "TAB",
"completionSupport": true
},
"colWidth": 12,
"editorMode": "ace/mode/sql",
"fontSize": 9,
"results": {},
"enabled": true
},
"settings": {
"params": {},
"forms": {}
},
"results": {
"code": "SUCCESS",
"msg": [
{
"type": "TEXT",
"data": "Table has been dropped.\nTable has been created.\n"
}
]
},
"apps": [],
"runtimeInfos": {},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1690906197071_566118305",
"id": "paragraph_1690478078662_357011998",
"dateCreated": "2023-08-01T16:09:57+0000",
"dateStarted": "2023-08-03T16:43:19+0000",
"dateFinished": "2023-08-03T16:43:22+0000",
"status": "FINISHED",
"$$hashKey": "object:55"
},
{
"text": "%flink.ssql(type=update)\n-- Part 1: Streaming ingestion reading data from kinesis source stream (Populated by DataGenerator constantly)\n-- Challenge 1: Can you Spin up studio notebook and select data from events table?\nselect * from events\n",
"user": "anonymous",
"dateUpdated": "2023-08-03T20:57:44+0000",
"progress": 0,
"config": {
"editorSetting": {
"language": "sql",
"editOnDblClick": false,
"completionKey": "TAB",
"completionSupport": true
},
"colWidth": 12,
"editorMode": "ace/mode/sql",
"fontSize": 9,
"results": {
"0": {
"graph": {
"mode": "table",
"height": 300,
"optionOpen": false,
"setting": {
"table": {
"tableGridState": {},
"tableColumnTypeState": {
"names": {
"player_id": "string",
"speed_kmph": "string",
"distance_meters": "string",
"event_time": "string",
"event_time_tz": "string"
},
"updated": false
},
"tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
"tableOptionValue": {
"useFilter": false,
"showPagination": false,
"showAggregationFooter": false
},
"updated": false,
"initialized": false
}
},
"commonSetting": {}
}
}
},
"enabled": true
},
"settings": {
"params": {},
"forms": {}
},
"results": {
"code": "ERROR",
"msg": [
{
"type": "TABLE",
"data": "player_id\tspeed_kmph\tdistance_meters\tevent_time\tevent_time_tz\nplayer-1\t224\t24\t2023-08-03 16:43:15.862\t2023-08-03 16:43:15.862\nplayer-1\t238\t39\t2023-08-02 16:43:11.696\t2023-08-02 16:43:11.696\nplayer-1\t238\t39\t2023-08-02 16:43:11.696\t2023-08-02 16:43:11.696\nplayer-1\t349\t17\t2023-07-30 16:43:08.132\t2023-07-30 16:43:08.132\nplayer-1\t224\t24\t2023-08-03 16:43:15.862\t2023-08-03 16:43:15.862\nplayer-1\t224\t24\t2023-08-03 16:43:15.862\t2023-08-03 16:43:15.862\nplayer-1\t238\t39\t2023-08-02 16:43:11.696\t2023-08-02 16:43:11.696\nplayer-1\t349\t17\t2023-07-30 16:43:08.132\t2023-07-30 16:43:08.132\nplayer-2\t282\t25\t2023-08-03 16:43:21.048\t2023-08-03 16:43:21.048\nplayer-2\t229\t36\t2023-08-03 16:43:16.922\t2023-08-03 16:43:16.922\nplayer-2\t229\t36\t2023-08-03 16:43:16.922\t2023-08-03 16:43:16.922\nplayer-2\t239\t25\t2023-08-03 16:43:13.313\t2023-08-03 16:43:13.313\nplayer-2\t282\t25\t2023-08-03 16:43:21.048\t2023-08-03 16:43:21.048\nplayer-2\t282\t25\t2023-08-03 16:43:21.048\t2023-08-03 16:43:21.048\nplayer-2\t229\t36\t2023-08-03 16:43:16.922\t2023-08-03 16:43:16.922\nplayer-2\t239\t25\t2023-08-03 16:43:13.313\t2023-08-03 16:43:13.313\nplayer-3\t289\t26\t2023-08-03 16:43:26.107\t2023-08-03 16:43:26.107\nplayer-3\t338\t14\t2023-07-29 16:43:21.939\t2023-07-29 16:43:21.939\nplayer-3\t338\t14\t2023-07-29 16:43:21.939\t2023-07-29 16:43:21.939\nplayer-3\t174\t35\t2023-08-03 16:43:18.343\t2023-08-03 16:43:18.343\nplayer-3\t289\t26\t2023-08-03 16:43:26.107\t2023-08-03 16:43:26.107\nplayer-3\t289\t26\t2023-08-03 16:43:26.107\t2023-08-03 16:43:26.107\nplayer-3\t338\t14\t2023-07-29 16:43:21.939\t2023-07-29 16:43:21.939\nplayer-3\t174\t35\t2023-08-03 16:43:18.343\t2023-08-03 16:43:18.343\nplayer-4\t307\t47\t2023-08-03 16:43:31.125\t2023-08-03 16:43:31.125\nplayer-4\t184\t32\t2023-07-31 16:43:26.956\t2023-07-31 16:43:26.956\nplayer-4\t184\t32\t2023-07-31 16:43:26.956\t2023-07-31 16:43:26.956\nplayer-4\t337\t35\t2023-08-03 16:43:23.360\t2023-08-03 16:43:23.360\nplayer-4\t307\t47\t2023-08-03 16:43:31.125\t2023-08-03 16:43:31.125\nplayer-4\t307\t47\t2023-08-03 16:43:31.125\t2023-08-03 16:43:31.125\nplayer-4\t184\t32\t2023-07-31 16:43:26.956\t2023-07-31 16:43:26.956\nplayer-4\t337\t35\t2023-08-03 16:43:23.360\t2023-08-03 16:43:23.360\nplayer-5\t307\t25\t2023-07-28 16:43:36.187\t2023-07-28 16:43:36.187\nplayer-5\t199\t20\t2023-08-01 16:43:31.996\t2023-08-01 16:43:31.996\nplayer-5\t199\t20\t2023-08-01 16:43:31.996\t2023-08-01 16:43:31.996\nplayer-5\t328\t18\t2023-08-03 16:43:28.377\t2023-08-03 16:43:28.377\nplayer-5\t307\t25\t2023-07-28 16:43:36.187\t2023-07-28 16:43:36.187\nplayer-5\t307\t25\t2023-07-28 16:43:36.187\t2023-07-28 16:43:36.187\nplayer-5\t199\t20\t2023-08-01 16:43:31.996\t2023-08-01 16:43:31.996\nplayer-5\t328\t18\t2023-08-03 16:43:28.377\t2023-08-03 16:43:28.377\nplayer-6\t325\t40\t2023-08-03 16:43:41.207\t2023-08-03 16:43:41.207\nplayer-6\t339\t14\t2023-08-03 16:43:37.016\t2023-08-03 16:43:37.016\nplayer-6\t339\t14\t2023-08-03 16:43:37.016\t2023-08-03 16:43:37.016\nplayer-6\t270\t17\t2023-07-31 16:43:33.413\t2023-07-31 16:43:33.413\nplayer-6\t325\t40\t2023-08-03 16:43:41.207\t2023-08-03 16:43:41.207\nplayer-6\t325\t40\t2023-08-03 16:43:41.207\t2023-08-03 16:43:41.207\nplayer-6\t339\t14\t2023-08-03 16:43:37.016\t2023-08-03 16:43:37.016\nplayer-6\t270\t17\t2023-07-31 16:43:33.413\t2023-07-31 16:43:33.413\nplayer-7\t333\t9\t2023-08-03 16:43:42.076\t2023-08-03 16:43:42.076\nplayer-7\t333\t9\t2023-08-03 16:43:42.076\t2023-08-03 16:43:42.076\nplayer-7\t174\t6\t2023-07-30 16:43:38.433\t2023-07-30 16:43:38.433\nplayer-7\t176\t20\t2023-08-03 16:43:46.225\t2023-08-03 16:43:46.225\nplayer-7\t176\t20\t2023-08-03 16:43:46.225\t2023-08-03 16:43:46.225\nplayer-7\t333\t9\t2023-08-03 16:43:42.076\t2023-08-03 16:43:42.076\nplayer-7\t174\t6\t2023-07-30 16:43:38.433\t2023-07-30 16:43:38.433\nplayer-8\t229\t43\t2023-08-03 16:43:43.473\t2023-08-03 16:43:43.473\nplayer-8\t243\t14\t2023-08-03 16:43:47.116\t2023-08-03 16:43:47.116\nplayer-8\t229\t43\t2023-08-03 16:43:43.473\t2023-08-03 16:43:43.473\nplayer-9\t339\t14\t2023-08-03 16:43:48.493\t2023-08-03 16:43:48.493\n"
},
{
"type": "TEXT",
"data": "Fail to run sql command: select * from events\n"
},
{
"type": "ANGULAR",
"data": "<div class='container ng-scope' style='padding-left:0px;padding-right:0px;'>\n <div class='panel panel-danger'>\n <div class='panel-heading' ng-click='isOpen=!isOpen' ng-init='isOpen=false' style=\"cursor:pointer\">\n <div class='plainTextContainer' style='font-weight:bolder'><i class=\"fa fa-caret-right fa-fw\" style=\"padding-right:7px;transition:all 0.3s;{{isOpen?'transform:rotate(90deg);transform-origin:25% 45%':''}}\"></i>Job was cancelled.</div>\n </div>\n <div class='panel-collapse' uib-collapse='!isOpen'>\n <div class='text' style='max-height:300px;overflow:auto;padding:10px'>java.lang.RuntimeException: Fail to run update type stream job\n\tat org.apache.zeppelin.flink.FlinkStreamSqlInterpreter.callInnerSelect(FlinkStreamSqlInterpreter.java:94)\n\tat org.apache.zeppelin.flink.FlinkStreamSqlInterpreter.lambda$open$0(FlinkStreamSqlInterpreter.java:49)\n\tat org.apache.zeppelin.flink.Flink115SqlInterpreter.callStreamInnerSelect(Flink115SqlInterpreter.java:451)\n\tat org.apache.zeppelin.flink.Flink115SqlInterpreter.callSelect(Flink115SqlInterpreter.java:435)\n\tat org.apache.zeppelin.flink.Flink115SqlInterpreter.callOperation(Flink115SqlInterpreter.java:290)\n\tat org.apache.zeppelin.flink.Flink115SqlInterpreter.runSqlList(Flink115SqlInterpreter.java:236)\n\tat org.apache.zeppelin.flink.Flink115Shims.runSqlList(Flink115Shims.java:315)\n\tat org.apache.zeppelin.flink.FlinkStreamSqlInterpreter.runSqlList(FlinkStreamSqlInterpreter.java:103)\n\tat org.apache.zeppelin.flink.FlinkSqlInterpreter.internalInterpret(FlinkSqlInterpreter.java:63)\n\tat org.apache.zeppelin.interpreter.AbstractInterpreter.interpret(AbstractInterpreter.java:55)\n\tat org.apache.zeppelin.interpreter.LazyOpenInterpreter.interpret(LazyOpenInterpreter.java:110)\n\tat org.apache.zeppelin.interpreter.remote.RemoteInterpreterServer$InterpretJob.jobRun(RemoteInterpreterServer.java:860)\n\tat org.apache.zeppelin.interpreter.remote.RemoteInterpreterServer$InterpretJob.jobRun(RemoteInterpreterServer.java:752)\n\tat org.apache.zeppelin.scheduler.Job.run(Job.java:172)\n\tat org.apache.zeppelin.scheduler.AbstractScheduler.runJob(AbstractScheduler.java:132)\n\tat org.apache.zeppelin.scheduler.ParallelScheduler.lambda$runJobInScheduler$0(ParallelScheduler.java:46)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)\n\tat java.base/java.lang.Thread.run(Thread.java:829)\nCaused by: java.io.IOException: Fail to run stream sql job\n\tat org.apache.zeppelin.flink.sql.AbstractStreamSqlJob.run(AbstractStreamSqlJob.java:165)\n\tat org.apache.zeppelin.flink.sql.AbstractStreamSqlJob.run(AbstractStreamSqlJob.java:109)\n\tat org.apache.zeppelin.flink.FlinkStreamSqlInterpreter.callInnerSelect(FlinkStreamSqlInterpreter.java:92)\n\t... 18 more\nCaused by: java.util.concurrent.ExecutionException: org.apache.flink.table.api.TableException: Failed to wait job finish\n\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:395)\n\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:1999)\n\tat org.apache.flink.table.api.internal.TableResultImpl.awaitInternal(TableResultImpl.java:118)\n\tat org.apache.flink.table.api.internal.TableResultImpl.await(TableResultImpl.java:81)\n\tat org.apache.zeppelin.flink.sql.AbstractStreamSqlJob.run(AbstractStreamSqlJob.java:154)\n\t... 20 more\nCaused by: org.apache.flink.table.api.TableException: Failed to wait job finish\n\tat org.apache.flink.table.api.internal.InsertResultProvider.hasNext(InsertResultProvider.java:85)\n\tat org.apache.flink.table.api.internal.InsertResultProvider.isFirstRowReady(InsertResultProvider.java:71)\n\tat org.apache.flink.table.api.internal.TableResultImpl.lambda$awaitInternal$1(TableResultImpl.java:105)\n\tat java.base/java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1736)\n\t... 3 more\nCaused by: java.util.concurrent.ExecutionException: org.apache.flink.client.program.ProgramInvocationException: Job failed (JobID: e21ccee7653fb03e95d019be77e33a43)\n\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:395)\n\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:1999)\n\tat org.apache.flink.table.api.internal.InsertResultProvider.hasNext(InsertResultProvider.java:83)\n\t... 6 more\nCaused by: org.apache.flink.client.program.ProgramInvocationException: Job failed (JobID: e21ccee7653fb03e95d019be77e33a43)\n\tat org.apache.flink.client.deployment.ClusterClientJobClientAdapter.lambda$getJobExecutionResult$6(ClusterClientJobClientAdapter.java:130)\n\tat java.base/java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:642)\n\tat java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506)\n\tat java.base/java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:2073)\n\tat org.apache.flink.util.concurrent.FutureUtils.lambda$retryOperationWithDelay$9(FutureUtils.java:403)\n\tat java.base/java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:859)\n\tat java.base/java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:837)\n\tat java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506)\n\tat java.base/java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:2073)\n\tat org.apache.flink.client.program.rest.RestClusterClient.lambda$pollResourceAsync$26(RestClusterClient.java:708)\n\tat java.base/java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:859)\n\tat java.base/java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:837)\n\tat java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506)\n\tat java.base/java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:2073)\n\tat org.apache.flink.util.concurrent.FutureUtils.lambda$retryOperationWithDelay$9(FutureUtils.java:403)\n\tat java.base/java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:859)\n\tat java.base/java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:837)\n\tat java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506)\n\tat java.base/java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:610)\n\tat java.base/java.util.concurrent.CompletableFuture$UniCompose.tryFire(CompletableFuture.java:1085)\n\tat java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:478)\n\t... 3 more\nCaused by: org.apache.flink.runtime.client.JobCancellationException: Job was cancelled.\n\tat org.apache.flink.runtime.jobmaster.JobResult.toJobExecutionResult(JobResult.java:146)\n\tat org.apache.flink.client.deployment.ClusterClientJobClientAdapter.lambda$getJobExecutionResult$6(ClusterClientJobClientAdapter.java:128)\n\t... 23 more\n</div>\n </div>\n </div>\n</div>\n"
}
]
},
"apps": [],
"runtimeInfos": {
"jobUrl": {
"propertyName": "jobUrl",
"label": "FLINK JOB",
"tooltip": "View in Flink web UI",
"group": "flink",
"values": [
{
"jobUrl": "/flinkdashboard/#/job/e21ccee7653fb03e95d019be77e33a43",
"$$hashKey": "object:10609"
}
],
"interpreterSettingId": "flink"
}
},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1690906197071_2002658163",
"id": "paragraph_1690478089140_320348584",
"dateCreated": "2023-08-01T16:09:57+0000",
"dateStarted": "2023-08-03T16:43:26+0000",
"dateFinished": "2023-08-03T16:43:53+0000",
"status": "ABORT",
"$$hashKey": "object:56"
},
{
"text": "%flink.ssql\n-- Create players table connected to the MySQL in CDC mode.\n-- Part 2: Streaming enrichment using MySQL CDC\n-- Ref: https://github.com/ververica/flink-cdc-connectors/blob/master/docs/content/connectors/mysql-cdc.md\nDROP TABLE IF EXISTS `players`;\nCREATE TABLE `players` (\n `operation_ts` TIMESTAMP_LTZ(3) METADATA FROM 'op_ts' VIRTUAL,\n `player_id` STRING,\n `alias` STRING,\n `level` BIGINT,\n `country` STRING,\n `is_bot` INT,\n `subscription_type` STRING,\n WATERMARK FOR operation_ts AS operation_ts - INTERVAL '5' SECOND,\n PRIMARY KEY(player_id) NOT ENFORCED\n)\nWITH (\n 'connector' = 'mysql-cdc',\n 'hostname' = '', -- Enter host name here from Cloudformation output.\n 'port' = '3306',\n 'username' = 'admin',\n 'password' = '', -- Enter password here from Cloudformation output secrets manager link\n 'database-name' = 'gaming',\n 'table-name' = 'players'\n);",
"user": "anonymous",
"dateUpdated": "2023-08-03T21:11:09+0000",
"progress": 0,
"config": {
"editorSetting": {
"language": "sql",
"editOnDblClick": false,
"completionKey": "TAB",
"completionSupport": true
},
"colWidth": 12,
"editorMode": "ace/mode/sql",
"fontSize": 9,
"results": {},
"enabled": true
},
"settings": {
"params": {},
"forms": {}
},
"results": {
"code": "SUCCESS",
"msg": [
{
"type": "TEXT",
"data": "Table has been dropped.\nTable has been created.\n"
}
]
},
"apps": [],
"runtimeInfos": {},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1690906197072_1195818230",
"id": "paragraph_1690794702548_2092136882",
"dateCreated": "2023-08-01T16:09:57+0000",
"dateStarted": "2023-08-03T16:44:35+0000",
"dateFinished": "2023-08-03T16:44:37+0000",
"status": "FINISHED",
"$$hashKey": "object:57"
},
{
"text": "%flink.ssql\n-- Part 2: Streaming enrichment using MySQL CDC, reading CDC events from MySQL binlog table.\n-- Challenge 2.1: Can you select data from players table?\nselect * from players",
"user": "anonymous",
"dateUpdated": "2023-08-03T20:58:57+0000",
"progress": 0,
"config": {
"editorSetting": {
"language": "sql",
"editOnDblClick": false,
"completionKey": "TAB",
"completionSupport": true
},
"colWidth": 12,
"editorMode": "ace/mode/sql",
"fontSize": 9,
"results": {
"0": {
"graph": {
"mode": "table",
"height": 300,
"optionOpen": false,
"setting": {
"table": {
"tableGridState": {},
"tableColumnTypeState": {
"names": {
"operation_ts": "string",
"player_id": "string",
"alias": "string",
"level": "string",
"country": "string",
"is_bot": "string",
"subscription_type": "string"
},
"updated": false
},
"tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
"tableOptionValue": {
"useFilter": false,
"showPagination": false,
"showAggregationFooter": false
},
"updated": false,
"initialized": false
}
},
"commonSetting": {}
}
}
},
"enabled": true
},
"settings": {
"params": {},
"forms": {}
},
"results": {
"code": "ERROR",
"msg": [
{
"type": "TABLE",
"data": "operation_ts\tplayer_id\talias\tlevel\tcountry\tis_bot\tsubscription_type\n1970-01-01 00:00:00.000\tplayer-16830\tawesome-car-72\t10\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16831\tfunny-car-89\t4\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16832\tspeedy-racer-8\t8\tUK\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16833\trunning-superman-35\t2\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15502\tfast-superman-79\t5\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15501\trunning-rock-65\t9\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15500\trunning-tarzan-63\t2\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15509\trunning-devil-96\t5\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15508\tcool-rock-57\t6\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15507\thot-john-2\t8\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15506\tmoving-john-12\t4\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15505\twinning-buddy-37\t5\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15504\tfunny-superman-54\t1\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15503\tmoving-john-15\t9\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16834\tfunny-racer-61\t3\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16835\tfunny-tarzan-57\t3\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16836\tmoving-star-17\t9\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16837\tmoving-rock-36\t4\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16838\twinning-tarzan-83\t9\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-16839\tfast-car-57\t8\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16820\tmoving-car-16\t4\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16821\tspeedy-john-94\t6\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16822\trunning-buddy-34\t6\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16823\tmoving-tarzan-67\t10\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16824\thot-car-74\t5\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16825\tspeedy-racer-96\t8\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16826\tspeedy-john-55\t1\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16827\tmoving-buddy-58\t10\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-16828\tcool-superman-54\t4\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16829\trunning-john-17\t3\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16810\tcool-racer-56\t6\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16811\tcool-car-68\t7\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16812\tfunny-devil-37\t10\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16813\tfast-rock-45\t8\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16814\tfunny-superman-86\t5\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-16815\thot-star-97\t7\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-16816\twinning-buddy-39\t2\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16817\tawesome-john-17\t3\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16818\tspeedy-superman-74\t4\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16819\tawesome-buddy-7\t9\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16800\trunning-rock-86\t4\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16809\trunning-car-13\t9\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16801\tspeedy-car-100\t7\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-16802\tawesome-tarzan-19\t5\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16803\tspeedy-tarzan-55\t3\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-16804\tspeedy-car-19\t5\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16805\tmoving-racer-22\t4\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16806\thot-tarzan-70\t6\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16807\tfunny-buddy-75\t2\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16808\tfunny-buddy-53\t9\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16870\thot-devil-16\t3\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16871\thot-star-38\t8\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-16872\tmoving-superman-36\t10\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16873\thot-racer-17\t2\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16874\tawesome-buddy-26\t5\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16875\tfunny-racer-70\t4\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16876\tfast-john-93\t6\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16877\tawesome-racer-76\t6\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14215\tcool-tarzan-65\t4\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15546\tspeedy-star-98\t7\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14214\trunning-john-84\t3\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15545\tfast-buddy-12\t9\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14213\tcool-buddy-97\t7\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15544\twinning-buddy-71\t4\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14212\tcool-rock-60\t7\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15543\thot-tarzan-8\t4\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14211\trunning-tarzan-43\t4\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15542\thot-car-19\t4\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14210\twinning-racer-95\t5\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15541\twinning-devil-95\t5\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15540\trunning-star-53\t1\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14219\twinning-rock-42\t5\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14218\trunning-tarzan-72\t1\tDE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15549\thot-tarzan-21\t2\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14217\tawesome-tarzan-61\t3\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15548\tfunny-car-7\t5\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14216\thot-racer-26\t2\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15547\tfast-star-83\t8\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16878\thot-buddy-69\t1\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16879\trunning-john-1\t1\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16860\tspeedy-rock-82\t7\tIN\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-16861\thot-racer-38\t4\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16862\trunning-car-76\t4\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16863\tfast-john-99\t4\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16864\tfunny-john-49\t8\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16865\trunning-star-44\t7\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16866\tspeedy-car-90\t4\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14204\tfunny-john-4\t2\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15535\twinning-rock-31\t9\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14203\tcool-rock-41\t5\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15534\twinning-devil-97\t10\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14202\twinning-superman-26\t7\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15533\tfast-star-60\t8\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14201\tmoving-racer-37\t1\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15532\tcool-john-20\t8\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14200\tawesome-tarzan-52\t5\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15531\trunning-devil-8\t5\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15530\thot-tarzan-12\t4\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14209\tfast-car-54\t5\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14208\tmoving-superman-39\t7\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15539\tspeedy-john-7\t9\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14207\tawesome-buddy-86\t7\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15538\tfast-rock-75\t4\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14206\tspeedy-john-72\t4\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15537\thot-rock-87\t4\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14205\tfast-superman-83\t8\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15536\tcool-car-1\t3\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16867\tfunny-devil-46\t2\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-16868\thot-john-50\t3\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16869\twinning-john-85\t5\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16850\tfunny-superman-78\t8\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16851\tfunny-star-73\t7\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16852\tfast-tarzan-89\t2\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16853\tfast-tarzan-34\t10\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16854\trunning-buddy-35\t8\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16855\twinning-buddy-70\t3\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15524\tcool-tarzan-23\t5\tUS\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15523\tawesome-star-5\t2\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15522\twinning-superman-62\t1\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15521\tcool-car-44\t5\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15520\thot-racer-34\t8\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15529\trunning-superman-21\t2\tUS\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15528\tspeedy-devil-34\t7\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15527\tspeedy-buddy-91\t2\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15526\tcool-tarzan-49\t6\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15525\tfunny-star-65\t3\tUS\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16856\tfunny-devil-12\t6\tUS\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16857\tmoving-tarzan-13\t6\tFR\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16858\trunning-racer-20\t7\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-16859\twinning-tarzan-55\t8\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16840\tspeedy-rock-29\t5\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16841\tcool-tarzan-75\t6\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-16842\tfast-racer-64\t8\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16843\tawesome-racer-98\t9\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16844\tawesome-star-36\t4\tUS\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15513\tcool-star-89\t4\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15512\thot-rock-76\t10\tUS\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15511\tcool-rock-88\t3\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15510\tawesome-buddy-68\t5\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15519\tfast-car-52\t7\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15518\trunning-tarzan-75\t9\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15517\tawesome-buddy-22\t4\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15516\tmoving-buddy-77\t7\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15515\tspeedy-rock-74\t2\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15514\twinning-car-7\t4\tFR\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16845\tfunny-racer-41\t2\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-16846\tfunny-car-40\t1\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16847\twinning-john-80\t2\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16848\thot-star-20\t8\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-16849\tmoving-rock-82\t7\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-172\tspeedy-star-11\t2\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10693\tspeedy-buddy-83\t2\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-170\tawesome-car-29\t6\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10692\tmoving-john-11\t8\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-171\twinning-devil-85\t2\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10695\tawesome-car-56\t8\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10694\tcool-star-51\t4\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10691\twinning-racer-47\t6\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10690\trunning-devil-94\t4\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10697\twinning-buddy-63\t8\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10696\trunning-buddy-20\t6\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10699\tmoving-superman-97\t6\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10698\trunning-tarzan-62\t7\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-167\trunning-john-64\t4\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-168\thot-john-5\t1\tFR\t1\tFree\n1970-01-01 00:00:00.000\tplayer-165\tcool-tarzan-74\t4\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-166\tawesome-rock-72\t9\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-163\tfast-buddy-53\t4\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-164\tfast-racer-87\t4\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-161\trunning-car-60\t8\tUK\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-162\trunning-star-87\t10\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10682\tfast-car-47\t6\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10681\tfast-rock-14\t3\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-160\twinning-tarzan-92\t9\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10684\trunning-car-6\t3\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10683\tspeedy-racer-2\t10\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10680\tawesome-rock-47\t8\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10689\tfast-buddy-53\t2\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10686\tfunny-tarzan-96\t2\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10685\trunning-tarzan-80\t3\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10688\trunning-racer-41\t5\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10687\trunning-car-70\t3\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-169\tfunny-star-13\t6\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-156\tcool-john-9\t9\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-157\tmoving-car-51\t1\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-154\tfunny-tarzan-24\t8\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-155\tfast-buddy-57\t7\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-152\twinning-superman-43\t1\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-153\tmoving-john-86\t2\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-150\twinning-buddy-19\t7\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-151\tfast-devil-72\t2\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10671\tcool-car-94\t10\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10670\twinning-tarzan-61\t8\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10673\tawesome-tarzan-83\t7\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10672\thot-tarzan-94\t6\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10679\tfast-buddy-43\t8\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10678\tmoving-car-75\t5\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10675\twinning-john-47\t9\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10674\tawesome-buddy-34\t8\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10677\tfunny-superman-33\t8\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10676\tspeedy-buddy-42\t3\tUS\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-158\tawesome-john-77\t5\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-159\tfunny-john-29\t2\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-145\thot-car-82\t5\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-146\twinning-tarzan-66\t6\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-143\twinning-racer-81\t4\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-144\tfunny-tarzan-77\t6\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-141\tawesome-star-89\t7\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-142\tcool-devil-57\t10\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-140\tspeedy-rock-69\t10\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10660\trunning-tarzan-98\t10\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-11991\tfunny-car-81\t5\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-11990\tspeedy-star-10\t6\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10662\thot-star-19\t4\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-11993\trunning-racer-53\t3\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10661\twinning-car-13\t4\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-11992\thot-devil-89\t9\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10668\trunning-superman-64\t1\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-11999\tawesome-racer-26\t8\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10667\tmoving-rock-64\t1\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-11998\tfunny-tarzan-85\t7\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10669\thot-racer-8\t10\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10664\tfunny-tarzan-61\t7\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-11995\thot-superman-49\t3\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10663\twinning-car-97\t6\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-11994\trunning-tarzan-79\t1\tUK\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10666\tmoving-tarzan-39\t3\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-11997\tawesome-star-88\t1\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10665\tfast-star-32\t10\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-11996\tfast-racer-8\t7\tFR\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-149\tfunny-tarzan-20\t5\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-147\tawesome-tarzan-83\t8\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-148\tspeedy-devil-12\t9\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-134\tfast-tarzan-91\t9\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-135\thot-superman-3\t8\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-132\tfast-tarzan-39\t5\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-133\thot-star-65\t1\tDE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-130\tcool-tarzan-84\t3\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-131\tfunny-rock-74\t7\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-138\thot-superman-87\t2\tDE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-139\tcool-rock-41\t5\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-136\tmoving-superman-97\t3\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-137\tfunny-john-56\t2\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-123\tspeedy-rock-37\t4\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-124\thot-racer-51\t6\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-121\tawesome-rock-10\t5\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-122\twinning-car-55\t2\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-120\tfast-tarzan-35\t9\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-129\trunning-devil-65\t5\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-127\tfunny-superman-48\t4\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-128\trunning-devil-81\t6\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-125\tspeedy-racer-22\t6\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-126\thot-devil-39\t5\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-112\tfast-tarzan-90\t8\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-113\tfast-devil-38\t9\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-110\tfast-racer-39\t10\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-111\thot-buddy-10\t2\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-118\tmoving-racer-75\t2\tUS\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-119\tawesome-racer-31\t5\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-116\tmoving-rock-85\t4\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-117\thot-racer-46\t6\tUS\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-114\tawesome-racer-79\t9\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-115\tmoving-rock-60\t3\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-101\tspeedy-star-22\t6\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-102\thot-car-96\t7\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-100\thot-john-71\t3\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-109\twinning-racer-55\t7\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-107\tspeedy-car-36\t9\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-108\tawesome-superman-56\t7\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-105\thot-car-30\t6\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-106\trunning-car-15\t6\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-103\thot-car-58\t5\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-104\tawesome-tarzan-92\t4\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10734\tmoving-superman-52\t2\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10733\tawesome-devil-49\t8\tUS\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10736\tawesome-racer-69\t8\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10735\trunning-racer-35\t9\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10730\trunning-john-28\t4\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10732\tfast-buddy-41\t4\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10731\twinning-superman-97\t3\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10738\tfunny-rock-94\t2\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10737\tcool-rock-68\t1\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10739\tmoving-buddy-58\t3\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10723\tcool-buddy-48\t3\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10722\twinning-john-27\t9\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10725\tmoving-rock-91\t4\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10724\thot-john-19\t10\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10721\tspeedy-john-40\t3\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10720\tfunny-devil-20\t5\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10727\tawesome-superman-100\t7\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10726\tcool-devil-49\t3\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10729\twinning-star-59\t8\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10728\tmoving-buddy-10\t5\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10712\tspeedy-john-35\t1\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10711\tspeedy-rock-25\t10\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10714\tspeedy-tarzan-69\t4\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10713\tawesome-star-69\t2\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-1\tfast-devil-56\t10\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10710\tspeedy-devil-78\t5\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10719\tspeedy-devil-33\t3\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10716\tspeedy-devil-12\t1\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10715\tcool-car-94\t9\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10718\tfunny-buddy-24\t5\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10717\tfast-buddy-45\t7\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10701\tspeedy-buddy-11\t1\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10700\tfunny-tarzan-4\t10\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10703\twinning-racer-60\t7\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10702\twinning-car-43\t6\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10709\twinning-star-92\t2\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10708\tfunny-racer-18\t1\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10705\tmoving-superman-4\t4\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10704\twinning-john-52\t7\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10707\twinning-rock-77\t8\tUS\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10706\tfunny-car-83\t5\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10770\tcool-star-63\t6\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10772\twinning-buddy-70\t6\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10771\tfast-superman-25\t8\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10778\twinning-superman-76\t6\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10777\twinning-rock-54\t1\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10779\tspeedy-rock-81\t10\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10774\thot-racer-25\t8\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10773\tmoving-car-20\t7\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10776\twinning-buddy-80\t10\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10775\tspeedy-rock-87\t6\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10761\tawesome-car-11\t6\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10760\thot-buddy-41\t10\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10767\tawesome-superman-90\t4\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10766\trunning-rock-41\t10\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10769\tspeedy-tarzan-56\t2\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10768\twinning-buddy-93\t4\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10763\trunning-star-66\t5\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10762\tfast-devil-30\t5\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10765\tcool-tarzan-3\t10\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10764\thot-car-88\t2\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10750\tawesome-john-90\t9\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10756\thot-buddy-50\t6\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10755\twinning-tarzan-90\t8\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10758\tawesome-superman-7\t4\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10757\tcool-superman-30\t1\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10752\thot-rock-58\t4\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10751\tfunny-racer-76\t10\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10754\tspeedy-rock-61\t3\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10753\tspeedy-buddy-92\t1\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10759\tfunny-buddy-70\t2\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10745\tfunny-devil-33\t9\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10744\twinning-racer-52\t7\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10747\twinning-tarzan-66\t4\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10746\tfunny-superman-19\t4\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10741\tawesome-car-85\t7\tUS\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10740\tspeedy-car-59\t10\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10743\thot-john-27\t8\tDE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10742\tspeedy-devil-85\t7\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10749\tmoving-devil-9\t10\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10748\tfast-racer-3\t5\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14251\trunning-rock-5\t8\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15582\tmoving-racer-57\t9\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14250\tfast-rock-77\t8\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15581\tfast-devil-59\t5\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15580\tfast-superman-66\t9\tFR\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14259\tawesome-rock-38\t5\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14258\tcool-tarzan-11\t1\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15589\trunning-star-79\t6\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14257\twinning-star-35\t2\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15588\tspeedy-racer-68\t1\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14256\tmoving-buddy-70\t1\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15587\tawesome-devil-20\t3\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14255\tmoving-star-84\t2\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15586\thot-buddy-95\t8\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14254\tawesome-tarzan-34\t7\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15585\trunning-racer-8\t4\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14253\twinning-star-33\t1\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15584\tspeedy-star-86\t4\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14252\tawesome-john-72\t1\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15583\twinning-racer-40\t2\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14240\tcool-star-90\t10\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15571\tmoving-star-79\t7\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15570\tfast-rock-10\t5\tUK\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14248\twinning-racer-26\t1\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15579\tawesome-racer-37\t3\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14247\tcool-devil-14\t6\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15578\tspeedy-john-42\t2\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14246\tawesome-devil-73\t3\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15577\tfunny-buddy-34\t10\tFR\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14245\tspeedy-superman-14\t6\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15576\tmoving-devil-70\t8\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14244\tcool-rock-70\t3\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15575\tfast-devil-8\t9\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14243\tawesome-rock-40\t2\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15574\trunning-star-72\t5\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14242\tfunny-superman-84\t10\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15573\trunning-tarzan-66\t7\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14241\tfunny-rock-22\t8\tUS\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15572\thot-tarzan-13\t6\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14249\tawesome-rock-36\t6\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15560\tmoving-buddy-65\t7\tFR\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16892\tfast-superman-8\t10\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16893\tfast-devil-39\t9\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-16894\tawesome-john-34\t2\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16895\trunning-buddy-50\t6\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16896\tmoving-rock-50\t3\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16897\tfunny-buddy-92\t3\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16898\tcool-john-98\t6\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16899\twinning-car-83\t2\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14237\tmoving-buddy-32\t3\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15568\tspeedy-buddy-86\t3\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14236\tcool-devil-91\t5\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15567\tfunny-buddy-49\t9\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14235\tmoving-john-65\t5\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15566\twinning-star-51\t3\tUK\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14234\tcool-buddy-68\t5\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15565\trunning-racer-2\t6\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14233\tmoving-superman-77\t8\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15564\thot-rock-24\t8\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14232\thot-car-69\t6\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15563\tawesome-tarzan-72\t10\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14231\tcool-rock-11\t8\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15562\trunning-john-93\t9\tUS\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16890\tcool-car-99\t1\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14230\trunning-star-35\t9\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15561\tfunny-rock-75\t3\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16891\thot-rock-24\t7\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14239\tmoving-superman-13\t3\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14238\tspeedy-buddy-57\t6\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15569\tcool-buddy-21\t4\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-16881\twinning-tarzan-67\t8\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16882\twinning-car-16\t4\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16883\tcool-car-88\t9\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16884\tmoving-racer-21\t8\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16885\tawesome-racer-100\t3\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16886\tfunny-tarzan-98\t4\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16887\tmoving-john-37\t3\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16888\tfast-racer-26\t7\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14226\twinning-devil-19\t10\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15557\thot-tarzan-51\t1\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14225\tfunny-tarzan-43\t6\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15556\tfast-buddy-47\t8\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14224\tawesome-racer-99\t3\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15555\tcool-star-70\t6\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14223\tawesome-john-9\t7\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15554\trunning-devil-21\t6\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14222\tfast-buddy-69\t8\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15553\tspeedy-superman-96\t3\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14221\tspeedy-buddy-5\t7\tIN\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15552\thot-john-86\t10\tDE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14220\tawesome-rock-70\t1\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15551\tawesome-tarzan-77\t7\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15550\tfast-tarzan-27\t6\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16880\tmoving-rock-1\t5\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14229\tspeedy-john-23\t3\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14228\tawesome-tarzan-33\t10\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15559\tmoving-devil-9\t2\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14227\tcool-devil-35\t9\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15558\tmoving-rock-74\t7\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-16889\tfunny-superman-40\t6\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14295\thot-tarzan-61\t10\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14294\trunning-rock-16\t10\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14293\tmoving-devil-93\t1\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14292\tmoving-buddy-16\t2\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14291\tfast-buddy-62\t7\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14290\twinning-john-2\t3\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14299\twinning-john-26\t5\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14298\twinning-tarzan-38\t3\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14297\thot-devil-16\t1\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14296\trunning-buddy-84\t1\tFR\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14284\tcool-rock-55\t10\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14283\trunning-tarzan-41\t8\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14282\thot-racer-38\t9\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14281\tmoving-john-51\t5\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14280\tfunny-devil-52\t10\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14289\twinning-tarzan-77\t4\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14288\twinning-devil-55\t9\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14287\tfast-tarzan-67\t8\tUK\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14286\tmoving-car-57\t10\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14285\thot-devil-9\t10\tUS\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14273\tmoving-star-31\t4\tIN\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14272\tawesome-john-12\t9\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14271\trunning-car-32\t6\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14270\tmoving-car-15\t6\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14279\tawesome-john-18\t1\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14278\twinning-superman-20\t3\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14277\tcool-devil-1\t8\tUK\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14276\twinning-star-49\t1\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14275\tmoving-john-11\t1\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14274\tcool-star-88\t9\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14262\thot-racer-28\t7\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15593\tfunny-superman-18\t8\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14261\thot-star-88\t10\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15592\tfast-superman-94\t4\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14260\tfast-devil-73\t3\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15591\twinning-star-1\t4\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15590\tmoving-star-82\t5\tFR\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14269\twinning-racer-78\t3\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14268\tawesome-buddy-43\t5\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15599\tspeedy-star-59\t4\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14267\twinning-rock-92\t3\tUK\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15598\tmoving-john-17\t8\tDE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14266\trunning-superman-56\t10\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15597\tfunny-tarzan-29\t9\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14265\tcool-tarzan-92\t5\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15596\tspeedy-devil-9\t9\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14264\tmoving-buddy-10\t6\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15595\tawesome-rock-70\t5\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14263\tfast-tarzan-15\t5\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15594\tmoving-john-81\t5\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-16710\twinning-star-48\t9\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16711\thot-devil-15\t9\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16712\tfunny-car-31\t6\tDE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16713\tfunny-car-76\t3\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16714\tfast-tarzan-56\t8\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-16715\tspeedy-devil-54\t4\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-16716\tfast-buddy-66\t4\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16717\tfast-buddy-48\t1\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16718\twinning-tarzan-53\t9\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16719\tcool-tarzan-15\t5\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16700\tawesome-tarzan-96\t10\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16701\thot-devil-22\t9\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16702\tfast-racer-95\t5\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16703\tawesome-star-66\t7\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16704\tmoving-car-12\t10\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16705\thot-tarzan-99\t5\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16706\tawesome-superman-56\t1\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16707\thot-tarzan-77\t10\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-16708\tspeedy-car-99\t6\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16709\trunning-star-79\t8\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16750\tawesome-star-68\t9\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16751\thot-buddy-6\t9\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16752\tawesome-tarzan-72\t7\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16753\twinning-john-58\t6\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-16754\tawesome-tarzan-55\t2\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16755\tfast-rock-37\t3\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16756\thot-car-54\t4\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15425\tfast-buddy-86\t7\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15424\twinning-devil-83\t2\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15423\twinning-star-72\t6\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15422\tfunny-racer-58\t10\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15421\tmoving-buddy-62\t5\tUK\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15420\twinning-tarzan-48\t8\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15429\tspeedy-devil-78\t7\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15428\twinning-tarzan-62\t8\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15427\tmoving-racer-86\t3\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15426\tcool-superman-100\t7\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16757\trunning-racer-36\t5\tUK\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16758\tspeedy-star-25\t6\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16759\tfast-buddy-42\t6\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16740\tawesome-rock-56\t10\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16741\tcool-racer-98\t3\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16742\thot-racer-92\t5\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-16743\tfunny-star-92\t5\tUK\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16744\tfast-john-8\t2\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16745\tfunny-star-20\t9\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15414\tfunny-john-64\t3\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15413\tspeedy-rock-66\t4\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15412\tmoving-superman-49\t8\tUK\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15411\trunning-buddy-84\t10\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15410\trunning-star-69\t10\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15419\tawesome-john-90\t6\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15418\tspeedy-buddy-30\t6\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15417\tcool-buddy-6\t2\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15416\tfunny-superman-35\t7\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15415\trunning-superman-27\t3\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16746\tfunny-racer-7\t6\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16747\trunning-superman-71\t10\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16748\tfunny-devil-27\t2\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16749\tspeedy-rock-75\t3\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16730\tfast-devil-84\t7\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16731\tfunny-john-81\t10\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16732\twinning-car-37\t10\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16733\tspeedy-car-39\t5\tUK\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16734\tfunny-john-68\t6\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15403\thot-racer-93\t5\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15402\tfast-buddy-43\t3\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15401\tspeedy-racer-68\t8\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15400\twinning-car-80\t5\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15409\tmoving-rock-52\t6\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15408\tfast-superman-46\t5\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15407\tfunny-star-27\t9\tIN\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15406\tspeedy-racer-25\t2\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15405\tfunny-racer-98\t2\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15404\twinning-rock-35\t6\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16735\tcool-car-64\t7\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16736\tspeedy-superman-61\t1\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16737\twinning-superman-82\t8\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16738\twinning-car-10\t7\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16739\tspeedy-john-43\t2\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16720\tspeedy-superman-64\t5\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16721\tmoving-car-37\t9\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16722\thot-racer-59\t5\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-16723\tawesome-rock-55\t7\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16724\tawesome-superman-38\t6\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16725\tawesome-star-37\t9\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16726\tcool-john-23\t7\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16727\trunning-racer-20\t8\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16728\tspeedy-car-39\t3\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16729\tfast-john-24\t2\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10572\tmoving-star-38\t4\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10571\tspeedy-car-7\t3\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10574\tmoving-devil-58\t9\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10573\tmoving-rock-38\t6\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10570\tcool-tarzan-93\t10\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10579\tawesome-devil-12\t4\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10576\trunning-star-8\t8\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10575\thot-tarzan-17\t10\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10578\trunning-buddy-39\t5\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10577\tcool-tarzan-64\t1\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10561\tfunny-tarzan-20\t5\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-11892\tfast-star-44\t3\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10560\twinning-tarzan-3\t10\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-11891\thot-buddy-33\t8\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10563\tmoving-john-78\t2\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-11894\tcool-star-93\t4\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10562\tspeedy-buddy-77\t7\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-11893\tawesome-buddy-52\t10\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-11890\thot-racer-19\t7\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10569\thot-superman-98\t3\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10568\tmoving-rock-31\t7\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-11899\tawesome-superman-29\t1\tIN\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10565\tfast-buddy-93\t9\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-11896\tfunny-superman-49\t4\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10564\twinning-tarzan-76\t3\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-11895\tawesome-car-57\t6\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10567\tfast-buddy-21\t8\tDE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-11898\tcool-tarzan-94\t8\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10566\tmoving-racer-60\t9\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-11897\tfunny-rock-19\t7\tUK\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10550\twinning-car-55\t9\tUK\t1\tGold\n1970-01-01 00:00:00.000\tplayer-11881\twinning-devil-85\t1\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-11880\tcool-tarzan-96\t5\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10552\tawesome-star-47\t10\tUK\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-11883\tfast-buddy-49\t3\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10551\tawesome-tarzan-86\t10\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-11882\tfunny-john-86\t3\tFR\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10558\tfast-buddy-72\t8\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-11889\tspeedy-racer-16\t4\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10557\tmoving-rock-61\t2\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-11888\tspeedy-buddy-30\t2\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10559\tcool-john-95\t7\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10554\tcool-car-89\t5\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-11885\tspeedy-john-25\t3\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10553\tcool-racer-83\t1\tFR\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-11884\tcool-star-19\t5\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10556\tspeedy-superman-15\t8\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-11887\tcool-tarzan-15\t5\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10555\tawesome-tarzan-82\t1\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-11886\tmoving-buddy-91\t1\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-11870\tawesome-buddy-6\t8\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10541\tmoving-devil-65\t6\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-11872\thot-john-93\t2\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10540\tawesome-tarzan-73\t4\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-11871\tfunny-tarzan-25\t3\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10547\tfunny-car-56\t7\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-11878\thot-superman-48\t10\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10546\tcool-racer-23\t10\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-11877\thot-racer-24\t9\tUS\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10549\trunning-star-65\t1\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10548\tspeedy-superman-83\t5\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-11879\thot-john-70\t5\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10543\tawesome-racer-5\t5\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-11874\tfunny-star-51\t7\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10542\tcool-rock-39\t6\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-11873\trunning-devil-7\t2\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10545\tmoving-tarzan-49\t2\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-11876\tspeedy-devil-11\t5\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10544\tspeedy-racer-15\t1\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-11875\tfunny-buddy-65\t10\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10594\tawesome-car-82\t6\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10593\trunning-star-37\t1\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10596\trunning-john-74\t8\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10595\tawesome-superman-33\t9\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10590\tcool-tarzan-52\t8\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10592\tspeedy-tarzan-95\t1\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10591\thot-star-98\t5\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10598\tcool-superman-39\t6\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10597\tspeedy-devil-24\t10\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10599\thot-buddy-52\t10\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10583\tfast-star-44\t6\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10582\twinning-racer-21\t8\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10585\trunning-devil-53\t1\tFR\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10584\tfunny-devil-85\t4\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10581\tmoving-rock-18\t5\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10580\tfunny-buddy-84\t3\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10587\tmoving-devil-29\t1\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10586\tcool-star-88\t8\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10589\tfast-rock-23\t9\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10588\tspeedy-devil-33\t9\tUS\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10613\twinning-john-11\t3\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-11944\thot-rock-53\t10\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10612\tcool-devil-97\t5\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-11943\tmoving-buddy-59\t2\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10615\tmoving-superman-19\t6\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-11946\tmoving-star-90\t2\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10614\trunning-devil-91\t5\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-11945\tawesome-tarzan-72\t5\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-11940\twinning-car-65\t2\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10611\tawesome-tarzan-39\t10\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-11942\tfast-john-81\t5\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10610\thot-star-24\t1\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-11941\tfast-superman-31\t1\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10617\tmoving-car-55\t3\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-11948\tfunny-john-37\t4\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10616\twinning-car-97\t6\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-11947\tmoving-superman-21\t10\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10619\thot-superman-42\t2\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10618\tawesome-racer-89\t7\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-11949\tfunny-rock-27\t5\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10602\tcool-racer-59\t10\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-11933\twinning-john-83\t7\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10601\twinning-devil-32\t6\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-11932\tawesome-rock-85\t6\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10604\tawesome-superman-37\t10\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-11935\tcool-superman-83\t7\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10603\thot-devil-79\t10\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-11934\tfunny-superman-51\t8\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10600\thot-racer-51\t4\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-11931\twinning-devil-57\t4\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-11930\tawesome-car-81\t9\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10609\tfunny-superman-18\t9\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10606\tfast-rock-62\t4\tUS\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-11937\tfast-rock-7\t1\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10605\tfast-superman-44\t2\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-11936\twinning-rock-25\t6\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10608\tspeedy-devil-20\t1\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-11939\tfunny-car-34\t9\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10607\trunning-buddy-21\t7\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-11938\tfast-star-67\t10\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14196\thot-star-13\t3\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14195\tmoving-devil-46\t10\tUS\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14194\tawesome-car-92\t1\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14193\tfunny-buddy-60\t6\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14192\tawesome-racer-35\t6\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14191\tfast-tarzan-92\t4\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14190\tfast-car-82\t5\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14199\twinning-racer-21\t1\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14198\tawesome-buddy-96\t5\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14197\tfunny-star-85\t1\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-11922\tfast-star-79\t6\tUS\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-11921\tmoving-tarzan-71\t5\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-11924\tspeedy-tarzan-4\t9\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-11923\tawesome-racer-35\t3\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-11920\tfunny-superman-75\t8\tFR\t1\tFree\n1970-01-01 00:00:00.000\tplayer-11929\tfast-buddy-39\t5\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-11926\tfunny-buddy-88\t10\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-11925\tfunny-tarzan-36\t9\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-11928\twinning-buddy-78\t10\tUS\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-11927\tmoving-john-11\t7\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14185\tawesome-tarzan-67\t6\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14184\twinning-star-48\t4\tFR\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14183\tfast-star-68\t7\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14182\tawesome-star-88\t9\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14181\trunning-superman-33\t6\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14180\tawesome-john-60\t5\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14189\thot-john-13\t9\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14188\tcool-john-14\t9\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14187\trunning-car-28\t7\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14186\twinning-car-2\t3\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-11911\tspeedy-racer-46\t5\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-11910\tspeedy-devil-13\t9\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-11913\twinning-car-16\t9\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-11912\thot-car-88\t9\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-11919\thot-star-7\t8\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-11918\twinning-rock-51\t2\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-11915\tmoving-star-72\t2\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-11914\trunning-racer-26\t9\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-11917\tawesome-devil-41\t4\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-11916\trunning-devil-82\t10\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-11980\twinning-car-56\t6\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10651\tmoving-car-54\t2\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-11982\tfunny-star-92\t4\tDE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10650\tawesome-devil-9\t7\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-11981\twinning-rock-77\t3\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10657\tfunny-rock-42\t7\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-11988\tcool-tarzan-57\t10\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10656\tfunny-star-88\t10\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-11987\tfunny-car-9\t9\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10659\thot-john-56\t9\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10658\tmoving-devil-74\t2\tDE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-11989\tmoving-buddy-36\t5\tDE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10653\tawesome-superman-41\t6\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-11984\tfunny-rock-39\t9\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10652\tmoving-rock-52\t9\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-11983\twinning-star-93\t4\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10655\tmoving-star-55\t4\tFR\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-11986\tspeedy-star-66\t9\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10654\tspeedy-racer-84\t2\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-11985\tmoving-tarzan-71\t6\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10640\twinning-tarzan-40\t1\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-11971\tspeedy-rock-53\t6\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-11970\tfast-john-13\t5\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10646\tspeedy-tarzan-70\t6\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-11977\tfunny-rock-58\t8\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10645\thot-racer-23\t3\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-11976\tfast-rock-81\t10\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10648\tfunny-star-76\t6\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-11979\thot-buddy-74\t8\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10647\twinning-tarzan-59\t8\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-11978\tfunny-car-4\t7\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10642\thot-superman-46\t6\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-11973\tfunny-tarzan-7\t5\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10641\tspeedy-superman-64\t6\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-11972\tmoving-rock-33\t8\tUS\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10644\tawesome-devil-77\t5\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-11975\tawesome-devil-36\t10\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10643\trunning-rock-91\t3\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-11974\tmoving-racer-4\t10\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10649\thot-tarzan-94\t8\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-11960\tfast-rock-57\t8\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10635\tcool-superman-57\t4\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-11966\twinning-tarzan-62\t5\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10634\tawesome-racer-68\t4\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-11965\tfast-rock-46\t6\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10637\trunning-star-2\t2\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-11968\thot-car-79\t5\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10636\tfunny-john-19\t9\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-11967\tawesome-superman-90\t7\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10631\tfunny-star-97\t4\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-11962\twinning-car-16\t8\tIN\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10630\tfast-superman-52\t4\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-11961\thot-star-31\t10\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10633\tspeedy-tarzan-64\t5\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-11964\twinning-devil-62\t9\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10632\tfunny-buddy-64\t8\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-11963\tfunny-john-57\t10\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10639\tfunny-devil-84\t6\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10638\tfunny-john-43\t1\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-11969\tfunny-star-54\t2\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10624\trunning-superman-1\t6\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-11955\tcool-rock-97\t8\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10623\tmoving-rock-72\t4\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-11954\twinning-rock-73\t8\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10626\tspeedy-john-1\t7\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-11957\twinning-star-28\t3\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10625\tspeedy-devil-24\t8\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-11956\tfast-devil-91\t7\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10620\thot-rock-25\t9\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-11951\tspeedy-superman-80\t8\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-11950\twinning-devil-96\t6\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10622\tfast-tarzan-41\t3\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-11953\twinning-buddy-2\t7\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10621\tfunny-devil-36\t4\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-11952\twinning-rock-23\t7\tDE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10628\tfunny-car-53\t8\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-11959\trunning-star-65\t7\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10627\tspeedy-rock-45\t3\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-11958\trunning-tarzan-73\t2\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10629\twinning-devil-14\t9\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14130\twinning-devil-3\t1\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15461\trunning-rock-99\t6\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16793\tspeedy-buddy-31\t1\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15460\tfunny-buddy-100\t10\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16794\tcool-devil-15\t10\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-16795\tmoving-tarzan-45\t7\tIN\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-16796\tmoving-superman-12\t4\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16797\tawesome-buddy-19\t3\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16798\tmoving-devil-42\t3\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-16799\trunning-star-68\t3\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14138\trunning-rock-30\t9\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15469\twinning-star-19\t9\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14137\tawesome-superman-17\t8\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15468\tfast-john-97\t8\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14136\tmoving-star-83\t3\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15467\tmoving-tarzan-2\t7\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14135\tfunny-tarzan-82\t3\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15466\twinning-buddy-84\t10\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14134\trunning-tarzan-23\t3\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15465\tawesome-rock-37\t4\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14133\trunning-devil-100\t7\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15464\tspeedy-john-29\t7\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16790\tawesome-racer-20\t10\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14132\tmoving-tarzan-75\t10\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15463\tfunny-star-66\t10\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16791\tawesome-star-69\t1\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14131\twinning-star-26\t3\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15462\trunning-star-66\t8\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16792\trunning-star-59\t6\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14139\tawesome-racer-82\t7\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15450\tspeedy-star-17\t8\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16782\trunning-star-49\t6\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16783\twinning-john-5\t8\tUK\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16784\twinning-tarzan-77\t9\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16785\thot-tarzan-11\t5\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16786\tawesome-superman-78\t8\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16787\tawesome-devil-36\t8\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-16788\tawesome-racer-16\t1\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16789\thot-tarzan-94\t7\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14127\tawesome-tarzan-92\t8\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15458\trunning-rock-30\t6\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14126\tawesome-buddy-35\t4\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15457\thot-star-13\t1\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14125\tfast-tarzan-87\t9\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15456\tfunny-star-100\t2\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14124\tcool-john-50\t9\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15455\twinning-tarzan-88\t9\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14123\tcool-tarzan-33\t1\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15454\tmoving-buddy-86\t10\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14122\twinning-buddy-32\t9\tUS\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15453\trunning-star-6\t3\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14121\tspeedy-tarzan-51\t9\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15452\twinning-star-30\t6\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16780\thot-star-86\t2\tFR\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14120\tfunny-tarzan-85\t1\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15451\tmoving-rock-73\t1\tUK\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16781\tmoving-john-71\t6\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14129\twinning-john-17\t6\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14128\tfunny-star-1\t8\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15459\tmoving-rock-56\t8\tFR\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16771\tmoving-tarzan-18\t6\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16772\tawesome-tarzan-73\t8\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16773\thot-star-22\t6\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16774\tfast-superman-20\t3\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16775\tmoving-star-73\t9\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16776\tspeedy-superman-64\t9\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16777\tmoving-racer-70\t6\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16778\tawesome-rock-75\t4\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14116\tspeedy-star-5\t4\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15447\tfunny-devil-96\t8\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14115\tmoving-john-89\t9\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15446\twinning-rock-20\t6\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14114\tfast-john-1\t10\tFR\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15445\tcool-star-86\t9\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14113\trunning-car-95\t1\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15444\thot-tarzan-23\t7\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14112\tcool-rock-60\t3\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15443\thot-tarzan-41\t6\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14111\tfunny-tarzan-1\t10\tIN\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15442\twinning-devil-49\t2\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14110\twinning-rock-75\t4\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15441\trunning-superman-50\t10\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15440\tawesome-star-81\t6\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-16770\twinning-tarzan-90\t1\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14119\tspeedy-superman-26\t8\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14118\tspeedy-devil-31\t6\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15449\twinning-rock-47\t8\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14117\thot-car-7\t1\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15448\trunning-john-37\t1\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16779\tmoving-devil-25\t8\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16760\tspeedy-john-89\t3\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16761\thot-devil-47\t9\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16762\tmoving-john-36\t5\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16763\tawesome-superman-15\t8\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16764\thot-john-93\t8\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16765\tspeedy-superman-74\t7\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16766\tmoving-star-54\t5\tFR\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16767\tcool-star-13\t10\tIN\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14105\twinning-racer-87\t4\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15436\tspeedy-car-4\t4\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14104\thot-car-59\t9\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15435\trunning-devil-33\t2\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14103\tmoving-superman-63\t4\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15434\tspeedy-devil-65\t8\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14102\thot-superman-11\t9\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15433\twinning-john-100\t6\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14101\tfunny-rock-99\t3\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15432\tawesome-buddy-70\t10\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14100\trunning-superman-72\t3\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15431\tcool-racer-60\t6\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15430\twinning-star-57\t6\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14109\tawesome-tarzan-82\t6\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14108\tawesome-tarzan-74\t8\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15439\thot-tarzan-39\t1\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14107\tspeedy-car-14\t1\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15438\tawesome-star-97\t4\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14106\tspeedy-racer-44\t2\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15437\tspeedy-rock-47\t4\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-16768\tfast-buddy-76\t8\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16769\tfunny-buddy-51\t4\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14174\tfast-john-15\t2\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14173\trunning-buddy-27\t6\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14172\tfunny-car-32\t7\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14171\tcool-star-10\t8\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14170\tspeedy-racer-47\t10\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14179\tfunny-tarzan-83\t9\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14178\tmoving-john-32\t9\tDE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14177\tawesome-car-65\t10\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14176\tfast-racer-66\t4\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14175\tmoving-rock-97\t8\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-11900\tfunny-tarzan-19\t7\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-11902\twinning-rock-24\t7\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-11901\tfunny-buddy-11\t10\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-11908\tfunny-rock-49\t5\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-11907\tspeedy-tarzan-37\t6\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-11909\tfast-devil-42\t10\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-11904\tawesome-car-75\t5\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-11903\tmoving-star-70\t7\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-11906\thot-car-26\t7\tFR\t1\tFree\n1970-01-01 00:00:00.000\tplayer-11905\tawesome-racer-13\t3\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14163\tawesome-superman-86\t10\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15494\tcool-star-31\t3\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14162\thot-devil-3\t4\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15493\trunning-rock-73\t10\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14161\tspeedy-star-88\t5\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15492\tfast-john-44\t9\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14160\tcool-star-47\t2\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15491\tcool-star-34\t4\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15490\twinning-superman-16\t4\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14169\tspeedy-tarzan-14\t1\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14168\tspeedy-rock-59\t7\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15499\tfast-john-60\t8\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14167\thot-car-82\t2\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15498\thot-john-70\t7\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14166\trunning-superman-30\t6\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15497\tawesome-tarzan-56\t10\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14165\tmoving-devil-26\t10\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15496\tmoving-superman-72\t9\tIN\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14164\twinning-car-17\t10\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15495\tfast-star-89\t9\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14152\tcool-superman-46\t4\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15483\tspeedy-superman-63\t8\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14151\tfast-car-6\t1\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15482\tspeedy-racer-85\t2\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14150\tawesome-john-69\t7\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15481\thot-star-50\t1\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15480\tfunny-tarzan-97\t5\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14159\tspeedy-rock-31\t3\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14158\trunning-superman-22\t5\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15489\tspeedy-car-84\t5\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14157\thot-car-74\t2\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15488\thot-star-58\t6\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14156\tfast-john-3\t7\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15487\tfunny-tarzan-54\t8\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14155\tspeedy-tarzan-45\t9\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15486\tcool-devil-55\t5\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14154\tfast-devil-72\t8\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15485\tspeedy-superman-73\t4\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14153\twinning-car-98\t1\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15484\thot-buddy-30\t1\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14141\tfast-racer-96\t6\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15472\thot-john-70\t10\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14140\trunning-car-68\t8\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15471\tfast-devil-18\t2\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15470\tfast-star-25\t7\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14149\tcool-racer-95\t9\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14148\tspeedy-car-45\t8\tUK\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15479\twinning-rock-81\t9\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14147\twinning-car-39\t5\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15478\trunning-superman-11\t6\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14146\tfunny-rock-79\t1\tUK\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15477\tspeedy-star-15\t7\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14145\tmoving-tarzan-4\t9\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15476\tfunny-racer-57\t1\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14144\tmoving-rock-68\t10\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15475\tfunny-buddy-35\t8\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14143\trunning-john-64\t10\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15474\tfast-john-59\t8\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14142\twinning-tarzan-45\t4\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15473\tfunny-racer-22\t2\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14413\trunning-devil-71\t1\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15744\tfunny-racer-4\t8\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14412\twinning-car-38\t9\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15743\tmoving-rock-70\t1\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14411\trunning-star-91\t10\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15742\tawesome-car-46\t8\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14410\tawesome-racer-95\t6\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15741\tawesome-john-39\t2\tUK\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15740\tspeedy-racer-38\t6\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14419\thot-star-24\t2\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14418\tfast-star-20\t5\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15749\tfunny-buddy-37\t6\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14417\tawesome-tarzan-73\t8\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15748\tfast-devil-81\t5\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14416\tfunny-buddy-26\t6\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15747\tmoving-star-63\t10\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14415\tspeedy-buddy-56\t4\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15746\trunning-devil-3\t5\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14414\tawesome-devil-24\t1\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15745\tfast-rock-17\t5\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14402\tfunny-buddy-29\t8\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15733\tfunny-tarzan-83\t2\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14401\tfunny-john-19\t2\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15732\trunning-racer-92\t7\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14400\tfunny-tarzan-42\t9\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15731\trunning-racer-63\t3\tDE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15730\tspeedy-star-62\t4\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14409\tcool-star-63\t4\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14408\tfast-car-99\t7\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15739\tspeedy-rock-48\t2\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14407\tspeedy-buddy-6\t1\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15738\twinning-rock-64\t8\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14406\tspeedy-superman-29\t5\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15737\thot-john-36\t4\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14405\tfast-rock-58\t9\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15736\tawesome-star-53\t10\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14404\tmoving-buddy-23\t6\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15735\trunning-devil-64\t1\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14403\tfast-racer-83\t7\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15734\trunning-devil-88\t8\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15722\tcool-rock-72\t5\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15721\tfunny-tarzan-93\t6\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15720\twinning-rock-68\t3\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15729\tspeedy-rock-73\t1\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15728\thot-racer-99\t7\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15727\tmoving-racer-12\t6\tIN\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15726\tspeedy-racer-87\t2\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15725\trunning-buddy-55\t10\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15724\tfast-car-72\t8\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15723\twinning-john-11\t1\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15711\tfast-star-35\t8\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15710\tfunny-devil-86\t5\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15719\tfunny-john-11\t8\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15718\tfunny-car-47\t7\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15717\tcool-star-32\t10\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15716\thot-buddy-24\t2\tIN\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15715\twinning-devil-64\t8\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15714\tawesome-buddy-12\t5\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15713\tmoving-john-74\t9\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15712\tfunny-superman-69\t2\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15780\tfast-superman-53\t7\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-13125\tfast-rock-78\t5\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14457\tcool-car-47\t9\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15788\tfast-devil-77\t6\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-13126\tmoving-superman-47\t8\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14456\tfunny-racer-58\t7\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15787\trunning-racer-94\t8\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-13123\tawesome-superman-15\t8\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14455\tawesome-john-8\t10\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15786\twinning-superman-35\t5\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-13124\tfunny-car-88\t10\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14454\tspeedy-car-87\t5\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15785\tawesome-john-44\t4\tDE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-13121\thot-tarzan-12\t9\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14453\tfast-devil-43\t10\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15784\tfunny-john-14\t4\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-13122\tfunny-car-63\t1\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14452\tfast-john-58\t8\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15783\tspeedy-tarzan-16\t8\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14451\trunning-racer-63\t6\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15782\thot-devil-32\t1\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13120\tspeedy-car-24\t7\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14450\twinning-buddy-5\t8\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15781\trunning-racer-79\t1\tUS\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13129\tfast-star-86\t8\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-13127\tawesome-buddy-89\t5\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14459\tspeedy-racer-100\t3\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-13128\tfunny-rock-30\t1\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14458\twinning-racer-9\t6\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15789\thot-john-12\t2\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-13114\tawesome-devil-27\t5\tFR\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14446\tfast-buddy-65\t3\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15777\tawesome-devil-83\t6\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13115\twinning-racer-75\t4\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14445\tmoving-star-1\t6\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15776\tfunny-car-40\t6\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-13112\tmoving-john-80\t8\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14444\twinning-buddy-16\t2\tFR\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15775\tmoving-superman-33\t2\tDE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-13113\trunning-devil-92\t3\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14443\thot-devil-80\t10\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15774\twinning-superman-62\t4\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13110\tcool-john-4\t9\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14442\tcool-buddy-74\t3\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15773\tspeedy-superman-54\t6\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-13111\twinning-devil-70\t5\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14441\tmoving-tarzan-66\t6\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15772\tspeedy-devil-89\t3\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14440\trunning-racer-53\t5\tUS\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15771\tspeedy-john-19\t4\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15770\tspeedy-star-86\t3\tUS\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-13118\tawesome-car-24\t5\tFR\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-13119\tawesome-racer-73\t3\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14449\trunning-superman-17\t9\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-13116\twinning-star-18\t1\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14448\tcool-john-62\t9\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15779\tfast-star-34\t8\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13117\tfast-racer-4\t2\tIN\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14447\tspeedy-devil-72\t3\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15778\tspeedy-star-53\t4\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-13103\tawesome-rock-87\t1\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14435\tmoving-rock-89\t9\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15766\tspeedy-tarzan-51\t6\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-13104\tspeedy-buddy-50\t4\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14434\tfunny-car-40\t4\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15765\thot-devil-55\t6\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-13101\thot-john-82\t9\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14433\tmoving-superman-68\t6\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15764\tfunny-rock-68\t2\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-13102\twinning-car-41\t6\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14432\tcool-john-2\t9\tDE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15763\tcool-racer-36\t1\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14431\tspeedy-car-13\t4\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15762\tfunny-superman-68\t2\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-13100\tawesome-racer-56\t8\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14430\tfunny-superman-47\t10\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15761\tfunny-tarzan-70\t5\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15760\tfunny-devil-30\t8\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13109\tawesome-superman-57\t3\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-13107\tfast-tarzan-76\t10\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14439\tawesome-tarzan-91\t4\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-13108\tfunny-john-40\t3\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14438\tmoving-racer-62\t9\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15769\tmoving-john-33\t1\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-13105\tawesome-star-37\t5\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14437\tspeedy-superman-5\t7\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15768\tspeedy-rock-33\t9\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-13106\tcool-racer-92\t9\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14436\twinning-buddy-76\t10\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15767\tmoving-rock-38\t3\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14424\tspeedy-rock-44\t8\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15755\tmoving-john-74\t7\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14423\tspeedy-rock-10\t1\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15754\tspeedy-racer-57\t9\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14422\tawesome-john-42\t4\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15753\tawesome-star-49\t8\tUS\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14421\tspeedy-buddy-12\t1\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15752\twinning-star-46\t8\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-14420\tfast-john-75\t2\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15751\tmoving-superman-78\t7\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15750\tmoving-star-44\t6\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14429\tfunny-superman-49\t10\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14428\tcool-racer-19\t5\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15759\tspeedy-john-49\t7\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14427\thot-star-45\t6\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15758\tfunny-racer-53\t5\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14426\tcool-john-74\t1\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15757\thot-car-63\t6\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14425\tfast-car-77\t1\tFR\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15756\tawesome-buddy-75\t4\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15700\tmoving-superman-14\t1\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15708\trunning-devil-22\t9\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15707\thot-star-7\t2\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15706\trunning-tarzan-65\t2\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15705\twinning-john-14\t5\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15704\tawesome-racer-54\t3\tUK\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15703\tfunny-john-79\t3\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15702\trunning-car-63\t5\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15701\thot-car-68\t4\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15709\tspeedy-racer-82\t4\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10970\tmoving-star-99\t2\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10976\tfast-john-84\t7\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10975\tawesome-tarzan-24\t1\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10978\tawesome-tarzan-89\t3\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10977\tmoving-star-30\t1\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10972\trunning-tarzan-34\t9\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10971\tmoving-tarzan-29\t7\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10974\tmoving-devil-99\t5\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10973\thot-devil-55\t1\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10979\twinning-devil-31\t8\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10965\tfunny-tarzan-30\t5\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10964\tfunny-car-18\t6\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10967\tspeedy-racer-7\t3\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10966\tcool-rock-55\t1\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10961\tmoving-racer-28\t10\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10960\tawesome-buddy-4\t8\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10963\twinning-racer-76\t9\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10962\tfunny-superman-94\t1\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10969\tawesome-superman-26\t5\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10968\tfast-racer-32\t7\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10954\tmoving-car-59\t6\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10953\trunning-racer-68\t3\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10956\twinning-racer-39\t5\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10955\trunning-rock-95\t2\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10950\tcool-car-77\t5\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10952\tawesome-buddy-90\t2\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10951\tawesome-star-54\t7\tUS\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10958\tcool-buddy-30\t9\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10957\tawesome-john-77\t5\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10959\trunning-star-72\t10\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10943\tfunny-star-25\t4\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10942\tmoving-devil-80\t2\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10945\tcool-racer-74\t6\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10944\tfast-buddy-20\t4\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10941\twinning-star-72\t1\tDE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10940\tmoving-buddy-46\t7\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10947\twinning-john-71\t9\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10946\trunning-star-53\t5\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10949\tspeedy-racer-77\t7\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10948\tawesome-rock-33\t10\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10990\tcool-rock-46\t2\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10992\tspeedy-devil-99\t3\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10991\tmoving-superman-50\t7\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10998\tmoving-car-36\t6\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10997\tfunny-buddy-79\t7\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10999\tspeedy-racer-86\t9\tIN\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10994\tmoving-superman-55\t8\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10993\tawesome-buddy-78\t4\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10996\thot-john-40\t9\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10995\tmoving-star-23\t2\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10981\tmoving-superman-31\t9\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10980\twinning-john-9\t3\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10987\trunning-john-89\t10\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10986\tspeedy-buddy-100\t10\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10989\trunning-devil-11\t6\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10988\trunning-buddy-59\t7\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10983\tfunny-superman-81\t7\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10982\tspeedy-rock-70\t8\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10985\tfunny-devil-74\t8\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10984\tfunny-tarzan-69\t7\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-13161\tspeedy-buddy-55\t5\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14493\tawesome-tarzan-17\t3\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-13162\tspeedy-devil-27\t6\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14492\tawesome-star-10\t3\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14491\tawesome-star-91\t5\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-13160\trunning-car-23\t6\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14490\tfast-buddy-54\t5\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-13169\thot-star-83\t4\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-13167\tawesome-tarzan-19\t6\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14499\tspeedy-tarzan-25\t2\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-13168\tfunny-buddy-2\t1\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14498\trunning-devil-52\t5\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-13165\tspeedy-car-38\t5\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14497\thot-car-65\t6\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-13166\twinning-devil-68\t7\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14496\trunning-rock-36\t8\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-13163\thot-racer-52\t3\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14495\tawesome-superman-25\t5\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-13164\twinning-racer-95\t4\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14494\tcool-superman-90\t8\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13150\tfunny-star-97\t4\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14482\tcool-star-82\t4\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-13151\tmoving-tarzan-3\t9\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14481\tmoving-racer-54\t6\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14480\tfast-superman-84\t6\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13158\thot-star-67\t3\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-13159\tmoving-car-54\t4\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14489\thot-superman-75\t6\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13156\tfunny-buddy-93\t3\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14488\twinning-racer-98\t9\tFR\t1\tFree\n1970-01-01 00:00:00.000\tplayer-13157\tcool-buddy-2\t10\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14487\tfast-rock-56\t10\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13154\trunning-devil-77\t4\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14486\tawesome-superman-82\t7\tUS\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13155\tspeedy-tarzan-74\t2\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14485\tawesome-car-88\t3\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-13152\tfast-tarzan-98\t2\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14484\tfast-rock-3\t2\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-13153\tmoving-superman-90\t9\tIN\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14483\tfunny-devil-60\t3\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14471\tmoving-rock-14\t5\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-13140\tfunny-racer-44\t3\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14470\thot-star-40\t5\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-13147\tawesome-star-6\t3\tDE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14479\thot-racer-48\t7\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-13148\thot-racer-8\t5\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-14478\tmoving-john-72\t5\tUS\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13145\tcool-buddy-12\t1\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14477\tmoving-tarzan-98\t6\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-13146\thot-rock-97\t8\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14476\tawesome-buddy-1\t4\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13143\thot-rock-96\t10\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14475\twinning-buddy-82\t6\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-13144\tawesome-rock-42\t9\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14474\tspeedy-superman-42\t5\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-13141\thot-devil-62\t6\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14473\tmoving-rock-61\t6\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-13142\tspeedy-superman-34\t10\tUK\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14472\tspeedy-buddy-32\t10\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13149\thot-buddy-78\t6\tBE\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-14460\thot-car-89\t3\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15791\tmoving-john-3\t5\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15790\tmoving-john-52\t3\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-13136\trunning-john-78\t1\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14468\tawesome-devil-73\t4\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15799\tawesome-buddy-72\t9\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-13137\tfast-rock-81\t4\tUK\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14467\tmoving-devil-92\t9\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15798\tmoving-devil-3\t10\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-13134\tfast-tarzan-18\t5\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14466\tcool-john-89\t6\tUK\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15797\tspeedy-buddy-52\t3\tUK\t1\tGold\n1970-01-01 00:00:00.000\tplayer-13135\tfunny-buddy-31\t9\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14465\tawesome-buddy-38\t9\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15796\tspeedy-tarzan-97\t6\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13132\tspeedy-car-83\t5\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14464\tfast-car-24\t6\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15795\twinning-racer-80\t6\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-13133\tcool-john-100\t2\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14463\tmoving-superman-93\t4\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15794\thot-star-85\t1\tIN\t0\tGold\n1970-01-01 00:00:00.000\tplayer-13130\tawesome-rock-45\t7\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14462\thot-john-64\t1\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15793\twinning-devil-89\t9\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13131\tfast-devil-8\t3\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-14461\tawesome-john-74\t3\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15792\tawesome-devil-84\t5\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-13138\tfunny-devil-35\t3\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13139\tfast-star-61\t9\tUK\t1\tGold\n1970-01-01 00:00:00.000\tplayer-14469\trunning-devil-69\t8\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10932\tawesome-tarzan-70\t6\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10931\tawesome-star-23\t7\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10934\twinning-buddy-52\t8\tUS\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10933\twinning-racer-79\t7\tUK\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10930\tcool-devil-12\t2\tFR\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10939\trunning-superman-57\t8\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10936\tcool-devil-78\t5\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10935\twinning-devil-82\t5\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10938\tcool-rock-28\t2\tIN\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10937\tmoving-rock-81\t1\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-13194\thot-buddy-54\t6\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-13195\tcool-tarzan-52\t2\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-13192\tmoving-devil-75\t1\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-13193\twinning-devil-15\t9\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-13190\tfast-star-68\t3\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-13191\tawesome-car-58\t4\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-13198\tmoving-car-74\t2\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-13199\twinning-buddy-38\t9\tFR\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13196\tmoving-racer-80\t10\tUS\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13197\tawesome-superman-16\t10\tDE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-10921\tmoving-car-4\t7\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10920\tmoving-superman-75\t4\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10923\tspeedy-john-47\t3\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10922\tmoving-star-36\t2\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10929\thot-car-95\t1\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10928\tcool-superman-87\t6\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10925\tmoving-star-92\t8\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10924\thot-rock-13\t2\tUK\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10927\tmoving-devil-74\t3\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10926\trunning-star-15\t9\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-13183\tmoving-john-57\t9\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13184\tspeedy-star-1\t4\tFR\t1\tFree\n1970-01-01 00:00:00.000\tplayer-13181\tfunny-buddy-5\t10\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-13182\tspeedy-tarzan-88\t3\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-13180\thot-racer-53\t7\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-13189\trunning-john-75\t4\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-13187\tawesome-john-70\t3\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13188\tmoving-car-71\t8\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-13185\tfunny-john-11\t3\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-13186\trunning-rock-16\t5\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10910\tawesome-buddy-7\t8\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10912\tfast-car-56\t6\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-10911\tawesome-star-21\t6\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10918\trunning-racer-92\t6\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10917\tfunny-buddy-76\t5\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10919\tcool-star-30\t4\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10914\tfunny-buddy-23\t2\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10913\tawesome-racer-23\t6\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10916\tawesome-devil-4\t9\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10915\twinning-buddy-9\t3\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13172\tfast-car-65\t7\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-13173\twinning-superman-56\t7\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-13170\twinning-superman-26\t2\tUK\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13171\tfunny-superman-26\t9\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-13178\trunning-buddy-84\t9\tDE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-13179\tcool-john-87\t9\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-13176\twinning-superman-58\t2\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-13177\tspeedy-buddy-6\t1\tUS\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13174\trunning-john-36\t7\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-13175\tcool-superman-66\t1\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10901\thot-buddy-52\t5\tUK\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-10900\tspeedy-devil-27\t4\tUK\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-10907\tfunny-star-67\t3\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-10906\tfast-rock-31\t8\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10909\tspeedy-tarzan-53\t7\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-10908\twinning-superman-1\t9\tBE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-10903\tfast-buddy-2\t4\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10902\tawesome-john-6\t8\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-10905\tmoving-rock-53\t8\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-10904\tfast-tarzan-43\t10\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16950\tcool-rock-39\t7\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16951\tfunny-car-42\t4\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16952\thot-tarzan-51\t3\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16953\thot-buddy-82\t5\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16954\tfast-car-44\t9\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15623\tspeedy-devil-96\t9\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15622\tfunny-racer-53\t6\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15621\thot-car-37\t1\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15620\tawesome-devil-21\t2\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15629\tspeedy-rock-41\t10\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15628\tmoving-buddy-59\t9\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15627\tawesome-john-56\t1\tIN\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15626\tcool-john-15\t2\tUK\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15625\twinning-star-29\t10\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15624\tawesome-racer-30\t5\tUS\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16955\tcool-racer-67\t8\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-16956\tcool-racer-25\t9\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16957\tfunny-buddy-73\t3\tFR\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16958\tcool-buddy-75\t6\tUK\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16959\twinning-john-37\t7\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16940\trunning-buddy-41\t3\tFR\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16941\tawesome-racer-36\t3\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16942\tmoving-buddy-64\t6\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16943\tawesome-buddy-80\t10\tIN\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15612\tspeedy-racer-7\t3\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15611\tcool-tarzan-30\t2\tIN\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-15610\tfunny-devil-32\t3\tFR\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15619\tcool-racer-52\t5\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15618\thot-car-60\t8\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15617\trunning-buddy-49\t1\tIN\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15616\tfast-racer-27\t4\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15615\tspeedy-star-62\t8\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15614\trunning-superman-95\t8\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15613\tmoving-star-79\t7\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16944\tcool-buddy-63\t5\tFR\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16945\tawesome-buddy-7\t10\tBE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-16946\tawesome-star-45\t4\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16947\trunning-buddy-27\t9\tBE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16948\tcool-superman-88\t9\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16949\trunning-star-98\t8\tUK\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16930\tspeedy-superman-61\t7\tIN\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16931\tcool-devil-83\t6\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16932\tfast-superman-87\t7\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15601\tfast-car-53\t6\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-15600\tfast-rock-81\t6\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15609\thot-buddy-88\t9\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15608\tfast-car-70\t6\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15607\trunning-racer-28\t3\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15606\tfast-racer-65\t9\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15605\thot-rock-75\t8\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15604\tcool-buddy-43\t6\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-15603\tawesome-john-83\t4\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-15602\tfunny-rock-96\t8\tFR\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-16933\tmoving-tarzan-33\t8\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16934\tmoving-car-63\t5\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-16935\tmoving-tarzan-6\t4\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16936\tfast-racer-95\t4\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16937\tfunny-star-29\t2\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16938\tfast-car-23\t6\tBE\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16939\tawesome-superman-68\t8\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16920\trunning-car-20\t6\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-16921\tfunny-john-60\t3\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16922\twinning-tarzan-63\t3\tUS\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16923\tspeedy-tarzan-14\t7\tBE\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16924\twinning-car-55\t7\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16925\thot-star-41\t1\tUS\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-16926\tcool-star-53\t8\tUK\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-16927\tspeedy-buddy-56\t4\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16928\tfunny-john-11\t7\tBE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-16929\tawesome-tarzan-91\t7\tFR\t1\tGold\n1970-01-01 00:00:00.000\tplayer-16991\tfast-buddy-88\t1\tUK\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16992\trunning-superman-40\t3\tBE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16993\tspeedy-racer-24\t7\tIN\t1\tFree\n1970-01-01 00:00:00.000\tplayer-16994\twinning-tarzan-93\t5\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16995\tfast-john-36\t5\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-16996\tfast-star-61\t10\tDE\t0\tDiamond\n1970-01-01 00:00:00.000\tplayer-16997\tmoving-rock-55\t8\tUS\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-16998\tfast-buddy-61\t4\tUK\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13004\tawesome-racer-74\t5\tBE\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-14336\trunning-car-63\t5\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-15667\twinning-devil-14\t8\tUS\t1\tFree\n1970-01-01 00:00:00.000\tplayer-13005\thot-buddy-26\t10\tUK\t0\tFree\n1970-01-01 00:00:00.000\tplayer-14335\tfunny-car-35\t5\tUS\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15666\tspeedy-john-45\t2\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-13002\tfunny-buddy-78\t7\tDE\t1\tFree\n1970-01-01 00:00:00.000\tplayer-14334\tcool-rock-53\t9\tUK\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15665\tspeedy-car-85\t10\tUK\t0\tGold\n1970-01-01 00:00:00.000\tplayer-13003\tmoving-car-17\t1\tUS\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14333\thot-devil-63\t1\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-15664\tmoving-car-92\t8\tBE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-13000\tmoving-rock-95\t3\tDE\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14332\tfast-rock-45\t7\tFR\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15663\tfast-tarzan-76\t3\tIN\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-13001\tspeedy-john-82\t7\tDE\t0\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14331\tspeedy-devil-19\t10\tUS\t1\tSilver\n1970-01-01 00:00:00.000\tplayer-15662\tspeedy-tarzan-33\t10\tIN\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14330\twinning-rock-8\t7\tUS\t0\tFree\n1970-01-01 00:00:00.000\tplayer-15661\tspeedy-car-14\t2\tIN\t1\tGold\n1970-01-01 00:00:00.000\tplayer-15660\tspeedy-car-70\t5\tFR\t0\tGold\n1970-01-01 00:00:00.000\tplayer-16990\tawesome-rock-32\t5\tFR\t1\tDiamond\n1970-01-01 00:00:00.000\tplayer-13008\tawesome-john-93\t1\tDE\t0\tFree\n1970-01-01 00:00:00.000\tplayer-13009\tcool-racer-37\t10\tFR\t1\t7d-Trial\n1970-01-01 00:00:00.000\tplayer-14339\tawesome-car-74\t5\tDE\t0\tSilver\n1970-01-01 00:00:00.000\tplayer-13006\tfast-tarzan-4\t4\tUK\t1\tDiamond"
},
{
"type": "HTML",
"data": "<div class=\"result-alert alert-warning\" role=\"alert\"><button type=\"button\" class=\"close\" data-dismiss=\"alert\" aria-label=\"Close\"><span aria-hidden=\"true\">×</span></button><strong>Output is truncated</strong> to 102400 bytes. Learn more about <strong>ZEPPELIN_INTERPRETER_OUTPUT_LIMIT</strong></div>"
}
]
},
"apps": [],
"runtimeInfos": {
"jobUrl": {
"propertyName": "jobUrl",
"label": "FLINK JOB",
"tooltip": "View in Flink web UI",
"group": "flink",
"values": [
{
"jobUrl": "/flinkdashboard/#/job/ae18350fea46427d648d6affdefe21dc",
"$$hashKey": "object:10612"
}
],
"interpreterSettingId": "flink"
}
},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1690975947324_11884135",
"id": "paragraph_1690975947324_11884135",
"dateCreated": "2023-08-02T11:32:27+0000",
"dateStarted": "2023-08-03T16:44:40+0000",
"dateFinished": "2023-08-03T16:45:00+0000",
"status": "ABORT",
"$$hashKey": "object:58"
},
{
"text": "%flink.ssql\n-- Describe schema of the event table\ndesc events;",
"user": "anonymous",
"dateUpdated": "2023-08-03T16:45:07+0000",
"progress": 0,
"config": {
"editorSetting": {
"language": "sql",
"editOnDblClick": false,
"completionKey": "TAB",
"completionSupport": true
},
"colWidth": 12,
"editorMode": "ace/mode/sql",
"fontSize": 9,
"results": {
"0": {
"graph": {
"mode": "table",
"height": 300,
"optionOpen": false,
"setting": {
"table": {
"tableGridState": {},
"tableColumnTypeState": {
"names": {
"Column": "string",
"Type": "string"
},
"updated": false
},
"tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
"tableOptionValue": {
"useFilter": false,
"showPagination": false,
"showAggregationFooter": false
},
"updated": false,
"initialized": false
}
},
"commonSetting": {}
}
}
},
"enabled": true
},
"settings": {
"params": {},
"forms": {}
},
"results": {
"code": "SUCCESS",
"msg": [
{
"type": "TABLE",
"data": "Column\tType\nplayer_id\tSTRING\nspeed_kmph\tBIGINT\ndistance_meters\tBIGINT\nevent_time\tTIMESTAMP(3)\nevent_time_tz\tTIMESTAMP_LTZ(3) *ROWTIME*\n"
}
]
},
"apps": [],
"runtimeInfos": {},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1690967650367_1213594548",
"id": "paragraph_1690967650367_1213594548",
"dateCreated": "2023-08-02T09:14:10+0000",
"dateStarted": "2023-08-03T16:45:08+0000",
"dateFinished": "2023-08-03T16:45:08+0000",
"status": "FINISHED",
"$$hashKey": "object:59"
},
{
"text": "%flink.ssql\n-- Describe schema of the players table\ndesc players;",
"user": "anonymous",
"dateUpdated": "2023-08-03T16:45:11+0000",
"progress": 0,
"config": {
"editorSetting": {
"language": "sql",
"editOnDblClick": false,
"completionKey": "TAB",
"completionSupport": true
},
"colWidth": 12,
"editorMode": "ace/mode/sql",
"fontSize": 9,
"results": {
"0": {
"graph": {
"mode": "table",
"height": 300,
"optionOpen": false,
"setting": {
"table": {
"tableGridState": {},
"tableColumnTypeState": {
"names": {
"Column": "string",
"Type": "string"
},
"updated": false
},
"tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
"tableOptionValue": {
"useFilter": false,
"showPagination": false,
"showAggregationFooter": false
},
"updated": false,
"initialized": false
}
},
"commonSetting": {}
}
}
},
"enabled": true
},
"settings": {
"params": {},
"forms": {}
},
"results": {
"code": "SUCCESS",
"msg": [
{
"type": "TABLE",
"data": "Column\tType\noperation_ts\tTIMESTAMP_LTZ(3) *ROWTIME*\nplayer_id\tSTRING\nalias\tSTRING\nlevel\tBIGINT\ncountry\tSTRING\nis_bot\tINT\nsubscription_type\tSTRING\n"
}
]
},
"apps": [],
"runtimeInfos": {},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1690967659582_1753566068",
"id": "paragraph_1690967659582_1753566068",
"dateCreated": "2023-08-02T09:14:19+0000",
"dateStarted": "2023-08-03T16:45:11+0000",
"dateFinished": "2023-08-03T16:45:12+0000",
"status": "FINISHED",
"$$hashKey": "object:60"
},
{
"text": "%flink.ssql\n-- Part 2: Streaming enrichment using MySQL CDC\n-- Challenge 2.1: Can you select data from players table and plot pie chart showing player distribution by country?\nselect country, count(distinct player_id) as players_count from players group by country;",
"user": "anonymous",
"dateUpdated": "2023-08-03T20:59:15+0000",
"progress": 0,
"config": {
"editorSetting": {
"language": "sql",
"editOnDblClick": false,
"completionKey": "TAB",
"completionSupport": true
},
"colWidth": 12,
"editorMode": "ace/mode/sql",
"fontSize": 9,
"results": {
"0": {
"graph": {
"mode": "pieChart",
"height": 300,
"optionOpen": false,
"setting": {
"table": {
"tableGridState": {
"columns": [
{
"name": "country0",
"visible": true,
"width": "*",
"sort": {},
"filters": [
{}
],
"pinned": ""
},
{
"name": "level1",
"visible": true,
"width": "*",
"sort": {},
"filters": [
{}
],
"pinned": ""
},
{
"name": "online_players2",
"visible": true,
"width": "*",
"sort": {},
"filters": [
{}
],
"pinned": ""
}
],
"scrollFocus": {},
"selection": [],
"grouping": {
"grouping": [],
"aggregations": [],
"rowExpandedStates": {}
},
"treeView": {},
"pagination": {
"paginationCurrentPage": 1,
"paginationPageSize": 250
}
},
"tableColumnTypeState": {
"updated": false,
"names": {
"country": "string",
"players_count": "string"
}
},
"updated": false,
"initialized": false,
"tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
"tableOptionValue": {
"useFilter": false,
"showPagination": false,
"showAggregationFooter": false
}
},
"multiBarChart": {
"rotate": {
"degree": "-45"
},
"xLabelStatus": "default"
},
"lineChart": {
"rotate": {
"degree": "-45"
},
"xLabelStatus": "default"
},
"stackedAreaChart": {
"rotate": {
"degree": "-45"
},
"xLabelStatus": "default"
},
"pieChart": {}
},
"commonSetting": {},
"keys": [
{
"name": "country",
"index": 0,
"aggr": "sum"
}
],
"groups": [],
"values": [
{
"name": "players_count",
"index": 1,
"aggr": "sum"
}
]
},
"helium": {}
}
},
"enabled": true
},
"settings": {
"params": {},
"forms": {}
},
"results": {
"code": "ERROR",
"msg": [
{
"type": "TABLE",
"data": "country\tplayers_count\nBE\t5163\nDE\t5332\nFR\t5228\nIN\t5285\nUK\t5804\nUS\t5568\n"
},
{
"type": "TEXT",
"data": "Fail to run sql command: select country, count(distinct player_id) as players_count from players group by country\n"
},
{
"type": "ANGULAR",
"data": "<div class='container ng-scope' style='padding-left:0px;padding-right:0px;'>\n <div class='panel panel-danger'>\n <div class='panel-heading' ng-click='isOpen=!isOpen' ng-init='isOpen=false' style=\"cursor:pointer\">\n <div class='plainTextContainer' style='font-weight:bolder'><i class=\"fa fa-caret-right fa-fw\" style=\"padding-right:7px;transition:all 0.3s;{{isOpen?'transform:rotate(90deg);transform-origin:25% 45%':''}}\"></i>Job was cancelled.</div>\n </div>\n <div class='panel-collapse' uib-collapse='!isOpen'>\n <div class='text' style='max-height:300px;overflow:auto;padding:10px'>java.lang.RuntimeException: Fail to run update type stream job\n\tat org.apache.zeppelin.flink.FlinkStreamSqlInterpreter.callInnerSelect(FlinkStreamSqlInterpreter.java:94)\n\tat org.apache.zeppelin.flink.FlinkStreamSqlInterpreter.lambda$open$0(FlinkStreamSqlInterpreter.java:49)\n\tat org.apache.zeppelin.flink.Flink115SqlInterpreter.callStreamInnerSelect(Flink115SqlInterpreter.java:451)\n\tat org.apache.zeppelin.flink.Flink115SqlInterpreter.callSelect(Flink115SqlInterpreter.java:435)\n\tat org.apache.zeppelin.flink.Flink115SqlInterpreter.callOperation(Flink115SqlInterpreter.java:290)\n\tat org.apache.zeppelin.flink.Flink115SqlInterpreter.runSqlList(Flink115SqlInterpreter.java:236)\n\tat org.apache.zeppelin.flink.Flink115Shims.runSqlList(Flink115Shims.java:315)\n\tat org.apache.zeppelin.flink.FlinkStreamSqlInterpreter.runSqlList(FlinkStreamSqlInterpreter.java:103)\n\tat org.apache.zeppelin.flink.FlinkSqlInterpreter.internalInterpret(FlinkSqlInterpreter.java:63)\n\tat org.apache.zeppelin.interpreter.AbstractInterpreter.interpret(AbstractInterpreter.java:55)\n\tat org.apache.zeppelin.interpreter.LazyOpenInterpreter.interpret(LazyOpenInterpreter.java:110)\n\tat org.apache.zeppelin.interpreter.remote.RemoteInterpreterServer$InterpretJob.jobRun(RemoteInterpreterServer.java:860)\n\tat org.apache.zeppelin.interpreter.remote.RemoteInterpreterServer$InterpretJob.jobRun(RemoteInterpreterServer.java:752)\n\tat org.apache.zeppelin.scheduler.Job.run(Job.java:172)\n\tat org.apache.zeppelin.scheduler.AbstractScheduler.runJob(AbstractScheduler.java:132)\n\tat org.apache.zeppelin.scheduler.ParallelScheduler.lambda$runJobInScheduler$0(ParallelScheduler.java:46)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)\n\tat java.base/java.lang.Thread.run(Thread.java:829)\nCaused by: java.io.IOException: Fail to run stream sql job\n\tat org.apache.zeppelin.flink.sql.AbstractStreamSqlJob.run(AbstractStreamSqlJob.java:165)\n\tat org.apache.zeppelin.flink.sql.AbstractStreamSqlJob.run(AbstractStreamSqlJob.java:109)\n\tat org.apache.zeppelin.flink.FlinkStreamSqlInterpreter.callInnerSelect(FlinkStreamSqlInterpreter.java:92)\n\t... 18 more\nCaused by: java.util.concurrent.ExecutionException: org.apache.flink.table.api.TableException: Failed to wait job finish\n\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:395)\n\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:1999)\n\tat org.apache.flink.table.api.internal.TableResultImpl.awaitInternal(TableResultImpl.java:118)\n\tat org.apache.flink.table.api.internal.TableResultImpl.await(TableResultImpl.java:81)\n\tat org.apache.zeppelin.flink.sql.AbstractStreamSqlJob.run(AbstractStreamSqlJob.java:154)\n\t... 20 more\nCaused by: org.apache.flink.table.api.TableException: Failed to wait job finish\n\tat org.apache.flink.table.api.internal.InsertResultProvider.hasNext(InsertResultProvider.java:85)\n\tat org.apache.flink.table.api.internal.InsertResultProvider.isFirstRowReady(InsertResultProvider.java:71)\n\tat org.apache.flink.table.api.internal.TableResultImpl.lambda$awaitInternal$1(TableResultImpl.java:105)\n\tat java.base/java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1736)\n\t... 3 more\nCaused by: java.util.concurrent.ExecutionException: org.apache.flink.client.program.ProgramInvocationException: Job failed (JobID: b44bb869d39a80ac0ce0f45506eacade)\n\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:395)\n\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:1999)\n\tat org.apache.flink.table.api.internal.InsertResultProvider.hasNext(InsertResultProvider.java:83)\n\t... 6 more\nCaused by: org.apache.flink.client.program.ProgramInvocationException: Job failed (JobID: b44bb869d39a80ac0ce0f45506eacade)\n\tat org.apache.flink.client.deployment.ClusterClientJobClientAdapter.lambda$getJobExecutionResult$6(ClusterClientJobClientAdapter.java:130)\n\tat java.base/java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:642)\n\tat java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506)\n\tat java.base/java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:2073)\n\tat org.apache.flink.util.concurrent.FutureUtils.lambda$retryOperationWithDelay$9(FutureUtils.java:403)\n\tat java.base/java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:859)\n\tat java.base/java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:837)\n\tat java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506)\n\tat java.base/java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:2073)\n\tat org.apache.flink.client.program.rest.RestClusterClient.lambda$pollResourceAsync$26(RestClusterClient.java:708)\n\tat java.base/java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:859)\n\tat java.base/java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:837)\n\tat java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506)\n\tat java.base/java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:2073)\n\tat org.apache.flink.util.concurrent.FutureUtils.lambda$retryOperationWithDelay$9(FutureUtils.java:403)\n\tat java.base/java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:859)\n\tat java.base/java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:837)\n\tat java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506)\n\tat java.base/java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:610)\n\tat java.base/java.util.concurrent.CompletableFuture$UniCompose.tryFire(CompletableFuture.java:1085)\n\tat java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:478)\n\t... 3 more\nCaused by: org.apache.flink.runtime.client.JobCancellationException: Job was cancelled.\n\tat org.apache.flink.runtime.jobmaster.JobResult.toJobExecutionResult(JobResult.java:146)\n\tat org.apache.flink.client.deployment.ClusterClientJobClientAdapter.lambda$getJobExecutionResult$6(ClusterClientJobClientAdapter.java:128)\n\t... 23 more\n</div>\n </div>\n </div>\n</div>\n"
}
]
},
"apps": [],
"runtimeInfos": {
"jobUrl": {
"propertyName": "jobUrl",
"label": "FLINK JOB",
"tooltip": "View in Flink web UI",
"group": "flink",
"values": [
{
"jobUrl": "/flinkdashboard/#/job/b44bb869d39a80ac0ce0f45506eacade",
"$$hashKey": "object:10615"
}
],
"interpreterSettingId": "flink"
}
},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1690976030152_993391829",
"id": "paragraph_1690976030152_993391829",
"dateCreated": "2023-08-02T11:33:50+0000",
"dateStarted": "2023-08-03T16:45:17+0000",
"dateFinished": "2023-08-03T16:45:40+0000",
"status": "ABORT",
"$$hashKey": "object:61"
},
{
"text": "%flink.ssql\n-- Part 2: Streaming enrichment using MySQL CDC (Joining latest CDC value with real-time event stream to keep enrichment up to date)\n-- Challenge 2.2: Can you join events with latest values (Insert/Update/Deletes) of players table by system time?\n-- Ref: https://nightlies.apache.org/flink/flink-docs-release-1.15/docs/dev/table/sql/queries/joins/#temporal-joins\nselect events.*, alias from events JOIN players FOR SYSTEM_TIME AS OF events.event_time_tz on events.player_id = players.player_id",
"user": "anonymous",
"dateUpdated": "2023-08-03T20:59:55+0000",
"progress": 0,
"config": {
"editorSetting": {
"language": "sql",
"editOnDblClick": false,
"completionKey": "TAB",
"completionSupport": true
},
"colWidth": 12,
"editorMode": "ace/mode/sql",
"fontSize": 9,
"results": {
"0": {
"graph": {
"mode": "table",
"height": 300,
"optionOpen": false,
"setting": {
"table": {
"tableGridState": {},
"tableColumnTypeState": {
"names": {
"player_id": "string",
"speed_kmph": "string",
"distance_meters": "string",
"event_time": "string",
"event_time_tz": "string",
"alias": "string"
},
"updated": false
},
"tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
"tableOptionValue": {
"useFilter": false,
"showPagination": false,
"showAggregationFooter": false
},
"updated": false,
"initialized": false
}
},
"commonSetting": {}
}
}
},
"enabled": true
},
"settings": {
"params": {},
"forms": {}
},
"results": {
"code": "ERROR",
"msg": [
{
"type": "TABLE",
"data": "player_id\tspeed_kmph\tdistance_meters\tevent_time\tevent_time_tz\talias\nplayer-1\t324\t44\t2023-08-03 16:45:11.568\t2023-08-03 16:45:11.568\tfast-devil-56\nplayer-1\t244\t20\t2023-08-03 16:46:08.055\t2023-08-03 16:46:08.055\tfast-devil-56\nplayer-1\t306\t9\t2023-08-03 16:46:10.801\t2023-08-03 16:46:10.801\tfast-devil-56\nplayer-1\t181\t49\t2023-08-03 16:46:11.461\t2023-08-03 16:46:11.461\tfast-devil-56\nplayer-1\t244\t20\t2023-08-03 16:46:08.055\t2023-08-03 16:46:08.055\tfast-devil-56\nplayer-1\t306\t9\t2023-08-03 16:46:10.801\t2023-08-03 16:46:10.801\tfast-devil-56\nplayer-1\t181\t49\t2023-08-03 16:46:11.461\t2023-08-03 16:46:11.461\tfast-devil-56\nplayer-1\t181\t49\t2023-08-03 16:46:11.461\t2023-08-03 16:46:11.461\tfast-devil-56\nplayer-1\t244\t20\t2023-08-03 16:46:08.055\t2023-08-03 16:46:08.055\tfast-devil-56\nplayer-1\t306\t9\t2023-08-03 16:46:10.801\t2023-08-03 16:46:10.801\tfast-devil-56\nplayer-1\t181\t49\t2023-08-03 16:46:11.461\t2023-08-03 16:46:11.461\tfast-devil-56\nplayer-1\t244\t20\t2023-08-03 16:46:08.055\t2023-08-03 16:46:08.055\tfast-devil-56\nplayer-1\t306\t9\t2023-08-03 16:46:10.801\t2023-08-03 16:46:10.801\tfast-devil-56\nplayer-1\t306\t9\t2023-08-03 16:46:10.801\t2023-08-03 16:46:10.801\tfast-devil-56\nplayer-1\t181\t49\t2023-08-03 16:46:11.461\t2023-08-03 16:46:11.461\tfast-devil-56\nplayer-1\t181\t49\t2023-08-03 16:46:11.461\t2023-08-03 16:46:11.461\tfast-devil-56\nplayer-1\t244\t20\t2023-08-03 16:46:08.055\t2023-08-03 16:46:08.055\tfast-devil-56\nplayer-1\t306\t9\t2023-08-03 16:46:10.801\t2023-08-03 16:46:10.801\tfast-devil-56\nplayer-1\t181\t49\t2023-08-03 16:46:11.461\t2023-08-03 16:46:11.461\tfast-devil-56\nplayer-1\t244\t20\t2023-08-03 16:46:08.055\t2023-08-03 16:46:08.055\tfast-devil-56\nplayer-1\t244\t20\t2023-08-03 16:46:08.055\t2023-08-03 16:46:08.055\tfast-devil-56\nplayer-1\t306\t9\t2023-08-03 16:46:10.801\t2023-08-03 16:46:10.801\tfast-devil-56\nplayer-1\t181\t49\t2023-08-03 16:46:11.461\t2023-08-03 16:46:11.461\tfast-devil-56\nplayer-1\t244\t20\t2023-08-03 16:46:08.055\t2023-08-03 16:46:08.055\tfast-devil-56\nplayer-1\t306\t9\t2023-08-03 16:46:10.801\t2023-08-03 16:46:10.801\tfast-devil-56\nplayer-1\t181\t49\t2023-08-03 16:46:11.461\t2023-08-03 16:46:11.461\tfast-devil-56\nplayer-1\t244\t20\t2023-08-03 16:46:08.055\t2023-08-03 16:46:08.055\tfast-devil-56\nplayer-1\t306\t9\t2023-08-03 16:46:10.801\t2023-08-03 16:46:10.801\tfast-devil-56\nplayer-1\t306\t9\t2023-08-03 16:46:10.801\t2023-08-03 16:46:10.801\tfast-devil-56\nplayer-1\t181\t49\t2023-08-03 16:46:11.461\t2023-08-03 16:46:11.461\tfast-devil-56\nplayer-1\t244\t20\t2023-08-03 16:46:08.055\t2023-08-03 16:46:08.055\tfast-devil-56\nplayer-1\t306\t9\t2023-08-03 16:46:10.801\t2023-08-03 16:46:10.801\tfast-devil-56\nplayer-1\t181\t49\t2023-08-03 16:46:11.461\t2023-08-03 16:46:11.461\tfast-devil-56\nplayer-1\t244\t20\t2023-08-03 16:46:08.055\t2023-08-03 16:46:08.055\tfast-devil-56\nplayer-1\t244\t20\t2023-08-03 16:46:08.055\t2023-08-03 16:46:08.055\tfast-devil-56\nplayer-1\t306\t9\t2023-08-03 16:46:10.801\t2023-08-03 16:46:10.801\tfast-devil-56\nplayer-10\t268\t4\t2023-08-03 16:45:56.989\t2023-08-03 16:45:56.989\tcool-rock-77\nplayer-11\t287\t18\t2023-07-27 16:46:02.029\t2023-07-27 16:46:02.029\tcool-racer-17\nplayer-12\t277\t28\t2023-07-31 16:46:07.051\t2023-07-31 16:46:07.051\trunning-star-41\nplayer-2\t242\t14\t2023-08-03 16:45:16.749\t2023-08-03 16:45:16.749\trunning-superman-66\nplayer-2\t257\t13\t2023-08-03 16:46:13.233\t2023-08-03 16:46:13.233\trunning-superman-66\nplayer-2\t155\t34\t2023-08-02 16:46:15.989\t2023-08-02 16:46:15.989\trunning-superman-66\nplayer-2\t247\t27\t2023-08-03 16:46:16.637\t2023-08-03 16:46:16.637\trunning-superman-66\nplayer-2\t247\t27\t2023-08-03 16:46:16.637\t2023-08-03 16:46:16.637\trunning-superman-66\nplayer-2\t257\t13\t2023-08-03 16:46:13.233\t2023-08-03 16:46:13.233\trunning-superman-66\nplayer-2\t155\t34\t2023-08-02 16:46:15.989\t2023-08-02 16:46:15.989\trunning-superman-66\nplayer-2\t247\t27\t2023-08-03 16:46:16.637\t2023-08-03 16:46:16.637\trunning-superman-66\nplayer-2\t257\t13\t2023-08-03 16:46:13.233\t2023-08-03 16:46:13.233\trunning-superman-66\nplayer-2\t155\t34\t2023-08-02 16:46:15.989\t2023-08-02 16:46:15.989\trunning-superman-66\nplayer-2\t155\t34\t2023-08-02 16:46:15.989\t2023-08-02 16:46:15.989\trunning-superman-66\nplayer-2\t247\t27\t2023-08-03 16:46:16.637\t2023-08-03 16:46:16.637\trunning-superman-66\nplayer-2\t247\t27\t2023-08-03 16:46:16.637\t2023-08-03 16:46:16.637\trunning-superman-66\nplayer-2\t257\t13\t2023-08-03 16:46:13.233\t2023-08-03 16:46:13.233\trunning-superman-66\nplayer-2\t155\t34\t2023-08-02 16:46:15.989\t2023-08-02 16:46:15.989\trunning-superman-66\nplayer-2\t247\t27\t2023-08-03 16:46:16.637\t2023-08-03 16:46:16.637\trunning-superman-66\nplayer-2\t257\t13\t2023-08-03 16:46:13.233\t2023-08-03 16:46:13.233\trunning-superman-66\nplayer-2\t257\t13\t2023-08-03 16:46:13.233\t2023-08-03 16:46:13.233\trunning-superman-66\nplayer-2\t155\t34\t2023-08-02 16:46:15.989\t2023-08-02 16:46:15.989\trunning-superman-66\nplayer-2\t247\t27\t2023-08-03 16:46:16.637\t2023-08-03 16:46:16.637\trunning-superman-66\nplayer-2\t257\t13\t2023-08-03 16:46:13.233\t2023-08-03 16:46:13.233\trunning-superman-66\nplayer-2\t155\t34\t2023-08-02 16:46:15.989\t2023-08-02 16:46:15.989\trunning-superman-66\nplayer-2\t247\t27\t2023-08-03 16:46:16.637\t2023-08-03 16:46:16.637\trunning-superman-66\nplayer-2\t257\t13\t2023-08-03 16:46:13.233\t2023-08-03 16:46:13.233\trunning-superman-66\nplayer-2\t155\t34\t2023-08-02 16:46:15.989\t2023-08-02 16:46:15.989\trunning-superman-66\nplayer-2\t155\t34\t2023-08-02 16:46:15.989\t2023-08-02 16:46:15.989\trunning-superman-66\nplayer-2\t247\t27\t2023-08-03 16:46:16.637\t2023-08-03 16:46:16.637\trunning-superman-66\nplayer-2\t257\t13\t2023-08-03 16:46:13.233\t2023-08-03 16:46:13.233\trunning-superman-66\nplayer-2\t155\t34\t2023-08-02 16:46:15.989\t2023-08-02 16:46:15.989\trunning-superman-66\nplayer-2\t247\t27\t2023-08-03 16:46:16.637\t2023-08-03 16:46:16.637\trunning-superman-66\nplayer-2\t257\t13\t2023-08-03 16:46:13.233\t2023-08-03 16:46:13.233\trunning-superman-66\nplayer-2\t257\t13\t2023-08-03 16:46:13.233\t2023-08-03 16:46:13.233\trunning-superman-66\nplayer-2\t155\t34\t2023-08-02 16:46:15.989\t2023-08-02 16:46:15.989\trunning-superman-66\nplayer-3\t292\t29\t2023-08-03 16:45:21.768\t2023-08-03 16:45:21.768\thot-car-81\nplayer-3\t299\t1\t2023-08-02 16:46:18.262\t2023-08-02 16:46:18.262\thot-car-81\nplayer-3\t240\t6\t2023-08-02 16:46:21.010\t2023-08-02 16:46:21.010\thot-car-81\nplayer-3\t194\t37\t2023-07-28 16:46:21.697\t2023-07-28 16:46:21.697\thot-car-81\nplayer-3\t299\t1\t2023-08-02 16:46:18.262\t2023-08-02 16:46:18.262\thot-car-81\nplayer-3\t240\t6\t2023-08-02 16:46:21.010\t2023-08-02 16:46:21.010\thot-car-81\nplayer-3\t240\t6\t2023-08-02 16:46:21.010\t2023-08-02 16:46:21.010\thot-car-81\nplayer-3\t194\t37\t2023-07-28 16:46:21.697\t2023-07-28 16:46:21.697\thot-car-81\nplayer-3\t194\t37\t2023-07-28 16:46:21.697\t2023-07-28 16:46:21.697\thot-car-81\nplayer-3\t299\t1\t2023-08-02 16:46:18.262\t2023-08-02 16:46:18.262\thot-car-81\nplayer-3\t240\t6\t2023-08-02 16:46:21.010\t2023-08-02 16:46:21.010\thot-car-81\nplayer-3\t194\t37\t2023-07-28 16:46:21.697\t2023-07-28 16:46:21.697\thot-car-81\nplayer-3\t299\t1\t2023-08-02 16:46:18.262\t2023-08-02 16:46:18.262\thot-car-81\nplayer-3\t299\t1\t2023-08-02 16:46:18.262\t2023-08-02 16:46:18.262\thot-car-81\nplayer-3\t240\t6\t2023-08-02 16:46:21.010\t2023-08-02 16:46:21.010\thot-car-81\nplayer-3\t194\t37\t2023-07-28 16:46:21.697\t2023-07-28 16:46:21.697\thot-car-81\nplayer-3\t299\t1\t2023-08-02 16:46:18.262\t2023-08-02 16:46:18.262\thot-car-81\nplayer-3\t240\t6\t2023-08-02 16:46:21.010\t2023-08-02 16:46:21.010\thot-car-81\nplayer-3\t194\t37\t2023-07-28 16:46:21.697\t2023-07-28 16:46:21.697\thot-car-81\nplayer-3\t299\t1\t2023-08-02 16:46:18.262\t2023-08-02 16:46:18.262\thot-car-81\nplayer-3\t240\t6\t2023-08-02 16:46:21.010\t2023-08-02 16:46:21.010\thot-car-81\nplayer-3\t240\t6\t2023-08-02 16:46:21.010\t2023-08-02 16:46:21.010\thot-car-81\nplayer-3\t194\t37\t2023-07-28 16:46:21.697\t2023-07-28 16:46:21.697\thot-car-81\nplayer-3\t299\t1\t2023-08-02 16:46:18.262\t2023-08-02 16:46:18.262\thot-car-81\nplayer-3\t240\t6\t2023-08-02 16:46:21.010\t2023-08-02 16:46:21.010\thot-car-81\nplayer-3\t194\t37\t2023-07-28 16:46:21.697\t2023-07-28 16:46:21.697\thot-car-81\nplayer-3\t299\t1\t2023-08-02 16:46:18.262\t2023-08-02 16:46:18.262\thot-car-81\nplayer-3\t299\t1\t2023-08-02 16:46:18.262\t2023-08-02 16:46:18.262\thot-car-81\nplayer-3\t240\t6\t2023-08-02 16:46:21.010\t2023-08-02 16:46:21.010\thot-car-81\nplayer-4\t234\t22\t2023-07-27 16:45:26.788\t2023-07-27 16:45:26.788\tfunny-john-78\nplayer-4\t230\t30\t2023-08-03 16:46:23.280\t2023-08-03 16:46:23.280\tfunny-john-78\nplayer-4\t334\t35\t2023-07-28 16:46:26.030\t2023-07-28 16:46:26.030\tfunny-john-78\nplayer-4\t334\t35\t2023-07-28 16:46:26.030\t2023-07-28 16:46:26.030\tfunny-john-78\nplayer-4\t196\t37\t2023-08-03 16:46:26.721\t2023-08-03 16:46:26.721\tfunny-john-78\nplayer-4\t196\t37\t2023-08-03 16:46:26.721\t2023-08-03 16:46:26.721\tfunny-john-78\nplayer-4\t230\t30\t2023-08-03 16:46:23.280\t2023-08-03 16:46:23.280\tfunny-john-78\nplayer-4\t334\t35\t2023-07-28 16:46:26.030\t2023-07-28 16:46:26.030\tfunny-john-78\nplayer-4\t196\t37\t2023-08-03 16:46:26.721\t2023-08-03 16:46:26.721\tfunny-john-78\nplayer-4\t230\t30\t2023-08-03 16:46:23.280\t2023-08-03 16:46:23.280\tfunny-john-78\nplayer-4\t230\t30\t2023-08-03 16:46:23.280\t2023-08-03 16:46:23.280\tfunny-john-78\nplayer-4\t334\t35\t2023-07-28 16:46:26.030\t2023-07-28 16:46:26.030\tfunny-john-78\nplayer-4\t196\t37\t2023-08-03 16:46:26.721\t2023-08-03 16:46:26.721\tfunny-john-78\nplayer-4\t230\t30\t2023-08-03 16:46:23.280\t2023-08-03 16:46:23.280\tfunny-john-78\nplayer-4\t334\t35\t2023-07-28 16:46:26.030\t2023-07-28 16:46:26.030\tfunny-john-78\nplayer-4\t196\t37\t2023-08-03 16:46:26.721\t2023-08-03 16:46:26.721\tfunny-john-78\nplayer-4\t230\t30\t2023-08-03 16:46:23.280\t2023-08-03 16:46:23.280\tfunny-john-78\nplayer-4\t334\t35\t2023-07-28 16:46:26.030\t2023-07-28 16:46:26.030\tfunny-john-78\nplayer-4\t334\t35\t2023-07-28 16:46:26.030\t2023-07-28 16:46:26.030\tfunny-john-78\nplayer-4\t196\t37\t2023-08-03 16:46:26.721\t2023-08-03 16:46:26.721\tfunny-john-78\nplayer-4\t230\t30\t2023-08-03 16:46:23.280\t2023-08-03 16:46:23.280\tfunny-john-78\nplayer-4\t334\t35\t2023-07-28 16:46:26.030\t2023-07-28 16:46:26.030\tfunny-john-78\nplayer-4\t196\t37\t2023-08-03 16:46:26.721\t2023-08-03 16:46:26.721\tfunny-john-78\nplayer-4\t230\t30\t2023-08-03 16:46:23.280\t2023-08-03 16:46:23.280\tfunny-john-78\nplayer-4\t230\t30\t2023-08-03 16:46:23.280\t2023-08-03 16:46:23.280\tfunny-john-78\nplayer-5\t194\t17\t2023-08-03 16:45:31.809\t2023-08-03 16:45:31.809\tfast-racer-75\nplayer-5\t154\t26\t2023-08-03 16:46:28.297\t2023-08-03 16:46:28.297\tfast-racer-75\nplayer-5\t291\t46\t2023-08-03 16:46:31.070\t2023-08-03 16:46:31.070\tfast-racer-75\nplayer-5\t268\t11\t2023-08-03 16:46:31.777\t2023-08-03 16:46:31.777\tfast-racer-75\nplayer-5\t154\t26\t2023-08-03 16:46:28.297\t2023-08-03 16:46:28.297\tfast-racer-75\nplayer-5\t154\t26\t2023-08-03 16:46:28.297\t2023-08-03 16:46:28.297\tfast-racer-75\nplayer-5\t291\t46\t2023-08-03 16:46:31.070\t2023-08-03 16:46:31.070\tfast-racer-75\nplayer-5\t268\t11\t2023-08-03 16:46:31.777\t2023-08-03 16:46:31.777\tfast-racer-75\nplayer-5\t154\t26\t2023-08-03 16:46:28.297\t2023-08-03 16:46:28.297\tfast-racer-75\nplayer-5\t291\t46\t2023-08-03 16:46:31.070\t2023-08-03 16:46:31.070\tfast-racer-75\nplayer-5\t268\t11\t2023-08-03 16:46:31.777\t2023-08-03 16:46:31.777\tfast-racer-75\nplayer-5\t154\t26\t2023-08-03 16:46:28.297\t2023-08-03 16:46:28.297\tfast-racer-75\nplayer-5\t291\t46\t2023-08-03 16:46:31.070\t2023-08-03 16:46:31.070\tfast-racer-75\nplayer-5\t291\t46\t2023-08-03 16:46:31.070\t2023-08-03 16:46:31.070\tfast-racer-75\nplayer-5\t268\t11\t2023-08-03 16:46:31.777\t2023-08-03 16:46:31.777\tfast-racer-75\nplayer-5\t154\t26\t2023-08-03 16:46:28.297\t2023-08-03 16:46:28.297\tfast-racer-75\nplayer-5\t291\t46\t2023-08-03 16:46:31.070\t2023-08-03 16:46:31.070\tfast-racer-75\nplayer-5\t268\t11\t2023-08-03 16:46:31.777\t2023-08-03 16:46:31.777\tfast-racer-75\nplayer-5\t154\t26\t2023-08-03 16:46:28.297\t2023-08-03 16:46:28.297\tfast-racer-75\nplayer-5\t154\t26\t2023-08-03 16:46:28.297\t2023-08-03 16:46:28.297\tfast-racer-75\nplayer-5\t291\t46\t2023-08-03 16:46:31.070\t2023-08-03 16:46:31.070\tfast-racer-75\nplayer-6\t213\t31\t2023-08-03 16:45:36.862\t2023-08-03 16:45:36.862\tcool-john-28\nplayer-6\t276\t6\t2023-08-03 16:46:33.325\t2023-08-03 16:46:33.325\tcool-john-28\nplayer-6\t276\t6\t2023-08-03 16:46:33.325\t2023-08-03 16:46:33.325\tcool-john-28\nplayer-6\t267\t1\t2023-08-03 16:46:36.090\t2023-08-03 16:46:36.090\tcool-john-28\nplayer-6\t282\t36\t2023-07-31 16:46:36.793\t2023-07-31 16:46:36.793\tcool-john-28\nplayer-6\t276\t6\t2023-08-03 16:46:33.325\t2023-08-03 16:46:33.325\tcool-john-28\nplayer-6\t267\t1\t2023-08-03 16:46:36.090\t2023-08-03 16:46:36.090\tcool-john-28\nplayer-6\t282\t36\t2023-07-31 16:46:36.793\t2023-07-31 16:46:36.793\tcool-john-28\nplayer-6\t276\t6\t2023-08-03 16:46:33.325\t2023-08-03 16:46:33.325\tcool-john-28\nplayer-6\t267\t1\t2023-08-03 16:46:36.090\t2023-08-03 16:46:36.090\tcool-john-28\nplayer-6\t267\t1\t2023-08-03 16:46:36.090\t2023-08-03 16:46:36.090\tcool-john-28\nplayer-6\t282\t36\t2023-07-31 16:46:36.793\t2023-07-31 16:46:36.793\tcool-john-28\nplayer-6\t276\t6\t2023-08-03 16:46:33.325\t2023-08-03 16:46:33.325\tcool-john-28\nplayer-6\t267\t1\t2023-08-03 16:46:36.090\t2023-08-03 16:46:36.090\tcool-john-28\nplayer-6\t282\t36\t2023-07-31 16:46:36.793\t2023-07-31 16:46:36.793\tcool-john-28\nplayer-6\t276\t6\t2023-08-03 16:46:33.325\t2023-08-03 16:46:33.325\tcool-john-28\nplayer-6\t276\t6\t2023-08-03 16:46:33.325\t2023-08-03 16:46:33.325\tcool-john-28\nplayer-7\t248\t18\t2023-08-03 16:45:41.908\t2023-08-03 16:45:41.908\thot-rock-25\nplayer-7\t200\t8\t2023-08-03 16:46:38.389\t2023-08-03 16:46:38.389\thot-rock-25\nplayer-7\t264\t50\t2023-08-03 16:46:41.110\t2023-08-03 16:46:41.110\thot-rock-25\nplayer-7\t304\t25\t2023-08-03 16:46:41.811\t2023-08-03 16:46:41.811\thot-rock-25\nplayer-7\t200\t8\t2023-08-03 16:46:38.389\t2023-08-03 16:46:38.389\thot-rock-25\nplayer-7\t264\t50\t2023-08-03 16:46:41.110\t2023-08-03 16:46:41.110\thot-rock-25\nplayer-7\t264\t50\t2023-08-03 16:46:41.110\t2023-08-03 16:46:41.110\thot-rock-25\nplayer-7\t304\t25\t2023-08-03 16:46:41.811\t2023-08-03 16:46:41.811\thot-rock-25\nplayer-7\t200\t8\t2023-08-03 16:46:38.389\t2023-08-03 16:46:38.389\thot-rock-25\nplayer-7\t264\t50\t2023-08-03 16:46:41.110\t2023-08-03 16:46:41.110\thot-rock-25\nplayer-7\t304\t25\t2023-08-03 16:46:41.811\t2023-08-03 16:46:41.811\thot-rock-25\nplayer-7\t200\t8\t2023-08-03 16:46:38.389\t2023-08-03 16:46:38.389\thot-rock-25\nplayer-7\t200\t8\t2023-08-03 16:46:38.389\t2023-08-03 16:46:38.389\thot-rock-25\nplayer-8\t267\t6\t2023-08-03 16:45:46.928\t2023-08-03 16:45:46.928\tspeedy-superman-92\nplayer-8\t348\t15\t2023-07-30 16:46:43.441\t2023-07-30 16:46:43.441\tspeedy-superman-92\nplayer-8\t158\t31\t2023-08-03 16:46:46.130\t2023-08-03 16:46:46.130\tspeedy-superman-92\nplayer-8\t158\t31\t2023-08-03 16:46:46.130\t2023-08-03 16:46:46.130\tspeedy-superman-92\nplayer-8\t325\t1\t2023-07-30 16:46:46.838\t2023-07-30 16:46:46.838\tspeedy-superman-92\nplayer-8\t348\t15\t2023-07-30 16:46:43.441\t2023-07-30 16:46:43.441\tspeedy-superman-92\nplayer-8\t158\t31\t2023-08-03 16:46:46.130\t2023-08-03 16:46:46.130\tspeedy-superman-92\nplayer-8\t325\t1\t2023-07-30 16:46:46.838\t2023-07-30 16:46:46.838\tspeedy-superman-92\nplayer-8\t348\t15\t2023-07-30 16:46:43.441\t2023-07-30 16:46:43.441\tspeedy-superman-92\nplayer-8\t348\t15\t2023-07-30 16:46:43.441\t2023-07-30 16:46:43.441\tspeedy-superman-92\nplayer-8\t158\t31\t2023-08-03 16:46:46.130\t2023-08-03 16:46:46.130\tspeedy-superman-92\nplayer-9\t213\t27\t2023-07-30 16:45:51.948\t2023-07-30 16:45:51.948\tfast-buddy-80\nplayer-9\t280\t42\t2023-07-27 16:46:48.462\t2023-07-27 16:46:48.462\tfast-buddy-80\nplayer-9\t280\t42\t2023-07-27 16:46:48.462\t2023-07-27 16:46:48.462\tfast-buddy-80\nplayer-9\t280\t42\t2023-07-27 16:46:48.462\t2023-07-27 16:46:48.462\tfast-buddy-80\n"
},
{
"type": "TEXT",
"data": "Fail to run sql command: select events.*, alias from events JOIN players FOR SYSTEM_TIME AS OF events.event_time_tz on events.player_id = players.player_id\n"
},
{
"type": "ANGULAR",
"data": "<div class='container ng-scope' style='padding-left:0px;padding-right:0px;'>\n <div class='panel panel-danger'>\n <div class='panel-heading' ng-click='isOpen=!isOpen' ng-init='isOpen=false' style=\"cursor:pointer\">\n <div class='plainTextContainer' style='font-weight:bolder'><i class=\"fa fa-caret-right fa-fw\" style=\"padding-right:7px;transition:all 0.3s;{{isOpen?'transform:rotate(90deg);transform-origin:25% 45%':''}}\"></i>Job was cancelled.</div>\n </div>\n <div class='panel-collapse' uib-collapse='!isOpen'>\n <div class='text' style='max-height:300px;overflow:auto;padding:10px'>java.lang.RuntimeException: Fail to run update type stream job\n\tat org.apache.zeppelin.flink.FlinkStreamSqlInterpreter.callInnerSelect(FlinkStreamSqlInterpreter.java:94)\n\tat org.apache.zeppelin.flink.FlinkStreamSqlInterpreter.lambda$open$0(FlinkStreamSqlInterpreter.java:49)\n\tat org.apache.zeppelin.flink.Flink115SqlInterpreter.callStreamInnerSelect(Flink115SqlInterpreter.java:451)\n\tat org.apache.zeppelin.flink.Flink115SqlInterpreter.callSelect(Flink115SqlInterpreter.java:435)\n\tat org.apache.zeppelin.flink.Flink115SqlInterpreter.callOperation(Flink115SqlInterpreter.java:290)\n\tat org.apache.zeppelin.flink.Flink115SqlInterpreter.runSqlList(Flink115SqlInterpreter.java:236)\n\tat org.apache.zeppelin.flink.Flink115Shims.runSqlList(Flink115Shims.java:315)\n\tat org.apache.zeppelin.flink.FlinkStreamSqlInterpreter.runSqlList(FlinkStreamSqlInterpreter.java:103)\n\tat org.apache.zeppelin.flink.FlinkSqlInterpreter.internalInterpret(FlinkSqlInterpreter.java:63)\n\tat org.apache.zeppelin.interpreter.AbstractInterpreter.interpret(AbstractInterpreter.java:55)\n\tat org.apache.zeppelin.interpreter.LazyOpenInterpreter.interpret(LazyOpenInterpreter.java:110)\n\tat org.apache.zeppelin.interpreter.remote.RemoteInterpreterServer$InterpretJob.jobRun(RemoteInterpreterServer.java:860)\n\tat org.apache.zeppelin.interpreter.remote.RemoteInterpreterServer$InterpretJob.jobRun(RemoteInterpreterServer.java:752)\n\tat org.apache.zeppelin.scheduler.Job.run(Job.java:172)\n\tat org.apache.zeppelin.scheduler.AbstractScheduler.runJob(AbstractScheduler.java:132)\n\tat org.apache.zeppelin.scheduler.ParallelScheduler.lambda$runJobInScheduler$0(ParallelScheduler.java:46)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)\n\tat java.base/java.lang.Thread.run(Thread.java:829)\nCaused by: java.io.IOException: Fail to run stream sql job\n\tat org.apache.zeppelin.flink.sql.AbstractStreamSqlJob.run(AbstractStreamSqlJob.java:165)\n\tat org.apache.zeppelin.flink.sql.AbstractStreamSqlJob.run(AbstractStreamSqlJob.java:109)\n\tat org.apache.zeppelin.flink.FlinkStreamSqlInterpreter.callInnerSelect(FlinkStreamSqlInterpreter.java:92)\n\t... 18 more\nCaused by: java.util.concurrent.ExecutionException: org.apache.flink.table.api.TableException: Failed to wait job finish\n\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:395)\n\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:1999)\n\tat org.apache.flink.table.api.internal.TableResultImpl.awaitInternal(TableResultImpl.java:118)\n\tat org.apache.flink.table.api.internal.TableResultImpl.await(TableResultImpl.java:81)\n\tat org.apache.zeppelin.flink.sql.AbstractStreamSqlJob.run(AbstractStreamSqlJob.java:154)\n\t... 20 more\nCaused by: org.apache.flink.table.api.TableException: Failed to wait job finish\n\tat org.apache.flink.table.api.internal.InsertResultProvider.hasNext(InsertResultProvider.java:85)\n\tat org.apache.flink.table.api.internal.InsertResultProvider.isFirstRowReady(InsertResultProvider.java:71)\n\tat org.apache.flink.table.api.internal.TableResultImpl.lambda$awaitInternal$1(TableResultImpl.java:105)\n\tat java.base/java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1736)\n\t... 3 more\nCaused by: java.util.concurrent.ExecutionException: org.apache.flink.client.program.ProgramInvocationException: Job failed (JobID: a31c9165223762a98f21b9da308371ad)\n\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:395)\n\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:1999)\n\tat org.apache.flink.table.api.internal.InsertResultProvider.hasNext(InsertResultProvider.java:83)\n\t... 6 more\nCaused by: org.apache.flink.client.program.ProgramInvocationException: Job failed (JobID: a31c9165223762a98f21b9da308371ad)\n\tat org.apache.flink.client.deployment.ClusterClientJobClientAdapter.lambda$getJobExecutionResult$6(ClusterClientJobClientAdapter.java:130)\n\tat java.base/java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:642)\n\tat java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506)\n\tat java.base/java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:2073)\n\tat org.apache.flink.util.concurrent.FutureUtils.lambda$retryOperationWithDelay$9(FutureUtils.java:403)\n\tat java.base/java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:859)\n\tat java.base/java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:837)\n\tat java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506)\n\tat java.base/java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:2073)\n\tat org.apache.flink.client.program.rest.RestClusterClient.lambda$pollResourceAsync$26(RestClusterClient.java:708)\n\tat java.base/java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:859)\n\tat java.base/java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:837)\n\tat java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506)\n\tat java.base/java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:2073)\n\tat org.apache.flink.util.concurrent.FutureUtils.lambda$retryOperationWithDelay$9(FutureUtils.java:403)\n\tat java.base/java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:859)\n\tat java.base/java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:837)\n\tat java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506)\n\tat java.base/java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:610)\n\tat java.base/java.util.concurrent.CompletableFuture$UniCompose.tryFire(CompletableFuture.java:1085)\n\tat java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:478)\n\t... 3 more\nCaused by: org.apache.flink.runtime.client.JobCancellationException: Job was cancelled.\n\tat org.apache.flink.runtime.jobmaster.JobResult.toJobExecutionResult(JobResult.java:146)\n\tat org.apache.flink.client.deployment.ClusterClientJobClientAdapter.lambda$getJobExecutionResult$6(ClusterClientJobClientAdapter.java:128)\n\t... 23 more\n</div>\n </div>\n </div>\n</div>\n"
}
]
},
"apps": [],
"runtimeInfos": {
"jobUrl": {
"propertyName": "jobUrl",
"label": "FLINK JOB",
"tooltip": "View in Flink web UI",
"group": "flink",
"values": [
{
"jobUrl": "/flinkdashboard/#/job/a31c9165223762a98f21b9da308371ad",
"$$hashKey": "object:10618"
}
],
"interpreterSettingId": "flink"
}
},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1690979670436_444527060",
"id": "paragraph_1690979670436_444527060",
"dateCreated": "2023-08-02T12:34:30+0000",
"dateStarted": "2023-08-03T16:45:45+0000",
"dateFinished": "2023-08-03T16:47:02+0000",
"status": "ABORT",
"$$hashKey": "object:62"
},
{
"text": "%flink.ssql(type=update)\n-- Part 3: Stream processing. Computing functional leaderboard\n-- Challenge 3.1: Can you run a query to compute leaderboard based on average speed and total distance by player refreshing every 30 seconds?\n-- Ref: https://nightlies.apache.org/flink/flink-docs-release-1.15/docs/dev/table/sql/queries/with/\n-- Ref: https://nightlies.apache.org/flink/flink-docs-release-1.15/docs/dev/table/sql/queries/window-tvf/\nWITH enriched_events AS (\n select events.*, alias from events JOIN players FOR SYSTEM_TIME AS OF events.event_time_tz on events.player_id = players.player_id\n)\nSELECT TUMBLE_END(event_time_tz, interval '30' SECOND) as event_time, alias, SUM(distance_meters) as total_distance, AVG(speed_kmph) as avg_speed\nFROM enriched_events\nGROUP BY alias, TUMBLE(event_time_tz, INTERVAL '30' SECOND);",
"user": "anonymous",
"dateUpdated": "2023-08-03T21:00:39+0000",
"progress": 0,
"config": {
"editorSetting": {
"language": "sql",
"editOnDblClick": false,
"completionKey": "TAB",
"completionSupport": true
},
"colWidth": 12,
"editorMode": "ace/mode/sql",
"fontSize": 9,
"results": {
"0": {
"graph": {
"mode": "table",
"height": 300,
"optionOpen": false,
"setting": {
"table": {
"tableGridState": {},
"tableColumnTypeState": {
"names": {
"event_time": "string",
"alias": "string",
"total_distance": "string",
"avg_speed": "string"
},
"updated": false
},
"tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
"tableOptionValue": {
"useFilter": false,
"showPagination": false,
"showAggregationFooter": false
},
"updated": false,
"initialized": false
}
},
"commonSetting": {}
}
}
},
"enabled": true
},
"settings": {
"params": {},
"forms": {}
},
"results": {
"code": "ERROR",
"msg": [
{
"type": "TABLE",
"data": "event_time\talias\ttotal_distance\tavg_speed\n2023-07-28 16:47:30.000\tfunny-john-78\t171\t338\n2023-07-29 16:48:00.000\tfast-racer-75\t188\t241\n2023-07-31 16:47:30.000\thot-car-81\t99\t320\n2023-08-01 16:48:00.000\thot-rock-25\t25\t191\n2023-08-02 16:47:30.000\tfast-devil-56\t168\t347\n2023-08-02 16:48:00.000\thot-rock-25\t90\t311\n2023-08-03 16:47:30.000\thot-car-81\t192\t301\n2023-08-03 16:47:30.000\tfunny-john-78\t30\t238\n2023-08-03 16:47:30.000\trunning-superman-66\t729\t240\n2023-08-03 16:47:30.000\tfast-devil-56\t165\t173\n2023-08-03 16:47:30.000\tfast-racer-75\t36\t183\n"
},
{
"type": "TEXT",
"data": "Fail to run sql command: WITH enriched_events AS (\n select events.*, alias from events JOIN players FOR SYSTEM_TIME AS OF events.event_time_tz on events.player_id = players.player_id\n)\nSELECT TUMBLE_END(event_time_tz, interval '30' SECOND) as event_time, alias, SUM(distance_meters) as total_distance, AVG(speed_kmph) as avg_speed\nFROM enriched_events\nGROUP BY alias, TUMBLE(event_time_tz, INTERVAL '30' SECOND)\n"
},
{
"type": "ANGULAR",
"data": "<div class='container ng-scope' style='padding-left:0px;padding-right:0px;'>\n <div class='panel panel-danger'>\n <div class='panel-heading' ng-click='isOpen=!isOpen' ng-init='isOpen=false' style=\"cursor:pointer\">\n <div class='plainTextContainer' style='font-weight:bolder'><i class=\"fa fa-caret-right fa-fw\" style=\"padding-right:7px;transition:all 0.3s;{{isOpen?'transform:rotate(90deg);transform-origin:25% 45%':''}}\"></i>Job was cancelled.</div>\n </div>\n <div class='panel-collapse' uib-collapse='!isOpen'>\n <div class='text' style='max-height:300px;overflow:auto;padding:10px'>java.lang.RuntimeException: Fail to run update type stream job\n\tat org.apache.zeppelin.flink.FlinkStreamSqlInterpreter.callInnerSelect(FlinkStreamSqlInterpreter.java:94)\n\tat org.apache.zeppelin.flink.FlinkStreamSqlInterpreter.lambda$open$0(FlinkStreamSqlInterpreter.java:49)\n\tat org.apache.zeppelin.flink.Flink115SqlInterpreter.callStreamInnerSelect(Flink115SqlInterpreter.java:451)\n\tat org.apache.zeppelin.flink.Flink115SqlInterpreter.callSelect(Flink115SqlInterpreter.java:435)\n\tat org.apache.zeppelin.flink.Flink115SqlInterpreter.callOperation(Flink115SqlInterpreter.java:290)\n\tat org.apache.zeppelin.flink.Flink115SqlInterpreter.runSqlList(Flink115SqlInterpreter.java:236)\n\tat org.apache.zeppelin.flink.Flink115Shims.runSqlList(Flink115Shims.java:315)\n\tat org.apache.zeppelin.flink.FlinkStreamSqlInterpreter.runSqlList(FlinkStreamSqlInterpreter.java:103)\n\tat org.apache.zeppelin.flink.FlinkSqlInterpreter.internalInterpret(FlinkSqlInterpreter.java:63)\n\tat org.apache.zeppelin.interpreter.AbstractInterpreter.interpret(AbstractInterpreter.java:55)\n\tat org.apache.zeppelin.interpreter.LazyOpenInterpreter.interpret(LazyOpenInterpreter.java:110)\n\tat org.apache.zeppelin.interpreter.remote.RemoteInterpreterServer$InterpretJob.jobRun(RemoteInterpreterServer.java:860)\n\tat org.apache.zeppelin.interpreter.remote.RemoteInterpreterServer$InterpretJob.jobRun(RemoteInterpreterServer.java:752)\n\tat org.apache.zeppelin.scheduler.Job.run(Job.java:172)\n\tat org.apache.zeppelin.scheduler.AbstractScheduler.runJob(AbstractScheduler.java:132)\n\tat org.apache.zeppelin.scheduler.ParallelScheduler.lambda$runJobInScheduler$0(ParallelScheduler.java:46)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)\n\tat java.base/java.lang.Thread.run(Thread.java:829)\nCaused by: java.io.IOException: Fail to run stream sql job\n\tat org.apache.zeppelin.flink.sql.AbstractStreamSqlJob.run(AbstractStreamSqlJob.java:165)\n\tat org.apache.zeppelin.flink.sql.AbstractStreamSqlJob.run(AbstractStreamSqlJob.java:109)\n\tat org.apache.zeppelin.flink.FlinkStreamSqlInterpreter.callInnerSelect(FlinkStreamSqlInterpreter.java:92)\n\t... 18 more\nCaused by: java.util.concurrent.ExecutionException: org.apache.flink.table.api.TableException: Failed to wait job finish\n\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:395)\n\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:1999)\n\tat org.apache.flink.table.api.internal.TableResultImpl.awaitInternal(TableResultImpl.java:118)\n\tat org.apache.flink.table.api.internal.TableResultImpl.await(TableResultImpl.java:81)\n\tat org.apache.zeppelin.flink.sql.AbstractStreamSqlJob.run(AbstractStreamSqlJob.java:154)\n\t... 20 more\nCaused by: org.apache.flink.table.api.TableException: Failed to wait job finish\n\tat org.apache.flink.table.api.internal.InsertResultProvider.hasNext(InsertResultProvider.java:85)\n\tat org.apache.flink.table.api.internal.InsertResultProvider.isFirstRowReady(InsertResultProvider.java:71)\n\tat org.apache.flink.table.api.internal.TableResultImpl.lambda$awaitInternal$1(TableResultImpl.java:105)\n\tat java.base/java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1736)\n\t... 3 more\nCaused by: java.util.concurrent.ExecutionException: org.apache.flink.client.program.ProgramInvocationException: Job failed (JobID: dc775df13441dd6fa860b0ff7ce66aa4)\n\tat java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:395)\n\tat java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:1999)\n\tat org.apache.flink.table.api.internal.InsertResultProvider.hasNext(InsertResultProvider.java:83)\n\t... 6 more\nCaused by: org.apache.flink.client.program.ProgramInvocationException: Job failed (JobID: dc775df13441dd6fa860b0ff7ce66aa4)\n\tat org.apache.flink.client.deployment.ClusterClientJobClientAdapter.lambda$getJobExecutionResult$6(ClusterClientJobClientAdapter.java:130)\n\tat java.base/java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:642)\n\tat java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506)\n\tat java.base/java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:2073)\n\tat org.apache.flink.util.concurrent.FutureUtils.lambda$retryOperationWithDelay$9(FutureUtils.java:403)\n\tat java.base/java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:859)\n\tat java.base/java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:837)\n\tat java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506)\n\tat java.base/java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:2073)\n\tat org.apache.flink.client.program.rest.RestClusterClient.lambda$pollResourceAsync$26(RestClusterClient.java:708)\n\tat java.base/java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:859)\n\tat java.base/java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:837)\n\tat java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506)\n\tat java.base/java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:2073)\n\tat org.apache.flink.util.concurrent.FutureUtils.lambda$retryOperationWithDelay$9(FutureUtils.java:403)\n\tat java.base/java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:859)\n\tat java.base/java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:837)\n\tat java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506)\n\tat java.base/java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:610)\n\tat java.base/java.util.concurrent.CompletableFuture$UniCompose.tryFire(CompletableFuture.java:1085)\n\tat java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:478)\n\t... 3 more\nCaused by: org.apache.flink.runtime.client.JobCancellationException: Job was cancelled.\n\tat org.apache.flink.runtime.jobmaster.JobResult.toJobExecutionResult(JobResult.java:146)\n\tat org.apache.flink.client.deployment.ClusterClientJobClientAdapter.lambda$getJobExecutionResult$6(ClusterClientJobClientAdapter.java:128)\n\t... 23 more\n</div>\n </div>\n </div>\n</div>\n"
}
]
},
"apps": [],
"runtimeInfos": {
"jobUrl": {
"propertyName": "jobUrl",
"label": "FLINK JOB",
"tooltip": "View in Flink web UI",
"group": "flink",
"values": [
{
"jobUrl": "/flinkdashboard/#/job/dc775df13441dd6fa860b0ff7ce66aa4",
"$$hashKey": "object:10621"
}
],
"interpreterSettingId": "flink"
}
},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1690906197072_1988955323",
"id": "paragraph_1690906067995_1983365530",
"dateCreated": "2023-08-01T16:09:57+0000",
"dateStarted": "2023-08-03T16:47:08+0000",
"dateFinished": "2023-08-03T16:48:19+0000",
"status": "ABORT",
"$$hashKey": "object:63"
},
{
"text": "%flink.ssql\n-- Part 3: Stream processing. Computing functional leaderboard and storing it as view for re-use.\n-- Challenge 3.2: Can you register leaderboard query as a view?\n-- Ref: https://nightlies.apache.org/flink/flink-docs-release-1.15/docs/dev/table/sql/create/#create-view\nDROP VIEW IF EXISTS leaderboard;\nCREATE VIEW leaderboard AS\nWITH enriched_events AS (\n select events.*, alias from events JOIN players FOR SYSTEM_TIME AS OF events.event_time_tz on events.player_id = players.player_id\n)\nSELECT TUMBLE_END(event_time_tz, interval '30' SECOND) as event_time, alias, SUM(distance_meters) as total_distance, AVG(speed_kmph) as avg_speed\nFROM enriched_events\nGROUP BY alias, TUMBLE(event_time_tz, INTERVAL '30' SECOND);",
"user": "anonymous",
"dateUpdated": "2023-08-03T21:00:58+0000",
"progress": 0,
"config": {
"editorSetting": {
"language": "sql",
"editOnDblClick": false,
"completionKey": "TAB",
"completionSupport": true
},
"colWidth": 12,
"editorMode": "ace/mode/sql",
"fontSize": 9,
"results": {
"0": {
"graph": {
"mode": "table",
"height": 300,
"optionOpen": false,
"setting": {
"table": {
"tableGridState": {},
"tableColumnTypeState": {
"names": {
"event_time": "string",
"command": "string"
},
"updated": false
},
"tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
"tableOptionValue": {
"useFilter": false,
"showPagination": false,
"showAggregationFooter": false
},
"updated": false,
"initialized": false
}
},
"commonSetting": {}
}
}
},
"enabled": true
},
"settings": {
"params": {},
"forms": {}
},
"results": {
"code": "SUCCESS",
"msg": [
{
"type": "TEXT",
"data": "View has been dropped.\nView has been created.\n"
}
]
},
"apps": [],
"runtimeInfos": {},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1690906743926_51331311",
"id": "paragraph_1690906743926_51331311",
"dateCreated": "2023-08-01T16:19:03+0000",
"dateStarted": "2023-08-03T16:48:31+0000",
"dateFinished": "2023-08-03T16:48:38+0000",
"status": "FINISHED",
"$$hashKey": "object:64"
},
{
"text": "%flink.ssql\n-- Part 3: Storing results to the Redis database\n-- Create results table to push redis commands to the results stream for lambda function to execute them on Redis\nDROP TABLE IF EXISTS `results`;\nCREATE TABLE `results` (\n `event_time` TIMESTAMP(3),\n `command` STRING\n)\nWITH (\n 'connector' = 'kinesis', -- connect to the kinesis stream\n 'stream' = 'GamingLeaderboardStack-results',\n 'aws.region' = 'eu-west-1', -- example: eu-west-1\n 'format' = 'json' -- source data in json format\n)",
"user": "anonymous",
"dateUpdated": "2023-08-03T16:48:43+0000",
"progress": 0,
"config": {
"editorSetting": {
"language": "sql",
"editOnDblClick": false,
"completionKey": "TAB",
"completionSupport": true
},
"colWidth": 12,
"editorMode": "ace/mode/sql",
"fontSize": 9,
"results": {},
"enabled": true
},
"settings": {
"params": {},
"forms": {}
},
"results": {
"code": "SUCCESS",
"msg": [
{
"type": "TEXT",
"data": "Table has been dropped.\nTable has been created.\n"
}
]
},
"apps": [],
"runtimeInfos": {},
"progressUpdateIntervalMs": 500,
"jobName": "paragraph_1690906197072_817471897",
"id": "paragraph_1690905916038_1169870672",
"dateCreated": "2023-08-01T16:09:57+0000",
"dateStarted": "2023-08-03T16:48:43+0000",
"dateFinished": "2023-08-03T16:48:44+0000",
"status": "FINISHED",
"$$hashKey": "object:65"
},
{
"text": "%flink.ssql\n-- Part 3: Further processing output for storing results to the Redis database\n-- Ref: https://redis.io/commands/zincrby/\nselect event_time, CONCAT('ZINCRBY leaderboard:total_distance ',CAST(total_distance AS STRING),' ',alias) as command from leaderboard",
"user": "anonymous",
"dateUpdated": "2023-08-03T16:48:49+0000",
"progress": 0,
"config": {
"editorSetting": {
"language": "sql",
"editOnDblClick": false,
"completionKey": "TAB",
"completionSupport": true
},
"colWidth": 12,
"editorMode": "ace/mode/sql",
"fontSize": 9,
"results": {
"0": {
"graph": {
"mode": "table",
"height": 300,
"optionOpen": false,
"setting": {
"table": {
"tableGridState": {},
"tableColumnTypeState": {
"names": {
"event_time": "string",
"command": "string"
},
"updated": false
},
"tableOptionSpecHash": "[{\"name\":\"useFilter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable filter for columns\"},{\"name\":\"showPagination\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable pagination for better navigation\"},{\"name\":\"showAggregationFooter\",\"valueType\":\"boolean\",\"defaultValue\":false,\"widget\":\"checkbox\",\"description\":\"Enable a footer for displaying aggregated values\"}]",
"tableOptionValue": {
"useFilter": false,
"showPagination": false,
"showAggregationFooter": false
},
"updated": false,
"initialized": false