-
Notifications
You must be signed in to change notification settings - Fork 15
/
football_database.sql
3835 lines (3833 loc) · 773 KB
/
football_database.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- --------------------------------------------------------
-- 호스트: 127.0.0.1
-- 서버 버전: 5.7.11-log - MySQL Community Server (GPL)
-- 서버 OS: Win64
-- HeidiSQL 버전: 9.3.0.4984
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- 테이블 데이터 football.league:~132 rows (대략적) 내보내기
/*!40000 ALTER TABLE `league` DISABLE KEYS */;
INSERT INTO `league` (`team_id`, `team_name`, `league_name`) VALUES
(1730, 'Augsburg', 'Bundesliga\r'),
(36, 'Bayer Leverkusen', 'Bundesliga\r'),
(37, 'Bayern Munich', 'Bundesliga\r'),
(44, 'Borussia Dortmund', 'Bundesliga\r'),
(134, 'Borussia M.Gladbach', 'Bundesliga\r'),
(1147, 'Darmstadt', 'Bundesliga\r'),
(45, 'Eintracht Frankfurt', 'Bundesliga\r'),
(282, 'FC Cologne', 'Bundesliga\r'),
(38, 'Hamburger SV', 'Bundesliga\r'),
(110, 'Hannover 96', 'Bundesliga\r'),
(47, 'Hertha Berlin', 'Bundesliga\r'),
(1211, 'Hoffenheim', 'Bundesliga\r'),
(3429, 'Ingolstadt', 'Bundesliga\r'),
(219, 'Mainz 05', 'Bundesliga\r'),
(39, 'Schalke 04', 'Bundesliga\r'),
(41, 'VfB Stuttgart', 'Bundesliga\r'),
(42, 'Werder Bremen', 'Bundesliga\r'),
(33, 'Wolfsburg', 'Bundesliga\r'),
(53, 'Athletic Bilbao', 'LaLiga\r'),
(63, 'Atletico Madrid', 'LaLiga\r'),
(65, 'Barcelona', 'LaLiga\r'),
(62, 'Celta Vigo', 'LaLiga\r'),
(59, 'Deportivo La Coruna', 'LaLiga\r'),
(824, 'Eibar', 'LaLiga\r'),
(70, 'Espanyol', 'LaLiga\r'),
(819, 'Getafe', 'LaLiga\r'),
(925, 'Granada', 'LaLiga\r'),
(838, 'Las Palmas', 'LaLiga\r'),
(832, 'Levante', 'LaLiga\r'),
(69, 'Malaga', 'LaLiga\r'),
(64, 'Rayo Vallecano', 'LaLiga\r'),
(54, 'Real Betis', 'LaLiga\r'),
(52, 'Real Madrid', 'LaLiga\r'),
(68, 'Real Sociedad', 'LaLiga\r'),
(67, 'Sevilla', 'LaLiga\r'),
(830, 'Sporting Gijon', 'LaLiga\r'),
(55, 'Valencia', 'LaLiga\r'),
(839, 'Villarreal', 'LaLiga\r'),
(13, 'Arsenal', 'PremierLeague\r'),
(24, 'Aston Villa', 'PremierLeague\r'),
(183, 'Bournemouth', 'PremierLeague\r'),
(15, 'Chelsea', 'PremierLeague\r'),
(162, 'Crystal Palace', 'PremierLeague\r'),
(31, 'Everton', 'PremierLeague\r'),
(14, 'Leicester', 'PremierLeague\r'),
(26, 'Liverpool', 'PremierLeague\r'),
(167, 'Manchester City', 'PremierLeague\r'),
(32, 'Manchester United', 'PremierLeague\r'),
(23, 'Newcastle United', 'PremierLeague\r'),
(168, 'Norwich', 'PremierLeague\r'),
(18, 'Southampton', 'PremierLeague\r'),
(96, 'Stoke', 'PremierLeague\r'),
(16, 'Sunderland', 'PremierLeague\r'),
(259, 'Swansea', 'PremierLeague\r'),
(30, 'Tottenham', 'PremierLeague\r'),
(27, 'Watford', 'PremierLeague\r'),
(175, 'West Bromwich Albion', 'PremierLeague\r'),
(29, 'West Ham', 'PremierLeague\r'),
(80, 'AC Milan', 'SerieA\r'),
(300, 'Atalanta', 'SerieA\r'),
(71, 'Bologna', 'SerieA\r'),
(9363, 'Carpi', 'SerieA\r'),
(267, 'Chievo', 'SerieA\r'),
(272, 'Empoli', 'SerieA\r'),
(73, 'Fiorentina', 'SerieA\r'),
(2732, 'Frosinone', 'SerieA\r'),
(278, 'Genoa', 'SerieA\r'),
(75, 'Inter', 'SerieA\r'),
(87, 'Juventus', 'SerieA\r'),
(77, 'Lazio', 'SerieA\r'),
(276, 'Napoli', 'SerieA\r'),
(1285, 'Palermo', 'SerieA\r'),
(84, 'Roma', 'SerieA\r'),
(271, 'Sampdoria', 'SerieA\r'),
(2889, 'Sassuolo', 'SerieA\r'),
(72, 'Torino', 'SerieA\r'),
(86, 'Udinese', 'SerieA\r'),
(76, 'Verona', 'SerieA\r'),
(764, 'ADO Den Haag', 'Eredivisie\r'),
(130, 'Ajax', 'Eredivisie\r'),
(243, 'AZ Alkmaar', 'Eredivisie\r'),
(241, 'Cambuur', 'Eredivisie\r'),
(257, 'De Graafschap', 'Eredivisie\r'),
(867, 'Excelsior', 'Eredivisie\r'),
(758, 'FC Groningen', 'Eredivisie\r'),
(128, 'FC Utrecht', 'Eredivisie\r'),
(256, 'Feyenoord', 'Eredivisie\r'),
(870, 'Heracles', 'Eredivisie\r'),
(116, 'NEC Nijmegen', 'Eredivisie\r'),
(868, 'PEC Zwolle', 'Eredivisie\r'),
(129, 'PSV Eindhoven', 'Eredivisie\r'),
(127, 'Roda', 'Eredivisie\r'),
(287, 'SC Heerenveen', 'Eredivisie\r'),
(113, 'Twente', 'Eredivisie\r'),
(255, 'Vitesse', 'Eredivisie\r'),
(115, 'Willem II', 'Eredivisie\r'),
(614, 'Angers', 'Ligue1\r'),
(315, 'Bordeaux', 'Ligue1\r'),
(347, 'Caen', 'Ligue1\r'),
(940, 'GFC Ajaccio', 'Ligue1\r'),
(426, 'Guingamp', 'Ligue1\r'),
(607, 'Lille', 'Ligue1\r'),
(146, 'Lorient', 'Ligue1\r'),
(228, 'Lyon', 'Ligue1\r'),
(249, 'Marseille', 'Ligue1\r'),
(248, 'Monaco', 'Ligue1\r'),
(311, 'Montpellier', 'Ligue1\r'),
(302, 'Nantes', 'Ligue1\r'),
(613, 'Nice', 'Ligue1\r'),
(304, 'Paris Saint Germain', 'Ligue1\r'),
(950, 'Reims', 'Ligue1\r'),
(313, 'Rennes', 'Ligue1\r'),
(145, 'Saint-Etienne', 'Ligue1\r'),
(310, 'SC Bastia', 'Ligue1\r'),
(246, 'Toulouse', 'Ligue1\r'),
(229, 'Troyes', 'Ligue1\r'),
(1537, 'Amkar', 'RussiaLeague\r'),
(1002, 'Anzhi Makhachkala', 'RussiaLeague\r'),
(847, 'CSKA Moscow', 'RussiaLeague\r'),
(846, 'Dinamo Moscow', 'RussiaLeague\r'),
(7164, 'FC Krasnodar', 'RussiaLeague\r'),
(562, 'FC Rostov', 'RussiaLeague\r'),
(9004, 'FC Ufa', 'RussiaLeague\r'),
(997, 'Krylya Sovetov Samara', 'RussiaLeague\r'),
(2290, 'Kuban Krasnodar', 'RussiaLeague\r'),
(668, 'Lokomotiv Moscow', 'RussiaLeague\r'),
(4173, 'Mordovya', 'RussiaLeague\r'),
(2057, 'Rubin Kazan', 'RussiaLeague\r'),
(840, 'Spartak Moscow', 'RussiaLeague\r'),
(2407, 'Terek Grozny', 'RussiaLeague\r'),
(4174, 'Ural', 'RussiaLeague\r'),
(560, 'Zenit St. Petersburg', 'RussiaLeague\r');
/*!40000 ALTER TABLE `league` ENABLE KEYS */;
-- 테이블 데이터 football.player:~3,573 rows (대략적) 내보내기
/*!40000 ALTER TABLE `player` DISABLE KEYS */;
INSERT INTO `player` (`player_number`, `flag`, `name`, `age`, `position`, `tall`, `weight`, `apps_start`, `apps_sub`, `mins`, `goals`, `assists`, `yel`, `red`, `spg`, `ps_x`, `motm`, `aw`, `rating`, `tackles`, `inter`, `fouls`, `offsides`, `clear`, `drb`, `blocks`, `owng`, `keyp`, `fouled`, `off`, `disp`, `unstch`, `avgp`, `ps_y`, `crosses`, `longb`, `thrb`, `team_name`, `league_name`) VALUES
(9294, 'es', 'Aduriz', 35, ' FW', 181, 75, 30, 4, 2776, 20, 6, 9, 0, 2.7, 60.6, 6, 4.8, 7.37, 0.7, 0.3, 1.6, 0, 0.7, 0.2, 0.1, 0, 1, 2, 1.1, 2.4, 2.3, 1, 21, 60.6, 0.1, 0.2, 'Athletic Bilbao', 'LaLiga\r'),
(11386, 'es', 'Raúl García', 29, ' M(CLR),FW', 184, 81, 27, 3, 2375, 7, 6, 10, 0, 2.6, 63.7, 2, 3.7, 7.25, 2.3, 1.1, 2.3, 0, 1.1, 1.1, 0.1, 0, 0.8, 2.5, 0.4, 1.3, 1.8, 0.8, 30.8, 63.7, 0.1, 1, 'Athletic Bilbao', 'LaLiga\r'),
(79051, 'es', 'San José', 27, ' D(C),DMC', 186, 77, 30, 4, 2691, 2, 3, 6, 1, 0.7, 78.7, 2, 2.8, 7.05, 2.5, 2.7, 1.6, 0.1, 1.2, 1.6, 0.4, 0, 0.4, 0.6, 0, 0.6, 0.7, 0.4, 44.2, 78.7, 0.1, 1.9, 'Athletic Bilbao', 'LaLiga\r'),
(22811, 'es', 'Beñat', 29, ' M(C)', 175, 72, 32, 4, 2900, 1, 5, 8, 0, 0.8, 81.3, 2, 0.4, 7.03, 2.1, 1.8, 1.1, 0, 0.4, 1.3, 0.1, 0, 1.8, 1.5, 0, 1.1, 0.6, 1.8, 52.7, 81.3, 1.8, 4.9, 'Athletic Bilbao', 'LaLiga\r'),
(78500, 'es', 'De Marcos', 27, ' D(LR),M(CR)', 180, 76, 33, 1, 2886, 1, 3, 6, 0, 0.4, 70.6, 1, 1.4, 7.02, 2.7, 2.6, 1, 0.4, 1.9, 1, 0.1, 0, 0.7, 0.6, 0.1, 0.7, 0.8, 0.7, 34.2, 70.6, 0.8, 1.8, 'Athletic Bilbao', 'LaLiga\r'),
(30638, 'es', 'Markel Susaeta', 28, ' M(LR)', 179, 67, 22, 6, 1922, 3, 8, 3, 0, 0.9, 76.9, 0, 0.6, 6.96, 1.9, 1, 0.9, 0, 0.2, 1, 0, 0, 1.5, 1.1, 0.3, 1.5, 1.2, 1.5, 23.3, 76.9, 1.1, 0.5, 'Athletic Bilbao', 'LaLiga\r'),
(122117, 'fr', 'Aymeric Laporte', 22, ' D(CL)', 189, 85, 25, 1, 2214, 3, 1, 7, 2, 0.7, 80.2, 1, 2.1, 6.93, 1.9, 2.7, 1, 1.1, 3.5, 0.7, 0.6, 1, 0.2, 1, 0, 0.2, 0.3, 0.2, 49.8, 80.2, 0, 4.5, 'Athletic Bilbao', 'LaLiga\r'),
(44739, 'es', 'Balenziaga', 28, ' D(L)', 177, 75, 33, 1, 2906, 0, 3, 6, 0, 0.2, 77.6, 1, 0.9, 6.9, 2.4, 2, 1.1, 0.4, 1.8, 0.6, 0.1, 0, 0.7, 0.7, 0, 0.6, 0.7, 0.7, 31.3, 77.6, 0.8, 1, 'Athletic Bilbao', 'LaLiga\r'),
(73807, 'es', 'Eneko Bóveda', 27, ' D(CR)', 181, 77, 15, 8, 1462, 0, 0, 1, 0, 0.2, 77.1, 2, 1.7, 6.89, 1.9, 2.8, 0.7, 0.5, 2, 0.7, 0.1, 0, 0.4, 0.4, 0.1, 0.3, 0.5, 0.4, 35.5, 77.1, 0.6, 1.8, 'Athletic Bilbao', 'LaLiga\r'),
(69806, 'es', 'Etxeita', 28, ' D(C)', 185, 79, 28, 2, 2485, 0, 1, 5, 0, 0.3, 80.3, 0, 1.7, 6.86, 1.3, 2.6, 0.7, 1.1, 4.1, 0.5, 0.7, 1, 0.2, 0.1, 0.1, 0.2, 0.3, 0.2, 37.7, 80.3, 0, 3.6, 'Athletic Bilbao', 'LaLiga\r'),
(291686, 'es', 'Íñigo Lekue', 23, ' D(L),M(L)', 180, 72, 12, 8, 1158, 1, 0, 2, 0, 0.6, 75.5, 1, 1.2, 6.83, 2.5, 1.1, 0.5, 0.2, 0.6, 0.6, 0.1, 0, 0.6, 0.4, 0.1, 0.9, 0.7, 0.6, 23.3, 75.5, 0.7, 1.1, 'Athletic Bilbao', 'LaLiga\r'),
(255182, 'es', 'Iñaki Williams', 22, ' AM(LR)', 186, 77, 21, 4, 1639, 8, 3, 2, 1, 1.7, 65.3, 2, 0.3, 6.8, 0.7, 0.5, 0.9, 0, 0.3, 0.4, 0, 0, 0.6, 1.6, 0.5, 1.7, 2, 0.6, 15.9, 65.3, 0.4, 0.4, 'Athletic Bilbao', 'LaLiga\r'),
(129217, 'es', 'Aketxe', 22, ' Midfielder', 174, 69, 2, 1, 186, 0, 0, 0, 0, 1.3, 78.9, 0, 1.3, 6.78, 1.7, 0.7, 0, 0, 0.3, 0.3, 0, 0, 0.7, 0.7, 0.3, 4, 0, 0.7, 25.3, 78.9, 1.3, 1, 'Athletic Bilbao', 'LaLiga\r'),
(3954, 'es', 'Gurpegi', 35, ' D(C),M(C)', 181, 74, 12, 3, 1143, 0, 0, 4, 0, 0.3, 79.9, 0, 1.9, 6.72, 1.3, 3, 0.9, 1.2, 3.8, 0.8, 0.3, 0, 0.1, 0.6, 0, 0.1, 0, 0.1, 35.2, 79.9, 0.1, 2.5, 'Athletic Bilbao', 'LaLiga\r'),
(77922, 'es', 'Muniain', 23, ' AM(CL)', 169, 63, 13, 7, 1020, 2, 0, 3, 0, 1.1, 83.8, 0, 0.3, 6.68, 1, 0.4, 0.3, 0, 0.3, 0.3, 0, 0, 0.9, 1.9, 0, 1.2, 0.6, 0.9, 26.5, 83.8, 0.3, 1, 'Athletic Bilbao', 'LaLiga\r'),
(44737, 'es', 'Iturraspe', 27, ' M(C)', 187, 74, 7, 9, 700, 0, 1, 1, 0, 0.3, 77.9, 1, 1.7, 6.63, 1.3, 2, 1.2, 0.2, 0.8, 0.4, 0.2, 0, 0.3, 0.4, 0, 0.2, 0.4, 0.3, 26.6, 77.9, 0.2, 1.6, 'Athletic Bilbao', 'LaLiga\r'),
(14245, 'es', 'Gorka Iraizoz', 35, ' GK', 191, 87, 37, 0, 3244, 0, 0, 1, 1, 0, 55.8, 0, 0.2, 6.62, 0, 0.1, 0, 0, 0.9, 0.1, 0, 0, 0.1, 0.1, 0, 0, 0, 0.1, 32.7, 55.8, 0, 11, 'Athletic Bilbao', 'LaLiga\r'),
(291685, '', 'Sabin', 24, ' AM(L)', 187, 78, 13, 9, 1130, 5, 0, 1, 0, 1.2, 68.4, 1, 1.5, 6.55, 0.7, 0.3, 0.5, 0, 0.2, 0.4, 0.1, 0, 0.5, 0.4, 0.1, 1, 1.2, 0.5, 12.8, 68.4, 0.2, 0.2, 'Athletic Bilbao', 'LaLiga\r'),
(22500, 'es', 'Mikel Rico', 31, ' M(C)', 178, 76, 8, 9, 692, 1, 1, 2, 1, 0.7, 75.7, 0, 0.4, 6.51, 1.5, 1.4, 0.6, 0, 0.2, 0.6, 0, 0, 0.3, 0.5, 0.1, 0.8, 0.3, 0.3, 21.3, 75.7, 0.1, 1.3, 'Athletic Bilbao', 'LaLiga\r'),
(19622, 'es', 'Elustondo', 29, ' D(C),M(C)', 184, 79, 4, 7, 466, 1, 0, 1, 0, 0.3, 82.5, 0, 0.5, 6.45, 0.9, 2, 0.9, 0.4, 0.6, 0.6, 0.1, 0, 0.2, 0.1, 0.1, 0.8, 0.4, 0.2, 20.7, 82.5, 0, 1.1, 'Athletic Bilbao', 'LaLiga\r'),
(291684, '', 'Eraso', 26, ' AM(C)', 180, 71, 8, 8, 778, 2, 1, 2, 0, 0.8, 76.5, 0, 0.6, 6.23, 0.3, 0.3, 0.3, 0, 0.3, 0.4, 0.1, 0, 0.6, 0.9, 0.3, 1.3, 1.3, 0.6, 16.3, 76.5, 0.1, 0.2, 'Athletic Bilbao', 'LaLiga\r'),
(35772, 'es', 'Borja Viguera', 29, ' AM(L),FW', 184, 80, 3, 6, 289, 0, 0, 0, 0, 0.8, 73.3, 0, 1.1, 6.22, 0.1, 0.2, 0.4, 0, 0.3, 0.2, 0.2, 0, 0.2, 0.3, 0, 0.9, 0.6, 0.2, 10, 73.3, 0, 0.1, 'Athletic Bilbao', 'LaLiga\r'),
(33800, 'es', 'Kike Sola', 30, ' FW', 185, 82, 1, 4, 76, 0, 0, 0, 0, 0.2, 72.7, 0, 0.8, 6.09, 0, 0, 0.2, 0.2, 0.6, 0, 0, 0, 0, 1.2, 0, 0.2, 0.2, 0, 2.2, 72.7, 0, 0, 'Athletic Bilbao', 'LaLiga\r'),
(91193, 'es', 'Ibai Gómez', 26, ' AM(L)', 177, 72, 1, 4, 116, 0, 0, 3, 0, 0.4, 74.4, 0, 0, 6.05, 0.2, 0.2, 1.2, 0, 0.4, 0.4, 0, 0, 0.2, 0, 0.2, 0.6, 0, 0.2, 7.8, 74.4, 0, 0.2, 'Athletic Bilbao', 'LaLiga\r'),
(101134, 'es', 'Iago Herrerín', 28, ' GK', 187, 89, 1, 1, 174, 0, 0, 0, 0, 0, 50, 0, 0, 5.8, 0.5, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 50, 0, 16.5, 'Athletic Bilbao', 'LaLiga\r'),
(22152, 'br', 'Filipe Luis', 30, ' D(L)', 182, 73, 32, 0, 2834, 1, 4, 11, 1, 0.3, 82.5, 3, 1.3, 7.6, 3.9, 2.7, 0.9, 0, 1.7, 0.5, 0.2, 0, 0.9, 0.9, 0, 0.8, 1, 0.9, 51.9, 82.5, 0.7, 1.5, 'Atletico Madrid', 'LaLiga\r'),
(26059, 'uy', 'Diego Godín', 30, ' D(C)', 187, 79, 31, 0, 2651, 1, 1, 5, 1, 0.8, 78.4, 6, 3, 7.52, 2.3, 3.3, 1.2, 0.1, 5.1, 0.3, 0.3, 0, 0.2, 1.1, 0.1, 0.2, 0.4, 0.2, 35.7, 78.4, 0, 3, 'Atletico Madrid', 'LaLiga\r'),
(80241, 'fr', 'Antoine Griezmann', 25, ' AM(CLR),FW', 175, 72, 36, 2, 3058, 22, 5, 5, 0, 2.4, 78.3, 8, 1.5, 7.5, 1.5, 1, 0.8, 0, 0.8, 0.7, 0.1, 0, 1.4, 1, 0.4, 1.3, 1.8, 1.4, 35.7, 78.3, 0.3, 1.3, 'Atletico Madrid', 'LaLiga\r'),
(80764, 'es', 'Koke', 24, ' M(CLR)', 178, 74, 34, 1, 2973, 5, 14, 4, 0, 1.2, 82, 2, 0.7, 7.49, 2.9, 1.4, 1, 0, 0.8, 1.3, 0.1, 0, 2.2, 1.5, 0, 1.6, 1.3, 2.2, 57.8, 82, 1.4, 1.9, 'Atletico Madrid', 'LaLiga\r'),
(112161, 'es', 'Saúl Ñíguez', 21, ' D(C),M(CLR)', 183, 76, 26, 5, 2329, 4, 2, 1, 0, 1.5, 76.3, 3, 2.6, 7.37, 3, 1.8, 1.5, 0.1, 1.5, 1.1, 0.4, 0, 0.6, 0.8, 0.2, 1.2, 1.5, 0.6, 36.6, 76.3, 0.2, 0.8, 'Atletico Madrid', 'LaLiga\r'),
(10053, 'es', 'Gabi', 32, ' M(C)', 182, 75, 34, 1, 2883, 1, 3, 11, 1, 0.5, 82.1, 2, 1.3, 7.22, 3, 2.2, 1.9, 0, 0.9, 1.9, 0.3, 0, 0.8, 1.2, 0, 0.6, 0.7, 0.8, 61, 82.1, 0.7, 4.6, 'Atletico Madrid', 'LaLiga\r'),
(135914, 'uy', 'Giménez', 21, ' D(C)', 185, 77, 27, 0, 2430, 1, 1, 8, 0, 0.4, 73.3, 1, 2.1, 7.22, 2.1, 2.5, 1, 0.4, 5.4, 0.7, 0.7, 0, 0.3, 0.4, 0.1, 0.3, 0.3, 0.3, 31.9, 73.3, 0, 3.5, 'Atletico Madrid', 'LaLiga\r'),
(8128, 'pt', 'Tiago', 35, ' M(C)', 184, 75, 12, 2, 1053, 1, 2, 4, 0, 0.5, 84.7, 0, 1.4, 7.14, 1.9, 2.4, 1.1, 0, 1.6, 0.8, 0.4, 0, 0.5, 1.4, 0, 0.4, 0.4, 0.5, 54.6, 84.7, 0, 3.9, 'Atletico Madrid', 'LaLiga\r'),
(10332, 'es', 'Juanfran', 31, ' D(R)', 180, 72, 34, 1, 3030, 1, 1, 6, 0, 0.2, 77.1, 1, 0.5, 7.06, 2.1, 1.9, 1.2, 0.1, 1.5, 0.5, 0.2, 0, 0.8, 0.5, 0.2, 0.8, 0.7, 0.8, 33.5, 77.1, 0.9, 1.1, 'Atletico Madrid', 'LaLiga\r'),
(139186, 'fr', 'Lucas Hernández', 20, ' D(C)', 183, 76, 8, 2, 834, 0, 0, 0, 0, 0, 70.2, 0, 1.4, 7.04, 1.9, 3.1, 0.8, 0, 3.5, 0.2, 0.4, 0, 0.3, 1.1, 0, 0.1, 0.1, 0.3, 28.9, 70.2, 0.1, 2, 'Atletico Madrid', 'LaLiga\r'),
(4056, 'es', 'Fernando Torres', 32, ' FW', 185, 79, 17, 13, 1692, 11, 4, 3, 0, 1.9, 65.9, 1, 2.1, 6.98, 0.6, 0.2, 0.8, 0, 0.5, 0.3, 0.1, 0, 0.7, 1.2, 0.5, 1.4, 1.6, 0.7, 11.9, 65.9, 0.1, 0.1, 'Atletico Madrid', 'LaLiga\r'),
(20665, 'br', 'Guilherme Siqueira', 30, ' D(L)', 182, 81, 1, 0, 90, 0, 0, 1, 0, 0, 82.6, 0, 0, 6.97, 3, 0, 2, 0, 2, 1, 0, 0, 1, 2, 0, 0, 1, 1, 46, 82.6, 0, 2, 'Atletico Madrid', 'LaLiga\r'),
(77564, 'me', 'Stefan Savic', 25, ' D(C)', 187, 79, 10, 2, 925, 0, 0, 1, 0, 0.2, 78.2, 0, 2.3, 6.97, 1, 1.7, 0.5, 0, 4.3, 0.4, 0.4, 0, 0, 0.3, 0, 0, 0.1, 0, 31.4, 78.2, 0, 2.4, 'Atletico Madrid', 'LaLiga\r'),
(115472, 'be', 'Yannick Carrasco', 22, ' AM(LR)', 180, 67, 16, 13, 1502, 4, 1, 5, 0, 1.9, 82, 1, 0.5, 6.94, 0.8, 0.8, 1.1, 0, 0.2, 0.3, 0.1, 0, 0.7, 0.8, 0.2, 1.3, 1.6, 0.7, 24.8, 82, 0.5, 0.4, 'Atletico Madrid', 'LaLiga\r'),
(25956, 'ar', 'Augusto Fernández', 30, ' M(CR)', 177, 71, 11, 2, 857, 0, 0, 4, 0, 0.3, 85.8, 0, 0.5, 6.87, 2.4, 2.7, 1.2, 0, 0.3, 2.2, 0, 0, 0.1, 0.5, 0, 0.2, 0.5, 0.1, 31.4, 85.8, 0.1, 1.1, 'Atletico Madrid', 'LaLiga\r'),
(18538, 'es', 'Jesús Gámez', 31, ' D(LR)', 182, 77, 7, 3, 727, 0, 0, 3, 0, 0.2, 74.9, 0, 0.8, 6.84, 2.1, 1.6, 0.6, 0.1, 3.2, 1.3, 0.4, 0, 0.5, 0.8, 0, 0.3, 0.8, 0.5, 25.1, 74.9, 0.5, 1.4, 'Atletico Madrid', 'LaLiga\r'),
(76662, 'si', 'Jan Oblak', 23, ' GK', 188, 83, 38, 0, 3420, 0, 0, 0, 0, 0, 46.6, 0, 0.2, 6.83, 0, 0.1, 0, 0, 0.6, 0, 0, 0, 0, 0.1, 0, 0, 0.1, 0, 18.7, 46.6, 0, 5.1, 'Atletico Madrid', 'LaLiga\r'),
(238940, 'gh', 'Thomas Partey', 23, ' DMC', 185, 75, 3, 10, 433, 2, 1, 3, 0, 0.7, 78.4, 0, 0.5, 6.74, 1.7, 1.2, 0.8, 0, 0.2, 0.3, 0, 0, 0.5, 0.5, 0.1, 0.5, 0.5, 0.5, 15.3, 78.4, 0.2, 0.8, 'Atletico Madrid', 'LaLiga\r'),
(127604, 'ar', 'Ángel Correa', 21, ' Forward', 173, 69, 8, 18, 949, 5, 4, 7, 0, 1.2, 68.5, 1, 0.2, 6.71, 0.9, 0.4, 0.8, 0, 0, 0.5, 0.1, 0, 0.6, 0.8, 0.1, 1.3, 1.3, 0.6, 12.8, 68.5, 0.1, 0.5, 'Atletico Madrid', 'LaLiga\r'),
(27494, 'co', 'Jackson Martínez', 29, ' FW', 185, 79, 8, 7, 657, 2, 3, 0, 0, 1.7, 71, 0, 1.3, 6.63, 0.2, 0.4, 1.3, 0, 0.5, 0.2, 0.1, 0, 0.6, 0.7, 0.3, 0.9, 2.1, 0.6, 12.9, 71, 0.1, 0.3, 'Atletico Madrid', 'LaLiga\r'),
(303114, 'es', 'Nacho Monsalve', 22, ' Defender', 180, 0, 1, 0, 90, 0, 0, 0, 0, 0, 84.4, 0, 1, 6.57, 0, 2, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 32, 84.4, 0, 2, 'Atletico Madrid', 'LaLiga\r'),
(125543, 'ar', 'Luciano Vietto', 22, ' FW', 174, 70, 12, 7, 966, 1, 3, 3, 0, 1.3, 79.7, 0, 0.3, 6.48, 0.7, 0.2, 0.7, 0, 0.1, 0.5, 0.1, 0, 0.7, 1.2, 0.7, 1.3, 2.1, 0.7, 19.2, 79.7, 0.1, 0.4, 'Atletico Madrid', 'LaLiga\r'),
(113708, 'es', 'Óliver Torres', 21, ' M(CLR)', 174, 64, 9, 12, 815, 0, 2, 2, 0, 0.4, 80.4, 0, 0.1, 6.47, 1, 0.6, 0.5, 0, 0.1, 1, 0, 0, 0.8, 0.5, 0, 1, 0.8, 0.8, 23.8, 80.4, 0.1, 1.1, 'Atletico Madrid', 'LaLiga\r'),
(130446, 'ar', 'Matías Kranevitter', 23, ' Midfielder', 178, 74, 3, 5, 325, 0, 0, 1, 0, 0.1, 77.1, 0, 0.5, 6.32, 1.3, 0.6, 1.1, 0, 0.9, 0, 0, 0, 0, 0.4, 0, 0.5, 0.3, 0, 16.4, 77.1, 0, 0.6, 'Atletico Madrid', 'LaLiga\r'),
(11386, 'es', 'Raúl García', 29, ' M(CLR),FW', 184, 81, 0, 1, 9, 0, 0, 0, 0, 1, 80, 0, 0, 6.22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 5, 80, 0, 0, 'Atletico Madrid', 'LaLiga\r'),
(11119, 'ar', 'Lionel Messi', 28, ' AM(CR),FW', 170, 72, 31, 2, 2730, 26, 16, 3, 0, 4.8, 81.9, 13, 0.2, 8.46, 0.3, 0.2, 0.4, 0, 0, 0.2, 0, 0, 2.3, 1.8, 0.3, 2.2, 0.9, 2.3, 55.7, 81.9, 0.4, 3.5, 'Barcelona', 'LaLiga\r'),
(50835, 'br', 'Neymar', 24, ' AM(CLR),FW', 174, 68, 34, 0, 3057, 24, 12, 6, 0, 3.6, 80.9, 7, 0.6, 8.43, 0.8, 0.3, 1.4, 0, 0, 0.5, 0, 0, 3, 3.8, 0.7, 2.7, 2.3, 3, 53.4, 80.9, 1.1, 1.9, 'Barcelona', 'LaLiga\r'),
(22221, 'uy', 'Luis Suárez', 29, ' AM(CLR),FW', 182, 85, 35, 0, 3150, 40, 16, 6, 0, 3.9, 73.1, 8, 0.4, 8.01, 0.7, 0.2, 1.2, 0, 0.5, 0.4, 0.1, 0, 1.6, 1.7, 1.7, 1.2, 2, 1.6, 26.5, 73.1, 0.1, 0.7, 'Barcelona', 'LaLiga\r'),
(44721, 'es', 'Sergio Busquets', 27, ' DMC', 189, 76, 34, 1, 2906, 0, 4, 6, 0, 0.2, 89.8, 1, 1.7, 7.28, 2.9, 1.9, 0.9, 0.1, 0.7, 1.1, 0.1, 0, 0.5, 1.9, 0, 0.7, 0.4, 0.5, 69.2, 89.8, 0.1, 4.7, 'Barcelona', 'LaLiga\r'),
(9486, 'es', 'Andrés Iniesta', 32, ' M(CL)', 171, 68, 25, 3, 2248, 1, 2, 2, 0, 0.8, 88.3, 1, 0.4, 7.24, 2, 1, 0.7, 0, 0.2, 0.8, 0.1, 0, 1.1, 1.4, 0, 1.1, 1, 1.1, 65.5, 88.3, 0.1, 5.1, 'Barcelona', 'LaLiga\r'),
(22732, 'hr', 'Ivan Rakitic', 28, ' M(C)', 184, 78, 30, 6, 2581, 7, 2, 3, 0, 1.3, 88.1, 2, 0.9, 7.17, 1.8, 1.4, 1.1, 0, 0.5, 1, 0.1, 1, 0.9, 1.4, 0.1, 0.5, 0.9, 0.9, 49.3, 88.1, 0.7, 3, 'Barcelona', 'LaLiga\r'),
(12712, 'es', 'Gerard Piqué', 29, ' D(C)', 193, 85, 30, 0, 2592, 2, 1, 12, 0, 0.4, 90.5, 1, 2, 7.14, 1.3, 1.8, 0.6, 1, 3.6, 0.4, 0.6, 0, 0.2, 0.3, 0.1, 0.4, 0.2, 0.2, 67.4, 90.5, 0, 4.3, 'Barcelona', 'LaLiga\r'),
(5780, 'br', 'Dani Alves', 33, ' D(R)', 172, 70, 24, 5, 2149, 0, 4, 6, 0, 0.6, 87.2, 0, 0.6, 7.05, 1.9, 1.6, 1.3, 0.2, 0.8, 0.8, 0.2, 0, 0.7, 0.7, 0.1, 1.2, 0.9, 0.7, 57.7, 87.2, 0.8, 3.1, 'Barcelona', 'LaLiga\r'),
(44288, 'es', 'Jordi Alba', 27, ' D(L)', 170, 68, 29, 2, 2591, 0, 6, 2, 0, 0.2, 87.2, 0, 0.5, 7.05, 1.7, 2, 0.6, 0.5, 1.6, 0.7, 0.2, 0, 0.6, 0.5, 0.1, 0.5, 0.6, 0.6, 66.5, 87.2, 0.2, 1.7, 'Barcelona', 'LaLiga\r'),
(7415, 'ar', 'Javier Mascherano', 32, ' D(C),M(C)', 174, 73, 31, 1, 2694, 0, 0, 9, 1, 0.1, 90.5, 0, 1.2, 7.01, 2.6, 2.2, 0.8, 0.5, 1.8, 0.6, 0.5, 0, 0.3, 0.7, 0, 0.5, 0.1, 0.3, 66.3, 90.5, 0, 7.9, 'Barcelona', 'LaLiga\r'),
(90782, 'es', 'Sergi Roberto', 24, ' D(R),DMC', 178, 71, 21, 10, 1916, 0, 5, 1, 0, 0.5, 88.1, 2, 0.7, 6.93, 1.7, 1.4, 0.5, 0.1, 0.5, 0.5, 0, 0, 0.6, 0.7, 0, 0.6, 0.6, 0.6, 39.9, 88.1, 0.3, 0.8, 'Barcelona', 'LaLiga\r'),
(14199, 'cl', 'Claudio Bravo', 33, ' GK', 184, 80, 32, 0, 2878, 0, 0, 0, 0, 0, 84.3, 0, 0.1, 6.92, 0, 0.1, 0, 0, 0.5, 0.1, 0, 0, 0, 0, 0, 0, 0, 0, 26.7, 84.3, 0, 4.4, 'Barcelona', 'LaLiga\r'),
(10209, 'be', 'Thomas Vermaelen', 30, ' D(CL)', 183, 80, 6, 4, 506, 1, 0, 2, 0, 0.3, 91.8, 0, 1.3, 6.91, 0.7, 1.4, 0.4, 0.7, 3.6, 0.1, 0.3, 0, 0, 0.6, 0, 0, 0.1, 0, 34.1, 91.8, 0, 1.7, 'Barcelona', 'LaLiga\r'),
(83686, 'es', 'Marc Bartra', 25, ' D(C)', 183, 74, 4, 9, 496, 2, 1, 0, 0, 0.4, 87.9, 0, 1.1, 6.85, 0.8, 1.1, 0.2, 0.6, 2, 0.2, 0.6, 0, 0.2, 0.4, 0.1, 0, 0.2, 0.2, 30, 87.9, 0, 1.7, 'Barcelona', 'LaLiga\r'),
(5881, 'fr', 'Jeremy Mathieu', 32, ' D(CL)', 189, 84, 12, 9, 1263, 0, 2, 2, 0, 0.3, 88, 0, 1.2, 6.76, 0.9, 1.8, 0.4, 0.4, 2.1, 0.3, 0.4, 1, 0.2, 0.3, 0, 0.2, 0.4, 0.2, 38, 88, 0, 1, 'Barcelona', 'LaLiga\r'),
(82630, 'es', 'Aleix Vidal', 26, ' D(R),M(LR)', 178, 69, 6, 3, 543, 0, 1, 1, 0, 0.1, 86.9, 0, 0.3, 6.76, 1, 1.1, 0.9, 0.1, 0.4, 0.7, 0, 0, 0.7, 0.4, 0.1, 0.4, 0.6, 0.7, 43.3, 86.9, 0.1, 2, 'Barcelona', 'LaLiga\r'),
(106590, 'br', 'Rafinha', 23, ' AM(CR)', 174, 71, 3, 3, 281, 1, 0, 0, 0, 0.3, 84.2, 0, 0.7, 6.76, 0.7, 0.8, 0.5, 0, 0.2, 0, 0.2, 0, 1, 0.8, 0, 0.2, 0.5, 1, 30.5, 84.2, 0, 0.3, 'Barcelona', 'LaLiga\r'),
(143158, 'es', 'Munir El Haddadi', 20, ' AM(LR)', 175, 69, 8, 7, 825, 3, 2, 0, 0, 1.1, 78.7, 0, 0.4, 6.74, 0.7, 0.9, 0.8, 0, 0.3, 0.5, 0.1, 0, 0.6, 0.8, 0.4, 0.8, 1.3, 0.6, 20.7, 78.7, 0, 0.7, 'Barcelona', 'LaLiga\r'),
(21501, 'tr', 'Arda Turan', 29, ' AM(CLR)', 178, 76, 9, 9, 816, 2, 3, 5, 0, 0.6, 92.3, 0, 0.2, 6.73, 1.4, 0.6, 1.2, 0, 0.1, 0.6, 0, 0, 0.4, 0.8, 0.1, 1.2, 0.7, 0.4, 34.1, 92.3, 0.1, 1.4, 'Barcelona', 'LaLiga\r'),
(13471, 'br', 'Adriano', 31, ' D(CLR)', 173, 73, 4, 4, 431, 0, 1, 0, 0, 0.1, 91.3, 0, 0.4, 6.68, 1.1, 1.3, 0.9, 0.1, 0.8, 0.3, 0.1, 0, 0.6, 0.8, 0, 0.1, 0.3, 0.6, 38.9, 91.3, 0.4, 2.4, 'Barcelona', 'LaLiga\r'),
(135243, 'es', 'Sergi Samper', 21, ' Midfielder', 181, 71, 0, 1, 29, 0, 0, 0, 0, 0, 81.5, 0, 2, 6.5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 81.5, 0, 1, 'Barcelona', 'LaLiga\r'),
(80774, 'de', 'Marc-André ter Stegen', 24, ' GK', 187, 85, 6, 1, 542, 0, 0, 0, 0, 0, 83.4, 0, 0.1, 6.48, 0, 0, 0, 0, 0.6, 0, 0, 0, 0.1, 0, 0, 0, 0, 0.1, 21.6, 83.4, 0, 4.3, 'Barcelona', 'LaLiga\r'),
(135242, 'es', 'Sandro Ramírez', 20, ' Forward', 175, 71, 4, 6, 347, 0, 1, 0, 0, 1, 83.3, 0, 0, 6.34, 0.2, 0, 0.4, 0, 0, 0.1, 0, 0, 0.6, 0.5, 0.1, 0.4, 0.5, 0.6, 9, 83.3, 0, 0.2, 'Barcelona', 'LaLiga\r'),
(294123, 'es', 'Gerard Gumbau', 21, ' Midfielder', 187, 78, 0, 3, 43, 0, 0, 0, 0, 0, 84.2, 0, 0, 6.13, 0.7, 0.7, 0, 0, 0, 0.7, 0.3, 0, 0, 0, 0, 0, 0.3, 0, 6.3, 84.2, 0, 0, 'Barcelona', 'LaLiga\r'),
(74533, 'br', 'Douglas', 25, ' D(R),M(R)', 171, 67, 0, 1, 12, 0, 0, 0, 0, 0, 50, 0, 0, 6.08, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 50, 0, 0, 'Barcelona', 'LaLiga\r'),
(91267, 'es', 'Nolito', 29, ' AM(L)', 175, 65, 27, 2, 2473, 12, 7, 9, 0, 2.8, 67.6, 9, 0.6, 7.44, 1.7, 0.9, 1.4, 0, 0.1, 0.8, 0, 0, 2.1, 2.1, 1.1, 2.1, 1.8, 2.1, 38.9, 67.6, 1, 2.1, 'Celta Vigo', 'LaLiga\r'),
(25956, 'ar', 'Augusto Fernández', 30, ' M(CR)', 177, 71, 15, 0, 1338, 1, 1, 7, 0, 0.6, 90.3, 0, 1.1, 7.17, 4.5, 2.5, 1.9, 0.1, 1.3, 2.1, 0.3, 0, 0.4, 1.2, 0.1, 1.2, 1.1, 0.4, 69.4, 90.3, 0, 2.9, 'Celta Vigo', 'LaLiga\r'),
(25714, 'cl', 'Orellana', 30, ' AM(CLR)', 171, 70, 34, 0, 2921, 7, 7, 9, 1, 2.3, 77.8, 2, 0.6, 7.09, 1, 0.8, 0.7, 0, 1.2, 0.4, 0.1, 0, 1.7, 2.6, 0.3, 3.3, 2.5, 1.7, 44.9, 77.8, 0.6, 2.4, 'Celta Vigo', 'LaLiga\r'),
(15544, 'ar', 'Cabral', 30, ' D(C)', 184, 82, 31, 0, 2675, 0, 0, 9, 2, 0.2, 87.4, 0, 2.5, 7.06, 2.8, 3.4, 1.3, 0.3, 4.5, 0.9, 0.6, 0, 0.2, 0.6, 0.1, 0.4, 0.2, 0.2, 56.6, 87.4, 0, 4, 'Celta Vigo', 'LaLiga\r'),
(91242, 'es', 'Iago Aspas', 28, ' AM(CR),FW', 176, 67, 31, 4, 2668, 14, 4, 8, 0, 2.3, 77.5, 6, 0.6, 7.02, 0.7, 0.4, 1.1, 0, 0.3, 0.5, 0.1, 0, 1.4, 1, 0.5, 1.4, 1.6, 1.4, 26.7, 77.5, 0.3, 1.1, 'Celta Vigo', 'LaLiga\r'),
(79929, 'es', 'Hugo Mallo', 24, ' D(CR)', 174, 75, 33, 1, 2944, 1, 4, 9, 0, 0.2, 78.5, 1, 1.1, 7, 2.6, 3.4, 1.4, 0.2, 2.6, 0.8, 0.4, 0, 0.5, 0.5, 0.1, 0.2, 0.4, 0.5, 42.6, 78.5, 0.2, 2.2, 'Celta Vigo', 'LaLiga\r'),
(141879, 'cl', 'Pablo Hernández', 29, ' M(C)', 185, 82, 28, 5, 2313, 2, 4, 14, 1, 0.8, 79.1, 1, 3.8, 6.97, 2, 1.9, 2.4, 0, 1.6, 1.2, 0.2, 1, 0.4, 2.9, 0.2, 1.3, 1.3, 0.4, 45.7, 79.1, 0, 2.7, 'Celta Vigo', 'LaLiga\r'),
(74938, 'es', 'Fontàs', 26, ' D(C),DMC', 181, 72, 6, 1, 540, 1, 0, 1, 0, 0.3, 89.7, 0, 1.6, 6.89, 2.4, 2.1, 0.3, 0.3, 2.9, 0.6, 0.3, 0, 0.3, 0.3, 0, 0.1, 0.3, 0.3, 66.3, 89.7, 0, 4.6, 'Celta Vigo', 'LaLiga\r'),
(27254, 'dk', 'Daniel Wass', 27, ' D(LR),M(CR)', 181, 74, 31, 5, 2706, 2, 5, 3, 0, 1.4, 80.3, 1, 1.5, 6.87, 1.4, 1.4, 0.8, 0, 1, 0.5, 0.2, 0, 1.1, 1.1, 0.1, 0.9, 1.2, 1.1, 42.4, 80.3, 0.5, 2.8, 'Celta Vigo', 'LaLiga\r'),
(115917, 'es', 'Jonny', 22, ' D(LR)', 175, 70, 34, 2, 2960, 1, 4, 8, 2, 0.4, 83.5, 2, 0.9, 6.82, 2.3, 2.9, 1.2, 0.2, 1.8, 0.9, 0.2, 1, 0.6, 0.6, 0, 0.8, 0.7, 0.6, 42.1, 83.5, 0.2, 1.9, 'Celta Vigo', 'LaLiga\r'),
(90778, 'es', 'Sergi Gómez', 24, ' D(CR)', 185, 77, 29, 2, 2615, 0, 1, 6, 0, 0.1, 85.6, 1, 1.7, 6.78, 1.7, 3.2, 1, 0.3, 3.3, 0.5, 0.5, 0, 0.1, 0.2, 0, 0.2, 0.2, 0.1, 47.8, 85.6, 0, 1.9, 'Celta Vigo', 'LaLiga\r'),
(91259, 'es', 'Planas', 25, ' D(L)', 173, 76, 18, 8, 1680, 0, 2, 4, 0, 0.1, 77.2, 0, 1.2, 6.62, 2.3, 2.5, 0.7, 0.1, 2.1, 1, 0.2, 0, 0.3, 0.4, 0.1, 0.1, 0.5, 0.3, 35, 77.2, 0.1, 1.9, 'Celta Vigo', 'LaLiga\r'),
(144095, 'es', 'David Goldar', 21, ' Defender', 180, 72, 1, 0, 90, 0, 0, 1, 0, 1, 41.7, 0, 1, 6.62, 2, 3, 2, 0, 7, 2, 2, 0, 0, 2, 0, 0, 0, 0, 24, 41.7, 0, 1, 'Celta Vigo', 'LaLiga\r'),
(35255, 'cl', 'Marcelo Díaz', 29, ' DMC', 166, 63, 10, 4, 983, 0, 1, 3, 0, 0.9, 89.1, 0, 0.1, 6.53, 1.4, 2.1, 0.7, 0, 0.7, 1.3, 0.1, 0, 0.1, 0.9, 0, 0.6, 0.8, 0.1, 52.6, 89.1, 0, 4, 'Celta Vigo', 'LaLiga\r'),
(136392, 'be', 'Theo Bongonda', 20, ' AM(L)', 177, 68, 14, 9, 1195, 2, 1, 5, 0, 0.8, 75.7, 0, 0.3, 6.51, 0.8, 0.6, 0.9, 0, 0.1, 0.3, 0, 0, 0.4, 1.3, 0.4, 0.7, 1, 0.4, 12.9, 75.7, 0.2, 0.1, 'Celta Vigo', 'LaLiga\r'),
(97559, 'es', 'Sergio Álvarez', 29, ' GK', 179, 75, 30, 1, 2725, 0, 0, 1, 0, 0, 53.4, 0, 0.3, 6.48, 0, 0.1, 0, 0, 0.8, 0.1, 0, 0, 0, 0, 0, 0, 0, 0, 27.1, 53.4, 0, 6.8, 'Celta Vigo', 'LaLiga\r'),
(239053, 'rs', 'Nemanja Radoja', 23, ' DMC', 186, 77, 15, 15, 1450, 0, 1, 5, 0, 0.2, 83.4, 0, 0.6, 6.48, 1.9, 1.3, 0.9, 0, 0.9, 0.3, 0, 0, 0.1, 0.5, 0.1, 0.6, 0.4, 0.1, 26.1, 83.4, 0, 1.1, 'Celta Vigo', 'LaLiga\r'),
(25599, 'fr', 'Claudio Beauvue', 28, ' AM(CLR),FW', 174, 66, 6, 4, 505, 1, 0, 1, 0, 1.1, 68.4, 0, 1.9, 6.4, 1.1, 0.2, 1.1, 0, 0.6, 0.5, 0.1, 0, 0.5, 0.6, 0.2, 0.7, 0.8, 0.5, 11.4, 68.4, 0.3, 0.3, 'Celta Vigo', 'LaLiga\r'),
(41420, 'se', 'John Guidetti', 24, ' FW', 185, 79, 12, 23, 1234, 7, 0, 3, 0, 0.9, 72.4, 0, 0.4, 6.38, 0.3, 0.1, 0.7, 0, 0.1, 0.1, 0, 0, 0.5, 0.8, 0.3, 0.5, 1, 0.5, 8.6, 72.4, 0, 0.1, 'Celta Vigo', 'LaLiga\r'),
(279513, '', 'Alende', 18, ' Defender', 180, 75, 0, 1, 39, 0, 0, 0, 0, 0, 85.7, 0, 1, 6.37, 0, 2, 1, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 7, 85.7, 0, 0, 'Celta Vigo', 'LaLiga\r'),
(294191, '', 'Señé', 24, ' Midfielder', 185, 74, 4, 4, 384, 0, 1, 1, 0, 0.3, 71.6, 1, 1.1, 6.27, 0.5, 0.4, 0.8, 0, 0.4, 0.6, 0, 0, 0.1, 1.8, 0, 1.5, 1, 0.1, 12.8, 71.6, 0, 0, 'Celta Vigo', 'LaLiga\r'),
(239052, 'es', 'Borja Fernández', 20, ' Midfielder', 177, 71, 1, 3, 132, 0, 0, 0, 0, 0, 72.5, 0, 1, 6.26, 0.5, 1, 0, 0, 0.5, 0.3, 0.3, 0, 0.3, 0, 0, 0, 0, 0.3, 12.8, 72.5, 0, 0.5, 'Celta Vigo', 'LaLiga\r'),
(120335, 'es', 'Rubén Blanco', 20, ' GK', 188, 70, 8, 0, 690, 0, 0, 1, 1, 0, 51.3, 0, 0.3, 6.23, 0, 0, 0.3, 0, 1.6, 0, 0, 0, 0, 0.3, 0, 0, 0, 0, 24.1, 51.3, 0, 4.4, 'Celta Vigo', 'LaLiga\r'),
(279511, 'sn', 'Pape Cheikh', 18, ' Midfielder', 180, 68, 0, 6, 59, 0, 0, 0, 0, 0, 92, 0, 0, 6.17, 0.7, 0.3, 0.3, 0, 0, 0, 0, 0, 0, 0.7, 0, 0.5, 0.2, 0, 4.2, 92, 0, 0, 'Celta Vigo', 'LaLiga\r'),
(294190, '', 'Néstor', 23, ' Goalkeeper', 183, 72, 0, 1, 4, 0, 0, 0, 0, 0, 100, 0, 0, 6.04, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 100, 0, 1, 'Celta Vigo', 'LaLiga\r'),
(108220, 'ga', 'Lévy Madinda', 23, ' M(C)', 182, 77, 0, 1, 1, 0, 0, 0, 0, 0, 100, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 100, 0, 0, 'Celta Vigo', 'LaLiga\r'),
(137296, 'rs', 'Dejan Drazic', 20, ' Midfielder', 175, 69, 1, 5, 104, 0, 0, 1, 0, 0.2, 83.3, 0, 0.2, 5.95, 0, 0, 0.2, 0, 0.2, 0.2, 0, 0, 0, 0.2, 0.3, 0.3, 0, 0, 5, 83.3, 0, 0, 'Celta Vigo', 'LaLiga\r'),
(135663, 'es', 'Lucas Pérez', 27, ' AM(CR),FW', 181, 73, 35, 1, 3141, 17, 8, 3, 0, 2.8, 79.1, 2, 0.1, 7.1, 0.5, 0.1, 1, 0, 0, 0.4, 0.1, 0, 2, 1.3, 1, 1.8, 2.1, 2, 24.9, 79.1, 0.7, 0.6, 'Deportivo La Coruna', 'LaLiga\r'),
(40731, 'br', 'Sidnei', 26, ' D(C)', 186, 86, 33, 0, 2897, 0, 0, 2, 0, 0.2, 78.4, 1, 1.5, 6.97, 1.6, 3.1, 0.5, 0.9, 5.8, 0.3, 0.5, 0, 0.2, 0.6, 0.1, 0.2, 0.5, 0.2, 36.5, 78.4, 0, 4.1, 'Deportivo La Coruna', 'LaLiga\r'),
(83081, 'es', 'Alejandro Arribas', 27, ' D(C)', 182, 74, 31, 0, 2737, 2, 0, 9, 1, 0.4, 73.7, 1, 2.7, 6.92, 1.8, 3.3, 1, 1.1, 5, 0.7, 0.5, 1, 0.1, 1, 0, 0.4, 0.2, 0.1, 35.3, 73.7, 0, 2.4, 'Deportivo La Coruna', 'LaLiga\r'),
(85077, 'es', 'Luis Alberto', 23, ' AM(CL)', 182, 72, 25, 4, 2108, 6, 7, 3, 0, 2.8, 69.1, 3, 0.7, 6.88, 1.3, 0.3, 0.3, 0, 0.3, 0.6, 0, 0, 1.1, 0.7, 0.3, 1.8, 1.9, 1.1, 24.3, 69.1, 0.2, 0.9, 'Deportivo La Coruna', 'LaLiga\r'),
(135238, 'ar', 'Fede Cartabia', 23, ' AM(CLR)', 179, 66, 15, 11, 1356, 3, 3, 3, 0, 2, 78.8, 2, 0.3, 6.88, 1.4, 1.2, 0.7, 0, 0.1, 0.8, 0, 0, 0.9, 2, 0.1, 1.2, 1.7, 0.9, 21.9, 78.8, 0.4, 1.4, 'Deportivo La Coruna', 'LaLiga\r'),
(55299, 'es', 'Pedro Mosquera', 28, ' M(C)', 184, 77, 37, 0, 3288, 0, 2, 10, 0, 0.8, 82.5, 0, 1.2, 6.83, 3.3, 2.2, 1.9, 0, 1.4, 1.4, 0.2, 0, 0.6, 1.2, 0, 0.9, 0.8, 0.6, 52.7, 82.5, 0, 5.3, 'Deportivo La Coruna', 'LaLiga\r'),
(44825, 'es', 'Álex Bergantiños', 31, ' M(C)', 177, 71, 20, 2, 1750, 2, 1, 3, 0, 0.7, 77.4, 0, 1.6, 6.82, 2.7, 1.8, 0.9, 0.1, 1.1, 1.5, 0.1, 0, 1, 0.3, 0, 0.7, 0.6, 1, 39.9, 77.4, 0, 2.3, 'Deportivo La Coruna', 'LaLiga\r'),
(105026, 'ma', 'Faycal Fajr', 27, ' AM(CLR)', 178, 72, 31, 7, 2841, 5, 3, 3, 0, 1.2, 82.2, 2, 0.6, 6.81, 1.3, 1.3, 0.7, 0, 0.4, 0.7, 0, 0, 1.5, 0.9, 0.1, 0.6, 1, 1.5, 38.1, 82.2, 0.9, 2.7, 'Deportivo La Coruna', 'LaLiga\r'),
(4387, 'es', 'Fernando Navarro', 33, ' D(CL)', 176, 70, 35, 0, 2961, 0, 2, 5, 0, 0, 75.4, 0, 1.5, 6.81, 2.7, 2.6, 1.1, 0.6, 2.4, 0.7, 0.3, 0, 0.3, 1.1, 0.1, 0.2, 0.5, 0.3, 35.9, 75.4, 0.1, 2, 'Deportivo La Coruna', 'LaLiga\r'),
(23816, 'cr', 'Celso Borges', 28, ' M(C)', 186, 81, 21, 3, 1910, 3, 2, 3, 1, 0.8, 79.7, 1, 3.5, 6.8, 1.5, 1.4, 0.9, 0, 1.2, 0.5, 0.1, 0, 1, 0.6, 0, 0.4, 0.5, 1, 40, 79.7, 0.1, 2.3, 'Deportivo La Coruna', 'LaLiga\r'),
(84963, 'es', 'Juanfran', 27, ' D(R),M(R)', 179, 72, 30, 5, 2683, 1, 2, 4, 0, 0.5, 74.3, 2, 1.3, 6.8, 1.7, 3, 0.3, 0.3, 1.6, 0.7, 0.1, 0, 0.6, 0.7, 0.1, 0.9, 1, 0.6, 30.6, 74.3, 0.5, 1.5, 'Deportivo La Coruna', 'LaLiga\r'),
(34045, 'es', 'Laure', 31, ' D(R)', 171, 64, 16, 7, 1548, 0, 0, 6, 0, 0, 73.6, 0, 0.6, 6.56, 1.7, 2.4, 1, 0.3, 2.3, 0.5, 0.3, 0, 0.3, 0.5, 0, 0.4, 0.3, 0.3, 24.5, 73.6, 0.3, 1.3, 'Deportivo La Coruna', 'LaLiga\r'),
(36720, 'pt', 'Luisinho', 31, ' D(L),M(L)', 171, 65, 11, 9, 1091, 0, 0, 5, 1, 0.4, 75.1, 0, 0.7, 6.52, 1.6, 1.1, 1, 0.2, 0.5, 0.7, 0.1, 0, 0.3, 1.7, 0.1, 0.4, 0.6, 0.3, 18.5, 75.1, 0.3, 0.9, 'Deportivo La Coruna', 'LaLiga\r'),
(9283, 'es', 'Alberto Lopo', 36, ' D(C)', 186, 82, 8, 2, 741, 0, 0, 5, 0, 0.4, 79.1, 0, 1.6, 6.52, 1.1, 2.4, 0.8, 0.4, 4.1, 0.9, 0.5, 0, 0.1, 0.4, 0, 0, 0.1, 0.1, 32, 79.1, 0, 3.7, 'Deportivo La Coruna', 'LaLiga\r'),
(16711, 'ar', 'Germán Lux', 34, ' GK', 185, 79, 29, 0, 2558, 0, 0, 5, 1, 0, 49.1, 2, 0.3, 6.49, 0, 0.1, 0, 0, 0.7, 0, 0, 0, 0, 0.3, 0, 0, 0, 0, 32.1, 49.1, 0, 11.1, 'Deportivo La Coruna', 'LaLiga\r'),
(9460, 'es', 'Cani', 34, ' M(CLR)', 180, 75, 12, 6, 892, 0, 0, 2, 0, 0.6, 71.2, 0, 0.2, 6.4, 1.1, 0.9, 0.5, 0.1, 0.2, 0.7, 0.2, 0, 0.4, 0.6, 0.1, 1.1, 0.9, 0.4, 21.8, 71.2, 0.2, 1.2, 'Deportivo La Coruna', 'LaLiga\r'),
(14075, 'ar', 'Jonás Gutiérrez', 32, ' M(CLR)', 183, 73, 3, 12, 391, 0, 1, 2, 0, 0.2, 65.2, 1, 0.7, 6.39, 1.2, 1.3, 0.4, 0.1, 0.7, 0.3, 0.1, 0, 0.3, 0.3, 0, 0.7, 0.6, 0.3, 9.4, 65.2, 0.2, 0.3, 'Deportivo La Coruna', 'LaLiga\r'),
(295002, 'pt', 'Miguel Cardoso', 22, ' Midfielder', 176, 71, 0, 3, 41, 0, 1, 0, 0, 1.3, 80, 0, 0, 6.35, 0.7, 0, 0.3, 0, 0, 0.3, 0, 0, 0.3, 0, 0.3, 0, 1.3, 0.3, 5, 80, 0, 0.7, 'Deportivo La Coruna', 'LaLiga\r'),
(11230, 'es', 'Oriol Riera', 29, ' FW', 184, 78, 7, 15, 788, 2, 0, 3, 0, 1.1, 65.5, 0, 2.1, 6.33, 0.1, 0.1, 1, 0.1, 0.5, 0.1, 0, 0, 0.3, 0.8, 0.4, 0.5, 0.7, 0.3, 11.5, 65.5, 0, 0.5, 'Deportivo La Coruna', 'LaLiga\r'),
(82621, 'es', 'Juan Domínguez', 26, ' M(C)', 184, 72, 2, 3, 185, 0, 0, 0, 0, 0.6, 78.3, 0, 0.4, 6.21, 1.6, 0.2, 1, 0, 0.2, 1.6, 0, 0, 0.4, 0, 0.2, 0.2, 0.8, 0.4, 12, 78.3, 0, 0, 'Deportivo La Coruna', 'LaLiga\r'),
(5988, 'es', 'Manuel Pablo', 40, ' D(LR)', 177, 73, 2, 1, 175, 0, 0, 0, 0, 0.3, 83.1, 0, 0.3, 6.2, 0.7, 1.7, 0, 0, 2, 1, 0, 0, 0.3, 0, 0, 0, 0.7, 0.3, 29.7, 83.1, 0, 1, 'Deportivo La Coruna', 'LaLiga\r'),
(282857, 'uy', 'Jonathan Rodríguez', 22, ' FW', 181, 78, 6, 7, 566, 0, 0, 2, 0, 1.3, 72.3, 0, 0.4, 6.12, 0.6, 0.1, 1.2, 0, 0.3, 0.2, 0, 0, 0.2, 0.4, 0.8, 1.4, 1.7, 0.2, 6.4, 72.3, 0, 0.2, 'Deportivo La Coruna', 'LaLiga\r'),
(3300, 'hr', 'Stipe Pletikosa', 37, ' GK', 193, 82, 2, 0, 180, 0, 0, 0, 0, 0, 52.7, 0, 0, 6.03, 0, 0, 0, 0, 0.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27.5, 52.7, 0, 9.5, 'Deportivo La Coruna', 'LaLiga\r'),
(34046, 'es', 'Manu', 30, ' GK', 182, 77, 8, 1, 683, 0, 0, 2, 0, 0, 42.1, 0, 0.3, 5.98, 0, 0, 0, 0, 1.1, 0.1, 0, 0, 0, 0.2, 0, 0, 0, 0, 24.6, 42.1, 0, 8.6, 'Deportivo La Coruna', 'LaLiga\r'),
(301467, '', 'Rober', 21, ' Defender', 0, 0, 0, 2, 50, 0, 0, 0, 0, 0.5, 80, 0, 0, 5.97, 0.5, 0, 1, 0, 0, 0.5, 0, 0, 0, 0, 0, 0, 0, 0, 17.5, 80, 0, 1.5, 'Deportivo La Coruna', 'LaLiga\r'),
(127764, 'ar', 'Gonzalo Escalante', 23, ' DMC', 182, 76, 32, 2, 2829, 3, 1, 15, 0, 0.7, 73.3, 3, 1.7, 7, 3.4, 2.6, 2.4, 0, 1.2, 1.5, 0.4, 0, 0.4, 0.8, 0, 1.2, 1.2, 0.4, 35.9, 73.3, 0.1, 2.2, 'Eibar', 'LaLiga\r'),
(68706, 'es', 'Keko', 24, ' M(R)', 177, 72, 27, 2, 2316, 3, 3, 4, 1, 1.2, 71.3, 0, 0.3, 6.97, 2.7, 0.9, 1.4, 0, 0.1, 1.1, 0, 0, 1.4, 2.1, 0.3, 1.9, 2.1, 1.4, 25.3, 71.3, 1.1, 0.7, 'Eibar', 'LaLiga\r'),
(130377, 'es', 'Ander Capa', 24, ' D(R),M(R)', 173, 70, 34, 2, 3122, 2, 5, 12, 0, 0.4, 62.9, 1, 0.9, 6.94, 2.9, 2.7, 1.4, 0.3, 2.4, 0.9, 0.1, 0, 0.6, 0.8, 0.1, 0.5, 1.1, 0.6, 32.9, 62.9, 0.6, 1.9, 'Eibar', 'LaLiga\r'),
(83358, 'es', 'Sergi Enrich', 26, ' FW', 181, 77, 25, 13, 2422, 9, 6, 4, 0, 1.2, 67.7, 3, 3.1, 6.84, 1.1, 0.4, 1.4, 0, 0.7, 0.2, 0.1, 0, 0.8, 1.4, 0.4, 1.6, 1.9, 0.8, 23, 67.7, 0.1, 0.3, 'Eibar', 'LaLiga\r'),
(127392, 'es', 'Dani García', 26, ' DMC', 180, 75, 35, 0, 3057, 0, 0, 15, 0, 0.6, 76.4, 0, 1.6, 6.8, 2.9, 2.7, 1.3, 0, 1, 1.3, 0.1, 0, 0.4, 1.3, 0, 0.7, 0.8, 0.4, 49.1, 76.4, 0, 6.2, 'Eibar', 'LaLiga\r'),
(106872, 'es', 'Borja Bastón', 23, ' FW', 191, 82, 29, 7, 2581, 18, 3, 3, 0, 2.6, 69.1, 1, 1.7, 6.78, 0.7, 0.3, 1.1, 0, 0.3, 0.7, 0, 0, 0.5, 0.8, 1, 1.4, 1.9, 0.5, 16.6, 69.1, 0.1, 0.2, 'Eibar', 'LaLiga\r'),
(105784, 'rs', 'Aleksandar Pantic', 24, ' D(C)', 185, 78, 18, 2, 1677, 0, 0, 6, 0, 0.5, 64.1, 1, 2.8, 6.77, 0.9, 3.7, 1.1, 0.4, 5.3, 0.5, 0.2, 0, 0.1, 0.1, 0, 0.1, 0.3, 0.1, 25, 64.1, 0, 2.3, 'Eibar', 'LaLiga\r'),
(41625, 'ar', 'Mauro Dos Santos', 26, ' D(C)', 180, 76, 30, 1, 2682, 0, 1, 7, 0, 0.4, 67.2, 1, 2.7, 6.75, 1.6, 2.9, 1, 1, 4.7, 0.8, 0.3, 1, 0.2, 0.5, 0, 0.1, 0.4, 0.2, 30.2, 67.2, 0, 4.1, 'Eibar', 'LaLiga\r'),
(10058, 'es', 'Iván Ramis', 31, ' D(C)', 188, 82, 21, 2, 1795, 0, 1, 7, 1, 0.3, 77.2, 0, 2.5, 6.73, 0.8, 2.4, 0.8, 0.7, 4.2, 0.3, 0.2, 0, 0.2, 0.5, 0, 0, 0.3, 0.2, 31.9, 77.2, 0.1, 4, 'Eibar', 'LaLiga\r'),
(240888, 'es', 'Saúl Berjón', 30, ' AM(LR),FW', 178, 84, 16, 13, 1400, 4, 4, 1, 0, 1.2, 64.6, 1, 0.4, 6.72, 1.1, 1, 0.8, 0, 0.1, 0.6, 0, 0, 1.4, 0.3, 0.1, 1.3, 0.9, 1.4, 18.1, 64.6, 1.2, 1.4, 'Eibar', 'LaLiga\r'),
(140925, 'es', 'David Juncà', 22, ' D(L)', 177, 67, 25, 6, 2336, 0, 4, 8, 0, 0.3, 67.8, 0, 0.7, 6.71, 2.4, 1.8, 1.1, 0.4, 1.5, 0.5, 0.1, 0, 0.7, 1.1, 0.1, 0.4, 0.6, 0.7, 27.7, 67.8, 0.9, 2, 'Eibar', 'LaLiga\r'),
(16672, 'es', 'Adrián', 28, ' M(CL)', 184, 75, 26, 6, 2233, 5, 0, 6, 0, 1.4, 73.4, 1, 1.9, 6.62, 0.9, 1.3, 1.2, 0.1, 0.5, 0.5, 0.2, 0, 0.5, 0.6, 0, 1, 0.8, 0.5, 30.1, 73.4, 0.4, 1.2, 'Eibar', 'LaLiga\r'),
(86793, 'es', 'Antonio Luna', 25, ' D(L),M(L)', 178, 70, 12, 3, 1003, 0, 1, 2, 0, 0.1, 71.2, 0, 0.5, 6.59, 1.5, 2.1, 0.6, 0.2, 1.2, 0.2, 0, 0, 0.3, 0.5, 0.1, 0.5, 0.6, 0.3, 25.7, 71.2, 0.5, 1.3, 'Eibar', 'LaLiga\r'),
(130372, 'es', 'Xabi Irureta', 30, ' GK', 180, 74, 4, 0, 360, 0, 0, 0, 0, 0, 38.5, 0, 0.3, 6.56, 0, 0, 0, 0, 2, 0.3, 0, 0, 0, 0, 0, 0, 0, 0, 22.8, 38.5, 0, 7, 'Eibar', 'LaLiga\r'),
(9405, 'es', 'Asier Riesgo', 32, ' GK', 185, 76, 34, 0, 3060, 0, 0, 1, 0, 0, 41.4, 1, 0.6, 6.56, 0, 0.2, 0, 0, 1, 0.1, 0, 0, 0, 0.3, 0, 0, 0.1, 0, 27.8, 41.4, 0, 10, 'Eibar', 'LaLiga\r'),
(38820, 'jp', 'Takashi Inui', 28, ' AM(CL)', 169, 63, 18, 9, 1629, 3, 3, 1, 0, 1.3, 75.1, 2, 0.2, 6.55, 1.1, 0.4, 0.9, 0, 0.1, 0.7, 0, 0, 0.9, 0.7, 0.3, 1.2, 1.1, 0.9, 17.1, 75.1, 0.6, 0.5, 'Eibar', 'LaLiga\r'),
(243787, 'az', 'Eddy', 23, ' Midfielder', 191, 84, 1, 5, 208, 0, 0, 2, 0, 0.3, 65.8, 0, 1, 6.41, 1.8, 0.8, 1.7, 0, 0.3, 0.7, 0.2, 0, 0.2, 0.8, 0, 0.3, 0.3, 0.2, 13.2, 65.8, 0, 0.3, 'Eibar', 'LaLiga\r'),
(14201, 'es', 'Ion Ansotegi', 33, ' D(C)', 192, 84, 6, 2, 542, 0, 0, 0, 0, 0.5, 67.9, 0, 1.6, 6.38, 0.8, 1.8, 0.6, 0.5, 5, 0.3, 0.3, 0, 0.3, 0.4, 0, 0, 0, 0.3, 21, 67.9, 0, 2.6, 'Eibar', 'LaLiga\r'),
(10447, '', 'Jota', 25, ' AM(LR)', 180, 70, 8, 5, 693, 0, 0, 1, 0, 1, 77.6, 0, 0.2, 6.36, 0.9, 0.5, 1.5, 0, 0, 0.4, 0, 0, 1, 0.3, 0.1, 1.1, 1.7, 1, 16.5, 77.6, 0.8, 0.7, 'Eibar', 'LaLiga\r'),
(44272, 'es', 'Lillo', 29, ' D(CLR)', 176, 70, 5, 5, 551, 0, 0, 4, 1, 0.4, 75.4, 0, 1.4, 6.35, 0.5, 2.5, 1.5, 0.5, 1.7, 0.5, 0.1, 0, 0.3, 0.5, 0, 0, 0.2, 0.3, 26.4, 75.4, 0.3, 2.7, 'Eibar', 'LaLiga\r'),
(82144, 'it', 'Simone Verdi', 23, ' AM(C)', 171, 62, 3, 6, 290, 0, 0, 2, 0, 0.7, 82.2, 0, 0.1, 6.31, 0.4, 0.6, 1.4, 0, 0, 0.3, 0.1, 0, 0.8, 0.9, 0.3, 1, 1, 0.8, 8.1, 82.2, 0.2, 0.3, 'Eibar', 'LaLiga\r'),
(23540, 'es', 'Mikel Arruabarrena', 33, ' AM(C)', 188, 78, 0, 6, 57, 1, 0, 0, 0, 0.2, 86.8, 0, 0, 6.19, 0.2, 0, 0, 0, 0.2, 0, 0, 0, 0, 0.3, 0.2, 0.2, 0.3, 0, 6.3, 86.8, 0, 0.2, 'Eibar', 'LaLiga\r'),
(76800, 'ba', 'Izet Hajrovic', 24, ' AM(R)', 177, 71, 2, 5, 174, 0, 0, 0, 0, 0.3, 80.6, 0, 0.3, 6.17, 0.3, 0.1, 0.4, 0, 0.1, 0, 0, 0, 0.4, 0.1, 0.1, 0.7, 0.4, 0.4, 8.9, 80.6, 0.4, 0.1, 'Eibar', 'LaLiga\r'),
(108942, 'hr', 'Josip Radosevic', 22, ' M(C)', 180, 74, 5, 3, 405, 0, 0, 1, 1, 0.1, 74.9, 0, 1.1, 6.15, 1.6, 1.6, 1.5, 0, 0.5, 0.5, 0, 0, 0.1, 0.8, 0, 0.6, 0.9, 0.1, 23.4, 74.9, 0.1, 1.8, 'Eibar', 'LaLiga\r'),
(95982, 'es', 'Borja Ekiza', 28, ' D(C)', 180, 73, 2, 2, 189, 0, 0, 1, 0, 0, 54.2, 0, 1, 6.11, 0.3, 1.5, 1.5, 0, 1, 0.5, 0, 0, 0, 0.3, 0, 0.8, 0.3, 0, 18, 54.2, 0, 1, 'Eibar', 'LaLiga\r'),
(297217, 'es', 'Iñigo Barrenetxea', 22, ' Midfielder', 179, 70, 0, 2, 3, 0, 0, 0, 0, 0, 85.7, 0, 0.5, 6.11, 0.5, 0, 0, 0, 0, 0.5, 0, 0, 0.5, 0, 0, 0, 0, 0.5, 3.5, 85.7, 0, 0, 'Eibar', 'LaLiga\r'),
(316831, 'es', 'Ander Gayoso', 22, ' Defender', 171, 71, 0, 1, 5, 0, 0, 0, 0, 0, 20, 0, 0, 6.02, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 5, 20, 0, 0, 'Eibar', 'LaLiga\r'),
(303440, 'es', 'Imanol Corral', 22, ' Defender', 180, 70, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Eibar', 'LaLiga\r'),
(137467, 'es', 'Marco Asensio', 20, ' AM(CLR)', 178, 70, 33, 1, 2833, 4, 10, 3, 0, 1.8, 81, 4, 0.3, 7.03, 1.6, 0.5, 1.1, 0, 0.1, 1.6, 0, 0, 2, 1.7, 0.1, 1.8, 1.8, 2, 32.6, 81, 1.3, 1.2, 'Espanyol', 'LaLiga\r'),
(27384, 'sn', 'Pape Diop', 30, ' M(C)', 180, 73, 29, 1, 2485, 3, 0, 13, 1, 0.7, 77.7, 1, 2.4, 6.91, 2.8, 2.9, 2.2, 0.2, 1.7, 1.2, 0.4, 0, 0.1, 1.7, 0.1, 0.8, 1, 0.1, 38.8, 77.7, 0, 2.9, 'Espanyol', 'LaLiga\r'),
(28785, 'py', 'Hernán Pérez', 27, ' M(LR)', 180, 77, 27, 5, 2448, 7, 1, 12, 0, 1.5, 71.2, 2, 1.5, 6.91, 1.3, 1.3, 2.7, 0, 0.7, 1.5, 0.1, 0, 0.9, 1.7, 0.5, 1.6, 1.9, 0.9, 27.6, 71.2, 0.8, 0.8, 'Espanyol', 'LaLiga\r'),
(33556, 'es', 'Víctor Sánchez', 28, ' M(C)', 174, 72, 28, 1, 2315, 1, 6, 11, 2, 0.8, 79.3, 3, 0.9, 6.87, 3.4, 2.4, 2.3, 0, 0.9, 1.3, 0.2, 0, 0.8, 1.2, 0.1, 1.2, 1.3, 0.8, 34.4, 79.3, 0.2, 1.8, 'Espanyol', 'LaLiga\r'),
(91438, 'es', 'Anaitz Arbilla', 29, ' D(CLR)', 178, 76, 7, 0, 630, 0, 0, 3, 0, 1, 78.6, 0, 1.3, 6.85, 3.3, 2.1, 1.6, 0.4, 3.3, 1, 0.1, 0, 0.9, 1, 0, 1.3, 0.6, 0.9, 46, 78.6, 0.4, 3.6, 'Espanyol', 'LaLiga\r'),
(238941, 'es', 'Joan Jordán', 21, ' DMC', 184, 74, 5, 4, 624, 1, 0, 3, 0, 1, 88.4, 0, 0.8, 6.78, 2.4, 1.7, 1.3, 0.2, 1.1, 1.4, 0.2, 0, 1, 0.3, 0.1, 0.7, 0.2, 1, 40.1, 88.4, 0.3, 3.9, 'Espanyol', 'LaLiga\r'),
(80957, 'es', 'Javi López', 30, ' D(R),DMC', 180, 76, 28, 3, 2423, 0, 2, 11, 0, 0.1, 71.1, 1, 0.9, 6.77, 3.4, 2.5, 1.5, 0.4, 2.5, 1.4, 0.2, 0, 0.2, 1, 0, 0.5, 0.8, 0.2, 28.9, 71.1, 0.4, 1.6, 'Espanyol', 'LaLiga\r'),
(89851, 'cr', 'Óscar Duarte', 27, ' D(C)', 184, 85, 13, 1, 1196, 1, 0, 5, 0, 0.6, 72.6, 0, 2.8, 6.74, 1.1, 3, 1.4, 0.4, 4.6, 0.6, 0.6, 1, 0.1, 0.2, 0.1, 0.2, 0.6, 0.1, 31.1, 72.6, 0, 3.1, 'Espanyol', 'LaLiga\r'),
(261286, 'es', 'Rubén Duarte', 20, ' D(L)', 172, 68, 21, 1, 1865, 0, 1, 5, 0, 0.5, 73.3, 0, 0.8, 6.69, 2.8, 2.7, 1.5, 0.5, 1.6, 0.5, 0.1, 0, 0.5, 1, 0.1, 0.5, 0.5, 0.5, 28.8, 73.3, 0.5, 1.8, 'Espanyol', 'LaLiga\r'),
(97659, 'es', 'Gerard Moreno', 24, ' FW', 177, 75, 19, 13, 1916, 7, 3, 3, 1, 1.6, 71.5, 1, 1.8, 6.66, 0.8, 0.4, 1.3, 0, 0.7, 0.3, 0, 0, 0.6, 0.7, 0.7, 2, 2.4, 0.6, 20.5, 71.5, 0.1, 0.9, 'Espanyol', 'LaLiga\r'),
(99907, 'es', 'Álvaro González', 26, ' D(C)', 183, 75, 36, 0, 3227, 0, 1, 10, 0, 0.4, 75.7, 0, 1.8, 6.63, 1.2, 1.7, 0.9, 0.8, 5.4, 0.3, 0.7, 1, 0.4, 1.1, 0, 0.1, 0.3, 0.4, 40.3, 75.7, 0.1, 5, 'Espanyol', 'LaLiga\r'),
(22466, 'ec', 'Felipe Caicedo', 27, ' FW', 183, 84, 26, 5, 2145, 8, 0, 6, 0, 1.3, 75.6, 0, 1.9, 6.62, 0.6, 0.2, 1.7, 0, 0.5, 0.3, 0.1, 0, 0.5, 1.2, 0.9, 1.2, 1.8, 0.5, 16.1, 75.6, 0, 0.3, 'Espanyol', 'LaLiga\r'),
(294006, '', 'Raíllo', 24, ' Defender', 186, 77, 4, 0, 360, 0, 0, 1, 0, 1, 77.1, 0, 2.8, 6.55, 2, 1.8, 0.8, 1.3, 5.3, 0, 0, 0, 0.3, 0.5, 0.3, 0, 0.5, 0.3, 26.3, 77.1, 0, 2, 'Espanyol', 'LaLiga\r'),
(149122, '', 'Burgui', 22, ' AM(L)', 184, 71, 8, 18, 976, 1, 3, 0, 0, 1.2, 76.6, 0, 0.2, 6.54, 0.8, 0.3, 0.3, 0, 0.1, 0.3, 0, 0, 0.7, 0.8, 0.1, 0.5, 0.6, 0.7, 13.5, 76.6, 0.4, 0.5, 'Espanyol', 'LaLiga\r'),
(135405, 'es', 'Fuentes', 26, ' D(L)', 177, 72, 9, 1, 760, 0, 0, 2, 0, 0.1, 77.7, 0, 1.4, 6.49, 1.5, 1.9, 0.9, 0.4, 2.3, 0.1, 0.2, 0, 0.2, 0.7, 0.2, 0, 0.2, 0.2, 24.7, 77.7, 0.1, 0.7, 'Espanyol', 'LaLiga\r'),
(113354, 'es', 'Rober Correa', 23, ' D(R)', 182, 76, 5, 2, 468, 0, 0, 2, 1, 0, 83, 0, 1, 6.48, 1.7, 2, 1.3, 0.6, 1.9, 0.6, 0.1, 0, 0, 0.6, 0.1, 0.4, 0.4, 0, 29.4, 83, 0, 0.9, 'Espanyol', 'LaLiga\r'),
(62769, 'es', 'Víctor Álvarez', 23, ' D(L),M(L)', 178, 71, 25, 2, 1968, 1, 2, 6, 0, 0.5, 66.2, 1, 1.4, 6.48, 1.9, 1.1, 1.3, 0.1, 1.7, 1.4, 0, 0, 0.6, 1.2, 0, 1.3, 1.6, 0.6, 22.9, 66.2, 0.4, 1, 'Espanyol', 'LaLiga\r'),
(71328, 'es', 'Abraham', 30, ' M(C)', 177, 75, 13, 7, 1102, 1, 1, 1, 0, 0.8, 79.9, 0, 0.4, 6.46, 1.2, 1.3, 0.6, 0.1, 0.2, 0.7, 0.1, 0, 0.8, 0.4, 0.1, 0.6, 1.1, 0.8, 25.2, 79.9, 0.3, 1.8, 'Espanyol', 'LaLiga\r'),
(145427, 'es', 'Pau López', 21, ' GK', 189, 77, 35, 1, 3195, 0, 0, 4, 0, 0, 48, 0, 0.4, 6.44, 0, 0.1, 0, 0, 0.8, 0.1, 0, 0, 0, 0.2, 0, 0, 0.2, 0, 22.3, 48, 0, 6.2, 'Espanyol', 'LaLiga\r'),
(141877, 'cl', 'Enzo Roco', 23, ' D(C)', 188, 79, 26, 7, 2462, 2, 0, 9, 0, 0.3, 79.9, 1, 1.2, 6.39, 0.9, 1.8, 1, 0.7, 3.8, 0.3, 0.4, 0, 0.1, 0.2, 0.1, 0.2, 0.4, 0.1, 29.3, 79.9, 0, 3.5, 'Espanyol', 'LaLiga\r'),
(20644, 'es', 'Paco Montañés', 29, ' AM(LR)', 172, 73, 2, 5, 273, 0, 0, 1, 0, 0.6, 71.4, 0, 0.1, 6.27, 1.1, 0.6, 0.6, 0, 0.3, 0.7, 0, 0, 0.4, 1.4, 0.1, 0.1, 0.4, 0.4, 10, 71.4, 0.1, 0, 'Espanyol', 'LaLiga\r'),
(70133, 'es', 'José Cañas', 29, ' DMC', 177, 71, 7, 6, 690, 0, 0, 5, 0, 0, 83.7, 0, 0.8, 6.21, 1.1, 1.5, 0.8, 0, 1, 0.6, 0.3, 0, 0.2, 0.8, 0, 0.4, 0.3, 0.2, 30.2, 83.7, 0, 3.2, 'Espanyol', 'LaLiga\r'),
(33222, 'es', 'Salva Sevilla', 32, ' M(CL)', 178, 71, 5, 10, 527, 1, 0, 3, 0, 0.5, 87.1, 0, 0.2, 6.19, 0.5, 0.2, 0.3, 0, 0, 0.5, 0.1, 0, 0.9, 0.6, 0.1, 0.5, 0.5, 0.9, 20.7, 87.1, 0.3, 0.9, 'Espanyol', 'LaLiga\r'),
(294008, 'es', 'Mamadou Sylla', 22, ' Forward', 184, 84, 2, 12, 330, 0, 0, 3, 0, 0.6, 72.6, 0, 0.6, 6.08, 0.3, 0, 1.1, 0.1, 0.1, 0, 0, 0, 0.2, 0.7, 0.1, 0.7, 0.7, 0.2, 4.4, 72.6, 0.1, 0.1, 'Espanyol', 'LaLiga\r'),
(14241, 'fr', 'Michael Ciani', 32, ' D(C)', 189, 88, 2, 0, 136, 0, 0, 0, 0, 0, 77.6, 0, 2, 5.7, 2, 3, 0.5, 0.5, 5, 0.5, 0, 0, 0, 0.5, 0, 0.5, 1, 0, 42.5, 77.6, 0, 3.5, 'Espanyol', 'LaLiga\r'),
(66957, 'lt', 'Giedrius Arlauskis', 28, ' GK', 184, 80, 3, 0, 226, 0, 0, 0, 0, 0, 33.9, 0, 0.7, 5.47, 0.7, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18.7, 33.9, 0, 3.7, 'Espanyol', 'LaLiga\r'),
(94868, 'es', 'Pablo Sarabia', 24, ' M(CLR)', 176, 70, 30, 1, 2535, 7, 6, 9, 0, 2, 75, 2, 0.2, 7.12, 1.5, 1, 1.3, 0, 0.4, 1.5, 0, 0, 2.5, 1.9, 0.4, 2.2, 2.3, 2.5, 29.4, 75, 1.8, 1.4, 'Getafe', 'LaLiga\r'),
(120114, 'uy', 'Emiliano Velázquez', 22, ' D(C)', 185, 79, 12, 0, 975, 3, 1, 7, 0, 0.7, 66.7, 0, 1.5, 6.9, 2.8, 2.2, 1.2, 1.4, 4.8, 0.8, 0.6, 0, 0.3, 0.3, 0, 0, 0.2, 0.3, 31, 66.7, 0.1, 2.7, 'Getafe', 'LaLiga\r'),
(9255, 'es', 'Alexis', 30, ' D(CR)', 183, 75, 15, 0, 1350, 1, 0, 7, 0, 0.1, 79, 0, 1.9, 6.89, 1.3, 3, 0.6, 0.7, 4.9, 0.4, 0.6, 0, 0.4, 0.5, 0, 0.3, 0.2, 0.4, 35, 79, 0, 4.9, 'Getafe', 'LaLiga\r'),
(23077, 'es', 'Roberto Lago', 30, ' D(L)', 178, 70, 17, 0, 1371, 0, 2, 6, 0, 0.2, 78.5, 1, 0.8, 6.83, 2.2, 2.4, 1.3, 0.5, 1.6, 0.5, 0.2, 0, 0.6, 0.8, 0.1, 0.4, 0.6, 0.6, 28.9, 78.5, 0.5, 1.3, 'Getafe', 'LaLiga\r'),
(294010, '', 'Noblejas', 23, ' Defender', 187, 77, 1, 0, 90, 0, 0, 1, 0, 0, 69.6, 0, 0, 6.82, 4, 0, 3, 0, 1, 2, 1, 0, 0, 1, 0, 1, 1, 0, 46, 69.6, 1, 3, 'Getafe', 'LaLiga\r'),
(34524, 'es', 'Cala', 26, ' D(C)', 180, 76, 21, 1, 1910, 1, 1, 10, 1, 0.3, 74.3, 1, 1, 6.77, 2.2, 2.8, 1.4, 0.8, 3.9, 0.5, 0.3, 0, 0.2, 1, 0.1, 0.2, 0.3, 0.2, 35.6, 74.3, 0, 4.8, 'Getafe', 'LaLiga\r'),
(9257, 'es', 'Juan Rodríguez', 34, ' M(C)', 185, 72, 30, 2, 2516, 0, 1, 11, 0, 0.7, 78.1, 0, 2.3, 6.76, 1.8, 2.8, 1.4, 0.1, 1.6, 1.1, 0.4, 1, 0.2, 0.7, 0, 0.3, 0.5, 0.2, 34.8, 78.1, 0.1, 3.2, 'Getafe', 'LaLiga\r'),
(313323, '', 'Miguel Ángel', 21, ' Defender', 177, 72, 2, 1, 201, 0, 0, 1, 0, 0, 84.7, 0, 1, 6.72, 1.7, 3.3, 0.3, 0, 1.3, 0.3, 0, 0, 0, 0.3, 0, 0.7, 0.7, 0, 19.7, 84.7, 0, 1, 'Getafe', 'LaLiga\r'),
(26387, 'fr', 'Yoda', 27, ' D(L),M(R)', 182, 73, 8, 10, 973, 0, 0, 3, 0, 0.4, 77.1, 0, 0.4, 6.67, 1.3, 1.3, 0.7, 0.2, 0.9, 0.9, 0.1, 0, 0.5, 0.4, 0, 0.9, 0.8, 0.5, 23, 77.1, 0.3, 1.2, 'Getafe', 'LaLiga\r'),
(23634, 'es', 'Pedro León', 29, ' M(R)', 183, 71, 23, 8, 1849, 2, 4, 5, 0, 1.5, 69.3, 1, 1.2, 6.66, 0.9, 0.7, 1.5, 0, 0.4, 0.4, 0, 0, 1.1, 1, 0, 1.3, 1.4, 1.1, 18.7, 69.3, 1.1, 0.8, 'Getafe', 'LaLiga\r'),
(18413, 'dz', 'Mehdi Lacen', 32, ' M(C)', 176, 70, 31, 0, 2664, 0, 0, 8, 0, 0.4, 81.7, 0, 1.4, 6.66, 2.8, 2.2, 1.7, 0, 1.4, 1.4, 0, 0, 0.3, 1, 0, 1.3, 0.7, 0.3, 44.6, 81.7, 0.1, 3.1, 'Getafe', 'LaLiga\r'),
(83705, 'uy', 'Damián Suárez', 28, ' D(R)', 173, 68, 30, 1, 2635, 0, 3, 7, 1, 0.3, 75, 0, 0.5, 6.64, 2.1, 1.9, 1.3, 0.3, 1.8, 1.3, 0.2, 0, 1, 1.1, 0, 0.5, 0.4, 1, 38.5, 75, 0.7, 2, 'Getafe', 'LaLiga\r'),
(33866, 'es', 'Vicente Guaita', 29, ' GK', 190, 81, 38, 0, 3420, 0, 0, 2, 0, 0, 44.2, 0, 0.5, 6.62, 0, 0.2, 0, 0, 1.2, 0.1, 0, 0, 0.1, 0.1, 0, 0, 0.2, 0.1, 24.7, 44.2, 0, 6.1, 'Getafe', 'LaLiga\r'),
(82394, 'ar', 'Santiago Vergini', 27, ' D(CR)', 191, 83, 24, 2, 2202, 0, 0, 7, 1, 0.3, 82.5, 0, 1, 6.61, 1.5, 2.7, 0.8, 0.8, 3.7, 0.6, 0.3, 0, 0.1, 0.2, 0, 0.3, 0.3, 0.1, 33.8, 82.5, 0, 2.8, 'Getafe', 'LaLiga\r'),
(14100, 'es', 'Ángel Lafita', 31, ' M(CLR),FW', 187, 73, 12, 2, 1020, 3, 2, 5, 0, 2, 66.3, 0, 1.6, 6.59, 0.8, 0.8, 2.1, 0, 0.7, 0.4, 0.1, 0, 0.6, 1.6, 0.2, 2.2, 2.2, 0.6, 17.4, 66.3, 0.2, 0.6, 'Getafe', 'LaLiga\r'),
(142802, 'es', 'Álvaro Medrán', 22, ' DMC', 176, 68, 16, 4, 1486, 2, 1, 7, 0, 1.6, 81.4, 0, 1.6, 6.52, 0.9, 1, 1.5, 0, 1, 0.8, 0.1, 0, 0.5, 1.2, 0.1, 1.9, 1.2, 0.5, 30.4, 81.4, 0, 2.3, 'Getafe', 'LaLiga\r'),
(118898, 'es', 'Víctor Rodríguez', 26, ' AM(CLR)', 170, 70, 26, 7, 2309, 2, 2, 1, 0, 1.4, 86.1, 1, 0.2, 6.48, 1.2, 0.6, 0.5, 0, 0.2, 0.8, 0.1, 0, 0.8, 1, 0.1, 1.4, 1.8, 0.8, 30.2, 86.1, 0.2, 0.8, 'Getafe', 'LaLiga\r'),
(260592, '', 'Emi', 19, ' Midfielder', 170, 65, 6, 11, 740, 1, 0, 5, 1, 0.8, 81.8, 0, 0.5, 6.46, 2.4, 1.2, 0.9, 0, 0.2, 0.9, 0.1, 0, 0.3, 0.9, 0.1, 1.4, 0.6, 0.3, 19.7, 81.8, 0.1, 1.3, 'Getafe', 'LaLiga\r'),
(101238, 'es', 'Moi Gómez', 21, ' AM(CLR)', 179, 72, 9, 13, 915, 2, 3, 3, 0, 0.7, 85.8, 0, 0.1, 6.42, 0.6, 0.5, 0.9, 0, 0.2, 0.4, 0, 0, 0.3, 0.2, 0, 0.6, 0.5, 0.3, 18.2, 85.8, 0.1, 0.8, 'Getafe', 'LaLiga\r'),
(141706, 'es', 'Vigaray', 21, ' D(CLR)', 182, 70, 14, 0, 1194, 1, 0, 5, 1, 0.3, 77.8, 0, 0.9, 6.41, 2.7, 1.9, 1.4, 0.4, 2.9, 0.7, 0.6, 0, 0.5, 0.5, 0, 0.4, 1, 0.5, 24.4, 77.8, 0.1, 1, 'Getafe', 'LaLiga\r'),
(79998, 'rs', 'Stefan Scepovic', 26, ' FW', 187, 78, 17, 17, 1810, 6, 1, 4, 0, 0.9, 69.3, 0, 0.9, 6.37, 0.2, 0.2, 0.4, 0, 0.7, 0.3, 0.1, 0, 0.6, 1.1, 0.7, 0.8, 1.3, 0.6, 14, 69.3, 0.1, 0.2, 'Getafe', 'LaLiga\r'),
(91203, 'es', 'Álvaro Vázquez', 25, ' FW', 182, 71, 24, 10, 1992, 5, 4, 6, 0, 1.4, 68.7, 2, 0.7, 6.37, 0.3, 0.4, 0.5, 0, 0.5, 0.4, 0.1, 0, 0.6, 0.9, 0.5, 1.6, 1.5, 0.6, 11.9, 68.7, 0.1, 0.4, 'Getafe', 'LaLiga\r'),
(295012, 'be', 'Wanderson', 21, ' Midfielder', 175, 70, 6, 14, 760, 0, 0, 2, 0, 1.2, 79.6, 0, 0.1, 6.31, 0.9, 0.6, 0.9, 0, 0.2, 0.5, 0, 0, 0.4, 0.9, 0.1, 0.8, 0.8, 0.4, 11.5, 79.6, 0.2, 0.1, 'Getafe', 'LaLiga\r'),
(296096, 'gh', 'Bernard Mensah', 21, ' Midfielder', 178, 65, 0, 8, 53, 0, 0, 0, 0, 0.3, 87.5, 0, 0.1, 6.16, 0.4, 0, 0.4, 0, 0, 0, 0, 0, 0, 0.3, 0, 0.6, 0.4, 0, 5, 87.5, 0, 0.1, 'Getafe', 'LaLiga\r'),
(31177, 'uy', 'Álvaro Pereira', 30, ' D(L),M(L)', 182, 80, 6, 0, 412, 0, 0, 2, 1, 0.3, 61.2, 0, 1, 6.12, 2.7, 2.3, 1.2, 0, 2.5, 1.8, 0.5, 0, 0.5, 0.2, 0.2, 0.3, 0.3, 0.5, 22.3, 61.2, 0.5, 1.3, 'Getafe', 'LaLiga\r'),
(294009, 'es', 'Ian González', 23, ' Forward', 189, 78, 0, 1, 13, 0, 0, 0, 0, 1, 90, 0, 0, 6.11, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 10, 90, 0, 0, 'Getafe', 'LaLiga\r'),
(11352, 'se', 'Henok Goitom', 31, ' AM(L),FW', 189, 86, 1, 1, 124, 0, 0, 0, 0, 2, 57.6, 0, 2.5, 6.02, 0, 0.5, 1.5, 0, 0, 0, 0, 0, 1, 1, 0.5, 1.5, 1.5, 1, 16.5, 57.6, 0, 0, 'Getafe', 'LaLiga\r'),
(91273, 'es', 'Rubén Rochina', 25, ' M(CLR)', 182, 76, 29, 6, 2497, 6, 6, 10, 0, 2.2, 70.8, 3, 1.1, 7.11, 1.5, 1.6, 1.2, 0, 0.4, 0.9, 0, 0, 1.3, 2.2, 0, 1.9, 1.4, 1.3, 33.3, 70.8, 0.8, 3.6, 'Granada', 'LaLiga\r'),
(75526, 'es', 'Jesús Fernández', 28, ' GK', 190, 84, 1, 0, 90, 0, 0, 0, 0, 0, 40.5, 0, 0, 7.09, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 1, 42, 40.5, 0, 15, 'Granada', 'LaLiga\r'),
(43977, 'pt', 'Miguel Lopes', 29, ' D(R)', 182, 83, 23, 3, 1973, 0, 1, 8, 1, 0.4, 75.9, 3, 1.5, 7.08, 3.3, 2.6, 1, 0.2, 2.9, 0.8, 0.2, 1, 0.4, 0.7, 0, 0.4, 0.7, 0.4, 26.8, 75.9, 0.3, 1.2, 'Granada', 'LaLiga\r'),
(70080, 'ma', 'Youssef El-Arabi', 29, ' AM(C),FW', 183, 84, 27, 8, 2517, 16, 2, 3, 0, 2, 65.3, 1, 2, 6.91, 1, 0.3, 1.3, 0, 0.7, 0.2, 0.1, 0, 0.7, 1.5, 1.3, 1.6, 2.6, 0.7, 18.1, 65.3, 0.1, 0.6, 'Granada', 'LaLiga\r'),
(10110, 'pt', 'Ricardo Costa', 35, ' D(C)', 183, 80, 14, 0, 1250, 1, 0, 7, 0, 0.6, 79.9, 0, 2.1, 6.84, 1.4, 1.9, 0.8, 0.7, 4.4, 0.2, 0.5, 0, 0.2, 0.2, 0, 0.1, 0.1, 0.2, 31.3, 79.9, 0, 3.2, 'Granada', 'LaLiga\r'),
(67480, 'es', 'Rubén Pérez', 27, ' M(C)', 178, 72, 30, 1, 2484, 0, 2, 17, 0, 0.5, 77.5, 1, 1.1, 6.83, 3.5, 2.2, 1.5, 0, 1.3, 1.8, 0.4, 0, 0.7, 1, 0.1, 0.8, 0.9, 0.7, 43.4, 77.5, 0.3, 5.2, 'Granada', 'LaLiga\r'),
(91580, 'es', 'Isaac Cuenca', 25, ' M(LR)', 181, 74, 8, 4, 788, 2, 2, 0, 0, 0.8, 85.5, 1, 0.3, 6.79, 1.1, 1.2, 0.4, 0, 0.2, 0.5, 0, 0, 0.5, 0.8, 0.1, 0.8, 1.2, 0.5, 17.8, 85.5, 0.3, 0.3, 'Granada', 'LaLiga\r'),
(15455, 'es', 'Piti', 35, ' M(CLR)', 179, 79, 5, 3, 416, 2, 2, 3, 0, 1.3, 58.5, 0, 0.9, 6.78, 0.9, 0.5, 0.8, 0, 0.1, 0.9, 0, 0, 1.6, 0.5, 0.3, 1, 1, 1.6, 15.4, 58.5, 1.3, 0.4, 'Granada', 'LaLiga\r'),
(140998, 'mq', 'Jean-Sylvain Babin', 29, ' D(C)', 179, 88, 25, 0, 2236, 3, 0, 5, 0, 0.5, 82.2, 1, 1.9, 6.77, 0.8, 2.3, 0.4, 0.8, 5.4, 0.2, 0.4, 0, 0, 0.2, 0, 0, 0.2, 0, 32.5, 82.2, 0, 3, 'Granada', 'LaLiga\r'),
(145940, 'ng', 'Success', 20, ' AM(LR),FW', 186, 86, 28, 2, 2434, 6, 2, 10, 1, 1.9, 64.9, 1, 0.6, 6.72, 1, 0.5, 1.7, 0, 0.6, 0.4, 0, 0, 0.9, 2.9, 0.6, 2.1, 3.2, 0.9, 20.1, 64.9, 0.4, 0.6, 'Granada', 'LaLiga\r'),
(73948, 'si', 'Rene Krhin', 26, ' DMC', 189, 80, 16, 8, 1432, 0, 0, 3, 0, 0.3, 76.2, 1, 2.2, 6.67, 1.6, 2.4, 0.9, 0.1, 1.9, 0.9, 0.1, 0, 0.2, 0.7, 0, 0.4, 0.2, 0.2, 21.2, 76.2, 0, 1, 'Granada', 'LaLiga\r'),
(116317, 'ml', 'Abdoulaye Doucouré', 23, ' M(C)', 183, 75, 13, 2, 1156, 0, 2, 5, 0, 0.7, 83.9, 0, 0.9, 6.66, 2.1, 2.1, 1.3, 0.1, 0.9, 0.5, 0.4, 0, 0.7, 0.4, 0, 1.1, 1.4, 0.7, 37.2, 83.9, 0, 2.5, 'Granada', 'LaLiga\r'),
(300438, 've', 'Adalberto Peñaranda', 19, ' AM(L),FW', 185, 79, 21, 2, 1678, 5, 3, 8, 0, 1, 75.8, 0, 0.5, 6.62, 1.4, 0.3, 2.6, 0, 0.1, 0.4, 0.1, 0, 0.8, 1.7, 0.3, 2.5, 2.5, 0.8, 15.1, 75.8, 0, 0.3, 'Granada', 'LaLiga\r'),
(101084, 'fr', 'Dimitri Foulquier', 23, ' D(LR),M(R)', 183, 78, 16, 5, 1526, 1, 1, 5, 0, 0.3, 71.2, 0, 0.6, 6.6, 1.8, 2, 1.3, 0.2, 2.1, 0.3, 0.2, 0, 0.5, 0.4, 0, 0.5, 0.7, 0.5, 23, 71.2, 0.2, 1, 'Granada', 'LaLiga\r'),
(93935, 'it', 'Cristiano Biraghi', 23, ' D(L),M(L)', 186, 79, 32, 0, 2822, 0, 1, 8, 1, 0.3, 70.2, 0, 0.9, 6.55, 2.5, 1.6, 1.3, 0.5, 2.7, 0.7, 0.3, 0, 0.5, 0.5, 0, 0.3, 0.6, 0.5, 28.8, 70.2, 0.6, 2.5, 'Granada', 'LaLiga\r'),
(32565, 'es', 'Andrés Fernández', 29, ' GK', 183, 79, 37, 0, 3330, 0, 0, 6, 1, 0, 53.7, 2, 0.5, 6.52, 0, 0.2, 0, 0, 1.4, 0.1, 0, 0, 0.1, 0.2, 0, 0, 0, 0.1, 27.8, 53.7, 0, 8.8, 'Granada', 'LaLiga\r'),
(106913, 'es', 'Fran Rico', 28, ' M(C)', 178, 73, 15, 13, 1447, 2, 1, 6, 0, 0.6, 77.7, 0, 1.2, 6.52, 1.3, 1.1, 1.4, 0.1, 0.6, 1, 0, 0, 1.4, 0.7, 0, 0.6, 0.3, 1.4, 29.8, 77.7, 0.8, 2.5, 'Granada', 'LaLiga\r'),
(122876, 'es', 'Lombán', 29, ' D(C)', 185, 74, 29, 2, 2627, 0, 0, 6, 0, 0.4, 78.8, 0, 1.4, 6.51, 0.9, 2.5, 0.6, 0.8, 4, 0.5, 0.5, 1, 0.2, 0.3, 0, 0, 0.1, 0.2, 30.1, 78.8, 0, 4.6, 'Granada', 'LaLiga\r'),
(28517, 'es', 'Javi Márquez', 30, ' M(C)', 179, 71, 16, 3, 1314, 0, 1, 6, 0, 1.1, 71.5, 0, 0.6, 6.42, 1.7, 1.4, 1.4, 0, 0.9, 1.6, 0.2, 0, 0.6, 1.5, 0.1, 1.2, 0.7, 0.6, 31.5, 71.5, 0.1, 3.3, 'Granada', 'LaLiga\r'),
(4386, 'es', 'Diego Mainz', 33, ' D(C)', 187, 79, 4, 1, 405, 0, 0, 1, 0, 0.2, 75.4, 0, 1.2, 6.31, 0.4, 3.2, 0.8, 0.2, 3.6, 0, 0.2, 0, 0, 1, 0, 0, 0.2, 0, 24.4, 75.4, 0, 1, 'Granada', 'LaLiga\r'),
(141068, 'es', 'Edgar Méndez', 25, ' AM(LR)', 187, 80, 7, 8, 743, 1, 0, 4, 0, 0.7, 69, 0, 0.5, 6.27, 1.5, 0.8, 1.7, 0.1, 0.9, 1.1, 0, 0, 0.4, 0.9, 0.3, 0.3, 1.5, 0.4, 11.4, 69, 0.3, 0.4, 'Granada', 'LaLiga\r'),
(142080, 'es', 'Robert Ibáñez', 23, ' AM(R)', 169, 72, 7, 11, 696, 0, 1, 4, 0, 0.6, 87.8, 0, 0.2, 6.19, 0.9, 0.4, 0.4, 0, 0.1, 0.4, 0, 0, 0.4, 1.4, 0.1, 1.8, 1.2, 0.4, 9.6, 87.8, 0, 0.2, 'Granada', 'LaLiga\r'),
(259937, '', 'Uche', 20, ' Midfielder', 186, 73, 3, 3, 255, 0, 0, 3, 0, 0, 85, 0, 0.8, 6.18, 1.7, 1.5, 2.2, 0.2, 0.8, 0, 0.2, 0, 0.2, 0.3, 0, 0.2, 1, 0.2, 18.8, 85, 0, 0.2, 'Granada', 'LaLiga\r'),
(118157, 'uy', 'Nico López', 22, ' AM(CR),FW', 175, 68, 1, 7, 154, 0, 0, 0, 0, 0.9, 67.4, 0, 0, 6.17, 0.4, 0.3, 0.6, 0, 0, 0.4, 0, 0, 0.3, 0.8, 0.1, 0.4, 0, 0.3, 5.8, 67.4, 0.3, 0.3, 'Granada', 'LaLiga\r'),
(19391, 'es', 'David Barral', 33, ' FW', 183, 78, 3, 11, 363, 0, 0, 2, 1, 1.3, 85.1, 0, 0.4, 6.11, 0.3, 0.2, 1.1, 0, 0.4, 0.3, 0.1, 0, 0.1, 0.6, 0.1, 0.4, 0.7, 0.1, 7.2, 85.1, 0, 0.2, 'Granada', 'LaLiga\r'),
(99196, 'cg', 'Thievy', 24, ' AM(LR),FW', 182, 74, 0, 7, 182, 0, 0, 0, 0, 0.3, 74.6, 0, 0.9, 6.1, 0.4, 0, 0.7, 0, 0, 0, 0.1, 0, 0.3, 0.7, 0.3, 1, 0.6, 0.3, 9, 74.6, 0, 0.1, 'Granada', 'LaLiga\r'),
(129114, '', 'Doria', 21, ' D(C)', 189, 82, 7, 1, 624, 0, 0, 3, 1, 0.3, 60.5, 0, 0.6, 6.01, 1, 2.3, 0.9, 0.1, 3.6, 0.3, 0.1, 0, 0, 0, 0, 0, 0.3, 0, 20.3, 60.5, 0, 2, 'Granada', 'LaLiga\r'),
(32710, 'hr', 'Ivan Kelava', 28, ' GK', 195, 90, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Granada', 'LaLiga\r'),
(142614, 'es', 'Salva Ruiz', 21, ' Defender', 176, 68, 1, 1, 74, 0, 0, 0, 1, 0, 87.5, 0, 0, 5.4, 0.5, 0.5, 1, 0, 0.5, 0, 0, 0, 0, 0.5, 0, 0.5, 1, 0, 12, 87.5, 0, 0, 'Granada', 'LaLiga\r'),
(108100, 'es', 'Pedro Bigas', 26, ' D(CL)', 180, 78, 26, 1, 2353, 3, 0, 5, 0, 0.6, 84.5, 2, 1.6, 7.2, 1.3, 4.5, 0.7, 1, 5.2, 0.3, 0.5, 0, 0.2, 0.9, 0, 0.1, 0.7, 0.2, 44.9, 84.5, 0, 3, 'Las Palmas', 'LaLiga\r'),
(91304, 'es', 'Jonathan Viera', 26, ' AM(CL),FW', 170, 68, 36, 0, 3121, 10, 9, 4, 0, 2.4, 81.9, 5, 0.4, 7.19, 1.9, 0.6, 0.7, 0, 0.2, 0.9, 0.1, 0, 2.2, 2.3, 0.5, 2.3, 2.3, 2.2, 51.9, 81.9, 0.8, 1.7, 'Las Palmas', 'LaLiga\r'),
(9474, 'py', 'Antolin Alcaraz', 33, ' D(C)', 184, 80, 6, 0, 540, 1, 0, 2, 0, 0.3, 72.9, 1, 2.8, 7.16, 3.2, 2.8, 1, 0.3, 5.3, 1, 1, 0, 0.3, 0.3, 0, 0.5, 0.3, 0.3, 36.8, 72.9, 0.2, 3.7, 'Las Palmas', 'LaLiga\r'),
(141028, 'es', 'Raúl Lizoain', 25, ' GK', 186, 76, 7, 1, 707, 0, 0, 0, 0, 0, 53.9, 0, 0.8, 7.12, 0.1, 0.1, 0, 0, 1.5, 0, 0, 0, 0, 0.3, 0, 0, 0, 0, 30.6, 53.9, 0, 6.9, 'Las Palmas', 'LaLiga\r'),
(79838, 'es', 'David García', 34, ' D(R)', 182, 79, 18, 1, 1609, 2, 1, 2, 0, 0.5, 80.3, 1, 2, 7.1, 1.6, 3.5, 0.7, 0.4, 2.7, 0.8, 0.6, 0, 0.5, 0.8, 0.1, 0.2, 0.1, 0.5, 44.7, 80.3, 0.2, 2.7, 'Las Palmas', 'LaLiga\r'),
(41033, '', 'Dani Castellano', 28, ' D(L)', 175, 70, 25, 2, 2247, 0, 0, 5, 0, 0.3, 82.2, 0, 1.3, 7.07, 2.1, 3.2, 0.9, 0.2, 2.2, 0.9, 0.2, 0, 0.4, 1.6, 0, 0.7, 1.1, 0.4, 40.7, 82.2, 0.2, 1.7, 'Las Palmas', 'LaLiga\r'),
(24575, 'es', 'Aythami', 30, ' D(C)', 185, 79, 30, 1, 2643, 0, 1, 9, 2, 0.3, 83.1, 2, 2.9, 6.98, 1.5, 3.4, 0.9, 1.1, 5.4, 0.5, 0.6, 0, 0.2, 0.4, 0, 0.1, 0.1, 0.2, 50.5, 83.1, 0, 4.1, 'Las Palmas', 'LaLiga\r'),
(141024, '', 'Javi Castellano', 29, ' Midfielder', 188, 64, 1, 0, 90, 0, 0, 0, 0, 1, 76.9, 0, 3, 6.92, 3, 2, 1, 0, 5, 1, 0, 0, 0, 3, 0, 0, 0, 0, 39, 76.9, 0, 2, 'Las Palmas', 'LaLiga\r'),
(25644, 'es', 'Javi Varas', 33, ' GK', 182, 73, 31, 0, 2711, 0, 0, 1, 1, 0, 57.2, 2, 0.4, 6.84, 0.1, 0.2, 0.1, 0, 1.1, 0, 0, 0, 0, 0.2, 0, 0, 0, 0, 34.2, 57.2, 0, 8.5, 'Las Palmas', 'LaLiga\r'),
(9451, 'es', 'Momo', 33, ' AM(LR)', 184, 67, 15, 8, 1386, 0, 3, 3, 0, 0.7, 86.2, 0, 0.2, 6.8, 1.3, 1.2, 0.5, 0, 0.3, 0.4, 0.1, 0, 1, 1.4, 0.1, 1.1, 0.8, 1, 34.4, 86.2, 0.5, 2, 'Las Palmas', 'LaLiga\r'),
(141303, 'es', 'Vicente Gómez', 27, ' DMC', 187, 77, 16, 5, 1461, 1, 1, 3, 0, 0.3, 87.8, 1, 1.7, 6.77, 1.9, 1.5, 1, 0.1, 1.1, 0.8, 0.1, 0, 0.3, 2, 0, 0.8, 1.1, 0.3, 47.6, 87.8, 0, 1.3, 'Las Palmas', 'LaLiga\r'),
(141304, '', 'Tana', 25, ' AM(C)', 169, 68, 26, 1, 2127, 5, 4, 2, 0, 1.1, 84.3, 1, 0.2, 6.76, 1.1, 0.6, 0.9, 0, 0.3, 1.1, 0.1, 0, 1.2, 2, 0.1, 2, 2.3, 1.2, 40.8, 84.3, 0.3, 1.1, 'Las Palmas', 'LaLiga\r'),
(287049, '', 'Mauricio Lemos', 20, ' D(C)', 186, 80, 8, 2, 736, 0, 0, 5, 0, 0.4, 83, 0, 1.4, 6.72, 0.9, 2, 1.1, 0.6, 3.4, 0, 0.6, 0, 0, 0, 0.1, 0.1, 0.1, 0, 34.1, 83, 0, 3.6, 'Las Palmas', 'LaLiga\r'),
(116146, 'es', 'David Simón', 26, ' D(R)', 178, 74, 24, 3, 2262, 1, 2, 7, 0, 0.4, 78.5, 0, 1.4, 6.69, 2.2, 2.1, 1.6, 0.3, 1.7, 0.6, 0.3, 1, 0.7, 0.8, 0.1, 1.2, 1.5, 0.7, 39.4, 78.5, 0.4, 1.4, 'Las Palmas', 'LaLiga\r'),
(77636, 'br', 'Willian José', 24, ' FW', 186, 81, 19, 11, 1728, 9, 1, 6, 0, 1.8, 72.9, 0, 1.3, 6.68, 0.6, 0.1, 1, 0, 0.8, 0, 0, 0, 0.7, 0.9, 0.6, 1.4, 1.1, 0.7, 17.5, 72.9, 0.1, 0.7, 'Las Palmas', 'LaLiga\r'),
(133454, '', 'Sergio Araujo', 24, ' FW', 180, 70, 20, 10, 1821, 5, 3, 4, 0, 2, 70.4, 1, 1.7, 6.67, 0.8, 0.1, 1.3, 0, 0.7, 0.3, 0.1, 0, 0.6, 0.5, 0.6, 1.7, 1.7, 0.6, 17.2, 70.4, 0.1, 0.5, 'Las Palmas', 'LaLiga\r'),
(6210, 'es', 'Javier Garrido', 31, ' D(CL)', 180, 76, 18, 0, 1576, 0, 1, 2, 0, 0.1, 86.7, 0, 0.6, 6.65, 1.7, 2.1, 0.9, 1, 2.6, 0.7, 0.4, 0, 0.3, 0.2, 0, 0.2, 0.4, 0.3, 47.2, 86.7, 0.4, 2.6, 'Las Palmas', 'LaLiga\r'),
(108176, 'es', 'Roque', 27, ' DMC', 171, 68, 34, 0, 2839, 1, 2, 12, 0, 1, 87.8, 0, 0.4, 6.6, 1.7, 1.2, 1.3, 0.1, 0.8, 1.1, 0.2, 0, 0.5, 1.4, 0.1, 1.5, 1.7, 0.5, 60, 87.8, 0.1, 2.3, 'Las Palmas', 'LaLiga\r'),
(32857, 'es', 'Montoro', 27, ' DMC', 181, 74, 5, 4, 433, 0, 0, 2, 0, 0.1, 83.9, 0, 0.7, 6.56, 1.1, 1.7, 1, 0.1, 1.3, 1, 0.3, 0, 0.6, 0.7, 0, 0.2, 0.4, 0.6, 35.2, 83.9, 0.4, 2.4, 'Las Palmas', 'LaLiga\r'),
(23167, 'ma', 'Nabil El Zhar', 29, ' M(CLR)', 175, 66, 17, 13, 1708, 2, 4, 4, 0, 0.9, 80.9, 0, 0.5, 6.55, 0.9, 0.7, 0.9, 0, 0.3, 0.2, 0, 0, 0.6, 1.1, 0.2, 1.5, 0.9, 0.6, 18.7, 80.9, 0.5, 0.2, 'Las Palmas', 'LaLiga\r'),
(96817, 'es', 'Hernán', 25, ' DMC', 180, 74, 11, 7, 928, 1, 0, 4, 0, 0.5, 85.5, 1, 1.3, 6.52, 1.3, 1.6, 0.8, 0.1, 0.8, 1.1, 0, 0, 0.1, 0.8, 0, 0.6, 0.9, 0.1, 30.3, 85.5, 0, 1.2, 'Las Palmas', 'LaLiga\r'),
(44425, 'gh', 'Mubarak Wakaso', 25, ' M(CLR)', 171, 66, 10, 10, 925, 1, 0, 11, 0, 1, 82.4, 0, 0.5, 6.49, 1.5, 0.8, 1.5, 0.1, 0.7, 0.3, 0.1, 0, 0.4, 1.5, 0.1, 1.1, 0.9, 0.4, 23, 82.4, 0.2, 1.9, 'Las Palmas', 'LaLiga\r'),
(23717, 'ar', 'Juan Emmanuel Culio', 31, ' DMC', 176, 75, 6, 6, 558, 0, 1, 2, 1, 0.4, 85.3, 0, 0.6, 6.46, 1.5, 1, 1.3, 0, 0.1, 0.5, 0, 0, 0.8, 2.4, 0, 1, 1, 0.8, 28.4, 85.3, 0.3, 1.1, 'Las Palmas', 'LaLiga\r'),
(302762, '', 'Nili', 22, ' Midfielder', 0, 0, 4, 4, 318, 0, 0, 0, 0, 0.5, 79.6, 0, 0.1, 6.31, 0.6, 1.1, 0.4, 0.1, 0.4, 0.5, 0, 0, 1, 0.1, 0.3, 0.9, 1.4, 1, 13.5, 79.6, 0.1, 0.5, 'Las Palmas', 'LaLiga\r'),
(1141, 'es', 'Juan Carlos Valerón', 41, ' AM(C)', 180, 72, 3, 10, 375, 0, 0, 0, 0, 0.1, 87.9, 0, 0.2, 6.22, 0.2, 0.5, 0, 0, 0.2, 0, 0, 0, 0.5, 1.1, 0.1, 0.9, 0.4, 0.5, 29.8, 87.9, 0, 1.2, 'Las Palmas', 'LaLiga\r'),
(4674, 'es', 'Ángel', 35, ' D(R)', 180, 71, 0, 3, 30, 0, 0, 0, 0, 0, 88.6, 0, 0, 6.15, 0, 0.3, 0.3, 0, 0.7, 0, 0.3, 0, 0, 0.3, 0, 0, 0, 0, 11.7, 88.6, 0, 1.3, 'Las Palmas', 'LaLiga\r'),
(31333, 'es', 'Nauzet Alemán', 31, ' M(C)', 178, 71, 2, 8, 243, 0, 0, 0, 0, 0.3, 77.2, 0, 0, 6.14, 0.3, 0.4, 0.8, 0, 0, 0.1, 0, 0, 0.6, 0.2, 0.1, 0.3, 0.5, 0.6, 13.6, 77.2, 0.6, 0.6, 'Las Palmas', 'LaLiga\r'),
(135321, 'es', 'Morales', 28, ' D(R),M(LR)', 180, 70, 31, 4, 2676, 7, 5, 4, 0, 2, 71.6, 4, 0.5, 6.92, 1.3, 0.7, 0.5, 0.1, 0.5, 1, 0.1, 0, 1.6, 1.1, 0.3, 2.2, 1.2, 1.6, 22.4, 71.6, 1.1, 0.9, 'Levante', 'LaLiga\r'),
(135641, 'br', 'Deyverson', 25, ' FW', 185, 78, 24, 9, 2166, 9, 1, 10, 2, 2.1, 55.2, 1, 4.3, 6.83, 0.9, 0.5, 1.5, 0, 0.8, 0.5, 0.1, 0, 0.8, 2.1, 0.6, 1.2, 2.6, 0.8, 19.4, 55.2, 0.1, 0.2, 'Levante', 'LaLiga\r'),
(106597, 'ma', 'Zouhair Feddal', 27, ' D(C)', 191, 83, 28, 0, 2520, 1, 1, 9, 1, 0.5, 73.9, 1, 1.9, 6.82, 1.1, 3.9, 1.2, 0.9, 6.7, 0.5, 0.8, 0, 0.2, 0.5, 0, 0.1, 0.3, 0.2, 40.1, 73.9, 0, 4.7, 'Levante', 'LaLiga\r'),
(243187, 'es', 'Toño', 26, ' D(L)', 179, 69, 26, 1, 2387, 0, 1, 8, 0, 0.4, 71.8, 0, 1.3, 6.81, 1.6, 2.4, 1.7, 0.4, 2.5, 0.6, 0.1, 0, 0.7, 1.5, 0.1, 1.3, 0.6, 0.7, 33.9, 71.8, 0.7, 2, 'Levante', 'LaLiga\r'),
(13802, 'it', 'Giuseppe Rossi', 29, ' FW', 173, 72, 15, 2, 1162, 6, 2, 1, 0, 1.9, 79.1, 0, 0.5, 6.77, 0.5, 0.5, 0.8, 0, 0.2, 0.6, 0, 0, 1.2, 1, 0.2, 2.2, 2.4, 1.2, 18, 79.1, 0.1, 0.8, 'Levante', 'LaLiga\r'),
(118481, 'es', 'José Mari', 28, ' DMC', 181, 69, 10, 2, 802, 0, 0, 5, 0, 1, 77.9, 0, 2, 6.74, 2.4, 2.2, 0.9, 0.1, 1.7, 1.5, 0, 0, 0.3, 1.3, 0, 0.5, 0.8, 0.3, 34, 77.9, 0, 3.3, 'Levante', 'LaLiga\r'),
(33088, 'mz', 'Simao Mate', 27, ' D(C),M(C)', 178, 76, 26, 4, 2181, 1, 0, 10, 2, 0.3, 76.4, 1, 3.2, 6.7, 1.5, 2.4, 1.8, 0.1, 2.5, 0.3, 0.3, 0, 0.1, 1.2, 0, 0.4, 0.4, 0.1, 32.5, 76.4, 0, 1.9, 'Levante', 'LaLiga\r'),
(133464, 'co', 'Jefferson Lerma', 21, ' D(R),DMC', 179, 70, 31, 2, 2686, 1, 2, 11, 0, 1.1, 75.1, 0, 1.9, 6.68, 1.8, 1.9, 1.5, 0.2, 1.3, 0.6, 0.2, 0, 0.8, 0.8, 0.1, 0.9, 1.1, 0.8, 32.3, 75.1, 0.4, 1.7, 'Levante', 'LaLiga\r'),
(14759, 'dz', 'Carl Medjani', 31, ' D(C),DMC', 184, 78, 14, 0, 1260, 1, 0, 1, 0, 0.4, 76.2, 0, 1.5, 6.66, 0.9, 2.4, 0.6, 0.9, 3.6, 0.3, 0.6, 0, 0.2, 0.5, 0.2, 0.1, 0.1, 0.2, 36.3, 76.2, 0, 3.8, 'Levante', 'LaLiga\r'),
(107168, 'es', 'Iván López', 22, ' D(R)', 175, 69, 10, 3, 957, 0, 0, 3, 0, 0.5, 69, 0, 0.5, 6.65, 2.5, 2.4, 1.2, 0.5, 1.6, 0.8, 0.2, 0, 0.3, 0.5, 0, 0.5, 0.8, 0.3, 23.3, 69, 0.3, 1.8, 'Levante', 'LaLiga\r'),
(91216, 'es', 'Diego Mariño', 26, ' GK', 185, 75, 23, 0, 2070, 0, 0, 1, 0, 0, 62.6, 0, 0.3, 6.64, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0.3, 0, 0, 0, 0, 29.9, 62.6, 0, 10, 'Levante', 'LaLiga\r'),
(10653, 'es', 'Joan Verdú', 33, ' M(CR)', 178, 71, 10, 3, 907, 1, 1, 0, 0, 0.7, 85.2, 0, 0.5, 6.62, 0.9, 0.8, 0.4, 0.1, 0.3, 0.9, 0, 0, 1.5, 0.9, 0.2, 1.3, 0.5, 1.5, 38.5, 85.2, 0.6, 1.5, 'Levante', 'LaLiga\r'),
(12367, 'es', 'Verza', 29, ' M(C)', 181, 78, 23, 6, 2127, 2, 3, 13, 0, 0.9, 82.2, 0, 0.3, 6.62, 1.5, 1.1, 1.3, 0, 1.1, 0.8, 0.2, 0, 1.3, 1, 0, 0.3, 0.8, 1.3, 42.5, 82.2, 1, 4, 'Levante', 'LaLiga\r'),
(10067, 'es', 'Pedro López', 32, ' D(R),M(R)', 174, 72, 16, 1, 1299, 1, 0, 8, 0, 0.4, 76.4, 0, 0.6, 6.62, 1.6, 1.5, 1.4, 0.2, 2.5, 0.9, 0.2, 0, 0.2, 1.3, 0.1, 0.5, 1.1, 0.2, 28.9, 76.4, 0.4, 2, 'Levante', 'LaLiga\r'),
(1324, 'es', 'Juanfran', 39, ' D(CL)', 183, 78, 20, 1, 1519, 0, 1, 8, 1, 0.1, 64.9, 1, 0.9, 6.55, 1.8, 1.9, 0.7, 0.6, 2.8, 1, 0.5, 0, 0.3, 0.8, 0, 0.3, 0.6, 0.3, 28.8, 64.9, 0.1, 3.3, 'Levante', 'LaLiga\r'),
(14077, 'es', 'Casadesús', 31, ' AM(C),FW', 180, 77, 8, 15, 942, 3, 1, 4, 0, 0.5, 70.1, 2, 2.1, 6.45, 0.6, 0.3, 1, 0, 0.4, 0.3, 0, 0, 0.5, 0.8, 0.1, 0.9, 0.8, 0.5, 16.6, 70.1, 0, 0.7, 'Levante', 'LaLiga\r'),
(119189, 'es', 'Rubén García', 22, ' AM(CLR)', 171, 72, 9, 13, 1012, 1, 0, 5, 0, 0.7, 69.1, 0, 0.3, 6.44, 1, 0.7, 1, 0, 0.3, 0.6, 0.1, 0, 1, 1.2, 0.1, 1.6, 1.2, 1, 18, 69.1, 0.6, 0.7, 'Levante', 'LaLiga\r'),
(302300, 'co', 'Mauricio Cuero', 23, ' M(R)', 176, 77, 5, 8, 480, 0, 1, 1, 0, 0.8, 65.3, 0, 0.1, 6.44, 0.8, 0.4, 0.5, 0, 0.2, 0.1, 0, 0, 0.5, 0.7, 0.2, 0.6, 0.5, 0.5, 9.1, 65.3, 0.5, 0.1, 'Levante', 'LaLiga\r'),
(140957, 'es', 'Víctor Camarasa', 22, ' DMC', 183, 76, 21, 13, 2113, 2, 3, 4, 0, 0.8, 84.9, 0, 0.9, 6.44, 1.3, 0.9, 0.9, 0, 0.5, 0.6, 0, 0, 0.6, 0.8, 0.1, 1.4, 1.4, 0.6, 30.9, 84.9, 0.1, 1.9, 'Levante', 'LaLiga\r'),
(105721, 'es', 'Ángel Trujillo', 28, ' D(C)', 179, 79, 8, 0, 668, 0, 0, 0, 0, 0.3, 76.9, 0, 0.4, 6.44, 1.3, 2.4, 0.8, 0.4, 3.3, 0.3, 1.1, 0, 0, 0.1, 0, 0.1, 0, 0, 22.8, 76.9, 0, 1.4, 'Levante', 'LaLiga\r'),
(5999, 'es', 'David Navarro', 36, ' D(C)', 188, 82, 20, 0, 1693, 0, 0, 3, 1, 0.4, 79.3, 0, 1.5, 6.43, 1, 2, 0.8, 0.9, 4.6, 0.5, 0.6, 1, 0.1, 0.5, 0.1, 0.2, 0.3, 0.1, 33.4, 79.3, 0, 3.6, 'Levante', 'LaLiga\r'),
(9907, 'es', 'Rubén Martínez', 31, ' GK', 187, 80, 15, 0, 1350, 0, 0, 4, 0, 0, 49, 0, 0.2, 6.33, 0, 0, 0.1, 0, 0.9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23.3, 49, 0, 7.7, 'Levante', 'LaLiga\r'),
(35209, 'gr', 'Nikos Karámpelas', 31, ' D(L)', 180, 70, 1, 0, 90, 0, 0, 1, 0, 0, 50, 0, 0, 6.32, 2, 2, 4, 1, 5, 1, 0, 0, 0, 0, 0, 0, 2, 0, 30, 50, 1, 0, 'Levante', 'LaLiga\r'),
(109632, 'dz', 'Nabil Ghilas', 26, ' AM(L),FW', 183, 85, 10, 10, 1010, 0, 1, 1, 0, 1, 60.9, 0, 1.7, 6.21, 0.3, 0.3, 1.2, 0, 0.4, 0.1, 0.1, 0, 0.5, 0.5, 0.3, 1.3, 1.7, 0.5, 11.5, 60.9, 0.2, 0.1, 'Levante', 'LaLiga\r'),
(109811, 'es', 'Roger', 25, ' FW', 178, 73, 7, 9, 646, 0, 0, 4, 0, 1.3, 59.2, 0, 0.7, 6.17, 0.6, 0.2, 1.3, 0, 0.3, 0.3, 0, 0, 0.3, 0.6, 0.2, 0.9, 1.1, 0.3, 8.1, 59.2, 0, 0.1, 'Levante', 'LaLiga\r'),
(44282, 'es', 'Jordi Xumetra', 30, ' AM(R)', 172, 70, 5, 8, 527, 0, 0, 5, 0, 0.6, 70.7, 0, 0.7, 6.06, 0.2, 0.2, 1.1, 0, 0.3, 0.4, 0.2, 0, 0.2, 0.5, 0.2, 0.6, 0.4, 0.2, 9.5, 70.7, 0.2, 0.2, 'Levante', 'LaLiga\r'),
(75204, 'ar', 'Lucas Orban', 27, ' D(L)', 184, 78, 3, 0, 270, 0, 0, 1, 0, 0, 76.6, 0, 2, 5.99, 3.3, 1.3, 1.3, 1, 2.3, 4.3, 0, 0, 0, 2.7, 0, 0.7, 0.7, 0, 31.3, 76.6, 0, 1.3, 'Levante', 'LaLiga\r'),
(35199, 'es', 'Ignacio Camacho', 26, ' M(C)', 182, 75, 23, 0, 2008, 2, 1, 7, 1, 1, 73.5, 3, 3.2, 7.22, 3, 3.5, 2.2, 0.1, 2, 1, 0.3, 0, 0.6, 1.9, 0, 1, 0.9, 0.6, 49, 73.5, 0.1, 2.6, 'Malaga', 'LaLiga\r'),
(13289, 'br', 'Weligton', 36, ' D(C)', 186, 71, 30, 0, 2608, 0, 2, 5, 0, 0.1, 71.7, 2, 3, 7.18, 1.8, 3, 1, 1.2, 5.1, 0.8, 0.7, 0, 0.2, 0.8, 0, 0.1, 0.2, 0.2, 37.8, 71.7, 0.1, 3.8, 'Malaga', 'LaLiga\r'),
(303080, 'uy', 'Federico Ricca', 21, ' D(L)', 179, 72, 7, 1, 641, 1, 1, 3, 0, 0.3, 63.4, 1, 2.6, 7.14, 3.1, 2.6, 1.4, 0.5, 2.8, 0.3, 0.1, 0, 0.6, 0.9, 0, 0.4, 1, 0.6, 28.4, 63.4, 0.6, 1, 'Malaga', 'LaLiga\r'),
(102157, 'br', 'Charles', 32, ' FW', 179, 75, 33, 2, 3007, 12, 3, 12, 0, 2.4, 70.4, 4, 3.8, 7.02, 0.6, 0.4, 1.7, 0, 1.3, 0.4, 0.1, 1, 1, 1.3, 0.9, 1.1, 1.8, 1, 24.2, 70.4, 0.1, 0.2, 'Malaga', 'LaLiga\r'),
(25945, 'uy', 'Gonzalo Castro', 31, ' AM(LR)', 176, 70, 15, 1, 1247, 1, 1, 1, 0, 1.3, 70, 1, 0.4, 7, 1.4, 0.8, 1.1, 0, 0.3, 0.6, 0, 0, 1.6, 1.2, 0.2, 1.9, 1.9, 1.6, 26.5, 70, 2.4, 1.2, 'Malaga', 'LaLiga\r'),
(40346, 've', 'Roberto Rosales', 27, ' D(R)', 174, 70, 35, 0, 3071, 0, 5, 5, 0, 0.5, 74.6, 2, 1.1, 6.98, 3.1, 1.9, 1, 0.4, 1.9, 1.1, 0.1, 0, 0.6, 1, 0, 0.9, 1.1, 0.6, 34.7, 74.6, 0.5, 2.5, 'Malaga', 'LaLiga\r'),
(106596, 'es', 'Sergi Darder', 22, ' DMC', 180, 71, 1, 0, 85, 0, 0, 1, 0, 3, 80.6, 0, 0, 6.96, 4, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 2, 1, 1, 36, 80.6, 1, 3, 'Malaga', 'LaLiga\r'),
(135527, 'es', 'Raúl Albentosa', 27, ' D(C)', 193, 86, 27, 2, 2553, 2, 0, 11, 0, 0.6, 69.7, 2, 1.8, 6.93, 1.2, 3.6, 1, 1, 3.5, 0.6, 0.4, 0, 0.3, 0.4, 0, 0, 0.4, 0.3, 36.2, 69.7, 0, 3.8, 'Malaga', 'LaLiga\r'),
(93820, 'es', 'Recio', 25, ' M(C)', 183, 74, 32, 1, 2750, 0, 4, 16, 0, 1.1, 82.3, 0, 0.8, 6.93, 2.8, 1.4, 1.8, 0, 0.7, 0.8, 0.2, 0, 1.1, 1.2, 0, 1, 1, 1.1, 42.1, 82.3, 0.6, 2.1, 'Malaga', 'LaLiga\r'),
(23250, 'es', 'Miguel Torres', 30, ' D(CLR)', 184, 74, 22, 1, 1959, 0, 2, 9, 0, 0, 70, 0, 1.1, 6.84, 2.3, 2.2, 0.8, 0.5, 2.7, 0.6, 0.4, 0, 0.3, 0.3, 0, 0, 0.4, 0.3, 27.4, 70, 0.5, 1.8, 'Malaga', 'LaLiga\r'),
(3515, 'cm', 'Carlos Kameni', 32, ' GK', 186, 86, 28, 0, 2467, 0, 1, 2, 0, 0, 60.2, 2, 0.3, 6.82, 0, 0.1, 0, 0, 0.7, 0, 0, 1, 0, 0, 0, 0, 0.1, 0, 23.3, 60.2, 0, 7.8, 'Malaga', 'LaLiga\r'),
(31093, 'by', 'Igor Filipenko', 28, ' D(C)', 194, 85, 6, 2, 562, 0, 0, 1, 0, 1, 68.3, 0, 1.4, 6.81, 1.6, 2.8, 0.3, 0.8, 4.9, 0.4, 0.6, 0, 0, 0.4, 0, 0.4, 0.6, 0, 22.5, 68.3, 0, 1.8, 'Malaga', 'LaLiga\r'),
(21015, 'mx', 'Guillermo Ochoa', 30, ' GK', 185, 78, 10, 1, 953, 0, 0, 0, 0, 0, 53.3, 0, 0.2, 6.8, 0.2, 0.2, 0, 0, 0.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22.2, 53.3, 0, 7.1, 'Malaga', 'LaLiga\r'),
(106874, 'es', 'Juan Carlos', 26, ' D(L),M(L)', 179, 72, 14, 5, 1247, 1, 2, 1, 0, 0.8, 76.2, 0, 1.1, 6.76, 1.1, 1.4, 1, 0.1, 1.3, 0.5, 0.1, 0, 0.8, 1.1, 0.2, 0.8, 0.9, 0.8, 23, 76.2, 0.4, 0.4, 'Malaga', 'LaLiga\r'),
(19188, 'ar', 'Marcos Angeleri', 33, ' D(CR)', 182, 76, 13, 0, 1112, 0, 0, 3, 0, 0.2, 80.2, 0, 1, 6.72, 1.6, 2.8, 1, 1.1, 4.7, 0.5, 0.4, 0, 0.2, 0.5, 0, 0.2, 0.5, 0.2, 26.8, 80.2, 0, 2.4, 'Malaga', 'LaLiga\r'),
(13699, 'ar', 'Fernando Tissone', 29, ' M(C)', 180, 77, 12, 0, 997, 0, 0, 2, 2, 0.7, 77.3, 0, 1.4, 6.72, 1.9, 3.3, 2.5, 0.3, 1.1, 0.9, 0.2, 1, 1, 0.6, 0, 0.7, 0.8, 1, 44.1, 77.3, 0.1, 3.3, 'Malaga', 'LaLiga\r'),
(9245, 'ci', 'Arthur Boka', 33, ' D(L),M(C)', 166, 65, 12, 2, 1049, 0, 0, 3, 1, 0.5, 78.2, 0, 0.9, 6.65, 1.4, 1.6, 1.1, 0.1, 1.3, 0.3, 0.1, 0, 0.4, 1.2, 0.1, 0.9, 0.7, 0.4, 32.8, 78.2, 0.7, 1.6, 'Malaga', 'LaLiga\r'),
(26361, 'hr', 'Duje Cop', 26, ' FW', 185, 75, 25, 6, 2064, 7, 3, 3, 0, 1.6, 67.9, 1, 1.2, 6.61, 0.9, 0.5, 1, 0, 0.2, 0.4, 0.1, 0, 0.6, 0.5, 0.1, 1.4, 1.7, 0.6, 20.7, 67.9, 0.2, 0.4, 'Malaga', 'LaLiga\r'),
(240507, '', 'Juanpi', 22, ' AM(R)', 171, 65, 18, 11, 1621, 4, 1, 6, 0, 1.1, 77.3, 1, 0.4, 6.6, 0.8, 0.6, 0.7, 0, 0.3, 0.8, 0.2, 0, 0.9, 1.6, 0.1, 1.9, 1.4, 0.9, 22, 77.3, 0.3, 0.7, 'Malaga', 'LaLiga\r'),
(96257, 'gh', 'Christian Atsu', 24, ' AM(CLR)', 172, 68, 3, 9, 386, 2, 0, 0, 0, 0.8, 78.6, 0, 0.3, 6.57, 0.6, 0.5, 0.3, 0, 0.1, 0.3, 0, 0, 0.5, 0.6, 0.3, 0.7, 0.1, 0.5, 10.9, 78.6, 0.2, 0.4, 'Malaga', 'LaLiga\r'),
(6831, 'pt', 'Duda', 35, ' M(CLR)', 175, 71, 11, 16, 1062, 1, 1, 5, 0, 0.9, 69.5, 0, 0.2, 6.48, 0.8, 0.6, 0.8, 0, 0.2, 0.3, 0, 0, 1.5, 1.7, 0.1, 1.3, 0.9, 1.5, 22.3, 69.5, 0.7, 1.4, 'Malaga', 'LaLiga\r'),
(297203, 'es', 'Pablo Fornals', 20, ' M(C)', 178, 67, 12, 15, 1286, 1, 0, 1, 0, 0.8, 78.3, 0, 0.5, 6.48, 1.3, 1.1, 0.6, 0, 0.4, 0.7, 0, 0, 0.5, 0.6, 0.1, 0.8, 0.5, 0.5, 26, 78.3, 0, 1, 'Malaga', 'LaLiga\r'),
(120828, 'pt', 'Fábio Espinho', 30, ' DMC', 171, 65, 0, 2, 87, 0, 0, 0, 0, 1, 89.1, 0, 1, 6.42, 0, 0, 0, 0, 0.5, 0, 0, 0, 0.5, 0, 0, 1.5, 0, 0.5, 27.5, 89.1, 0.5, 0, 'Malaga', 'LaLiga\r'),
(22932, 'ma', 'Nordin Amrabat', 29, ' AM(CLR),FW', 178, 77, 13, 0, 1012, 0, 1, 5, 1, 2, 72.2, 0, 0.2, 6.4, 0.7, 0.3, 2.8, 0, 0.2, 0.5, 0, 0, 1.3, 2.2, 1.5, 3.3, 2.2, 1.3, 18.8, 72.2, 0.8, 0.5, 'Malaga', 'LaLiga\r'),
(101080, 'ma', 'Adnane Tighadouini', 23, ' AM(L)', 179, 70, 4, 6, 387, 1, 0, 0, 0, 1.5, 74, 0, 0.2, 6.4, 0.6, 0.1, 0.6, 0, 0, 0.2, 0, 0, 0.5, 0.5, 0.1, 1.2, 1, 0.5, 10.4, 74, 1, 0.3, 'Malaga', 'LaLiga\r'),
(954, 'py', 'Roque Santa Cruz', 34, ' FW', 191, 83, 3, 14, 419, 2, 1, 0, 0, 0.3, 74, 0, 1.2, 6.3, 0.2, 0.1, 0.2, 0, 0.2, 0.1, 0.1, 0, 0.4, 0.5, 0.4, 0.5, 0.6, 0.4, 10.4, 74, 0, 0, 'Malaga', 'LaLiga\r'),
(127130, 'pt', 'Ricardo Horta', 21, ' AM(LR)', 173, 61, 9, 8, 782, 0, 0, 2, 0, 1.1, 77.8, 0, 0.2, 6.24, 0.8, 0.9, 1, 0, 0.4, 0.8, 0, 0, 0.5, 0.4, 0.2, 1, 0.9, 0.5, 16.9, 77.8, 0.2, 0.5, 'Malaga', 'LaLiga\r'),
(149547, 'ma', 'Hachim Mastour', 18, ' Forward', 175, 63, 0, 1, 5, 0, 0, 0, 0, 0, 50, 0, 0, 6.1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 50, 0, 0, 'Malaga', 'LaLiga\r'),
(300365, 'es', 'Javi Ontiveros', 18, ' Midfielder', 172, 70, 0, 4, 57, 0, 0, 0, 0, 0.3, 83.8, 0, 0, 6.1, 0.3, 0, 1, 0, 0, 0.3, 0, 0, 0.5, 0.3, 0, 1, 0.5, 0.5, 9.3, 83.8, 0.3, 0.5, 'Malaga', 'LaLiga\r'),
(14219, 'ng', 'Ikechukwu Uche', 32, ' FW', 175, 71, 1, 2, 81, 0, 0, 0, 0, 0.3, 77.8, 0, 0, 6.06, 0, 0, 0.7, 0, 0, 0.3, 0, 0, 0.3, 0.7, 0, 0.7, 2, 0.3, 9, 77.8, 0, 0.3, 'Malaga', 'LaLiga\r'),
(25119, 'es', 'Roberto Trashorras', 35, ' M(C)', 177, 70, 35, 1, 3119, 3, 7, 10, 0, 0.9, 87.3, 5, 0.5, 7.01, 1.7, 1.4, 1.1, 0, 1.1, 1.3, 0.1, 0, 2.2, 2.3, 0.2, 1.1, 0.8, 2.2, 74.8, 87.3, 1.3, 8.7, 'Rayo Vallecano', 'LaLiga\r'),
(123232, 'es', 'Diego Llorente', 22, ' D(C),DMC', 185, 74, 33, 0, 2877, 2, 0, 11, 1, 0.4, 79.6, 1, 3, 6.95, 1.8, 3.2, 1.6, 1.2, 3.6, 0.7, 0.5, 1, 0.1, 1, 0, 0.7, 0.6, 0.1, 43, 79.6, 0, 3.6, 'Rayo Vallecano', 'LaLiga\r'),
(89883, 'pt', 'Bebé', 25, ' AM(LR),FW', 190, 75, 27, 7, 2246, 3, 6, 3, 0, 2.4, 72.6, 1, 0.8, 6.87, 1.1, 0.6, 0.8, 0.1, 0.9, 0.5, 0, 0, 0.9, 0.6, 0.6, 1.2, 1.8, 0.9, 17.8, 72.6, 1.2, 0.7, 'Rayo Vallecano', 'LaLiga\r'),
(44317, 've', 'Miku', 30, ' FW', 185, 79, 18, 4, 1549, 9, 4, 4, 0, 1.9, 74.3, 2, 1.4, 6.87, 1.1, 0.4, 1.6, 0, 0.2, 0.6, 0.1, 0, 1.2, 1, 1, 1.3, 2, 1.2, 17.9, 74.3, 0.1, 0.2, 'Rayo Vallecano', 'LaLiga\r'),
(115995, 'es', 'Quini', 26, ' D(R)', 179, 70, 22, 5, 2048, 0, 1, 7, 0, 0.7, 69.4, 0, 1.1, 6.85, 3.8, 2.7, 1.4, 0.4, 1.9, 0.7, 0.2, 0, 0.3, 0.5, 0, 0.4, 1.1, 0.3, 26.3, 69.4, 0.3, 1.2, 'Rayo Vallecano', 'LaLiga\r'),
(5750, 'ro', 'Razvan Rat', 35, ' D(L)', 178, 72, 8, 2, 734, 0, 0, 3, 0, 0.8, 70.3, 0, 2.2, 6.82, 1, 2.9, 1.1, 0.3, 3.1, 0.5, 0.1, 0, 1.1, 0.2, 0.1, 0.2, 0.3, 1.1, 39.7, 70.3, 1.3, 2.7, 'Rayo Vallecano', 'LaLiga\r'),
(13630, 'es', 'Toño', 36, ' GK', 182, 81, 10, 0, 808, 0, 0, 0, 1, 0, 67.3, 1, 0.5, 6.78, 0, 0.1, 0.1, 0, 1.5, 0.1, 0, 0, 0, 0.1, 0, 0, 0, 0, 26.3, 67.3, 0, 7.3, 'Rayo Vallecano', 'LaLiga\r'),
(14258, 'pt', 'Zé Castro', 33, ' D(C)', 183, 76, 22, 0, 1720, 2, 0, 6, 1, 0.5, 76.1, 0, 2.2, 6.76, 1.8, 2.9, 0.9, 1, 3, 0.4, 0.5, 0, 0.4, 0.2, 0, 0.3, 0.3, 0.4, 52.4, 76.1, 0, 6.3, 'Rayo Vallecano', 'LaLiga\r'),
(23215, 'es', 'Javi Guerra', 34, ' FW', 179, 77, 23, 7, 2092, 12, 0, 8, 0, 2.4, 74.9, 2, 2.3, 6.75, 0.9, 0.3, 1.6, 0, 0.3, 0.2, 0.1, 0, 0.6, 2.1, 1, 1.8, 2, 0.6, 21.1, 74.9, 0, 0.4, 'Rayo Vallecano', 'LaLiga\r'),
(70960, 'pt', 'Tito', 30, ' D(CLR)', 174, 62, 29, 0, 2488, 1, 3, 4, 2, 0.4, 78.1, 0, 1.5, 6.74, 1.6, 2.2, 1.3, 0.5, 2.8, 0.5, 0.5, 0, 0.5, 1.2, 0.1, 0.3, 0.6, 0.5, 32.2, 78.1, 0.3, 1.7, 'Rayo Vallecano', 'LaLiga\r'),
(29571, 'es', 'Pablo Hernández', 31, ' M(CLR)', 173, 64, 24, 3, 1917, 3, 4, 3, 0, 1.3, 77.1, 0, 0.2, 6.74, 1.3, 0.9, 0.4, 0, 0.3, 1.1, 0, 0, 1.1, 0.8, 0.2, 0.9, 0.9, 1.1, 35.2, 77.1, 0.4, 1.9, 'Rayo Vallecano', 'LaLiga\r'),
(135572, 'es', 'Adrián Embarba', 24, ' AM(LR)', 173, 66, 19, 9, 1833, 2, 5, 5, 0, 1.5, 71.3, 0, 1, 6.7, 1.6, 0.9, 1, 0.1, 0.3, 0.5, 0, 0, 1.1, 0.9, 0.4, 1.3, 1.6, 1.1, 20.7, 71.3, 1.1, 0.5, 'Rayo Vallecano', 'LaLiga\r'),
(19444, 'es', 'José Ángel Crespo', 29, ' D(CL),M(R)', 183, 72, 9, 0, 718, 0, 0, 4, 0, 0.1, 81.9, 0, 1.3, 6.7, 2.6, 3, 1.4, 1.4, 3.3, 0.4, 0.3, 0, 0, 0.8, 0, 0.3, 0.2, 0, 43.7, 81.9, 0, 2.1, 'Rayo Vallecano', 'LaLiga\r'),
(141058, 'es', 'Jozabed', 25, ' M(C)', 178, 67, 24, 3, 2062, 9, 2, 3, 0, 1.7, 85.2, 1, 0.3, 6.69, 1.2, 0.8, 0.7, 0, 0.6, 0.9, 0, 1, 1, 0.8, 0.2, 1.7, 1.5, 1, 37.9, 85.2, 0.2, 2.1, 'Rayo Vallecano', 'LaLiga\r'),
(97643, 'es', 'Juan Carlos', 28, ' GK', 187, 82, 19, 2, 1801, 0, 0, 1, 0, 0, 64.6, 1, 0.4, 6.66, 0, 0.1, 0, 0, 1, 0.1, 0, 0, 0, 0, 0, 0, 0, 0, 28.5, 64.6, 0, 6.2, 'Rayo Vallecano', 'LaLiga\r'),
(44268, 'es', 'Antonio Amaya', 33, ' D(C)', 192, 86, 10, 7, 1030, 1, 0, 4, 1, 0.2, 75.1, 0, 2.4, 6.5, 1, 2.2, 1, 0.9, 3.4, 0.4, 0.8, 0, 0.1, 0.4, 0, 0.2, 0.2, 0.1, 26.6, 75.1, 0, 2.1, 'Rayo Vallecano', 'LaLiga\r'),
(34937, 'ao', 'Manucho', 33, ' FW', 188, 82, 5, 23, 930, 4, 1, 3, 0, 0.9, 64.9, 1, 2.7, 6.44, 0.5, 0.1, 0.6, 0, 0.6, 0.3, 0.1, 0, 0.4, 0.5, 0.4, 0.6, 0.6, 0.4, 8.5, 64.9, 0, 0.2, 'Rayo Vallecano', 'LaLiga\r'),
(99693, 'gn', 'Lass', 24, ' M(LR)', 174, 71, 7, 9, 803, 0, 1, 2, 0, 1.1, 71.6, 0, 0.4, 6.44, 1.1, 0.6, 1.1, 0, 0.1, 0.5, 0, 0, 0.8, 0.6, 0.4, 1.2, 1.6, 0.8, 14.3, 71.6, 0.6, 0.1, 'Rayo Vallecano', 'LaLiga\r'),
(121544, 'es', 'Nacho', 27, ' D(LR)', 175, 76, 22, 0, 1714, 0, 0, 7, 0, 0.7, 72.9, 0, 1.1, 6.43, 2, 2.4, 1.3, 0.4, 2.1, 0.5, 0.1, 0, 0.5, 0.9, 0, 0.3, 0.6, 0.5, 36, 72.9, 0.3, 2.4, 'Rayo Vallecano', 'LaLiga\r'),
(81721, 'es', 'Raúl Baena', 27, ' M(C)', 179, 73, 22, 2, 1840, 1, 1, 10, 1, 0.4, 78, 0, 0.8, 6.43, 1.6, 1.8, 1.8, 0, 0.9, 0.5, 0.3, 0, 0.5, 1.7, 0, 0.8, 0.8, 0.5, 30.1, 78, 0, 1.3, 'Rayo Vallecano', 'LaLiga\r'),
(15455, 'es', 'Piti', 35, ' M(CLR)', 179, 79, 4, 4, 337, 0, 0, 1, 0, 0.9, 62, 0, 0.6, 6.28, 0.4, 0.4, 1.3, 0, 0.1, 0.4, 0.1, 0, 0.4, 0.5, 0, 1.5, 0.9, 0.4, 17.1, 62, 0.4, 0.8, 'Rayo Vallecano', 'LaLiga\r'),
(28721, 'cl', 'Manuel Iturra', 31, ' DMC', 172, 74, 4, 2, 384, 0, 0, 2, 1, 0, 80.9, 0, 1.5, 6.26, 1.8, 1.8, 2, 0.2, 1.2, 0.5, 0.2, 0, 0.3, 0.5, 0, 0.3, 0.7, 0.3, 27, 80.9, 0, 0.3, 'Rayo Vallecano', 'LaLiga\r'),
(83117, 'es', 'Yoel', 27, ' GK', 185, 84, 10, 0, 811, 0, 0, 1, 1, 0, 56.7, 0, 0, 6.25, 0, 0.3, 0, 0, 1.7, 0, 0, 0, 0.1, 0.2, 0, 0, 0, 0.1, 28.2, 56.7, 0, 6.4, 'Rayo Vallecano', 'LaLiga\r'),
(89562, 'am', 'Aras Özbiliz', 26, ' AM(R)', 175, 72, 1, 2, 99, 0, 1, 1, 0, 0.3, 77.8, 0, 0.3, 6.25, 0.7, 0, 0.7, 0, 0, 0.3, 0, 0, 0.7, 0.7, 0, 0.3, 1, 0.7, 9, 77.8, 0.3, 0, 'Rayo Vallecano', 'LaLiga\r'),
(13750, 'de', 'Patrick Ebert', 29, ' M(LR)', 175, 72, 7, 2, 557, 0, 0, 3, 1, 1.1, 77.3, 0, 0.7, 6.15, 0.4, 0.6, 0.9, 0, 0.8, 0.3, 0, 0, 1, 0.7, 0.2, 0.7, 1.1, 1, 26.4, 77.3, 0.3, 0.4, 'Rayo Vallecano', 'LaLiga\r'),
(44389, 'es', 'Chechu Dorado', 33, ' D(C)', 180, 69, 4, 6, 469, 0, 0, 2, 0, 0.1, 79.5, 0, 0.3, 6.13, 0.9, 0.9, 0.7, 0.8, 1.4, 0.2, 0.1, 0, 0.2, 0.2, 0, 0, 0.1, 0.2, 26.4, 79.5, 0, 2, 'Rayo Vallecano', 'LaLiga\r'),
(125534, 'ar', 'Luis Fariña', 25, ' AM(CL)', 177, 74, 0, 3, 52, 0, 0, 0, 0, 0, 88.9, 0, 0, 6.1, 0.7, 0.7, 0.3, 0, 0, 0.7, 0, 0, 0.3, 0.3, 0.3, 1, 0, 0.3, 6, 88.9, 0, 0, 'Rayo Vallecano', 'LaLiga\r'),
(301483, 'es', 'Joni Montiel', 17, ' Midfielder', 0, 0, 1, 7, 210, 0, 0, 0, 0, 0.3, 76.8, 0, 0.3, 6.08, 0.4, 0, 0.6, 0, 0.3, 0.1, 0, 0, 0.3, 0.5, 0.1, 1.1, 0.6, 0.3, 8.6, 76.8, 0.3, 0, 'Rayo Vallecano', 'LaLiga\r'),
(63310, '', 'Zhang Chengdong', 27, ' Midfielder', 185, 84, 0, 1, 8, 0, 0, 0, 0, 0, 100, 0, 0, 5.98, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 100, 0, 1, 'Rayo Vallecano', 'LaLiga\r'),
(303172, 'be', 'Charly Musonda', 19, ' AM(LR)', 173, 66, 13, 3, 1228, 1, 1, 2, 0, 0.9, 78.4, 0, 0.1, 7.09, 2, 0.6, 0.9, 0, 0.3, 0.4, 0, 0, 0.8, 3.3, 0, 1.8, 2, 0.8, 21.4, 78.4, 0.4, 0.8, 'Real Betis', 'LaLiga\r'),
(121456, 'ar', 'Germán Pezzella', 24, ' D(C)', 186, 81, 23, 2, 2165, 3, 1, 9, 0, 0.7, 73.1, 4, 3, 7.07, 2.1, 3.5, 0.9, 0.8, 5.5, 0.9, 0.6, 0, 0.1, 0.5, 0, 0.2, 0.4, 0.1, 31.2, 73.1, 0, 2.4, 'Real Betis', 'LaLiga\r'),
(294192, '', 'Bruno', 26, ' D(C)', 184, 82, 32, 0, 2807, 0, 0, 9, 0, 0.5, 77.6, 0, 2.2, 7.06, 2, 2.8, 1.1, 0.9, 6.1, 0.7, 0.5, 0, 0, 0.5, 0, 0.2, 0.4, 0, 32.5, 77.6, 0, 2.8, 'Real Betis', 'LaLiga\r'),
(94831, 'it', 'Cristiano Piccini', 23, ' D(R)', 183, 77, 16, 0, 1421, 0, 0, 4, 0, 0.9, 78.4, 0, 1.8, 7.04, 2.7, 2.6, 1.6, 0.3, 2.1, 0.9, 0.3, 0, 0.8, 0.8, 0, 1.1, 1.2, 0.8, 37.6, 78.4, 0.8, 1.3, 'Real Betis', 'LaLiga\r'),
(91387, 'es', 'Martín Montoya', 25, ' D(LR)', 174, 74, 13, 0, 1167, 0, 1, 4, 0, 0.1, 77.7, 1, 1.7, 7.04, 3.2, 3.3, 0.6, 0.2, 2.1, 0.9, 0.3, 0, 0.3, 1.7, 0.1, 0.6, 0.8, 0.3, 42.8, 77.7, 0.2, 1.1, 'Real Betis', 'LaLiga\r'),
(5673, 'de', 'Heiko Westermann', 32, ' D(CLR)', 190, 87, 20, 0, 1633, 1, 0, 3, 2, 0.8, 75.9, 5, 2.9, 7.02, 2, 3, 1, 0.8, 6.5, 0.8, 0.6, 1, 0.1, 0.7, 0.1, 0.5, 0.5, 0.1, 30.9, 75.9, 0, 2.3, 'Real Betis', 'LaLiga\r'),
(34123, 'fr', 'Alfred N\'Diaye', 26, ' D(C),M(C)', 186, 80, 34, 0, 3010, 2, 0, 6, 0, 0.7, 79.7, 4, 1.8, 7, 2.7, 2.6, 1.4, 0.1, 1.8, 0.7, 0.6, 0, 0.2, 0.8, 0.1, 1.4, 0.6, 0.2, 33.7, 79.7, 0.1, 2.1, 'Real Betis', 'LaLiga\r'),
(14660, 'pe', 'Juan Vargas', 32, ' D(L),M(CL)', 180, 77, 20, 0, 1719, 2, 2, 5, 1, 0.9, 74.8, 2, 1.2, 6.98, 1, 2.4, 1.3, 0.2, 3, 0.5, 0.5, 0, 1.3, 0.3, 0, 0.6, 0.8, 1.3, 30.1, 74.8, 1.6, 1.3, 'Real Betis', 'LaLiga\r'),
(3283, 'es', 'Joaquín', 34, ' M(CLR)', 179, 75, 22, 8, 1963, 1, 5, 3, 0, 0.9, 79.3, 1, 0.7, 6.88, 0.9, 0.9, 0.4, 0, 0.6, 0.2, 0.1, 0, 1.7, 1.3, 0.3, 1.5, 1.2, 1.7, 26.9, 79.3, 1, 1.2, 'Real Betis', 'LaLiga\r'),
(146756, 'br', 'Petros', 27, ' M(CLR)', 182, 78, 27, 3, 2329, 1, 1, 7, 1, 0.3, 83.2, 1, 0.7, 6.79, 3.4, 2.1, 1.7, 0, 0.5, 2, 0.3, 0, 0.5, 2.3, 0, 0.9, 0.7, 0.5, 39.3, 83.2, 0, 1.3, 'Real Betis', 'LaLiga\r'),
(32853, 'es', 'Rubén Castro', 34, ' AM(LR),FW', 174, 72, 38, 0, 3378, 19, 4, 3, 0, 2.7, 75.2, 0, 0.8, 6.79, 0.1, 0.4, 0.4, 0, 0.1, 0.2, 0.1, 0, 0.8, 1.6, 0.9, 1, 1.5, 0.8, 24.9, 75.2, 0.2, 0.7, 'Real Betis', 'LaLiga\r'),
(23285, 'es', 'Antonio Adán', 29, ' GK', 190, 88, 36, 0, 3213, 0, 0, 6, 0, 0, 38.7, 2, 0.3, 6.78, 0, 0.1, 0, 0, 1.1, 0.1, 0, 0, 0.1, 0.1, 0, 0, 0.1, 0.1, 28.5, 38.7, 0, 7.1, 'Real Betis', 'LaLiga\r'),
(79837, 'es', 'Álvaro Cejudo', 32, ' M(LR)', 180, 78, 21, 9, 1877, 1, 2, 10, 0, 1.2, 71.6, 0, 0.7, 6.73, 2, 1.1, 1.5, 0.1, 0.7, 1.1, 0.1, 0, 0.9, 1.4, 0, 1.5, 1.2, 0.9, 22.5, 71.6, 0.8, 0.9, 'Real Betis', 'LaLiga\r'),
(74553, 'es', 'Jordi Figueras', 29, ' D(C)', 185, 82, 2, 1, 167, 0, 0, 1, 0, 0, 76.1, 0, 2, 6.7, 1.3, 2.7, 0.7, 0.3, 4.7, 0.7, 1, 0, 0, 0, 0.3, 0, 0, 0, 22.3, 76.1, 0, 1.7, 'Real Betis', 'LaLiga\r'),
(144890, 'es', 'Dani Ceballos', 19, ' M(CL)', 176, 65, 22, 12, 2136, 0, 2, 9, 1, 0.5, 80.9, 1, 0.5, 6.7, 2.1, 1.1, 1.1, 0, 0.5, 1.8, 0.1, 0, 0.7, 2.3, 0, 1.7, 1.2, 0.7, 36.4, 80.9, 0.2, 2.1, 'Real Betis', 'LaLiga\r'),
(129842, 'es', 'Varela', 21, ' D(L)', 178, 72, 10, 4, 909, 0, 1, 3, 0, 0.4, 76.4, 0, 0.7, 6.55, 1.1, 1.4, 0.3, 0.1, 1.4, 0.4, 0.3, 0, 0.6, 0.3, 0.2, 0.4, 0.8, 0.6, 26.1, 76.4, 0.7, 1.4, 'Real Betis', 'LaLiga\r'),
(36209, 'it', 'Vincenzo Rennella', 27, ' FW', 188, 78, 2, 4, 192, 1, 0, 1, 0, 0.8, 58.2, 0, 1.2, 6.5, 0.3, 0.2, 1.2, 0, 0.3, 0, 0.3, 0, 0.2, 0.8, 0.2, 0.8, 0.8, 0.2, 9.2, 58.2, 0.2, 0.2, 'Real Betis', 'LaLiga\r'),
(122856, 'es', 'Francisco Molinero', 30, ' D(R)', 175, 72, 15, 6, 1193, 0, 1, 5, 0, 0.2, 76.5, 0, 1, 6.41, 1.2, 1.7, 1.3, 0.4, 2, 0.7, 0.1, 0, 0.3, 0.3, 0, 0.7, 0.4, 0.3, 20.3, 76.5, 0.2, 0.9, 'Real Betis', 'LaLiga\r'),
(31793, 'dz', 'Foued Kadir', 32, ' M(CLR)', 180, 70, 6, 2, 485, 0, 0, 1, 0, 1.3, 78.7, 0, 0.5, 6.4, 1.1, 0.8, 0.8, 0, 0.8, 0.9, 0, 0, 1, 0.9, 0.5, 1.6, 0.9, 1, 32.9, 78.7, 1.1, 1.1, 'Real Betis', 'LaLiga\r'),
(37344, 'nl', 'Ricky van Wolfswinkel', 27, ' FW', 185, 70, 6, 11, 617, 1, 2, 2, 0, 0.8, 70, 0, 1, 6.36, 0.6, 0.5, 1.2, 0.1, 0.5, 0.2, 0.2, 0, 0.4, 0.7, 0.2, 0.5, 0.8, 0.4, 8.8, 70, 0, 0.1, 'Real Betis', 'LaLiga\r'),
(83360, 'es', 'Francisco Portillo', 26, ' M(CLR)', 169, 63, 11, 8, 967, 0, 0, 4, 0, 0.3, 83.8, 0, 0.2, 6.31, 0.6, 0.5, 0.7, 0, 0.5, 0.8, 0.1, 0, 0.9, 0.6, 0, 1.2, 1.1, 0.9, 28.2, 83.8, 0.3, 1.3, 'Real Betis', 'LaLiga\r'),
(11896, 'fr', 'Didier Digard', 29, ' M(C)', 183, 76, 2, 6, 295, 0, 0, 2, 0, 0.3, 71.7, 0, 0.6, 6.3, 1.1, 0.8, 1, 0, 1.3, 0.4, 0.3, 0, 0, 0.5, 0, 0.5, 0.4, 0, 19.9, 71.7, 0, 1.5, 'Real Betis', 'LaLiga\r'),
(33219, 'es', 'Daniel Giménez', 32, ' GK', 182, 77, 2, 1, 207, 0, 0, 0, 0, 0, 50, 0, 0, 6.29, 0, 0, 0, 0, 0.3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26.7, 50, 0, 6, 'Real Betis', 'LaLiga\r'),
(294193, '', 'Fabián', 20, ' AM(C)', 189, 70, 6, 6, 430, 0, 1, 0, 0, 0.3, 79.8, 0, 0.3, 6.25, 0.8, 0.2, 0.8, 0, 0.4, 0.3, 0, 0, 0.5, 0.3, 0, 0.9, 0.8, 0.5, 20.2, 79.8, 0, 0.3, 'Real Betis', 'LaLiga\r'),
(31151, 'es', 'Jorge Molina', 34, ' FW', 189, 83, 10, 13, 919, 1, 1, 4, 0, 0.6, 63.8, 0, 1, 6.24, 0.4, 0.2, 0.6, 0, 0.3, 0.2, 0, 0, 0.4, 1, 0.5, 0.8, 0.9, 0.4, 12, 63.8, 0, 0.2, 'Real Betis', 'LaLiga\r'),
(86610, 'br', 'Leandro Damião', 26, ' FW', 187, 81, 1, 2, 129, 0, 0, 0, 0, 2, 68.2, 0, 1.7, 6.22, 0.7, 0, 1.7, 0, 1.3, 0.3, 0, 0, 1.3, 0.7, 0.3, 0.3, 1.3, 1.3, 7.3, 68.2, 0, 0, 'Real Betis', 'LaLiga\r'),
(4343, 'nl', 'Rafael van der Vaart', 33, ' M(C)', 176, 74, 2, 5, 180, 0, 0, 0, 0, 0.9, 74.7, 0, 0.1, 6.21, 0.6, 0.3, 0.6, 0, 0, 0.4, 0, 0, 0.3, 1.4, 0, 0.3, 0.3, 0.3, 13.6, 74.7, 0.6, 0.3, 'Real Betis', 'LaLiga\r'),
(67467, 'es', 'Xavi Torres', 29, ' M(C)', 184, 82, 6, 6, 635, 0, 0, 2, 0, 0.6, 76.4, 0, 1, 6.15, 0.5, 1.3, 1.1, 0.1, 0.9, 0.7, 0.2, 0, 0.1, 1, 0.1, 0.2, 0.5, 0.1, 26.5, 76.4, 0, 2.5, 'Real Betis', 'LaLiga\r'),
(106591, 'es', 'Álvaro Vadillo', 21, ' AM(LR)', 180, 63, 1, 2, 85, 0, 0, 0, 0, 0.3, 85.3, 0, 0.3, 6.14, 0, 0, 0, 0, 0, 0.7, 0, 0, 0.7, 1, 0.3, 0.3, 0.7, 0.7, 11.3, 85.3, 0.3, 0, 'Real Betis', 'LaLiga\r'),
(13812, 'gb', 'Gareth Bale', 26, ' M(CLR),FW', 183, 74, 21, 2, 1741, 19, 10, 2, 0, 3.5, 79.9, 5, 0.9, 8.12, 0.5, 0.9, 0.6, 0, 0.3, 0.4, 0.1, 0, 2.2, 1.2, 0.7, 0.8, 1.3, 2.2, 30.3, 79.9, 0.8, 1.3, 'Real Madrid', 'LaLiga\r'),
(5583, 'pt', 'Cristiano Ronaldo', 31, ' M(L),FW', 185, 80, 36, 0, 3185, 35, 11, 3, 0, 6.3, 79.4, 8, 1.6, 7.99, 0.3, 0.2, 0.6, 0, 0.4, 0.3, 0.1, 0, 1.4, 1.1, 1.4, 1.2, 1.2, 1.4, 29.7, 79.4, 0.3, 0.3, 'Real Madrid', 'LaLiga\r'),
(14296, 'fr', 'Karim Benzema', 28, ' FW', 187, 79, 26, 1, 1994, 24, 7, 1, 0, 3.6, 81.5, 3, 0.4, 7.65, 0.3, 0.1, 0.6, 0, 0.5, 0.1, 0, 0, 1.6, 0.8, 0.7, 1.3, 1.3, 1.6, 24.8, 81.5, 0, 0.6, 'Real Madrid', 'LaLiga\r'),
(20241, 'br', 'Marcelo', 28, ' D(L)', 174, 75, 28, 2, 2474, 2, 3, 2, 0, 0.6, 84.3, 2, 0.2, 7.44, 2.5, 1.8, 0.5, 0.2, 0.9, 1.1, 0.2, 0, 1.7, 1.1, 0.1, 0.7, 0.8, 1.7, 58.1, 84.3, 1.1, 3.5, 'Real Madrid', 'LaLiga\r'),
(20874, 'hr', 'Luka Modric', 30, ' M(C)', 174, 65, 31, 1, 2629, 2, 4, 5, 0, 1.1, 90.9, 6, 0.3, 7.37, 1.5, 1.9, 0.8, 0, 0.2, 0.7, 0.1, 0, 1.9, 1.4, 0.1, 1.1, 0.7, 1.9, 68.3, 90.9, 0.7, 4.5, 'Real Madrid', 'LaLiga\r'),
(31772, 'de', 'Toni Kroos', 26, ' M(C)', 182, 78, 32, 0, 2745, 1, 10, 3, 0, 0.6, 93.9, 0, 0.3, 7.33, 2, 1.3, 1.1, 0, 0.3, 1.7, 0.1, 0, 1.8, 1.5, 0, 0.4, 0.4, 1.8, 75.8, 93.9, 1.2, 7.3, 'Real Madrid', 'LaLiga\r'),
(71182, 'co', 'James Rodríguez', 24, ' AM(CLR)', 180, 75, 17, 9, 1518, 7, 8, 1, 0, 1.5, 86.9, 2, 0.2, 7.32, 1.3, 0.6, 0.5, 0, 0.1, 1, 0, 0, 2.3, 0.7, 0.2, 0.9, 1, 2.3, 41.4, 86.9, 1.5, 2, 'Real Madrid', 'LaLiga\r'),
(88526, 'br', 'Casemiro', 24, ' DMC', 184, 80, 17, 6, 1526, 1, 3, 7, 0, 0.9, 87.2, 1, 1.9, 7.3, 3.1, 2, 1.7, 0, 1.4, 1.6, 0.4, 0, 0.3, 1.6, 0, 0.4, 0.6, 0.3, 44.4, 87.2, 0, 4.8, 'Real Madrid', 'LaLiga\r'),
(88300, 'br', 'Danilo', 24, ' D(R)', 184, 78, 23, 1, 2044, 2, 5, 6, 0, 0.8, 86, 0, 1.3, 7.27, 2.9, 2.3, 1.5, 0.2, 1.7, 0.7, 0.1, 0, 0.8, 0.8, 0.1, 0.3, 0.4, 0.8, 51.8, 86, 0.5, 2, 'Real Madrid', 'LaLiga\r'),
(10105, 'pt', 'Pepe', 33, ' D(C)', 188, 81, 21, 0, 1887, 1, 1, 5, 0, 0.6, 87.6, 0, 2.7, 7.27, 1.6, 2.5, 0.8, 0.3, 3.4, 0.4, 1, 0, 0.3, 1.1, 0, 0.1, 0.4, 0.3, 54.2, 87.6, 0.1, 2.6, 'Real Madrid', 'LaLiga\r'),
(106883, 'es', 'Daniel Carvajal', 24, ' D(R)', 173, 73, 19, 3, 1638, 0, 4, 6, 0, 0.4, 88, 0, 1, 7.22, 1.5, 1.8, 1.2, 0.3, 1.1, 0.9, 0.3, 0, 1.4, 1.2, 0.1, 0.5, 0.8, 1.4, 45.1, 88, 1.2, 1.6, 'Real Madrid', 'LaLiga\r'),
(144511, 'es', 'Lucas Vázquez', 24, ' AM(R)', 173, 70, 10, 15, 1231, 4, 6, 4, 0, 0.9, 85.8, 1, 0.2, 7.21, 2.1, 1, 0.6, 0, 0.3, 0.6, 0, 0, 1.1, 1.4, 0, 1.3, 1.3, 1.1, 25, 85.8, 0.6, 0.6, 'Real Madrid', 'LaLiga\r'),
(9909, 'es', 'Sergio Ramos', 30, ' D(CR)', 183, 75, 23, 0, 1946, 2, 2, 7, 2, 0.8, 90.3, 0, 1.7, 7.15, 1.5, 3.3, 1.5, 0.3, 3.4, 0.3, 0.9, 0, 0.3, 1.1, 0.2, 0.1, 0.3, 0.3, 55.4, 90.3, 0.1, 3.6, 'Real Madrid', 'LaLiga\r'),
(65901, 'cr', 'Keylor Navas', 29, ' GK', 185, 78, 34, 0, 3060, 0, 0, 0, 0, 0, 63.4, 1, 0.4, 7.12, 0.1, 0.1, 0.1, 0, 0.8, 0, 0, 0, 0, 0.1, 0, 0, 0, 0, 21.1, 63.4, 0, 5.9, 'Real Madrid', 'LaLiga\r'),
(82989, 'es', 'Isco', 24, ' AM(CLR),FW', 176, 74, 21, 10, 1826, 3, 7, 2, 1, 1.3, 89.2, 0, 0.3, 7.09, 1, 0.8, 0.9, 0, 0, 0.8, 0, 0, 1.4, 1.3, 0.2, 1.5, 1.6, 1.4, 38.1, 89.2, 0.7, 1.2, 'Real Madrid', 'LaLiga\r'),
(23154, 'es', 'Kiko Casilla', 29, ' GK', 191, 84, 4, 0, 360, 0, 0, 0, 0, 0, 60.8, 0, 0, 6.99, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18.5, 60.8, 0, 2.8, 'Real Madrid', 'LaLiga\r'),
(106875, 'es', 'Nacho', 26, ' D(CLR)', 179, 75, 12, 4, 1153, 0, 0, 5, 0, 0.3, 89.8, 0, 1.6, 6.98, 1.4, 2.3, 1.1, 0.6, 2.2, 0.3, 0.6, 0, 0.2, 0.9, 0.1, 0.2, 0.5, 0.2, 33.2, 89.8, 0.1, 1.1, 'Real Madrid', 'LaLiga\r'),
(93206, 'fr', 'Raphael Varane', 23, ' D(C)', 191, 78, 23, 3, 2182, 0, 0, 4, 1, 0.5, 88.2, 0, 1.9, 6.9, 1.5, 1.7, 0.9, 0.4, 4.7, 0.3, 0.8, 0, 0, 0.3, 0, 0.1, 0.3, 0, 47.3, 88.2, 0, 3.7, 'Real Madrid', 'LaLiga\r'),
(11104, 'es', 'Álvaro Arbeloa', 33, ' D(LR)', 184, 79, 2, 4, 258, 0, 0, 1, 0, 0, 85, 0, 2, 6.73, 2, 1.5, 1, 0.2, 1.3, 0.5, 0.2, 0, 0.2, 0.2, 0, 0.2, 0.8, 0.2, 22.2, 85, 0, 0.3, 'Real Madrid', 'LaLiga\r'),
(106028, 'es', 'Jesé', 23, ' AM(LR)', 178, 73, 7, 21, 827, 5, 6, 0, 0, 0.8, 80.7, 0, 0.1, 6.71, 0.5, 0.3, 0.4, 0, 0, 0.2, 0, 0, 0.8, 0.4, 0, 0.4, 0.5, 0.8, 12.8, 80.7, 0.3, 0, 'Real Madrid', 'LaLiga\r'),
(110297, 'ru', 'Denis Cheryshev', 25, ' AM(L)', 179, 74, 0, 2, 33, 0, 1, 0, 0, 0.5, 81, 0, 0, 6.58, 1, 1, 2.5, 0, 0, 1, 0.5, 0, 0.5, 0.5, 0, 1, 0.5, 0.5, 10.5, 81, 0, 0.5, 'Real Madrid', 'LaLiga\r'),
(93894, 'hr', 'Mateo Kovacic', 22, ' M(CL)', 181, 63, 8, 17, 1030, 0, 2, 4, 1, 0.4, 90.5, 0, 0.1, 6.5, 1.5, 0.6, 0.6, 0, 0.2, 0.3, 0.1, 0, 0.7, 0.6, 0, 0.6, 0.7, 0.7, 30.2, 90.5, 0, 0.7, 'Real Madrid', 'LaLiga\r'),
(278721, 'es', 'Borja Mayoral', 19, ' Forward', 181, 68, 3, 3, 283, 0, 0, 0, 0, 0.5, 78.9, 0, 0.8, 6.36, 0.5, 0, 0.7, 0, 0, 0.3, 0, 0, 0.2, 0.5, 0.3, 1, 0.5, 0.2, 15, 78.9, 0, 0.2, 'Real Madrid', 'LaLiga\r'),
(254582, 'es', 'Marcos Llorente', 21, ' Midfielder', 180, 71, 0, 2, 23, 0, 0, 0, 0, 0, 95.2, 0, 0, 6.19, 0, 0.5, 0, 0, 0, 0, 0, 0, 0.5, 0, 0, 0, 0, 0.5, 10.5, 95.2, 0, 0, 'Real Madrid', 'LaLiga\r'),
(87094, 'es', 'Asier Illarramendi', 26, ' M(C)', 179, 76, 32, 1, 2847, 1, 1, 15, 0, 0.7, 81, 2, 1.8, 7.27, 3.1, 3.5, 1.3, 0.1, 1.5, 1.1, 0.2, 0, 0.9, 2, 0, 1.1, 0.9, 0.9, 52.7, 81, 0.6, 4.4, 'Real Sociedad', 'LaLiga\r'),
(86235, 'mx', 'Diego Reyes', 23, ' D(C),DMC', 189, 66, 26, 1, 2313, 2, 0, 3, 1, 0.4, 81.7, 2, 2.8, 7.24, 2.1, 3.9, 0.9, 0.6, 3.7, 0.2, 0.7, 1, 0.3, 0.5, 0.1, 0.3, 0.4, 0.3, 38.8, 81.7, 0.2, 3.7, 'Real Sociedad', 'LaLiga\r'),
(56057, 'es', 'Yuri', 26, ' D(L)', 181, 78, 21, 0, 1849, 0, 4, 10, 0, 0.7, 76.5, 2, 2.7, 7.22, 2.3, 3.9, 1.2, 0.6, 2.6, 0.6, 0.2, 0, 0.7, 1, 0.2, 0.7, 1.1, 0.7, 40.1, 76.5, 0.7, 1.2, 'Real Sociedad', 'LaLiga\r'),
(31096, 'es', 'David Zurutuza', 29, ' M(CL)', 184, 78, 14, 2, 1130, 1, 3, 1, 0, 1.1, 78.5, 0, 1.9, 7.13, 2.3, 1.9, 1.2, 0, 0.9, 0.6, 0.2, 0, 0.9, 2.2, 0.1, 2.2, 1.6, 0.9, 34.3, 78.5, 0.3, 1, 'Real Sociedad', 'LaLiga\r'),
(14203, 'es', 'Imanol Agirretxe', 29, ' FW', 187, 77, 14, 2, 1174, 13, 0, 0, 0, 2.9, 66.2, 3, 1.8, 7.06, 0.3, 0.3, 0.6, 0, 0.5, 0.5, 0.1, 0, 0.2, 1.7, 0.6, 1.2, 1.5, 0.2, 20.7, 66.2, 0.1, 0.4, 'Real Sociedad', 'LaLiga\r'),
(106885, 'es', 'Iñigo Martínez', 25, ' D(C)', 181, 77, 30, 0, 2700, 1, 0, 7, 0, 0.5, 78.5, 1, 2.3, 6.95, 1.9, 3.1, 1.1, 0.8, 4.7, 0.5, 0.6, 0, 0.1, 0.9, 0.1, 0.2, 0.4, 0.1, 47, 78.5, 0, 4.4, 'Real Sociedad', 'LaLiga\r'),
(256864, 'es', 'Aritz Elustondo', 22, ' D(CR)', 182, 72, 30, 1, 2602, 1, 0, 8, 0, 0.5, 78.1, 0, 1.7, 6.94, 2.4, 2.6, 1, 0.6, 3.2, 0.8, 0.3, 0, 0.3, 0.8, 0.1, 0.4, 0.5, 0.3, 36.3, 78.1, 0.5, 1.8, 'Real Sociedad', 'LaLiga\r'),
(33462, 'es', 'Carlos Martínez', 30, ' D(R)', 189, 79, 6, 4, 536, 0, 2, 2, 0, 0.3, 78.8, 1, 1.3, 6.92, 1.9, 2.5, 0.5, 0.5, 2.1, 0.2, 0.2, 0, 0.6, 0.6, 0, 0.3, 0.6, 0.6, 26.9, 78.8, 0.3, 1.2, 'Real Sociedad', 'LaLiga\r'),
(23475, 'es', 'Alberto De la Bella', 30, ' D(L)', 182, 82, 14, 1, 1248, 0, 2, 5, 0, 0.3, 76.7, 1, 1.3, 6.89, 2.3, 2.5, 1.3, 0.3, 2.8, 0.4, 0.1, 0, 0.7, 1, 0.1, 0.2, 0.7, 0.7, 38, 76.7, 0.7, 1.9, 'Real Sociedad', 'LaLiga\r'),
(14200, 'es', 'Mikel González', 30, ' D(C)', 190, 79, 17, 2, 1551, 0, 0, 1, 0, 0.3, 78.5, 0, 1.3, 6.88, 1.3, 2.8, 0.9, 1, 4.6, 0.7, 0.7, 0, 0.1, 0.2, 0, 0.1, 0.4, 0.1, 28.6, 78.5, 0.1, 2, 'Real Sociedad', 'LaLiga\r'),
(25165, 'mx', 'Carlos Vela', 27, ' M(CLR),FW', 177, 75, 32, 3, 2765, 5, 4, 5, 0, 1.7, 79.3, 1, 0.5, 6.81, 0.8, 0.3, 1, 0, 0.1, 0.6, 0, 0, 1.4, 2.3, 0.7, 1.8, 1.7, 1.4, 29.9, 79.3, 0.8, 1.6, 'Real Sociedad', 'LaLiga\r'),
(135911, 'es', 'Zaldúa', 23, ' D(R)', 176, 71, 10, 3, 918, 0, 0, 5, 0, 0.2, 69.5, 0, 1.4, 6.79, 2.4, 1.8, 1.6, 0.4, 3.5, 0.9, 0.2, 0, 0.3, 1.7, 0, 0.2, 0.5, 0.3, 23.9, 69.5, 0.6, 2.1, 'Real Sociedad', 'LaLiga\r'),
(106887, 'es', 'Rubén Pardo', 23, ' DMC', 182, 68, 19, 9, 1788, 0, 7, 7, 0, 1.3, 81.6, 0, 0.6, 6.79, 0.9, 1.3, 0.7, 0, 0.2, 0.4, 0.1, 0, 1.6, 0.3, 0, 0.3, 0.7, 1.6, 36.8, 81.6, 1.6, 3.6, 'Real Sociedad', 'LaLiga\r'),
(298839, 'es', 'Mikel Oyarzabal', 19, ' AM(L)', 0, 0, 16, 6, 1501, 6, 1, 1, 0, 1.4, 71.6, 1, 1, 6.77, 0.9, 0.8, 0.7, 0, 0.4, 0.6, 0, 0, 0.9, 1.5, 0.1, 2.1, 1.5, 0.9, 21.1, 71.6, 0.2, 0.5, 'Real Sociedad', 'LaLiga\r'),
(9407, 'es', 'Xabi Prieto', 32, ' M(CLR)', 186, 76, 27, 9, 2380, 3, 3, 3, 0, 0.5, 77.5, 1, 1.7, 6.75, 1, 0.9, 0.4, 0, 0.9, 0.4, 0.1, 0, 1, 1.6, 0.2, 0.9, 1.1, 1, 33.6, 77.5, 0.6, 1.1, 'Real Sociedad', 'LaLiga\r'),
(23758, 'es', 'Esteban Granero', 28, ' M(C)', 179, 77, 9, 6, 837, 0, 0, 7, 1, 0.4, 83.8, 0, 0.5, 6.72, 2.3, 1.9, 1.2, 0, 0.4, 0.5, 0.2, 0, 0.9, 1.2, 0, 0.8, 0.5, 0.9, 31.7, 83.8, 0.9, 1.7, 'Real Sociedad', 'LaLiga\r'),
(58226, 'es', 'Markel Bergara', 30, ' M(C)', 181, 78, 15, 5, 1357, 1, 0, 6, 1, 0.6, 81.8, 0, 1.5, 6.7, 2.2, 2.7, 1.7, 0, 0.9, 0.8, 0.2, 0, 0.3, 1, 0, 0.2, 0.4, 0.3, 27.3, 81.8, 0.1, 1.3, 'Real Sociedad', 'LaLiga\r'),
(125375, 'ar', 'Gerónimo Rulli', 24, ' GK', 189, 80, 36, 0, 3192, 0, 0, 5, 1, 0, 58.5, 3, 0.2, 6.66, 0.1, 0.1, 0.1, 0, 0.7, 0.1, 0, 0, 0, 0.2, 0, 0, 0, 0, 30, 58.5, 0, 9.1, 'Real Sociedad', 'LaLiga\r'),
(40992, 'br', 'Jonathas', 27, ' FW', 190, 83, 17, 10, 1603, 7, 2, 6, 1, 2.1, 68.6, 1, 1.9, 6.65, 0.5, 0.1, 1.3, 0, 0.8, 0.1, 0, 0, 0.7, 1.3, 0.6, 1.4, 1.7, 0.7, 13.4, 68.6, 0, 0.4, 'Real Sociedad', 'LaLiga\r'),
(117980, 'pt', 'Bruma', 21, ' AM(LR)', 173, 70, 14, 18, 1454, 2, 1, 0, 0, 1.4, 79.9, 0, 0.1, 6.56, 0.5, 0.3, 0.4, 0, 0.1, 0.5, 0, 0, 0.8, 0.8, 0.2, 0.9, 1.4, 0.8, 19, 79.9, 0.4, 0.1, 'Real Sociedad', 'LaLiga\r'),
(25945, 'uy', 'Gonzalo Castro', 31, ' AM(LR)', 176, 70, 1, 7, 155, 0, 3, 0, 0, 0.1, 71, 0, 0.1, 6.44, 0.4, 0.3, 0.3, 0, 0.1, 0, 0, 0, 1, 0.5, 0.3, 0.3, 1, 1, 8.6, 71, 0.8, 0.3, 'Real Sociedad', 'LaLiga\r'),
(312690, 'es', 'Jon Bautista', 20, ' Forward', 0, 0, 1, 3, 118, 1, 0, 2, 0, 1, 60.6, 0, 1.3, 6.41, 0.5, 0.3, 1.3, 0, 0.5, 0.5, 0, 0, 0.5, 0.8, 0, 0.5, 1, 0.5, 8.3, 60.6, 0.3, 0, 'Real Sociedad', 'LaLiga\r'),
(271406, '', 'Capilla', 21, ' Midfielder', 175, 75, 0, 1, 8, 0, 0, 0, 0, 1, 66.7, 0, 0, 6.38, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 66.7, 0, 0, 'Real Sociedad', 'LaLiga\r'),
(44189, 'es', 'Sergio Canales', 25, ' AM(CLR)', 179, 65, 11, 5, 900, 0, 0, 3, 0, 1.5, 82.8, 0, 0.1, 6.31, 0.8, 0.3, 1.1, 0, 0.3, 0.5, 0, 0, 0.7, 0.9, 0.2, 0.5, 0.8, 0.7, 28.6, 82.8, 0.8, 0.4, 'Real Sociedad', 'LaLiga\r'),
(121839, 'es', 'Héctor', 25, ' D(L)', 173, 71, 4, 9, 396, 0, 1, 1, 0, 0.3, 75.3, 0, 0.4, 6.28, 0.6, 0.9, 0.2, 0.2, 1.2, 0.3, 0.1, 0, 0.1, 0.7, 0, 0.2, 0.5, 0.1, 11.5, 75.3, 0.2, 0.4, 'Real Sociedad', 'LaLiga\r'),
(315566, 'es', 'Igor Zubeldia', 19, ' Midfielder', 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 80, 0, 0, 6.08, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 5, 80, 0, 0, 'Real Sociedad', 'LaLiga\r'),
(33960, 'es', 'Oier', 26, ' GK', 189, 85, 2, 1, 227, 0, 0, 1, 0, 0, 48.7, 0, 0, 6.05, 0, 0, 0.3, 0, 0, 0, 0, 0, 0, 0.3, 0, 0, 0, 0, 25.3, 48.7, 0, 7, 'Real Sociedad', 'LaLiga\r'),
(67424, 'pl', 'Grzegorz Krychowiak', 26, ' DMC', 186, 85, 25, 1, 2271, 0, 0, 6, 0, 0.8, 84.3, 3, 2.9, 7.23, 2.5, 4.5, 1.8, 0, 3, 0.5, 0.6, 2, 0.2, 2, 0.1, 0.5, 0.8, 0.2, 45.9, 84.3, 0, 3, 'Sevilla', 'LaLiga\r'),
(33724, 'ar', 'Éver Banega', 27, ' M(C)', 174, 71, 20, 5, 1726, 5, 2, 6, 1, 1.6, 82.9, 4, 0.2, 7.21, 2.1, 0.8, 1, 0, 0.2, 1.1, 0.1, 0, 1.8, 1.8, 0.2, 2.5, 1.2, 1.8, 46.9, 82.9, 1.2, 4.4, 'Sevilla', 'LaLiga\r'),
(40771, 'br', 'Mariano', 29, ' D(R),M(R)', 177, 69, 18, 5, 1685, 0, 3, 6, 0, 0.4, 75, 1, 0.7, 6.95, 2.3, 2.1, 1, 0.3, 1.3, 1, 0.3, 0, 0.9, 0.6, 0.3, 0.2, 0.7, 0.9, 24.6, 75, 1.1, 1.3, 'Sevilla', 'LaLiga\r'),
(89856, 'es', 'Sergio Escudero', 26, ' D(L)', 176, 72, 13, 2, 1173, 1, 1, 2, 0, 0.8, 78.4, 1, 1.3, 6.91, 2.3, 1.7, 1.6, 0.2, 1.5, 0.8, 0.1, 0, 0.9, 1.5, 0, 0.5, 0.9, 0.9, 30.2, 78.4, 0.7, 0.9, 'Sevilla', 'LaLiga\r'),
(58467, 'ua', 'Yevhen Konoplyanka', 26, ' AM(L)', 176, 69, 15, 17, 1613, 4, 4, 4, 0, 1.6, 79.8, 2, 0.1, 6.89, 0.6, 0.7, 0.7, 0, 0.2, 0.5, 0, 0, 1.1, 0.8, 0, 0.9, 0.8, 1.1, 15.6, 79.8, 1.4, 0.4, 'Sevilla', 'LaLiga\r'),
(19453, 'fr', 'Kevin Gameiro', 29, ' FW', 178, 72, 22, 9, 2084, 16, 4, 2, 0, 2.3, 74.4, 2, 0.5, 6.86, 0.7, 0.3, 0.3, 0, 0.4, 0.4, 0, 0, 0.8, 0.6, 0.8, 1.1, 1.4, 0.8, 13.2, 74.4, 0.1, 0.1, 'Sevilla', 'LaLiga\r'),
(39935, 'fr', 'Steven N\'Zonzi', 27, ' M(C)', 190, 75, 22, 6, 1847, 3, 1, 2, 1, 0.7, 79.9, 2, 2.5, 6.86, 1.4, 1.5, 1.1, 0, 1.3, 0.2, 0.2, 0, 0.4, 0.5, 0, 0.5, 0.3, 0.4, 33, 79.9, 0.2, 1.6, 'Sevilla', 'LaLiga\r'),
(91430, 'es', 'Vitolo', 26, ' AM(LR)', 184, 79, 23, 5, 2053, 2, 4, 4, 1, 0.9, 75, 0, 0.6, 6.84, 1.6, 0.6, 1.8, 0, 0.3, 1.4, 0.2, 0, 1.3, 2, 0.3, 1.1, 1.4, 1.3, 27.2, 75, 0.3, 0.4, 'Sevilla', 'LaLiga\r'),
(109338, 'es', 'Sergio Rico', 22, ' GK', 195, 90, 34, 0, 3060, 0, 0, 2, 0, 0, 60.8, 2, 0.4, 6.8, 0, 0.2, 0, 0, 1.1, 0.1, 0, 0, 0, 0.1, 0, 0, 0, 0, 25.1, 60.8, 0, 7.1, 'Sevilla', 'LaLiga\r'),
(43824, 'pt', 'Daniel Carriço', 27, ' D(C),DMC', 180, 80, 11, 3, 1050, 1, 1, 4, 0, 0.5, 80.2, 0, 1.8, 6.78, 1.2, 1.9, 1, 0.6, 3.6, 0.5, 0.4, 0, 0.1, 0.4, 0, 0.4, 0.5, 0.1, 35, 80.2, 0, 3.3, 'Sevilla', 'LaLiga\r'),
(19193, 'ar', 'Nico Pareja', 32, ' D(C)', 181, 74, 1, 1, 123, 0, 0, 1, 0, 0, 73, 0, 2.5, 6.77, 1.5, 3, 1.5, 0, 4, 0, 0, 0, 0.5, 2, 0, 0.5, 0, 0.5, 44.5, 73, 0, 6.5, 'Sevilla', 'LaLiga\r'),
(316957, 'es', 'Diego González', 21, ' Defender', 176, 72, 1, 1, 107, 1, 0, 0, 0, 1, 91.1, 0, 0.5, 6.73, 1.5, 1, 0.5, 0, 1.5, 0.5, 0.5, 0, 0, 0.5, 0, 0, 0, 0, 22.5, 91.1, 0, 1.5, 'Sevilla', 'LaLiga\r'),
(34052, 'es', 'Vicente Iborra', 28, ' M(C)', 195, 88, 21, 8, 1741, 7, 2, 8, 1, 1.1, 67, 0, 2.6, 6.72, 0.9, 1, 1.4, 0, 1, 0.6, 0.4, 0, 0.4, 0.8, 0.3, 0.3, 0.7, 0.4, 21.2, 67, 0, 0.7, 'Sevilla', 'LaLiga\r'),
(10623, 'dk', 'Michael Krohn-Dehli', 33, ' M(CL)', 170, 70, 16, 11, 1658, 1, 3, 3, 0, 0.9, 84.4, 0, 0.4, 6.7, 1, 0.7, 1, 0, 0.3, 0.4, 0.2, 0, 1.3, 0.6, 0.2, 1, 0.8, 1.3, 29.9, 84.4, 1, 2, 'Sevilla', 'LaLiga\r'),
(44486, 'es', 'Coke', 29, ' D(R),M(R)', 176, 72, 21, 1, 1741, 1, 1, 3, 1, 1.4, 73, 1, 1.4, 6.7, 1.8, 1.8, 1.5, 0.1, 1.6, 1.5, 0.5, 0, 0.5, 1.4, 0.4, 0.7, 0.8, 0.5, 28.1, 73, 0.1, 1.3, 'Sevilla', 'LaLiga\r'),
(29582, 'fr', 'Benoît Trémoulinas', 30, ' D(L),M(L)', 173, 65, 24, 0, 2159, 0, 3, 3, 0, 0.5, 76.4, 0, 1, 6.69, 1, 1.8, 0.5, 0.2, 1.5, 0.3, 0.3, 0, 0.8, 1.1, 0.3, 0.3, 0.5, 0.8, 34.8, 76.4, 0.8, 1.7, 'Sevilla', 'LaLiga\r'),
(26877, 'fr', 'Adil Rami', 30, ' D(C)', 190, 82, 28, 0, 2428, 0, 1, 7, 1, 0.4, 79.7, 0, 1.8, 6.61, 0.6, 1.6, 1, 0.6, 3.9, 0.2, 0.5, 0, 0.1, 0.5, 0.1, 0.1, 0.4, 0.1, 37, 79.7, 0, 4.2, 'Sevilla', 'LaLiga\r'),
(78892, 'it', 'Marco Andreolli', 30, ' D(C)', 187, 81, 7, 0, 555, 0, 0, 2, 0, 0.4, 84.4, 0, 1.7, 6.59, 0.7, 1.6, 0.6, 0.4, 4.6, 0.1, 1, 0, 0.3, 0.6, 0, 0.1, 0.1, 0.3, 26.6, 84.4, 0, 1.7, 'Sevilla', 'LaLiga\r'),
(44417, 'fr', 'Timothée Kolodziejczak', 24, ' D(CL)', 185, 75, 26, 3, 2384, 0, 0, 6, 1, 0.3, 82.5, 0, 0.8, 6.59, 1.4, 2, 0.9, 0.6, 3, 0.2, 0.2, 0, 0.1, 0.3, 0.1, 0.2, 0.4, 0.1, 40.3, 82.5, 0.1, 3.7, 'Sevilla', 'LaLiga\r'),
(13361, 'es', 'Fernando Llorente', 31, ' FW', 195, 90, 14, 9, 1162, 4, 3, 4, 0, 1.3, 63.7, 0, 2.8, 6.59, 0.3, 0.2, 1.6, 0, 0.7, 0.2, 0, 0, 0.7, 0.3, 0.2, 0.9, 1.3, 0.7, 16.9, 63.7, 0.1, 0.3, 'Sevilla', 'LaLiga\r'),
(33966, 'pt', 'Beto', 34, ' GK', 182, 81, 4, 0, 360, 0, 0, 1, 0, 0, 67.3, 0, 1, 6.58, 0, 0, 0, 0, 1.3, 0, 0, 0, 0, 0.5, 0, 0, 0, 0, 26.8, 67.3, 0, 9, 'Sevilla', 'LaLiga\r'),
(110911, 'uy', 'Sebastián Cristóforo', 22, ' DMC', 173, 70, 17, 4, 1452, 0, 1, 5, 0, 0.1, 86.2, 0, 0.3, 6.55, 2.9, 1.8, 2.1, 0, 0.6, 1.8, 0.4, 0, 0.3, 2.1, 0, 0.9, 1, 0.3, 38.5, 86.2, 0, 1.9, 'Sevilla', 'LaLiga\r'),
(6176, 'es', 'Reyes', 32, ' M(LR)', 176, 72, 14, 10, 1186, 1, 1, 6, 0, 0.9, 66.2, 0, 0.7, 6.53, 0.8, 0.5, 0.9, 0, 0.2, 0.9, 0.1, 0, 1.3, 1.6, 0.2, 1.4, 1.1, 1.3, 21.7, 66.2, 0.8, 0.9, 'Sevilla', 'LaLiga\r'),
(316152, '', 'Curro', 20, ' Midfielder', 177, 67, 3, 1, 301, 0, 1, 3, 0, 0.8, 69.7, 0, 1.8, 6.4, 1, 0.8, 2.3, 0, 0.3, 0, 0, 0, 1, 1.5, 0, 2.5, 1.3, 1, 27.3, 69.7, 0.3, 0.3, 'Sevilla', 'LaLiga\r'),
(70141, 'it', 'Ciro Immobile', 26, ' FW', 181, 85, 4, 4, 332, 2, 0, 2, 0, 1.8, 63.5, 0, 0.5, 6.37, 0.4, 0, 1.1, 0, 0.8, 0.3, 0, 0, 0.1, 0.6, 1.1, 1.1, 0.8, 0.1, 7.9, 63.5, 0, 0.1, 'Sevilla', 'LaLiga\r'),
(149123, '', 'Cotán', 20, ' Midfielder', 176, 67, 1, 0, 90, 0, 0, 0, 0, 0, 87, 0, 1, 6.34, 1, 2, 3, 0, 0, 3, 0, 0, 1, 2, 0, 1, 0, 1, 46, 87, 0, 7, 'Sevilla', 'LaLiga\r'),
(96207, 'pt', 'Diogo Figueiras', 25, ' D(LR),M(R)', 168, 64, 4, 0, 279, 0, 0, 2, 0, 0.5, 73.5, 0, 0.5, 6.32, 3.3, 1, 0.8, 0.5, 1.8, 1, 0, 0, 0.8, 1, 0.5, 1, 1.5, 0.8, 24.5, 73.5, 0.5, 1.3, 'Sevilla', 'LaLiga\r'),
(29908, 'ar', 'Federico Fazio', 29, ' D(C)', 195, 85, 4, 0, 295, 0, 0, 0, 1, 0.3, 67.2, 0, 3.5, 6.32, 1, 1.3, 1.3, 0.5, 3.3, 0.3, 0.5, 0, 0.3, 0, 0.3, 0.3, 0.3, 0.3, 29, 67.2, 0, 4, 'Sevilla', 'LaLiga\r'),
(70291, 'fr', 'Gaël Kakuta', 25, ' M(LR)', 172, 65, 1, 1, 47, 0, 0, 1, 0, 0, 66.7, 0, 0, 6.3, 1, 0, 1, 0, 0, 0.5, 0.5, 0, 0, 0, 0, 0, 1.5, 0, 6, 66.7, 0, 0.5, 'Sevilla', 'LaLiga\r'),
(317642, 'es', 'David Carmona', 19, ' Defender', 0, 0, 1, 0, 90, 0, 0, 0, 0, 1, 62.5, 0, 0, 6.22, 9, 2, 1, 0, 2, 1, 0, 0, 0, 0, 0, 1, 5, 0, 24, 62.5, 0, 0, 'Sevilla', 'LaLiga\r'),
(238931, 'es', 'Juan Muñoz', 20, ' Forward', 185, 80, 3, 5, 301, 1, 0, 0, 0, 0.8, 70.6, 0, 0.1, 6.14, 0.5, 0, 0.6, 0, 0, 0, 0, 0, 0, 0.1, 0.1, 1.1, 0.8, 0, 4.3, 70.6, 0.1, 0.4, 'Sevilla', 'LaLiga\r'),
(316956, '', 'Matos', 21, ' Defender', 0, 0, 1, 0, 90, 0, 0, 0, 0, 0, 82.9, 0, 0, 6.01, 2, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 35, 82.9, 0, 1, 'Sevilla', 'LaLiga\r'),
(140812, 'es', 'Carlos Fernández', 20, ' Forward', 188, 77, 0, 1, 27, 0, 0, 0, 0, 0, 88.9, 0, 1, 5.99, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 9, 88.9, 0, 0, 'Sevilla', 'LaLiga\r'),
(67327, 'co', 'Bernardo', 26, ' D(C)', 192, 84, 16, 0, 1338, 1, 0, 5, 1, 0.8, 69.6, 1, 4, 7.09, 1.5, 2.6, 2.1, 0.4, 8.5, 0.6, 1.1, 0, 0.3, 0.6, 0.3, 0.2, 0.3, 0.3, 33.1, 69.6, 0, 3.5, 'Sporting Gijon', 'LaLiga\r'),
(31685, 'es', 'Alberto García', 31, ' GK', 182, 77, 6, 0, 540, 0, 0, 0, 0, 0, 43.5, 1, 0, 7.05, 0.2, 0.2, 0, 0, 0.7, 0.2, 0, 0, 0, 0.2, 0, 0, 0, 0, 29.5, 43.5, 0, 7.3, 'Sporting Gijon', 'LaLiga\r'),
(86826, 'es', 'Sergio Álvarez', 24, ' M(C)', 182, 72, 26, 1, 2189, 2, 2, 7, 1, 0.2, 75.3, 1, 2.3, 7.01, 3.9, 2.1, 1.9, 0.1, 1.2, 1.6, 0.2, 0, 0.6, 1.3, 0, 0.8, 0.6, 0.6, 39.6, 75.3, 0, 1.8, 'Sporting Gijon', 'LaLiga\r'),
(12381, 'es', 'Carlos Carmona', 28, ' AM(R)', 177, 72, 16, 4, 1224, 2, 3, 4, 0, 0.7, 73.8, 0, 1, 6.82, 2.6, 0.9, 1.5, 0.1, 0.2, 1.8, 0.2, 0, 1.3, 1, 0.2, 1, 1.6, 1.3, 27, 73.8, 0.5, 0.5, 'Sporting Gijon', 'LaLiga\r'),
(294139, '', 'Luis Hernández', 27, ' D(C)', 182, 74, 36, 0, 3224, 0, 0, 4, 1, 0.3, 81.3, 0, 1.2, 6.82, 1.1, 3.9, 0.6, 0.7, 5.1, 0.2, 0.4, 1, 0.4, 0.5, 0.1, 0.2, 0.3, 0.4, 41.1, 81.3, 0.1, 2.7, 'Sporting Gijon', 'LaLiga\r'),
(294140, '', 'Jony', 24, ' AM(L)', 179, 80, 33, 3, 2873, 5, 7, 4, 0, 1.5, 67.4, 4, 0.3, 6.8, 1, 1.1, 0.8, 0, 0.3, 0.8, 0.1, 0, 1.3, 1.5, 0.2, 1.5, 1.7, 1.3, 23.9, 67.4, 1.1, 0.8, 'Sporting Gijon', 'LaLiga\r'),
(294145, 'es', 'Jorge Meré', 19, ' D(C)', 179, 68, 24, 1, 2174, 0, 0, 6, 0, 0.3, 76.9, 0, 1.1, 6.77, 2, 2.8, 0.7, 0.6, 4, 0.7, 0.6, 0, 0, 0.4, 0, 0.2, 0.3, 0, 31.3, 76.9, 0, 2.2, 'Sporting Gijon', 'LaLiga\r'),
(84868, 'ba', 'Ognjen Vranjes', 26, ' D(CR)', 186, 76, 10, 1, 916, 0, 0, 6, 1, 0, 68.3, 1, 2.1, 6.76, 3.6, 3.4, 2.5, 0.2, 3.8, 1.2, 0.4, 0, 0.1, 1.7, 0, 0.5, 0.4, 0.1, 24.6, 68.3, 0, 1.1, 'Sporting Gijon', 'LaLiga\r'),
(67302, 'es', 'Alberto Lora', 29, ' D(R)', 168, 67, 26, 5, 2411, 0, 4, 7, 0, 0.2, 75.8, 0, 0.8, 6.74, 2.2, 2.4, 1, 0.2, 2.2, 1, 0.1, 0, 0.7, 0.8, 0.1, 0.3, 0.6, 0.7, 34.3, 75.8, 0.4, 1.5, 'Sporting Gijon', 'LaLiga\r'),
(135057, 'py', 'Antonio Sanabria', 20, ' FW', 180, 73, 27, 2, 2265, 11, 1, 4, 0, 1.7, 71.6, 3, 2.1, 6.72, 0.6, 0.3, 1.4, 0, 0.5, 0.4, 0, 0, 0.4, 1.2, 0.8, 1.5, 2.7, 0.4, 20.4, 71.6, 0.1, 0.5, 'Sporting Gijon', 'LaLiga\r'),
(11188, 'es', 'Iván Cuéllar', 32, ' GK', 187, 82, 32, 0, 2880, 0, 2, 4, 0, 0, 34.2, 3, 0.3, 6.68, 0, 0.1, 0, 0, 1.5, 0.1, 0, 0, 0.1, 0.3, 0, 0, 0.1, 0.1, 27, 34.2, 0, 6.6, 'Sporting Gijon', 'LaLiga\r'),
(120151, 'hr', 'Alen Halilovic', 20, ' AM(CR)', 169, 61, 24, 12, 2349, 3, 5, 6, 0, 1.6, 78.7, 1, 0.1, 6.67, 0.6, 0.3, 0.4, 0, 0.1, 0.6, 0, 0, 0.8, 1.3, 0.1, 1.2, 0.6, 0.8, 22.3, 78.7, 0.4, 1.9, 'Sporting Gijon', 'LaLiga\r'),
(94832, 'es', 'Isma López', 26, ' D(L),M(L)', 180, 76, 28, 3, 2502, 2, 0, 8, 0, 0.5, 71.5, 0, 0.4, 6.64, 2.4, 1.3, 0.6, 0.2, 1.9, 1.3, 0.2, 0, 0.5, 0.7, 0.1, 0.5, 0.7, 0.5, 31.5, 71.5, 0.4, 1.8, 'Sporting Gijon', 'LaLiga\r'),
(106892, 'es', 'Álex Menéndez', 24, ' M(L)', 181, 67, 11, 10, 1033, 2, 1, 1, 0, 0.8, 65.7, 0, 0.8, 6.59, 1.5, 0.9, 0.5, 0, 1.3, 0.6, 0.1, 0, 0.6, 0.2, 0.2, 0.7, 0.8, 0.6, 14.1, 65.7, 0.5, 0.5, 'Sporting Gijon', 'LaLiga\r'),
(115996, 'es', 'Omar Mascarell', 23, ' DMC', 180, 70, 20, 6, 1770, 0, 1, 5, 0, 0.4, 75.5, 0, 1.6, 6.55, 1.8, 2.5, 1.3, 0, 1.7, 1.3, 0.4, 0, 0.4, 0.3, 0, 0.7, 0.7, 0.4, 31.3, 75.5, 0.1, 2.9, 'Sporting Gijon', 'LaLiga\r'),
(294142, '', 'Rachid', 23, ' DMC', 190, 76, 11, 7, 1056, 0, 2, 2, 0, 0.3, 78.4, 0, 0.3, 6.54, 2, 1.3, 1.5, 0, 0.4, 0.9, 0.2, 0, 0.7, 0.9, 0, 0.8, 0.8, 0.7, 24.9, 78.4, 0.2, 1.8, 'Sporting Gijon', 'LaLiga\r'),
(87329, 'es', 'Guerrero', 25, ' FW', 180, 79, 13, 10, 1091, 2, 1, 2, 0, 1, 70.7, 0, 1, 6.43, 1, 0.4, 1.8, 0, 0.3, 0.3, 0, 0, 0.5, 0.5, 0.3, 0.5, 1.2, 0.5, 11.7, 70.7, 0, 0.3, 'Sporting Gijon', 'LaLiga\r'),
(294143, 'es', 'Pablo Pérez', 22, ' AM(R)', 187, 75, 9, 9, 747, 0, 1, 4, 0, 1, 63.2, 0, 2.3, 6.43, 1.1, 0.6, 1, 0, 0.6, 0.5, 0, 0, 0.3, 0.5, 0.1, 0.9, 0.6, 0.3, 14.3, 63.2, 0.1, 0.2, 'Sporting Gijon', 'LaLiga\r'),
(32175, 'es', 'Roberto Canella', 28, ' D(L)', 180, 70, 8, 1, 705, 0, 0, 4, 0, 0, 75.1, 0, 0.3, 6.42, 2.6, 2.9, 1.1, 0, 1.7, 0.3, 0.2, 0, 0.2, 1, 0, 0.1, 0.6, 0.2, 25.4, 75.1, 0, 1.8, 'Sporting Gijon', 'LaLiga\r'),
(96138, 'es', 'Nacho Cases', 28, ' M(C)', 175, 64, 21, 3, 1966, 1, 0, 10, 2, 0.9, 84.8, 0, 0.9, 6.41, 1.8, 1.5, 1.6, 0, 0.8, 1, 0.1, 0, 0.4, 1, 0, 0.8, 0.7, 0.4, 38.3, 84.8, 0, 1.9, 'Sporting Gijon', 'LaLiga\r'),
(294144, 'es', 'Carlos Castro', 21, ' FW', 176, 68, 7, 18, 1013, 7, 0, 1, 0, 1, 81.2, 0, 0.2, 6.37, 0.3, 0, 0.5, 0, 0.2, 0.2, 0, 0, 0.2, 0.8, 0.2, 1.2, 1.1, 0.2, 7.6, 81.2, 0, 0, 'Sporting Gijon', 'LaLiga\r'),
(300591, '', 'Dani Ndi', 20, ' AM(C)', 178, 76, 10, 5, 753, 1, 0, 2, 0, 0.9, 70, 0, 0.5, 6.33, 0.6, 0.5, 1, 0, 0.1, 0, 0, 0, 0.5, 2.4, 0.9, 1.6, 2.3, 0.5, 13.8, 70, 0.1, 0.3, 'Sporting Gijon', 'LaLiga\r'),
(297229, '', 'Guitián', 25, ' Defender', 182, 74, 1, 0, 90, 0, 0, 1, 0, 0, 57.7, 0, 1, 6.28, 2, 2, 1, 1, 7, 0, 0, 0, 0, 0, 0, 1, 0, 0, 26, 57.7, 0, 5, 'Sporting Gijon', 'LaLiga\r'),
(55294, 'es', 'Juan Muñiz', 24, ' Midfielder', 177, 72, 0, 4, 57, 0, 0, 1, 0, 0, 80.8, 0, 0.3, 6.28, 0, 0.5, 0.5, 0.3, 0.3, 0, 0, 0, 1, 0.5, 0, 0.3, 0.3, 1, 6.5, 80.8, 0.3, 0.3, 'Sporting Gijon', 'LaLiga\r'),
(106891, 'es', 'Álex Barrera', 25, ' Midfielder', 190, 78, 0, 5, 57, 0, 0, 0, 0, 0.4, 72.4, 0, 0.6, 6.15, 0.8, 0, 0.2, 0, 0, 0.2, 0, 0, 0, 0, 0, 0.2, 0.4, 0, 5.8, 72.4, 0, 0, 'Sporting Gijon', 'LaLiga\r'),
(108812, 'cl', 'Igor Lichnovsky', 22, ' Defender', 187, 74, 2, 0, 180, 0, 0, 0, 0, 0, 70.4, 0, 0, 6.11, 2.5, 2, 0, 0.5, 4.5, 0, 0.5, 0, 0, 0.5, 0, 0, 0, 0, 13.5, 70.4, 0, 0.5, 'Sporting Gijon', 'LaLiga\r'),
(113884, 'es', 'Hugo Fraile', 29, ' Forward', 176, 73, 1, 2, 83, 0, 0, 0, 0, 0, 57.7, 0, 0, 6.07, 0.3, 0, 0.7, 0, 0.7, 0.3, 0, 0, 0.7, 0.3, 0, 0.3, 0, 0.7, 8.7, 57.7, 1, 0, 'Sporting Gijon', 'LaLiga\r'),
(140575, 'es', 'Mendi', 23, ' Forward', 183, 80, 0, 1, 29, 0, 0, 0, 0, 1, 57.1, 0, 1, 5.94, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 7, 57.1, 0, 0, 'Sporting Gijon', 'LaLiga\r'),
(80921, 'de', 'Shkodran Mustafi', 24, ' D(CR)', 184, 82, 30, 0, 2682, 2, 0, 14, 0, 0.7, 81.3, 4, 3, 7.33, 2.7, 4.4, 1.1, 0.6, 5.3, 0.8, 0.7, 1, 0.1, 0.7, 0.2, 0.2, 0.3, 0.1, 47, 81.3, 0, 5.4, 'Valencia', 'LaLiga\r'),
(28186, 'es', 'Daniel Parejo', 27, ' M(C)', 180, 75, 30, 3, 2735, 8, 5, 8, 0, 1.4, 85.5, 3, 0.8, 7.15, 2.2, 1.5, 1.1, 0.1, 0.8, 1.5, 0.2, 0, 1.3, 2.4, 0.1, 1.4, 0.7, 1.3, 53, 85.5, 0.9, 4.3, 'Valencia', 'LaLiga\r'),
(136810, '', 'Jaume', 25, ' GK', 187, 76, 17, 0, 1530, 0, 0, 0, 0, 0, 52.4, 1, 0.4, 7.12, 0.1, 0.1, 0, 0, 0.9, 0, 0, 0, 0.1, 0.4, 0, 0, 0, 0.1, 25.4, 52.4, 0, 7.9, 'Valencia', 'LaLiga\r'),
(110297, 'ru', 'Denis Cheryshev', 25, ' AM(L)', 179, 74, 6, 1, 482, 3, 0, 2, 0, 1.9, 71, 0, 1, 7.12, 2.9, 1.1, 1.7, 0, 0.3, 0.7, 0, 0, 0.4, 1.6, 0, 0.6, 1.9, 0.4, 26.6, 71, 0.3, 0.3, 'Valencia', 'LaLiga\r'),
(128967, 'pt', 'João Cancelo', 22, ' D(R),M(R)', 182, 72, 25, 3, 2121, 1, 4, 5, 1, 0.3, 78.6, 2, 1.1, 7.1, 2.3, 2.4, 1.5, 0.1, 2, 0.7, 0.2, 0, 0.6, 1.4, 0, 1, 1.2, 0.6, 31.2, 78.6, 0.6, 2.1, 'Valencia', 'LaLiga\r'),
(130356, 'pt', 'Rúben Vezo', 22, ' D(C)', 183, 80, 10, 5, 1084, 0, 0, 2, 0, 0.2, 74.3, 0, 1.9, 6.99, 2.3, 3.3, 1.2, 0.5, 3.7, 0.9, 0.5, 0, 0.2, 0.5, 0, 0.3, 0.5, 0.2, 29.3, 74.3, 0.1, 2.6, 'Valencia', 'LaLiga\r'),
(125953, 'br', 'Aderlan Santos', 27, ' D(C)', 193, 83, 17, 0, 1520, 0, 0, 0, 1, 0.4, 83.7, 0, 1.9, 6.9, 2.7, 2.4, 0.7, 0.5, 6.1, 0.3, 0.9, 0, 0.1, 0.4, 0.1, 0.4, 0.5, 0.1, 37.5, 83.7, 0, 3.4, 'Valencia', 'LaLiga\r'),
(83250, 'tn', 'Aymen Abdennour', 26, ' D(C)', 187, 84, 22, 0, 1853, 0, 0, 4, 0, 0.3, 83.2, 0, 1.9, 6.88, 1.9, 3, 0.9, 0.7, 4.6, 0.7, 0.9, 0, 0.2, 0.5, 0, 0.4, 0.4, 0.2, 38.1, 83.2, 0, 2.7, 'Valencia', 'LaLiga\r'),
(27745, 'es', 'Javi Fuego', 32, ' M(C)', 182, 74, 23, 3, 2047, 0, 0, 10, 1, 0.2, 85.2, 0, 1.1, 6.82, 2.4, 2.9, 2.1, 0.1, 1.1, 1.2, 0.4, 0, 0.4, 1.2, 0.1, 0.7, 0.8, 0.4, 48.2, 85.2, 0, 3.1, 'Valencia', 'LaLiga\r'),
(20665, 'br', 'Guilherme Siqueira', 30, ' D(L)', 182, 81, 14, 0, 1097, 0, 0, 1, 0, 0.4, 83.5, 0, 0.7, 6.79, 1.9, 2.6, 1.1, 0.4, 1.6, 0.5, 0.2, 0, 0.1, 0.9, 0.1, 0.7, 0.4, 0.1, 33, 83.5, 0.4, 0.6, 'Valencia', 'LaLiga\r'),
(118123, 'pt', 'André Gomes', 22, ' M(CL)', 188, 84, 27, 3, 2381, 3, 3, 10, 0, 1.4, 81, 0, 1.3, 6.78, 1.1, 0.5, 2, 0, 0.5, 1.1, 0.1, 0, 0.9, 1.5, 0.1, 2.5, 2, 0.9, 43.1, 81, 0.2, 2.6, 'Valencia', 'LaLiga\r'),
(30641, 'br', 'Diego Alves', 30, ' GK', 187, 83, 13, 0, 1170, 0, 0, 1, 0, 0, 60.5, 1, 0.1, 6.76, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27.5, 60.5, 0, 9.1, 'Valencia', 'LaLiga\r'),
(294056, '', 'Danilo', 20, ' DMC', 183, 74, 16, 3, 1366, 0, 0, 4, 0, 0.8, 75.5, 1, 1.3, 6.74, 2.4, 1.5, 1.3, 0.1, 1, 0.6, 0.2, 0, 0.4, 2.3, 0, 1.7, 1.2, 0.4, 25.4, 75.5, 0.1, 1.7, 'Valencia', 'LaLiga\r'),
(95953, 'es', 'Paco Alcácer', 22, ' FW', 176, 71, 25, 9, 2420, 13, 6, 2, 0, 1.8, 74.9, 1, 0.4, 6.74, 0.6, 0.5, 0.5, 0, 0.6, 0.2, 0, 0, 1, 0.5, 1.1, 1, 1.7, 1, 13.6, 74.9, 0, 0.2, 'Valencia', 'LaLiga\r'),
(119817, 'es', 'José Gayá', 21, ' D(L)', 172, 64, 15, 5, 1441, 0, 0, 5, 1, 0.1, 82.2, 0, 0.5, 6.72, 2.8, 1.2, 0.7, 0.2, 1.8, 0.3, 0.1, 0, 0.7, 0.9, 0, 0.5, 0.5, 0.7, 30.7, 82.2, 0.5, 1.4, 'Valencia', 'LaLiga\r'),
(81523, 'au', 'Mat Ryan', 24, ' GK', 184, 82, 8, 0, 720, 0, 0, 0, 0, 0, 57.9, 0, 0.4, 6.71, 0, 0.1, 0, 0, 1.1, 0.3, 0, 0, 0, 0.1, 0, 0, 0, 0, 29.1, 57.9, 0, 11.3, 'Valencia', 'LaLiga\r'),
(22117, 'ar', 'Enzo Pérez', 30, ' M(CR)', 177, 71, 16, 4, 1266, 0, 0, 10, 0, 0.3, 87.8, 0, 0.9, 6.68, 2.3, 1.4, 1.7, 0.1, 0.9, 1.1, 0.3, 0, 0.5, 1.8, 0, 0.8, 0.5, 0.5, 34.3, 87.8, 0.1, 2.7, 'Valencia', 'LaLiga\r'),
(83459, 'es', 'Rodrigo', 25, ' M(CLR),FW', 181, 77, 15, 10, 1361, 2, 3, 1, 1, 1.5, 75.9, 0, 1, 6.65, 0.7, 0.6, 0.6, 0, 0.4, 0.4, 0, 0, 1, 1, 0.4, 1, 1.3, 1, 18.9, 75.9, 0.5, 0.3, 'Valencia', 'LaLiga\r'),
(75204, 'ar', 'Lucas Orban', 27, ' D(L)', 184, 78, 6, 1, 524, 0, 0, 4, 1, 0, 81.6, 0, 1.1, 6.62, 3.4, 2.1, 2.3, 0, 2.7, 1.6, 0.1, 0, 0, 1.4, 0, 0, 0.9, 0, 28, 81.6, 0.1, 1, 'Valencia', 'LaLiga\r'),
(34239, 'dz', 'Sofiane Feghouli', 26, ' M(R)', 177, 75, 13, 8, 1259, 1, 1, 4, 0, 1, 68.8, 1, 1.2, 6.58, 0.8, 0.7, 0.9, 0, 0.3, 0.4, 0, 0, 1.2, 1, 0.3, 0.7, 1.3, 1.2, 22.1, 68.8, 1, 0.6, 'Valencia', 'LaLiga\r'),
(14085, 'es', 'Antonio Barragán', 29, ' D(R)', 186, 83, 19, 5, 1660, 0, 0, 5, 1, 0, 79.9, 0, 1, 6.56, 1.8, 2.3, 1.6, 0.1, 1.7, 0.5, 0.1, 0, 0.3, 0.9, 0, 0.2, 0.3, 0.3, 30.6, 79.9, 0.4, 1.2, 'Valencia', 'LaLiga\r'),
(127137, 'be', 'Zakaria Bakkali', 20, ' AM(LR)', 164, 60, 4, 12, 563, 1, 3, 1, 0, 0.8, 83.9, 0, 0, 6.56, 0.7, 0.3, 0.6, 0, 0, 0.4, 0, 0, 0.8, 1.3, 0.2, 0.8, 0.6, 0.8, 10.5, 83.9, 0.4, 0.3, 'Valencia', 'LaLiga\r'),
(23757, 'es', 'Álvaro Negredo', 30, ' FW', 186, 86, 12, 13, 1148, 5, 2, 0, 0, 1.6, 63, 0, 2.7, 6.56, 0.2, 0.2, 0.6, 0, 0.7, 0.2, 0.1, 0, 0.5, 0.4, 0.5, 0.6, 1.1, 0.5, 14, 63, 0, 0.6, 'Valencia', 'LaLiga\r'),
(125547, 'ar', 'Rodrigo de Paul', 22, ' AM(CL)', 180, 70, 6, 3, 522, 0, 0, 3, 0, 1.1, 75.3, 0, 0.1, 6.55, 1, 0.4, 1, 0, 0.1, 0.3, 0.1, 0, 1.8, 1.1, 0.1, 0.8, 1.3, 1.8, 25.2, 75.3, 1.2, 2.8, 'Valencia', 'LaLiga\r'),
(125838, 'es', 'Santi Mina', 20, ' AM(LR),FW', 177, 71, 18, 8, 1581, 4, 1, 2, 0, 1, 76.4, 0, 1.1, 6.53, 1.1, 0.5, 1.2, 0, 0.3, 0.7, 0.1, 0, 0.4, 1.9, 0.2, 1.5, 1.9, 0.4, 19, 76.4, 0.1, 0.5, 'Valencia', 'LaLiga\r'),
(317597, '', 'Sito', 19, ' Midfielder', 0, 0, 0, 1, 51, 0, 0, 0, 0, 0, 80, 0, 0, 6.37, 2, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 5, 80, 0, 0, 'Valencia', 'LaLiga\r'),
(23062, 'ar', 'Pablo Piatti', 27, ' M(L)', 163, 63, 9, 12, 791, 0, 0, 3, 0, 0.5, 74.4, 0, 0.3, 6.36, 1.2, 0.4, 0.8, 0, 0.1, 0.9, 0.1, 0, 0.5, 1.9, 0.2, 0.9, 0.8, 0.5, 12.1, 74.4, 0.6, 0.1, 'Valencia', 'LaLiga\r'),
(108033, 'fr', 'Wilfried Zahibo', 22, ' Midfielder', 189, 77, 2, 0, 136, 0, 0, 1, 0, 0, 72.9, 0, 2.5, 6.3, 1.5, 2, 2, 0, 1.5, 2, 0, 0, 0.5, 0.5, 0, 1, 1, 0.5, 29.5, 72.9, 0, 2, 'Valencia', 'LaLiga\r'),
(300778, 'es', 'Fran Villalba', 18, ' Midfielder', 168, 65, 0, 1, 3, 0, 0, 1, 0, 0, 75, 0, 0, 6.03, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 75, 0, 0, 'Valencia', 'LaLiga\r'),
(261670, '', 'Tropi', 21, ' Midfielder', 173, 69, 0, 1, 2, 0, 0, 0, 0, 0, 50, 0, 0, 5.98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 50, 0, 0, 'Valencia', 'LaLiga\r'),
(14231, 'es', 'Bruno', 32, ' M(C)', 184, 73, 28, 3, 2594, 5, 1, 5, 1, 0.8, 86.4, 5, 1.8, 7.14, 1.7, 3.1, 0.7, 0, 2.5, 0.5, 0.4, 0, 0.5, 0.6, 0, 0.7, 0.8, 0.5, 54, 86.4, 0, 2.8, 'Villarreal', 'LaLiga\r'),
(243271, 'es', 'Adrián Marín', 19, ' D(L)', 177, 70, 10, 1, 925, 0, 0, 1, 0, 0.1, 75.6, 0, 0.7, 7.14, 3.8, 2.5, 1.4, 0.3, 1.5, 1.1, 0.2, 0, 0.5, 0.4, 0.1, 0.5, 0.5, 0.5, 35, 75.6, 0.4, 1.5, 'Villarreal', 'LaLiga\r'),
(92516, 'fr', 'Alphonse Areola', 23, ' GK', 191, 88, 32, 0, 2880, 0, 0, 1, 0, 0, 46.7, 3, 0.6, 7.09, 0, 0, 0, 0, 1.1, 0, 0, 0, 0, 0.3, 0, 0, 0, 0, 21.6, 46.7, 0, 6.9, 'Villarreal', 'LaLiga\r'),
(61014, 'ar', 'Mateo Musacchio', 25, ' D(C)', 180, 73, 12, 1, 1010, 1, 0, 1, 0, 0.2, 83, 0, 1, 7.08, 1.3, 2.9, 1, 0.3, 3.2, 0.4, 0.5, 0, 0.2, 0.7, 0.1, 0.2, 0.5, 0.2, 35.2, 83, 0, 2.4, 'Villarreal', 'LaLiga\r'),
(69965, 'es', 'Jaume Costa', 28, ' D(L),M(L)', 171, 66, 17, 1, 1538, 1, 1, 8, 0, 0.2, 78.4, 2, 0.9, 7.01, 3.1, 2.7, 1.4, 0.4, 2.7, 0.6, 0.2, 0, 0.3, 1.1, 0.1, 0.2, 0.3, 0.3, 33.9, 78.4, 0.2, 1.8, 'Villarreal', 'LaLiga\r'),
(79909, 'es', 'Mario', 25, ' D(R)', 178, 71, 32, 1, 2874, 2, 2, 8, 0, 1, 72.9, 1, 1.1, 6.93, 2.5, 2.6, 0.8, 0.4, 2.6, 0.8, 0.2, 0, 0.3, 0.4, 0, 0.4, 0.5, 0.3, 38.6, 72.9, 0.2, 1.8, 'Villarreal', 'LaLiga\r'),
(106525, 'es', 'Denis Suárez', 22, ' AM(CLR)', 181, 72, 25, 8, 2372, 4, 4, 3, 0, 1.1, 72.9, 4, 0.3, 6.93, 1.6, 0.8, 0.8, 0, 0.4, 1, 0.1, 0, 1.4, 1.3, 0.1, 1.1, 1.7, 1.4, 28.6, 72.9, 1.1, 0.5, 'Villarreal', 'LaLiga\r'),
(243814, 'ci', 'Eric Bailly', 22, ' D(C)', 187, 77, 25, 0, 2026, 0, 0, 9, 1, 0.2, 76.9, 2, 1.6, 6.92, 1.8, 2.6, 1.4, 0.4, 4.7, 0.2, 0.6, 0, 0.1, 1.2, 0, 0.3, 0.3, 0.1, 31.1, 76.9, 0, 1.9, 'Villarreal', 'LaLiga\r'),
(18275, 'es', 'Roberto Soldado', 31, ' FW', 179, 72, 27, 1, 2256, 5, 10, 12, 0, 1.4, 68.4, 2, 0.8, 6.87, 0.8, 0.5, 1.9, 0, 1.3, 0.4, 0.1, 0, 1, 2.1, 0.8, 1.1, 2.3, 1, 28.5, 68.4, 0.1, 0.9, 'Villarreal', 'LaLiga\r'),
(22056, 'si', 'Bojan Jokic', 30, ' D(L)', 176, 75, 2, 0, 126, 0, 0, 0, 1, 0, 69.2, 0, 1, 6.87, 2, 2, 1, 0, 4, 0, 0.5, 0, 0, 0.5, 0, 0, 0, 0, 26, 69.2, 0, 1, 'Villarreal', 'LaLiga\r'),
(79558, 'es', 'Víctor Ruiz', 27, ' D(C)', 184, 75, 32, 3, 2990, 0, 0, 9, 0, 0.1, 80.6, 1, 1.7, 6.86, 0.6, 3.2, 0.9, 0.7, 4.9, 0.3, 0.5, 1, 0, 0.3, 0, 0.1, 0.4, 0, 43.7, 80.6, 0, 3.3, 'Villarreal', 'LaLiga\r'),
(82598, 'mx', 'Jonathan dos Santos', 26, ' M(CR)', 172, 74, 20, 6, 1762, 0, 1, 4, 0, 0.7, 81.5, 0, 0.6, 6.82, 2, 2, 1, 0, 0.8, 1.4, 0.1, 0, 1, 0.8, 0.1, 0.8, 1.2, 1, 34.2, 81.5, 0.8, 1.8, 'Villarreal', 'LaLiga\r'),
(83504, 'es', 'Tomás Pina', 28, ' M(C)', 184, 75, 19, 8, 1634, 0, 1, 4, 0, 0.3, 78.6, 0, 1.9, 6.71, 1.7, 1.7, 1.4, 0, 1.4, 0.4, 0.1, 0, 0.3, 0.9, 0, 0.6, 0.4, 0.3, 27.2, 78.6, 0, 1.2, 'Villarreal', 'LaLiga\r'),
(102234, 'es', 'Manu Trigueros', 24, ' M(C)', 178, 70, 24, 7, 2119, 2, 1, 5, 0, 0.9, 81.9, 1, 0.8, 6.68, 1.9, 1.1, 0.9, 0, 0.9, 0.7, 0.1, 0, 0.5, 0.7, 0.1, 0.7, 0.7, 0.5, 37.8, 81.9, 0, 2.8, 'Villarreal', 'LaLiga\r'),
(14089, 'es', 'Adrián', 28, ' M(LR),FW', 180, 71, 10, 6, 793, 4, 4, 1, 0, 0.5, 68.4, 0, 1.4, 6.65, 0.2, 0.1, 0.3, 0, 0.3, 0.2, 0.1, 0, 0.9, 0.5, 0.9, 1.9, 1.4, 0.9, 21.4, 68.4, 0.1, 0.4, 'Villarreal', 'LaLiga\r'),
(238773, 'es', 'Samu Castillejo', 21, ' AM(LR)', 179, 61, 19, 9, 1701, 1, 1, 4, 0, 0.9, 70.9, 1, 0.8, 6.63, 0.9, 1, 0.8, 0, 0.4, 0.9, 0.1, 0, 0.8, 1.6, 0.3, 1.8, 1.2, 0.8, 20.4, 70.9, 0.9, 0.5, 'Villarreal', 'LaLiga\r'),
(303139, '', 'Rodrigo', 20, ' Midfielder', 190, 85, 1, 2, 94, 0, 0, 1, 0, 0.7, 86.8, 0, 0.3, 6.61, 1.7, 1, 0.3, 0, 2, 0, 0.3, 0, 0.3, 0.3, 0.3, 0, 0.3, 0.3, 25.3, 86.8, 0, 1.3, 'Villarreal', 'LaLiga\r'),
(28133, 'rs', 'Antonio Rukavina', 32, ' D(LR),M(R)', 177, 73, 14, 4, 1346, 0, 0, 5, 0, 0.1, 78.8, 0, 0.6, 6.61, 1.6, 1.9, 0.9, 0.2, 2.2, 0.4, 0.1, 0, 0.2, 0.3, 0.1, 0.3, 0.3, 0.2, 26.8, 78.8, 0.1, 1.2, 'Villarreal', 'LaLiga\r'),
(86513, 'fr', 'Cédric Bakambu', 25, ' AM(LR),FW', 182, 74, 21, 13, 1861, 12, 3, 4, 0, 1.4, 73.7, 3, 0.8, 6.57, 0.5, 0.1, 1.6, 0, 0.1, 0.5, 0.1, 0, 0.4, 0.9, 0.8, 1.3, 1.7, 0.4, 14, 73.7, 0.1, 0.2, 'Villarreal', 'LaLiga\r'),
(32258, 'es', 'Sergio Asenjo', 26, ' GK', 182, 84, 4, 0, 360, 0, 0, 1, 0, 0, 51.6, 0, 0.3, 6.56, 0.3, 0, 0.3, 0, 0.8, 0, 0, 0, 0, 0.3, 0, 0, 0, 0, 23.8, 51.6, 0, 8, 'Villarreal', 'LaLiga\r'),
(135233, 'es', 'Samuel', 25, ' AM(R),FW', 179, 73, 7, 9, 759, 2, 1, 2, 0, 0.6, 73.4, 0, 1, 6.52, 1.3, 0.3, 1.7, 0, 0.4, 0.8, 0.3, 0, 0.9, 0.8, 0.3, 0.9, 1.6, 0.9, 20.7, 73.4, 0.3, 0.1, 'Villarreal', 'LaLiga\r'),
(116227, 'br', 'Leo Baptistao', 23, ' AM(CR),FW', 181, 71, 12, 14, 1259, 3, 1, 1, 0, 1.2, 66.9, 0, 0.8, 6.45, 0.6, 0.2, 0.8, 0, 0.7, 0.4, 0.1, 0, 0.3, 1.4, 0.5, 1.8, 1.3, 0.3, 13.8, 66.9, 0.1, 0.3, 'Villarreal', 'LaLiga\r'),
(141633, 'ar', 'Nahuel', 19, ' M(LR)', 174, 67, 11, 9, 1000, 0, 1, 4, 0, 0.5, 74.6, 0, 0.4, 6.44, 0.8, 0.8, 1.3, 0, 0.6, 0.5, 0.1, 0, 0.7, 0.8, 0.2, 1.6, 1.1, 0.7, 17.2, 74.6, 0.3, 0.4, 'Villarreal', 'LaLiga\r'),
(2247, 'it', 'Daniele Bonera', 35, ' D(CR)', 183, 74, 10, 4, 974, 0, 0, 3, 1, 0.2, 85.6, 0, 0.5, 6.43, 0.7, 2.1, 1.1, 0.3, 1.9, 0.3, 0.5, 0, 0, 0.4, 0, 0, 0.2, 0, 34.6, 85.6, 0, 2.9, 'Villarreal', 'LaLiga\r'),
(276489, '', 'Alfonso', 20, ' Midfielder', 182, 75, 2, 0, 107, 0, 0, 0, 0, 0.5, 68.4, 0, 0, 6.42, 0.5, 1, 1.5, 0, 0, 1, 0.5, 0, 0.5, 0.5, 0, 1.5, 0.5, 0.5, 9.5, 68.4, 0, 0, 'Villarreal', 'LaLiga\r'),
(141021, 'ar', 'Mariano Barbosa', 31, ' GK', 188, 81, 2, 0, 180, 0, 0, 0, 0, 0, 73, 0, 0, 6.14, 0, 0.5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18.5, 73, 0, 2, 'Villarreal', 'LaLiga\r'),
(25244, 'cl', 'Alexis Sánchez', 27, ' M(LR),FW', 168, 62, 28, 2, 2446, 13, 4, 1, 0, 3.6, 79.6, 6, 0.7, 7.72, 1.6, 0.8, 1.1, 0, 0.2, 0.8, 0.1, 0, 2.1, 2.2, 0.4, 3.3, 2.4, 2.1, 47.8, 79.6, 0.4, 2.4, 'Arsenal', 'PremierLeague\r'),
(13756, 'de', 'Mesut Özil', 27, ' M(CLR)', 183, 76, 35, 0, 3049, 6, 19, 4, 0, 1.4, 86.3, 6, 0.1, 7.66, 1, 0.6, 0.6, 0, 0.3, 1.2, 0, 0, 4.2, 1.2, 0.4, 1.7, 2, 4.2, 65.1, 86.3, 2.6, 1.5, 'Arsenal', 'PremierLeague\r'),
(4522, 'es', 'Santi Cazorla', 31, ' M(CLR)', 168, 66, 15, 0, 1293, 0, 3, 2, 1, 1.6, 90.2, 1, 0.1, 7.53, 1.9, 1.7, 0.9, 0, 1, 1.8, 0.1, 0, 2.5, 0.9, 0.1, 1.3, 0.9, 2.5, 81.9, 90.2, 1, 3.5, 'Arsenal', 'PremierLeague\r'),
(30051, 'fr', 'Laurent Koscielny', 30, ' D(C)', 186, 75, 33, 0, 2847, 4, 0, 3, 0, 0.6, 87.1, 3, 3.2, 7.48, 1.4, 3.8, 0.9, 0.9, 5.6, 0.4, 0.8, 0, 0.2, 0.8, 0, 0.4, 0.5, 0.2, 51.3, 87.1, 0, 2.5, 'Arsenal', 'PremierLeague\r'),
(23072, 'es', 'Nacho Monreal', 30, ' D(CL)', 178, 72, 36, 1, 3248, 0, 3, 1, 0, 0.3, 85.4, 1, 1.9, 7.26, 2.1, 2.9, 0.8, 0.2, 3.1, 0.8, 0.3, 0, 0.8, 1.1, 0.1, 0.3, 0.6, 0.8, 49.9, 85.4, 0.5, 1, 'Arsenal', 'PremierLeague\r'),
(76810, 'br', 'Gabriel Paulista', 25, ' D(C)', 185, 72, 18, 3, 1762, 1, 0, 4, 1, 0.5, 90.2, 0, 2.4, 7.23, 2, 2.9, 0.4, 1, 5.4, 0.5, 0.6, 0, 0, 0.5, 0, 0.3, 0.4, 0, 52.9, 90.2, 0, 1.6, 'Arsenal', 'PremierLeague\r'),
(26820, 'gb', 'Aaron Ramsey', 25, ' M(CR)', 178, 76, 29, 2, 2624, 5, 4, 4, 0, 2.2, 86.1, 2, 0.9, 7.21, 2.5, 1.8, 1.5, 0, 0.6, 2.1, 0.4, 0, 1.2, 1.5, 0.2, 2.2, 2, 1.2, 69.5, 86.1, 0.4, 1.9, 'Arsenal', 'PremierLeague\r'),
(125211, 'es', 'Héctor Bellerín', 21, ' D(R),M(R)', 177, 74, 36, 0, 3240, 1, 5, 3, 0, 0.4, 85.7, 1, 1.1, 7.2, 1.6, 1.9, 0.5, 0, 2.4, 0.6, 0.2, 0, 0.7, 0.2, 0, 1, 0.9, 0.7, 46.9, 85.7, 0.5, 0.9, 'Arsenal', 'PremierLeague\r'),
(36745, 'co', 'David Ospina', 27, ' GK', 183, 80, 4, 0, 360, 0, 0, 0, 0, 0, 56.4, 0, 0, 7.11, 0, 0, 0, 0, 0.3, 0, 0, 0, 0, 0.3, 0, 0, 0, 0, 27.5, 56.4, 0, 9, 'Arsenal', 'PremierLeague\r'),
(69738, 'fr', 'Francis Coquelin', 25, ' M(CL)', 178, 74, 21, 5, 1647, 0, 0, 5, 1, 0.3, 89.1, 1, 0.7, 7.1, 2.8, 2.9, 0.9, 0, 0.8, 0.8, 0.3, 0, 0.2, 0.9, 0, 0.7, 0.5, 0.2, 42.9, 89.1, 0.1, 2.2, 'Arsenal', 'PremierLeague\r'),
(24444, 'fr', 'Olivier Giroud', 29, ' FW', 192, 88, 26, 12, 2431, 16, 6, 2, 0, 2.7, 68.1, 1, 2.7, 7.07, 0.9, 0.3, 1.1, 0, 0.7, 0.6, 0.1, 1, 0.9, 0.9, 0.7, 1.2, 2.2, 0.9, 22.1, 68.1, 0.1, 0.2, 'Arsenal', 'PremierLeague\r'),
(39308, 'gb', 'Danny Welbeck', 25, ' AM(CLR),FW', 185, 73, 7, 4, 578, 4, 2, 1, 0, 1.8, 76.5, 1, 0.9, 7.06, 1, 0.2, 0.5, 0.1, 0.5, 0, 0, 0, 0.6, 0.8, 0, 1.6, 1.4, 0.6, 13.5, 76.5, 0, 0.1, 'Arsenal', 'PremierLeague\r'),
(6775, 'cz', 'Petr Cech', 34, ' GK', 196, 90, 34, 0, 3060, 0, 0, 0, 0, 0, 59, 2, 0.2, 6.94, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.1, 0, 0, 0, 0, 25.1, 59, 0, 8.2, 'Arsenal', 'PremierLeague\r'),
(6292, 'de', 'Per Mertesacker', 31, ' D(C)', 198, 90, 24, 0, 2049, 0, 0, 1, 1, 0.3, 89.3, 0, 2.2, 6.86, 1.1, 1.5, 0.3, 1.1, 4.5, 0.2, 0.4, 0, 0.1, 0.3, 0, 0.2, 0.3, 0.1, 52, 89.3, 0, 1.9, 'Arsenal', 'PremierLeague\r'),
(11367, 'fr', 'Mathieu Debuchy', 30, ' D(R)', 177, 76, 2, 0, 144, 0, 0, 0, 0, 0.5, 74.7, 0, 3, 6.85, 4.5, 1.5, 1.5, 0, 0.5, 0.5, 0, 0, 0.5, 0.5, 0, 2, 0.5, 0.5, 39.5, 74.7, 0, 1, 'Arsenal', 'PremierLeague\r'),
(136824, 'ng', 'Alex Iwobi', 20, ' AM(L)', 180, 75, 8, 5, 632, 2, 2, 0, 0, 1.2, 85.3, 0, 0.1, 6.78, 0.6, 0.2, 0.2, 0, 0.1, 0.2, 0, 0, 0.9, 0.4, 0, 1.2, 1.6, 0.9, 28.3, 85.3, 0, 0.5, 'Arsenal', 'PremierLeague\r'),
(125209, 'eg', 'Mohamed Elneny', 23, ' DMC', 180, 70, 9, 2, 794, 0, 1, 3, 0, 1.2, 92.8, 0, 0.5, 6.75, 0.9, 1.5, 0.8, 0.2, 1.5, 1.1, 0.3, 0, 0.3, 1, 0, 0.4, 0.7, 0.3, 67.1, 92.8, 0.1, 1.7, 'Arsenal', 'PremierLeague\r'),
(6321, 'fr', 'Mathieu Flamini', 32, ' M(C)', 178, 67, 12, 4, 1089, 0, 0, 3, 0, 0.4, 86.8, 0, 0.8, 6.73, 1.9, 2.2, 1.1, 0.1, 1.6, 0.8, 0.8, 0, 0.2, 0.2, 0, 0.3, 0.3, 0.2, 39.3, 86.8, 0.1, 1.1, 'Arsenal', 'PremierLeague\r'),
(95977, 'cr', 'Joel Campbell', 23, ' AM(LR),FW', 178, 71, 11, 8, 888, 3, 2, 0, 0, 1, 78.7, 0, 0.3, 6.72, 1.4, 0.5, 0.5, 0.1, 0.2, 1.1, 0.2, 0, 0.7, 1.3, 0.2, 0.7, 1.4, 0.7, 18, 78.7, 0.1, 0.3, 'Arsenal', 'PremierLeague\r'),
(84146, 'gb', 'Alex Oxlade Chamberlain', 22, ' M(CLR)', 180, 70, 9, 13, 925, 1, 0, 0, 0, 1, 82.5, 0, 0.4, 6.66, 1, 0.5, 0.5, 0, 0.4, 0.5, 0.2, 0, 0.9, 0.6, 0.1, 1.1, 1.1, 0.9, 20, 82.5, 0.4, 1.2, 'Arsenal', 'PremierLeague\r'),
(42686, 'gb', 'Jack Wilshere', 24, ' M(CLR)', 172, 68, 1, 2, 141, 0, 0, 0, 0, 0.3, 84.3, 0, 0.7, 6.64, 1, 0.7, 0.3, 0, 1, 1.3, 0, 0, 0.3, 1.3, 0, 0.3, 1, 0.3, 27.7, 84.3, 0, 0, 'Arsenal', 'PremierLeague\r'),
(13796, 'gb', 'Theo Walcott', 27, ' M(LR),FW', 176, 68, 15, 13, 1375, 5, 2, 0, 0, 1.6, 79.7, 1, 0.2, 6.58, 0.4, 0.5, 0.1, 0, 0.3, 0.3, 0, 0, 0.6, 0.9, 0.5, 1.1, 1.3, 0.6, 11.1, 79.7, 0.1, 0.1, 'Arsenal', 'PremierLeague\r'),
(124316, 'gb', 'Calum Chambers', 21, ' D(CR)', 183, 66, 2, 10, 315, 0, 0, 2, 0, 0.2, 84, 0, 1.1, 6.52, 0.7, 0.8, 0.5, 0.3, 1.8, 0.1, 0.7, 1, 0.2, 0.3, 0, 0.1, 0.4, 0.2, 16.2, 84, 0, 0.5, 'Arsenal', 'PremierLeague\r'),
(1443, 'es', 'Mikel Arteta', 34, ' M(C)', 183, 64, 0, 9, 162, 0, 0, 1, 0, 0.1, 87.1, 0, 0.9, 6.36, 0.9, 0.8, 0.9, 0, 0.9, 0.2, 0.1, 1, 0.1, 0.4, 0, 0.2, 0.2, 0.1, 14.7, 87.1, 0, 0.8, 'Arsenal', 'PremierLeague\r'),
(27550, 'gb', 'Kieran Gibbs', 26, ' D(L)', 178, 70, 3, 12, 381, 1, 0, 0, 0, 0.3, 73.7, 0, 0.4, 6.32, 0.8, 0.7, 0.2, 0, 0.6, 0.3, 0, 0, 0.1, 0.4, 0.1, 0.3, 0.3, 0.1, 13.2, 73.7, 0.1, 0.2, 'Arsenal', 'PremierLeague\r'),
(134902, 'fr', 'Jordan Amavi', 22, ' D(L)', 176, 70, 9, 1, 836, 0, 2, 2, 0, 0.5, 78.9, 3, 2, 7.48, 3.6, 3.7, 1.8, 0.2, 3.2, 1.1, 0.3, 0, 0.7, 1.1, 0, 0.7, 1.1, 0.7, 37, 78.9, 0.5, 1.9, 'Aston Villa', 'PremierLeague\r'),
(80464, 'sn', 'Idrissa Gueye', 26, ' M(C)', 174, 66, 35, 0, 3076, 0, 1, 10, 0, 0.9, 85.6, 3, 0.9, 7.25, 4.1, 4, 1.9, 0, 0.9, 0.9, 0.2, 0, 0.8, 1.5, 0, 1, 1.9, 0.8, 53.4, 85.6, 0.1, 2.7, 'Aston Villa', 'PremierLeague\r'),
(99901, 'dk', 'Jores Okore', 23, ' D(C)', 183, 80, 12, 0, 1080, 0, 0, 1, 0, 0, 80.6, 0, 1.5, 7.01, 3.1, 2.3, 0.7, 0.9, 6.9, 0.7, 0.7, 0, 0.1, 0.7, 0, 0.3, 0.6, 0.1, 27.5, 80.6, 0, 3.1, 'Aston Villa', 'PremierLeague\r'),
(14168, 'gb', 'Micah Richards', 27, ' D(CR)', 180, 82, 23, 1, 2046, 1, 1, 3, 0, 0.5, 85.1, 2, 2.5, 6.91, 1.7, 2.5, 0.7, 0.6, 5.9, 0.3, 0.6, 1, 0.3, 1, 0, 0.3, 0.6, 0.3, 29.9, 85.1, 0, 1.6, 'Aston Villa', 'PremierLeague\r'),
(67491, 'gh', 'Jordan Ayew', 24, ' AM(LR),FW', 182, 80, 27, 3, 2353, 7, 0, 6, 1, 2, 80.9, 0, 2, 6.88, 1.3, 0.8, 1.6, 0, 0.3, 0.7, 0.1, 0, 0.6, 1.3, 0.3, 2.5, 3.2, 0.6, 26.7, 80.9, 0.2, 0.5, 'Aston Villa', 'PremierLeague\r'),
(70099, 'ie', 'Ciaran Clark', 26, ' D(C)', 188, 76, 16, 2, 1442, 1, 0, 6, 0, 0.6, 76, 0, 2.8, 6.87, 1.3, 2.6, 0.8, 0.4, 7.1, 0.5, 0.7, 0, 0.2, 0.6, 0, 0.2, 0.4, 0.2, 31.1, 76, 0.1, 1.7, 'Aston Villa', 'PremierLeague\r'),
(33403, 'fr', 'Rudy Gestede', 27, ' FW', 193, 86, 14, 18, 1659, 5, 2, 2, 0, 1.9, 57.4, 1, 6.5, 6.83, 0.3, 0.2, 0.8, 0, 0.9, 0.2, 0.1, 0, 0.5, 0.4, 0.2, 0.5, 1.2, 0.5, 18.6, 57.4, 0, 0.2, 'Aston Villa', 'PremierLeague\r'),
(8137, 'gb', 'Joleon Lescott', 33, ' D(CL)', 190, 89, 30, 0, 2631, 1, 0, 2, 0, 0.4, 75.4, 1, 2.3, 6.75, 1.1, 2.6, 0.5, 1, 5.9, 0.6, 0.7, 0, 0.1, 0.3, 0, 0.2, 0.4, 0.1, 32.5, 75.4, 0, 3, 'Aston Villa', 'PremierLeague\r'),
(26720, 'co', 'Carlos Sánchez', 30, ' M(C)', 182, 80, 16, 4, 1371, 0, 0, 3, 0, 0.7, 80.6, 0, 1.4, 6.74, 2.7, 2.3, 1.3, 0, 1.3, 1.2, 0.3, 0, 0.2, 0.3, 0, 0.4, 1, 0.2, 39.7, 80.6, 0.1, 4.2, 'Aston Villa', 'PremierLeague\r'),
(315545, 'ie', 'Kevin Toner', 19, ' Midfielder', 0, 0, 3, 1, 315, 0, 1, 0, 0, 0.3, 72.2, 0, 2.5, 6.73, 2.5, 2.3, 0.5, 0, 4.5, 1.3, 0.3, 0, 0.3, 1, 0, 0.3, 0.5, 0.3, 24.3, 72.2, 0, 1.8, 'Aston Villa', 'PremierLeague\r'),
(79050, 'gb', 'Ashley Westwood', 26, ' DMC', 175, 67, 31, 1, 2720, 2, 2, 6, 0, 1.2, 82.9, 1, 0.2, 6.69, 1.9, 1.8, 0.9, 0, 0.7, 1.2, 0.4, 0, 1.3, 0.3, 0, 0.8, 0.5, 1.3, 47.3, 82.9, 1.1, 3.6, 'Aston Villa', 'PremierLeague\r'),
(79967, 'nl', 'Leandro Bacuna', 24, ' D(LR),M(CR)', 187, 77, 27, 4, 2418, 1, 0, 8, 0, 1, 77.6, 0, 0.8, 6.63, 1.5, 1.8, 1.2, 0.2, 1.7, 0.8, 0.1, 0, 0.5, 0.4, 0.1, 0.6, 0.7, 0.5, 36.5, 77.6, 0.7, 3, 'Aston Villa', 'PremierLeague\r'),
(67285, 'cz', 'Libor Kozák', 27, ' FW', 192, 84, 3, 1, 258, 0, 0, 0, 0, 1.5, 63.2, 0, 5, 6.62, 0.8, 0, 1.3, 0, 1.3, 0, 0.3, 0, 0.8, 0.8, 1.3, 0.5, 4, 0.8, 19, 63.2, 0, 0.3, 'Aston Villa', 'PremierLeague\r'),
(28746, 'us', 'Brad Guzan', 31, ' GK', 193, 94, 28, 0, 2520, 0, 0, 2, 0, 0, 52, 0, 0.1, 6.57, 0.1, 0.1, 0, 0, 0.9, 0, 0, 0, 0, 0, 0, 0, 0.1, 0, 25.8, 52, 0, 9.4, 'Aston Villa', 'PremierLeague\r'),
(101017, 'fr', 'Jordan Veretout', 23, ' M(C)', 177, 67, 21, 4, 1825, 0, 5, 4, 0, 0.8, 83, 0, 0.4, 6.57, 1.3, 1.1, 0.8, 0, 0.6, 1.2, 0, 0, 1.6, 1, 0, 0.5, 1.2, 1.6, 39.6, 83, 1.4, 2, 'Aston Villa', 'PremierLeague\r'),
(280767, 'gb', 'Andre Green', 17, ' Forward', 0, 0, 0, 2, 57, 0, 0, 0, 0, 0.5, 65.2, 0, 0, 6.57, 1, 1.5, 0, 0, 0, 0.5, 0, 0, 1, 0, 0, 0, 0.5, 1, 11.5, 65.2, 1.5, 0.5, 'Aston Villa', 'PremierLeague\r'),
(116164, 'es', 'Carles Gil', 23, ' AM(CR)', 170, 63, 17, 6, 1442, 2, 0, 3, 0, 0.7, 87, 0, 0, 6.54, 1, 0.4, 0.1, 0, 0.2, 1, 0.1, 0, 1.1, 1.2, 0.1, 1.2, 1.5, 1.1, 31.7, 87, 0.8, 1, 'Aston Villa', 'PremierLeague\r'),
(35958, 'fr', 'Aly Cissokho', 28, ' D(L)', 181, 75, 18, 0, 1603, 0, 0, 3, 1, 0.2, 74.3, 0, 1.2, 6.46, 1.4, 2.2, 0.7, 0.4, 4.2, 0.6, 0.2, 0, 0.5, 0.2, 0, 0.2, 0.5, 0.5, 35.9, 74.3, 0.8, 2, 'Aston Villa', 'PremierLeague\r'),
(6434, 'gb', 'Alan Hutton', 31, ' D(R)', 185, 72, 26, 2, 2330, 0, 1, 6, 1, 0.3, 75.4, 0, 1.2, 6.45, 2, 1.9, 1, 0.1, 1.9, 0.5, 0.4, 2, 0.8, 1.3, 0.1, 0.3, 0.8, 0.8, 30.1, 75.4, 0.9, 1.6, 'Aston Villa', 'PremierLeague\r'),
(113069, 'ie', 'Jack Grealish', 20, ' AM(CL)', 178, 68, 9, 7, 833, 1, 0, 1, 0, 1, 85.7, 0, 0.1, 6.44, 0.4, 0.9, 0.4, 0, 0.1, 0.1, 0, 0, 0.8, 1.1, 0, 0.9, 0.8, 0.8, 19.7, 85.7, 0.1, 0.7, 'Aston Villa', 'PremierLeague\r'),
(14036, 'gb', 'Gabriel Agbonlahor', 29, ' AM(LR),FW', 178, 76, 13, 2, 1037, 1, 2, 0, 0, 0.7, 71.3, 0, 1.7, 6.42, 0.4, 0.1, 1.4, 0, 0.6, 0.3, 0.1, 0, 0.9, 0.9, 0.2, 0.5, 1.1, 0.9, 14.9, 71.3, 0.1, 0.3, 'Aston Villa', 'PremierLeague\r'),
(8798, 'gb', 'Mark Bunn', 31, ' GK', 183, 77, 10, 0, 900, 0, 0, 2, 0, 0, 41.5, 0, 0.3, 6.4, 0, 0, 0.1, 0, 0.9, 0.1, 0, 1, 0, 0, 0, 0, 0.1, 0, 24.1, 41.5, 0, 8.6, 'Aston Villa', 'PremierLeague\r'),
(140088, 'es', 'Adama Traoré', 20, ' Forward', 178, 72, 0, 10, 184, 0, 1, 1, 0, 0.2, 80, 0, 0, 6.38, 0.1, 0, 0.4, 0, 0, 0, 0, 0, 0.1, 1.1, 0, 0.7, 1, 0.1, 3, 80, 0.2, 0.2, 'Aston Villa', 'PremierLeague\r'),
(12779, 'gb', 'Scott Sinclair', 27, ' AM(LR)', 175, 64, 19, 8, 1598, 2, 0, 0, 0, 0.6, 84.6, 0, 0.3, 6.24, 0.5, 0.3, 0.2, 0, 0.1, 0.3, 0, 0, 0.2, 0.8, 0.3, 1.3, 1.7, 0.2, 12.7, 84.6, 0.1, 0.3, 'Aston Villa', 'PremierLeague\r'),
(8058, 'gb', 'Kieran Richardson', 31, ' D(L),M(CL)', 173, 71, 8, 3, 723, 0, 1, 4, 0, 0.6, 77.7, 0, 0.8, 6.22, 1.6, 1.1, 1.6, 0.1, 1.8, 0.7, 0.3, 0, 0.4, 0.4, 0, 0.6, 1.2, 0.4, 24.5, 77.7, 0.2, 1.3, 'Aston Villa', 'PremierLeague\r'),
(301101, 'au', 'Jordan Lyden', 20, ' Midfielder', 175, 72, 2, 2, 153, 0, 0, 0, 0, 0.3, 79.1, 0, 0, 6.15, 0.5, 1, 0.3, 0, 1.5, 0.5, 0, 0, 0.3, 0.5, 0, 0.5, 0.3, 0.3, 16.8, 79.1, 0, 0.5, 'Aston Villa', 'PremierLeague\r'),
(9743, 'fr', 'Charles N\'Zogbia', 30, ' M(CR)', 170, 70, 0, 2, 41, 0, 0, 0, 0, 0, 100, 0, 0, 6.12, 0.5, 0, 0.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4.5, 100, 0, 0, 'Aston Villa', 'PremierLeague\r'),
(273293, 'gb', 'Rushian Hepburn-Murphy', 17, ' Forward', 178, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 'Aston Villa', 'PremierLeague\r'),
(19444, 'es', 'José Ángel Crespo', 29, ' D(CL),M(R)', 183, 72, 1, 0, 90, 0, 0, 0, 0, 0, 88.9, 0, 0, 5.98, 0, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 27, 88.9, 0, 5, 'Aston Villa', 'PremierLeague\r'),
(9298, 'gb', 'Simon Francis', 31, ' D(CR)', 183, 79, 38, 0, 3387, 0, 4, 5, 1, 0.2, 79.2, 1, 2.8, 7.16, 2.8, 2.3, 0.9, 0.5, 5.4, 0.8, 0.6, 0, 0.9, 0.3, 0.1, 0.5, 0.4, 0.9, 55.4, 79.2, 0.7, 4.7, 'Bournemouth', 'PremierLeague\r'),
(68662, 'gb', 'Steve Cook', 25, ' D(C)', 185, 83, 36, 0, 3196, 4, 0, 5, 0, 0.7, 81.4, 4, 3.4, 7.03, 0.9, 2.3, 0.4, 1, 8.3, 0.5, 1, 0, 0.2, 0.2, 0.1, 0.1, 0.1, 0.2, 43.8, 81.4, 0, 4.9, 'Bournemouth', 'PremierLeague\r'),
(24827, 'gb', 'Charlie Daniels', 29, ' D(L)', 175, 75, 37, 0, 3286, 3, 5, 2, 0, 0.5, 80.4, 1, 0.7, 6.9, 2, 1.4, 0.3, 0.3, 2.1, 0.8, 0.1, 0, 1, 0.5, 0.1, 0.7, 0.9, 1, 45.8, 80.4, 0.9, 1.8, 'Bournemouth', 'PremierLeague\r'),
(69912, 'gb', 'Junior Stanislas', 26, ' AM(LR)', 180, 79, 17, 4, 1442, 3, 2, 1, 0, 2.1, 78.4, 1, 0.7, 6.89, 1.4, 0.9, 0.5, 0, 0.5, 0.6, 0, 0, 1.6, 0.6, 0.1, 0.6, 1.2, 1.6, 31.5, 78.4, 0.7, 0.7, 'Bournemouth', 'PremierLeague\r'),
(69877, 'gb', 'Adam Smith', 25, ' D(R)', 178, 74, 22, 9, 2097, 2, 0, 5, 0, 0.5, 84.3, 1, 0.7, 6.87, 2.3, 1.4, 1.1, 0.1, 1.6, 0.9, 0.2, 0, 0.5, 1.6, 0.1, 0.5, 1.1, 0.5, 29.4, 84.3, 0.4, 1.2, 'Bournemouth', 'PremierLeague\r'),
(67807, 'ie', 'Harry Arter', 26, ' M(C)', 175, 73, 21, 0, 1674, 1, 0, 7, 0, 1.7, 86, 0, 0.4, 6.8, 2.7, 1.2, 1.1, 0, 0.4, 1.7, 0, 0, 1.2, 0.8, 0, 1.5, 1, 1.2, 49.2, 86, 0.2, 3.8, 'Bournemouth', 'PremierLeague\r'),
(13447, 'za', 'Andrew Surman', 29, ' M(CL)', 180, 73, 38, 0, 3420, 0, 3, 4, 0, 0.4, 85.3, 1, 1.2, 6.79, 1.3, 2.9, 0.7, 0, 1.7, 0.9, 0.3, 0, 1.1, 0.5, 0, 0.7, 0.8, 1.1, 60.2, 85.3, 0.1, 5.7, 'Bournemouth', 'PremierLeague\r'),
(13846, 'gb', 'Dan Gosling', 26, ' M(C)', 178, 71, 28, 6, 2445, 3, 1, 6, 0, 1.2, 83.6, 0, 1.1, 6.77, 2.1, 1.5, 0.9, 0, 0.6, 1.9, 0.4, 0, 0.8, 1.2, 0, 1.2, 1.6, 0.8, 35.1, 83.6, 0, 1.2, 'Bournemouth', 'PremierLeague\r'),
(68648, 'gb', 'Matt Ritchie', 26, ' AM(CR)', 173, 70, 33, 4, 2979, 4, 6, 5, 0, 2.1, 76.2, 0, 0.6, 6.77, 1.5, 1.3, 1.1, 0, 0.9, 1.1, 0, 0, 1.1, 1.5, 0.1, 1.2, 1.4, 1.1, 38.6, 76.2, 1.2, 2.5, 'Bournemouth', 'PremierLeague\r'),
(29814, 'ci', 'Max Gradel', 28, ' M(LR)', 175, 69, 11, 3, 899, 1, 2, 1, 0, 1.3, 73.8, 0, 0.4, 6.71, 1.6, 0.9, 0.8, 0, 0.4, 1.4, 0.1, 0, 0.7, 1.9, 0.2, 0.9, 1.8, 0.7, 20.4, 73.8, 0.7, 0.5, 'Bournemouth', 'PremierLeague\r'),
(81026, 'no', 'Joshua King', 24, ' AM(CLR),FW', 185, 83, 24, 7, 1927, 6, 2, 1, 0, 1.8, 76.9, 1, 1, 6.71, 1, 0.3, 1.2, 0, 0.4, 0.4, 0, 0, 0.8, 0.9, 0.5, 1.6, 2.8, 0.8, 14.4, 76.9, 0.2, 0.1, 'Bournemouth', 'PremierLeague\r'),
(528, 'fr', 'Sylvain Distin', 38, ' D(C)', 193, 87, 9, 3, 843, 0, 0, 0, 0, 0.2, 83.3, 0, 2.8, 6.67, 1.6, 2, 0.3, 0.2, 3.9, 0.4, 0.3, 0, 0.1, 0.1, 0.1, 0.1, 0, 0.1, 37.4, 83.3, 0, 1.5, 'Bournemouth', 'PremierLeague\r'),
(13932, 'gb', 'Tommy Elphick', 28, ' D(C)', 180, 73, 11, 1, 1012, 1, 0, 1, 0, 0.3, 82.7, 0, 3, 6.61, 0.9, 2.7, 0.8, 0.8, 4.3, 0.6, 0.1, 0, 0.1, 0.7, 0.1, 0.1, 0.2, 0.1, 38.1, 82.7, 0, 2.3, 'Bournemouth', 'PremierLeague\r'),
(14000, 'gb', 'Marc Pugh', 29, ' AM(L)', 180, 72, 15, 11, 1337, 3, 2, 1, 0, 0.8, 78.6, 2, 0.5, 6.6, 1.2, 0.6, 0.4, 0, 0.4, 0.7, 0, 0, 0.5, 1.1, 0, 1.4, 1.3, 0.5, 19.3, 78.6, 0.3, 0.7, 'Bournemouth', 'PremierLeague\r'),
(134115, 'gb', 'Callum Wilson', 24, ' FW', 180, 66, 9, 4, 773, 5, 0, 0, 0, 1.3, 73.3, 1, 0.3, 6.53, 0.4, 0.1, 0.9, 0, 0.1, 0.2, 0.2, 0, 0.5, 1.5, 0.3, 1.7, 2.4, 0.5, 10.1, 73.3, 0.1, 0.1, 'Bournemouth', 'PremierLeague\r'),
(134424, 'gb', 'Lee Tomlin', 27, ' AM(CLR),FW', 180, 74, 3, 3, 289, 0, 0, 1, 0, 0.8, 73.3, 0, 0.7, 6.5, 1, 0.3, 0.3, 0, 0.2, 0.8, 0, 0, 1.2, 1.3, 0, 0.8, 1, 1.2, 19.3, 73.3, 0, 0.7, 'Bournemouth', 'PremierLeague\r'),
(14111, 'pl', 'Artur Boruc', 36, ' GK', 193, 89, 32, 0, 2880, 0, 0, 2, 0, 0, 54, 2, 0.1, 6.46, 0, 0, 0, 0, 0.6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23.2, 54, 0, 5.2, 'Bournemouth', 'PremierLeague\r'),
(93647, 'gb', 'Benik Afobe', 23, ' AM(C),FW', 183, 79, 12, 3, 937, 4, 0, 0, 0, 0.9, 87.1, 0, 0.7, 6.43, 0.3, 0.1, 1, 0, 0.6, 0.2, 0, 0, 0.8, 0.6, 0.6, 1.2, 1.7, 0.8, 14.9, 87.1, 0.1, 0.1, 'Bournemouth', 'PremierLeague\r'),
(21427, 'gb', 'Glenn Murray', 32, ' FW', 183, 80, 6, 13, 669, 3, 0, 2, 0, 1.2, 65.4, 0, 1.2, 6.38, 0.4, 0.2, 0.9, 0, 0.5, 0.5, 0.2, 0, 0.3, 0.9, 0.6, 0.8, 1.3, 0.3, 9.4, 65.4, 0.1, 0.2, 'Bournemouth', 'PremierLeague\r'),
(74586, 'gb', 'Ryan Allsop', 24, ' GK', 186, 87, 0, 1, 45, 0, 0, 0, 0, 0, 87.5, 0, 0, 6.34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 87.5, 0, 1, 'Bournemouth', 'PremierLeague\r'),
(97452, 'ar', 'Juan Iturbe', 23, ' AM(LR)', 169, 62, 0, 2, 56, 0, 0, 0, 0, 0.5, 78.3, 0, 0.5, 6.34, 0, 1, 0, 0, 0, 1, 0, 0, 0.5, 0.5, 0, 0, 1, 0.5, 11.5, 78.3, 0, 1, 'Bournemouth', 'PremierLeague\r'),
(19736, 'gb', 'Lewis Grabban', 28, ' FW', 183, 71, 4, 11, 570, 0, 0, 2, 0, 1, 82, 0, 0.3, 6.27, 0.7, 0.1, 0.5, 0, 0.1, 0.4, 0.1, 0, 0.2, 0.1, 0.1, 0.8, 0.8, 0.2, 15.9, 82, 0.1, 0.5, 'Bournemouth', 'PremierLeague\r'),
(123167, 'gb', 'Tyrone Mings', 23, ' D(L)', 191, 77, 0, 1, 12, 0, 0, 0, 0, 0, 100, 0, 0, 6.21, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 100, 0, 0, 'Bournemouth', 'PremierLeague\r'),
(83257, 'gb', 'Eunan O\'Kane', 25, ' DMC', 173, 69, 6, 10, 752, 0, 1, 2, 0, 0.4, 77, 0, 0.2, 6.13, 0.6, 0.5, 0.4, 0, 0.8, 0.6, 0.1, 0, 0.4, 0.4, 0.1, 0.5, 0.5, 0.4, 23.7, 77, 0, 1.9, 'Bournemouth', 'PremierLeague\r'),
(136347, 'za', 'Tokelo Rantie', 25, ' FW', 172, 68, 0, 3, 38, 0, 0, 0, 0, 0.3, 90.9, 0, 0, 6.12, 1, 0, 1, 0, 0, 0, 0, 0, 0.3, 0, 0.3, 0.7, 0.3, 0.3, 3.7, 90.9, 0, 0, 'Bournemouth', 'PremierLeague\r'),
(23321, 'fr', 'Yann Kermorgant', 34, ' AM(C),FW', 184, 84, 0, 7, 125, 0, 0, 0, 0, 0.1, 71.2, 0, 0.9, 6.1, 0, 0.3, 0, 0, 0.1, 0, 0, 0, 0.1, 0.4, 0.1, 0.7, 0, 0.1, 8.4, 71.2, 0, 0.4, 'Bournemouth', 'PremierLeague\r'),
(17877, 'gb', 'Shaun MacDonald', 28, ' M(C)', 185, 76, 0, 3, 29, 0, 0, 0, 0, 0, 88.9, 0, 0, 6.01, 0, 0.3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.3, 0, 6, 88.9, 0, 0.3, 'Bournemouth', 'PremierLeague\r'),
(13797, 'au', 'Adam Federici', 31, ' GK', 188, 90, 6, 0, 496, 0, 0, 0, 0, 0, 71.3, 0, 0, 5.98, 0, 0, 0, 0, 0.8, 0.3, 0, 0, 0, 0, 0, 0, 0, 0, 18, 71.3, 0, 6, 'Bournemouth', 'PremierLeague\r'),
(12376, 'fr', 'Yohan Cabaye', 30, ' M(C)', 175, 71, 32, 1, 2704, 5, 1, 7, 0, 2, 82.6, 3, 0.2, 7.23, 3.2, 3.6, 1.2, 0, 0.5, 1.9, 0.2, 0, 1.5, 1.2, 0, 1.1, 0.8, 1.5, 38.5, 82.6, 1.3, 2.9, 'Crystal Palace', 'PremierLeague\r'),
(69844, 'cd', 'Yannick Bolasie', 27, ' AM(LR),FW', 188, 84, 23, 3, 2077, 5, 3, 2, 0, 2.2, 72.5, 2, 0.8, 7.14, 1, 0.4, 1, 0, 1, 0.9, 0.2, 0, 0.9, 1.3, 0.7, 1.7, 2.2, 0.9, 19.5, 72.5, 1, 0.5, 'Crystal Palace', 'PremierLeague\r'),
(3165, 'no', 'Brede Hangeland', 35, ' D(C)', 195, 85, 7, 0, 630, 0, 0, 2, 0, 0.7, 86, 1, 3.7, 7.13, 1.4, 1.4, 1.9, 0.7, 8.6, 0.6, 0.7, 0, 0, 0.4, 0.3, 0.1, 0.1, 0, 34.6, 86, 0, 1.7, 'Crystal Palace', 'PremierLeague\r'),
(12124, 'gb', 'Scott Dann', 29, ' D(C)', 188, 76, 35, 0, 3150, 5, 1, 7, 0, 0.8, 75.3, 1, 3.3, 7.05, 1, 1.8, 0.6, 0.3, 5.1, 0.4, 1.3, 0, 0.3, 0.4, 0.1, 0.1, 0.2, 0.3, 31.9, 75.3, 0, 3.7, 'Crystal Palace', 'PremierLeague\r'),
(85059, 'gb', 'Wilfried Zaha', 23, ' AM(LR)', 180, 66, 30, 4, 2497, 2, 1, 5, 0, 0.9, 76.7, 2, 0.3, 7.03, 1.4, 0.8, 1.2, 0, 0.2, 0.4, 0, 0, 1.2, 2.6, 0.2, 2.5, 2.4, 1.2, 16.3, 76.7, 0.8, 0.6, 'Crystal Palace', 'PremierLeague\r'),
(9156, 'gb', 'Jason Puncheon', 29, ' M(CLR)', 173, 70, 31, 0, 2625, 2, 3, 3, 0, 1.7, 80, 1, 0.4, 6.98, 1.7, 0.9, 1.1, 0, 0.5, 1.5, 0.1, 0, 1.9, 0.9, 0.2, 1.6, 1.7, 1.9, 40, 80, 1.6, 2.1, 'Crystal Palace', 'PremierLeague\r'),
(43105, 'gb', 'Joel Ward', 26, ' D(LR),DMC', 180, 80, 30, 0, 2692, 2, 1, 4, 0, 0.6, 71.1, 0, 1.8, 6.94, 2.1, 2.3, 1.2, 0.1, 3.6, 0.9, 0.5, 0, 0.4, 0.9, 0, 0.7, 0.8, 0.4, 33.4, 71.1, 0.4, 2, 'Crystal Palace', 'PremierLeague\r'),
(8466, 'ie', 'Damien Delaney', 34, ' D(C)', 191, 89, 32, 0, 2880, 2, 3, 2, 0, 0.7, 72.7, 1, 3, 6.89, 1, 1.8, 0.6, 0.5, 6.3, 0.4, 1.2, 2, 0.3, 0.5, 0, 0.2, 0.2, 0.3, 33, 72.7, 0.1, 3.6, 'Crystal Palace', 'PremierLeague\r'),
(20339, 'gb', 'James McArthur', 28, ' M(C)', 168, 64, 26, 2, 2193, 2, 2, 5, 0, 0.6, 85.4, 0, 1.1, 6.85, 2, 2.4, 1.5, 0.1, 0.7, 1.7, 0.4, 0, 0.8, 0.8, 0, 1, 0.6, 0.8, 37.8, 85.4, 0, 2.4, 'Crystal Palace', 'PremierLeague\r'),
(13727, 'au', 'Mile Jedinak', 31, ' DMC', 189, 81, 16, 11, 1531, 0, 0, 6, 0, 0.5, 71.6, 1, 3.8, 6.77, 1.9, 2, 1.3, 0, 2.1, 1, 0.4, 0, 0.3, 0.6, 0.1, 0.3, 0.4, 0.3, 30.7, 71.6, 0, 1.9, 'Crystal Palace', 'PremierLeague\r'),
(38577, 'gb', 'Alex McCarthy', 26, ' GK', 193, 79, 7, 0, 630, 0, 0, 0, 0, 0, 41.2, 0, 0, 6.72, 0, 0, 0, 0, 0.7, 0.1, 0, 0, 0, 0, 0, 0, 0, 0, 29.1, 41.2, 0, 9, 'Crystal Palace', 'PremierLeague\r'),
(79970, 'sn', 'Pape Souaré', 26, ' D(L),M(L)', 178, 69, 34, 0, 3016, 0, 1, 6, 1, 0.3, 75, 0, 0.8, 6.69, 0.9, 2.5, 0.7, 0.1, 3.6, 0.3, 0.5, 1, 0.8, 0.9, 0, 0.6, 0.9, 0.8, 34.3, 75, 0.7, 2.2, 'Crystal Palace', 'PremierLeague\r'),
(73382, 'gb', 'Connor Wickham', 23, ' AM(L),FW', 191, 90, 15, 6, 1327, 5, 3, 1, 0, 1.6, 66.7, 1, 2.6, 6.68, 0.6, 0.2, 1.5, 0, 1, 0.8, 0.1, 0, 0.6, 0.9, 0.1, 1.4, 2.5, 0.6, 18.4, 66.7, 0.1, 1.1, 'Crystal Palace', 'PremierLeague\r'),
(34974, 'ml', 'Bakary Sako', 28, ' M(L)', 180, 76, 11, 9, 1074, 2, 1, 1, 0, 1.7, 82.1, 2, 0.4, 6.61, 0.9, 0.7, 0.7, 0.1, 0.4, 0.5, 0.2, 0, 0.5, 0.6, 0.4, 1.9, 1, 0.5, 16.8, 82.1, 0.7, 0.8, 'Crystal Palace', 'PremierLeague\r'),
(44687, 'gb', 'Martin Kelly', 26, ' D(LR)', 191, 77, 11, 2, 1043, 0, 0, 3, 0, 0.1, 70.7, 0, 0.8, 6.56, 2.5, 1.4, 0.8, 0.2, 2.9, 1, 0.4, 0, 0.3, 0.2, 0, 0.5, 0.2, 0.3, 29.2, 70.7, 0.2, 1.2, 'Crystal Palace', 'PremierLeague\r'),
(13805, 'jm', 'Adrian Mariappa', 29, ' D(CR)', 180, 78, 3, 0, 256, 0, 0, 0, 0, 0, 78.6, 0, 2, 6.5, 1.3, 3.3, 1, 0.3, 4, 0.7, 0.3, 0, 0, 1, 0, 1, 0.3, 0, 39, 78.6, 0.3, 2.3, 'Crystal Palace', 'PremierLeague\r'),
(118326, 'gb', 'Dwight Gayle', 25, ' AM(L),FW', 177, 73, 8, 8, 770, 3, 0, 1, 1, 1.4, 70.8, 1, 1.4, 6.48, 0.7, 0.2, 1.3, 0, 0.2, 0.2, 0, 0, 0.5, 2.2, 0.1, 0.7, 1.8, 0.5, 9, 70.8, 0.2, 0.1, 'Crystal Palace', 'PremierLeague\r'),
(21571, 'gb', 'Wayne Hennessey', 29, ' GK', 198, 90, 29, 0, 2610, 0, 0, 1, 0, 0, 43.8, 0, 0.1, 6.48, 0, 0.1, 0, 0, 0.3, 0.1, 0, 1, 0, 0, 0, 0, 0, 0, 26.1, 43.8, 0, 7.6, 'Crystal Palace', 'PremierLeague\r'),
(260451, 'gb', 'Sullay Kaikai', 20, ' Midfielder', 182, 73, 0, 1, 45, 0, 0, 0, 0, 3, 92.3, 0, 0, 6.45, 2, 0, 1, 0, 0, 1, 0, 0, 2, 0, 0, 0, 1, 2, 13, 92.3, 1, 0, 'Crystal Palace', 'PremierLeague\r'),
(11020, 'gb', 'Joe Ledley', 29, ' M(CL)', 183, 73, 11, 8, 981, 1, 0, 1, 0, 0.4, 79.9, 0, 0.6, 6.43, 0.8, 1.7, 0.6, 0, 1.4, 0.8, 0.5, 0, 0.2, 0.2, 0, 0.1, 0.5, 0.2, 21, 79.9, 0, 0.7, 'Crystal Palace', 'PremierLeague\r'),
(42915, 'kr', 'Lee Chung-yong', 27, ' M(CLR)', 180, 75, 4, 9, 387, 1, 0, 0, 0, 0.4, 85.9, 0, 0.4, 6.4, 1.2, 0.5, 0.3, 0, 0.2, 0.3, 0, 0, 0.5, 0.5, 0, 1.1, 0.5, 0.5, 13.6, 85.9, 0.5, 0.7, 'Crystal Palace', 'PremierLeague\r'),
(43742, 'gb', 'Jordon Mutch', 24, ' AM(CL)', 175, 65, 7, 13, 799, 0, 0, 0, 0, 0.9, 77.9, 0, 0.5, 6.34, 0.9, 0.8, 0.6, 0, 0.4, 0.6, 0.1, 0, 0.4, 0.5, 0.2, 0.7, 1, 0.4, 15.4, 77.9, 0.4, 0.6, 'Crystal Palace', 'PremierLeague\r'),
(7895, 'ar', 'Julian Speroni', 37, ' GK', 186, 87, 2, 0, 180, 0, 0, 0, 0, 0, 56.3, 0, 0, 6.31, 0, 0, 0, 0, 0.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 56.3, 0, 10.5, 'Crystal Palace', 'PremierLeague\r'),
(21427, 'gb', 'Glenn Murray', 32, ' FW', 183, 80, 2, 0, 128, 0, 0, 0, 0, 1, 60, 0, 2.5, 6.3, 0, 0, 4, 0, 0, 0, 0, 0, 1.5, 0.5, 1, 1, 1.5, 1.5, 12.5, 60, 0, 0, 'Crystal Palace', 'PremierLeague\r'),
(6363, 'tg', 'Emmanuel Adebayor', 32, ' FW', 191, 82, 7, 5, 618, 1, 1, 1, 0, 1, 76.1, 0, 1.7, 6.24, 0.2, 0.1, 0.8, 0, 0.6, 0.3, 0, 0, 0.5, 0.4, 0.9, 2.2, 1.6, 0.5, 19.2, 76.1, 0.1, 0.6, 'Crystal Palace', 'PremierLeague\r'),
(6236, 'ma', 'Marouane Chamakh', 32, ' AM(C),FW', 185, 70, 1, 9, 251, 0, 0, 1, 0, 0.2, 78.5, 0, 0.8, 6.17, 0.7, 0.1, 0.7, 0, 0.3, 0.3, 0.2, 0, 0.4, 0.7, 0.4, 0.4, 0.4, 0.4, 9.3, 78.5, 0, 0.1, 'Crystal Palace', 'PremierLeague\r'),
(109670, 'gb', 'Patrick Bamford', 22, ' AM(CLR),FW', 185, 71, 0, 6, 119, 0, 0, 0, 0, 0.5, 64.5, 0, 0.5, 6.09, 0, 0.2, 0.3, 0, 0.3, 0, 0, 0, 0.3, 0, 0.3, 0.2, 0.8, 0.3, 5.2, 64.5, 0, 0, 'Crystal Palace', 'PremierLeague\r'),
(29299, 'gb', 'Fraizer Campbell', 28, ' FW', 172, 82, 4, 7, 361, 0, 0, 1, 0, 0.4, 75, 0, 0.6, 6.04, 0.3, 0.4, 0.7, 0, 0.2, 0.2, 0, 0, 0.1, 0.2, 0.5, 0.8, 1.4, 0.1, 6.9, 75, 0, 0.1, 'Crystal Palace', 'PremierLeague\r'),
(106185, 'gb', 'Jonathan Williams', 22, ' AM(C)', 168, 60, 0, 1, 10, 0, 0, 0, 0, 0, 100, 0, 0, 6.01, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 100, 0, 0, 'Crystal Palace', 'PremierLeague\r'),
(135732, 'gb', 'Hiram Boateng', 20, ' Midfielder', 170, 70, 0, 1, 18, 0, 0, 0, 0, 1, 75, 0, 0, 5.9, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 4, 75, 0, 0, 'Crystal Palace', 'PremierLeague\r'),
(92547, 'gb', 'Ross Barkley', 22, ' M(CL)', 189, 76, 36, 2, 3087, 8, 8, 4, 0, 2.5, 86, 3, 0.7, 7.31, 0.9, 0.4, 0.8, 0, 0.5, 0.7, 0.1, 0, 1.5, 1.9, 0.1, 2, 1.6, 1.5, 47.4, 86, 0.6, 2.7, 'Everton', 'PremierLeague\r'),
(6105, 'gb', 'Phil Jagielka', 33, ' D(CR)', 183, 83, 21, 0, 1852, 0, 0, 0, 0, 0.4, 84.3, 0, 2.7, 7.2, 1.8, 2.4, 0.4, 0.5, 8.1, 0.6, 1, 0, 0.1, 0.7, 0, 0.3, 0.1, 0.1, 49.2, 84.3, 0, 7, 'Everton', 'PremierLeague\r'),
(121454, '', 'Ramiro Funes Mori', 25, ' D(C)', 185, 74, 24, 4, 2191, 4, 1, 4, 1, 0.9, 83.8, 4, 2.7, 7.19, 1.5, 2.4, 0.3, 0.7, 7.8, 0.6, 0.4, 0, 0.2, 0.3, 0.1, 0.1, 0.3, 0.2, 44.2, 83.8, 0.1, 3.8, 'Everton', 'PremierLeague\r'),
(78498, 'be', 'Romelu Lukaku', 23, ' FW', 190, 94, 36, 1, 3177, 18, 6, 3, 0, 3.2, 72.7, 4, 2.5, 7.16, 0.4, 0, 0.8, 0, 0.1, 0.2, 0.1, 0, 1.4, 0.7, 0.4, 2.5, 2.2, 1.4, 29.7, 72.7, 0.2, 0.6, 'Everton', 'PremierLeague\r'),
(188, 'gb', 'Gareth Barry', 35, ' M(C)', 183, 78, 32, 1, 2837, 0, 1, 5, 1, 0.5, 81.9, 1, 1.7, 7.04, 2.9, 1.6, 1.3, 0, 2.4, 1.3, 0.7, 0, 1, 0.8, 0, 0.9, 0.5, 1, 62.4, 81.9, 0.3, 5.6, 'Everton', 'PremierLeague\r'),
(3030, 'gb', 'Tony Hibbert', 35, ' D(R)', 175, 71, 0, 1, 45, 0, 0, 0, 0, 1, 82.4, 0, 0, 6.91, 1, 3, 0, 0, 0, 2, 1, 0, 0, 0, 0, 1, 0, 0, 17, 82.4, 0, 1, 'Everton', 'PremierLeague\r'),
(31826, 'ie', 'Seamus Coleman', 27, ' D(R),M(R)', 178, 67, 27, 1, 2386, 1, 3, 4, 0, 1, 84.1, 0, 0.5, 6.9, 2.1, 1.3, 0.7, 0.2, 2.5, 0.8, 0.4, 1, 0.6, 1, 0.3, 0.9, 1, 0.6, 37.3, 84.1, 0.5, 1.6, 'Everton', 'PremierLeague\r'),
(131523, 'gb', 'Brendan Galloway', 20, ' D(L)', 188, 87, 14, 1, 1225, 0, 1, 2, 0, 0.5, 81.1, 0, 0.5, 6.89, 3.3, 1.4, 0.6, 0.3, 2, 1.3, 0.3, 0, 0.3, 1.9, 0, 0.7, 1, 0.3, 26.4, 81.1, 0.2, 0.6, 'Everton', 'PremierLeague\r'),
(31281, 'ie', 'James McCarthy', 25, ' M(C)', 180, 72, 29, 0, 2435, 2, 2, 5, 1, 0.6, 87, 1, 0.4, 6.88, 2.7, 1.8, 1.3, 0.1, 1.7, 1.3, 0.6, 0, 0.5, 1, 0, 0.7, 0.8, 0.5, 46.8, 87, 0.1, 3.3, 'Everton', 'PremierLeague\r'),
(83455, 'cr', 'Bryan Oviedo', 26, ' D(L)', 172, 69, 12, 2, 998, 0, 1, 0, 0, 0.4, 81.3, 0, 0.2, 6.87, 2.9, 1.4, 1.2, 0.1, 2.4, 1.1, 0.3, 0, 0.9, 0.9, 0.1, 0.7, 0.9, 0.9, 30.9, 81.3, 0.8, 1.7, 'Everton', 'PremierLeague\r'),
(69956, 'gb', 'Tom Cleverley', 26, ' M(CLR)', 175, 67, 17, 5, 1614, 2, 4, 1, 0, 1.1, 83.2, 1, 0.9, 6.86, 2.1, 0.9, 0.5, 0, 0.8, 1.6, 0, 0, 1, 0.9, 0, 0.6, 0.8, 1, 40.2, 83.2, 0.6, 2.3, 'Everton', 'PremierLeague\r'),
(8222, 'gb', 'Leighton Baines', 31, ' D(L)', 170, 74, 16, 2, 1477, 2, 1, 0, 0, 0.5, 82, 1, 0.5, 6.86, 1.9, 1.6, 0.3, 0.2, 2.3, 0.8, 0.3, 0, 1.2, 1.2, 0.2, 0.6, 0.5, 1.2, 42, 82, 1.4, 3.2, 'Everton', 'PremierLeague\r'),
(101374, 'gb', 'John Stones', 22, ' D(CR)', 188, 70, 31, 2, 2780, 0, 0, 3, 0, 0.2, 88.7, 0, 1.6, 6.85, 1.4, 1.7, 0.3, 0.6, 3.8, 0.4, 1.1, 0, 0.2, 0.8, 0, 0.3, 0.3, 0.2, 47.4, 88.7, 0.1, 4.3, 'Everton', 'PremierLeague\r'),
(98317, 'es', 'Gerard Deulofeu', 22, ' AM(R)', 171, 68, 16, 10, 1385, 2, 8, 2, 0, 0.3, 73.6, 0, 0, 6.81, 0.6, 0.5, 0.1, 0, 0.2, 0.8, 0, 0, 1.3, 0.5, 0.1, 1.1, 1.3, 1.3, 20.1, 73.6, 0.9, 1.5, 'Everton', 'PremierLeague\r'),
(316077, '', 'Tom Davies', 17, ' Midfielder', 179, 0, 1, 1, 97, 0, 0, 0, 0, 0.5, 77.6, 0, 0, 6.79, 0.5, 2.5, 1, 0.5, 0.5, 0.5, 0, 0, 0, 1, 0, 0, 2, 0, 24.5, 77.6, 0, 1, 'Everton', 'PremierLeague\r'),
(5582, 'us', 'Tim Howard', 37, ' GK', 187, 88, 25, 0, 2250, 0, 0, 1, 0, 0, 58.4, 2, 0.1, 6.78, 0, 0.2, 0.1, 0, 0.6, 0, 0, 0, 0, 0.1, 0, 0, 0.1, 0, 24.2, 58.4, 0, 5.4, 'Everton', 'PremierLeague\r'),
(255961, 'gb', 'Jonjoe Kenny', 19, ' Defender', 176, 67, 0, 1, 61, 0, 0, 0, 0, 1, 68.2, 0, 0, 6.77, 1, 1, 0, 0, 4, 1, 0, 0, 0, 0, 0, 1, 0, 0, 22, 68.2, 0, 1, 'Everton', 'PremierLeague\r'),
(90983, 'ba', 'Muhamed Besic', 23, ' DMC', 180, 80, 7, 5, 560, 0, 0, 1, 0, 0.3, 86.3, 0, 0.4, 6.75, 2.2, 0.8, 0.4, 0.2, 1.3, 0.7, 0.3, 0, 0.4, 0.2, 0, 1.2, 0.4, 0.4, 27.9, 86.3, 0.1, 2, 'Everton', 'PremierLeague\r'),
(141451, 'gb', 'Matthew Pennington', 21, ' Defender', 185, 77, 4, 0, 299, 0, 0, 1, 0, 0.5, 82.8, 0, 1.8, 6.75, 0.3, 1.8, 0.5, 0.3, 4.3, 0.3, 2, 0, 0, 0, 0, 0.3, 0, 0, 42.3, 82.8, 0, 2.3, 'Everton', 'PremierLeague\r'),
(5625, 'gb', 'Aaron Lennon', 29, ' M(LR)', 165, 63, 17, 8, 1540, 5, 0, 1, 0, 0.7, 81.2, 0, 0, 6.73, 1.4, 0.4, 0.5, 0, 0.6, 0.6, 0.1, 0, 0.9, 0.8, 0, 0.6, 0.7, 0.9, 19.1, 81.2, 0.3, 0.5, 'Everton', 'PremierLeague\r'),
(8943, 'ci', 'Arouna Koné', 32, ' AM(LR),FW', 182, 78, 16, 9, 1459, 5, 4, 1, 0, 1.4, 84.1, 1, 0.6, 6.7, 1, 0.4, 0.6, 0, 0.3, 0.6, 0, 0, 0.6, 0.5, 0.2, 1.8, 1.8, 0.6, 23.2, 84.1, 0.2, 0.5, 'Everton', 'PremierLeague\r'),
(81681, 'es', 'Joel Robles', 26, ' GK', 195, 90, 13, 0, 1170, 0, 0, 1, 0, 0, 46.1, 0, 0.1, 6.65, 0, 0, 0, 0, 0.8, 0.1, 0, 0, 0, 0.1, 0, 0, 0, 0, 32.4, 46.1, 0, 7.1, 'Everton', 'PremierLeague\r'),
(15834, 'be', 'Kevin Mirallas', 28, ' M(CLR)', 179, 68, 10, 13, 1005, 4, 2, 0, 2, 1.8, 82.6, 0, 0.3, 6.63, 0.6, 0.4, 0.6, 0, 0.3, 0.3, 0, 0, 0.8, 0.7, 0.3, 0.6, 0.9, 0.8, 14.3, 82.6, 0.6, 1, 'Everton', 'PremierLeague\r'),
(9314, 'gb', 'Steven Naismith', 29, ' AM(CLR),FW', 178, 72, 4, 6, 451, 3, 0, 1, 0, 0.9, 73.4, 1, 0.8, 6.61, 1.1, 0.3, 1.7, 0, 0.7, 0.9, 0, 0, 0.8, 1.7, 0.3, 1.1, 0.8, 0.8, 17.3, 73.4, 0.2, 0.5, 'Everton', 'PremierLeague\r'),
(30395, 'ie', 'Darron Gibson', 28, ' M(C)', 183, 90, 2, 5, 239, 0, 1, 3, 0, 0.3, 85.1, 0, 1, 6.44, 0.6, 0.6, 0.6, 0, 2.1, 0.4, 0.3, 0, 0.6, 0, 0, 0.4, 0.4, 0.6, 25.9, 85.1, 0, 3.3, 'Everton', 'PremierLeague\r'),
(123138, 'gb', 'Tyias Browning', 22, ' D(R)', 181, 76, 3, 2, 298, 0, 0, 1, 0, 0.4, 81.5, 0, 0.8, 6.39, 1.8, 1.2, 0.8, 0, 2.4, 0.8, 0, 0, 0.4, 0.4, 0, 0, 0.4, 0.4, 18.4, 81.5, 0, 0.8, 'Everton', 'PremierLeague\r'),
(136458, 'gb', 'Kieran Dowell', 18, ' Midfielder', 0, 0, 1, 1, 72, 0, 0, 0, 0, 0, 83.3, 0, 0, 6.27, 0, 0, 0.5, 0, 0, 2.5, 0, 0, 0.5, 0, 0, 2, 1, 0.5, 15, 83.3, 0, 0, 'Everton', 'PremierLeague\r'),
(3553, 'za', 'Steven Pienaar', 34, ' M(L)', 173, 69, 0, 4, 118, 0, 0, 0, 0, 0.5, 77.9, 0, 0.5, 6.25, 0, 1, 0.3, 0, 0.8, 0.5, 0, 0, 0.3, 0.8, 0, 1, 1, 0.3, 19.3, 77.9, 0.3, 1, 'Everton', 'PremierLeague\r'),
(111141, 'sn', 'Oumar Niasse', 26, ' FW', 182, 82, 2, 3, 142, 0, 0, 0, 0, 0.4, 76.7, 0, 0.4, 6.24, 0.8, 0.6, 0.4, 0, 0, 0.4, 0, 0, 0.6, 0.6, 0, 0.4, 0.8, 0.6, 8.6, 76.7, 0.4, 0.2, 'Everton', 'PremierLeague\r'),
(316078, 'gb', 'Callum Connolly', 18, ' Defender', 0, 0, 0, 1, 36, 0, 0, 0, 0, 0, 100, 0, 0, 6.16, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 100, 0, 2, 'Everton', 'PremierLeague\r'),
(5047, 'gb', 'Leon Osman', 35, ' M(CLR)', 173, 67, 2, 7, 218, 0, 0, 0, 0, 0.3, 85.2, 0, 0.1, 6.09, 0.3, 0.1, 0.2, 0.1, 0.1, 0.4, 0, 0, 0, 0.7, 0, 0.3, 0.4, 0, 15.8, 85.2, 0, 0.4, 'Everton', 'PremierLeague\r'),
(104749, 'dz', 'Riyad Mahrez', 25, ' AM(CLR)', 179, 61, 36, 1, 3058, 17, 11, 1, 0, 2.3, 73.6, 10, 0.9, 7.84, 1.4, 1, 0.5, 0, 0.4, 1.9, 0.1, 0, 1.8, 2.2, 0.1, 2.4, 2.1, 1.8, 27.9, 73.6, 0.9, 1.4, 'Leicester', 'PremierLeague\r'),
(114075, 'fr', 'N\'Golo Kanté', 25, ' DMC', 169, 68, 33, 4, 3020, 1, 4, 3, 0, 0.6, 81.6, 3, 1, 7.61, 4.7, 4.2, 1.2, 0, 1.5, 1.6, 0.3, 0, 0.8, 0.5, 0, 0.7, 1.2, 0.8, 39.2, 81.6, 0.1, 1.7, 'Leicester', 'PremierLeague\r'),
(106981, 'gb', 'Jamie Vardy', 29, ' AM(L),FW', 178, 76, 36, 0, 3140, 24, 6, 5, 1, 3.2, 65.8, 3, 2.6, 7.51, 1, 0.5, 1.2, 0, 0.2, 0.5, 0.1, 0, 1.3, 0.8, 0.7, 0.8, 1.8, 1.3, 17.4, 65.8, 0.3, 0.4, 'Leicester', 'PremierLeague\r'),
(12431, 'at', 'Christian Fuchs', 30, ' D(L),M(L)', 186, 86, 30, 2, 2710, 0, 4, 4, 0, 0.6, 72.4, 4, 1.5, 7.5, 3.1, 3.1, 1, 0.3, 3.8, 1.7, 0.3, 0, 1.4, 0.4, 0, 0.3, 0.7, 1.4, 36.9, 72.4, 1.1, 2.8, 'Leicester', 'PremierLeague\r'),
(75138, 'gb', 'Daniel Drinkwater', 26, ' DMC', 178, 70, 35, 0, 3039, 2, 7, 3, 1, 1.2, 77.6, 1, 0.8, 7.3, 3, 1.6, 1.5, 0, 1.9, 1.5, 0.5, 0, 1.3, 0.7, 0, 1.1, 0.7, 1.3, 56.7, 77.6, 0.3, 3.9, 'Leicester', 'PremierLeague\r'),
(4145, 'de', 'Robert Huth', 31, ' D(C)', 191, 80, 35, 0, 3150, 3, 0, 8, 0, 0.8, 71.6, 1, 3.3, 7.15, 1.2, 2.2, 1, 0.5, 7.4, 0.3, 1, 0, 0.1, 0.5, 0.1, 0.1, 0.2, 0.1, 23.1, 71.6, 0, 1, 'Leicester', 'PremierLeague\r'),
(23683, 'ie', 'Danny Simpson', 29, ' D(R)', 178, 74, 30, 0, 2613, 0, 0, 3, 1, 0.2, 71.6, 1, 2, 7.13, 1.7, 3.1, 1, 0.3, 4.2, 0.7, 0.6, 0, 0.2, 0.4, 0, 0.3, 0.4, 0.2, 29, 71.6, 0.2, 1.8, 'Leicester', 'PremierLeague\r'),
(8157, 'jm', 'Wes Morgan', 32, ' D(C)', 185, 93, 38, 0, 3420, 2, 0, 3, 0, 0.6, 74.4, 1, 2.4, 7.07, 1.3, 2.5, 0.7, 0.7, 5.7, 0.2, 1.1, 0, 0.1, 0.4, 0, 0.1, 0.3, 0.1, 21.5, 74.4, 0, 1.2, 'Leicester', 'PremierLeague\r'),
(42147, 'gb', 'Marc Albrighton', 26, ' M(LR)', 175, 67, 34, 4, 2769, 2, 6, 4, 0, 1.1, 63.8, 0, 0.3, 7.05, 1.7, 1.3, 0.6, 0, 0.5, 1.2, 0, 0, 1.6, 0.7, 0.1, 0.7, 1, 1.6, 24, 63.8, 1.4, 1.5, 'Leicester', 'PremierLeague\r'),
(91822, 'gh', 'Jeffrey Schlupp', 23, ' D(L),M(L)', 178, 72, 14, 10, 1385, 1, 2, 4, 0, 1.1, 73.1, 0, 1.1, 6.86, 1.9, 1.3, 0.6, 0.1, 0.9, 0.6, 0, 0, 0.7, 0.9, 0, 0.8, 1, 0.7, 19.2, 73.1, 0.4, 1.6, 'Leicester', 'PremierLeague\r'),
(31856, 'be', 'Ritchie de Laet', 27, ' D(LR)', 186, 77, 7, 5, 656, 1, 0, 1, 0, 0.2, 64.7, 0, 1.1, 6.8, 2.1, 1.8, 0.5, 0, 2.1, 0.6, 0.9, 0, 0.5, 0.3, 0, 0.3, 0.3, 0.5, 18.2, 64.7, 0.3, 1.3, 'Leicester', 'PremierLeague\r'),
(19545, 'dk', 'Kasper Schmeichel', 29, ' GK', 189, 84, 38, 0, 3420, 0, 0, 2, 0, 0, 35.7, 0, 0.2, 6.78, 0, 0.1, 0, 0, 0.8, 0.1, 0, 0, 0.1, 0, 0, 0, 0, 0.1, 30.2, 35.7, 0, 8.8, 'Leicester', 'PremierLeague\r'),
(14621, 'pl', 'Marcin Wasilewski', 36, ' D(CR)', 186, 88, 3, 1, 302, 0, 0, 2, 0, 0.3, 76.7, 0, 2, 6.74, 2.5, 2.3, 1, 1, 4.3, 1.3, 1.3, 0, 0, 0, 0, 0, 0, 0, 18.3, 76.7, 0, 1, 'Leicester', 'PremierLeague\r'),
(26222, 'jp', 'Shinji Okazaki', 30, ' AM(LR),FW', 174, 76, 28, 8, 2074, 5, 0, 1, 0, 1.3, 74.9, 1, 1.5, 6.61, 1, 0.4, 0.9, 0, 0.2, 0.6, 0.1, 0, 0.6, 1.3, 0.2, 1.3, 1.5, 0.6, 15.1, 74.9, 0, 0.1, 'Leicester', 'PremierLeague\r'),
(19847, 'ar', 'Leonardo Ulloa', 29, ' FW', 190, 80, 7, 22, 970, 6, 2, 0, 0, 1.2, 70.4, 0, 1.8, 6.6, 0.9, 0.2, 0.7, 0, 0.7, 0.7, 0, 0, 0.5, 0.6, 0.2, 1.2, 1.2, 0.5, 13.7, 70.4, 0, 0.2, 'Leicester', 'PremierLeague\r'),
(32018, 'gb', 'Andy King', 27, ' AM(C)', 183, 75, 9, 16, 1050, 2, 1, 2, 0, 0.8, 77.9, 0, 0.7, 6.56, 1.1, 1.2, 0.3, 0, 1, 0.5, 0.2, 0, 0.4, 0.3, 0, 0.2, 0.5, 0.4, 19, 77.9, 0.1, 1.1, 'Leicester', 'PremierLeague\r'),
(15401, 'ch', 'Gökhan Inler', 31, ' DMC', 183, 79, 3, 2, 195, 0, 0, 0, 0, 0.4, 79, 0, 1, 6.47, 2, 2, 0.6, 0, 0, 0.6, 0.2, 0, 0.2, 0.8, 0, 1, 0.4, 0.2, 24.8, 79, 0, 2.2, 'Leicester', 'PremierLeague\r'),
(136945, 'gb', 'Demarai Gray', 19, ' AM(LR)', 179, 66, 1, 11, 178, 0, 1, 0, 0, 0.4, 78.7, 0, 0.1, 6.35, 0.3, 0.5, 0.3, 0, 0.2, 0.3, 0.1, 0, 0.5, 0.3, 0, 0.3, 0.3, 0.5, 7.4, 78.7, 0.3, 0.3, 'Leicester', 'PremierLeague\r'),
(13814, 'gb', 'Nathan Dyer', 28, ' M(R)', 165, 60, 0, 12, 213, 1, 1, 1, 0, 0.4, 71.9, 0, 0.1, 6.23, 0.3, 0.1, 0.7, 0, 0, 0.5, 0, 0, 0.3, 0.8, 0, 0.7, 1.2, 0.3, 5.3, 71.9, 0.2, 0.2, 'Leicester', 'PremierLeague\r'),
(243552, 'gh', 'Daniel Amartey', 21, ' Midfielder', 182, 76, 1, 4, 102, 0, 0, 0, 0, 0.2, 81.8, 0, 0.4, 6.22, 0.2, 0.4, 0, 0.2, 0.4, 0.2, 0, 0, 0.2, 0, 0, 0.2, 0.2, 0.2, 13.2, 81.8, 0, 0.6, 'Leicester', 'PremierLeague\r'),
(29574, 'fr', 'Yohan Benalouane', 29, ' D(CR)', 180, 74, 0, 4, 66, 0, 0, 1, 0, 0, 28.6, 0, 0.8, 6.15, 0, 1.5, 0.8, 0, 1, 0, 0.5, 0, 0, 0, 0, 0, 0, 0, 3.5, 28.6, 0, 0, 'Leicester', 'PremierLeague\r'),
(75217, 'hr', 'Andrej Kramaric', 25, ' FW', 177, 73, 0, 2, 22, 0, 0, 0, 0, 0.5, 72.7, 0, 0, 6.09, 0.5, 0, 0.5, 0, 0, 0, 0, 0, 0.5, 0, 0, 0, 1, 0.5, 5.5, 72.7, 0, 0, 'Leicester', 'PremierLeague\r'),
(294850, 'gb', 'Joe Dodoo', 20, ' Forward', 183, 70, 0, 1, 19, 0, 0, 0, 0, 0, 50, 0, 0, 5.99, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 6, 50, 0, 0, 'Leicester', 'PremierLeague\r'),
(80767, 'br', 'Philippe Coutinho', 24, ' M(CLR)', 171, 71, 24, 2, 2005, 8, 5, 2, 1, 4.3, 78.9, 4, 0.2, 7.29, 1.3, 0.7, 0.4, 0, 0.3, 1.3, 0, 0, 1.9, 1.1, 0.2, 2.2, 2, 1.9, 42, 78.9, 0.4, 2.2, 'Liverpool', 'PremierLeague\r'),
(4511, 'gb', 'James Milner', 30, ' M(CLR)', 175, 70, 28, 0, 2416, 5, 11, 9, 1, 1.4, 77.4, 4, 1.1, 7.21, 2.5, 1.3, 1.7, 0, 0.8, 1.9, 0.1, 0, 2.2, 1.2, 0.1, 2.2, 1.6, 2.2, 49.1, 77.4, 2.1, 2.5, 'Liverpool', 'PremierLeague\r'),
(96182, 'br', 'Roberto Firmino', 24, ' M(CLR),FW', 181, 76, 24, 7, 1982, 10, 7, 1, 0, 2, 76.6, 5, 0.3, 7.19, 2.2, 0.5, 0.9, 0, 0.4, 0.9, 0.1, 0, 1.6, 0.6, 0.5, 2.1, 1.8, 1.6, 32.2, 76.6, 0.1, 0.7, 'Liverpool', 'PremierLeague\r'),
(68659, 'gb', 'Jordan Henderson', 26, ' M(CLR)', 182, 67, 15, 2, 1293, 2, 3, 1, 0, 1.5, 79.1, 0, 1.2, 7.14, 2.4, 1.3, 0.6, 0.1, 1, 1, 0.1, 0, 1.1, 0.5, 0.2, 0.7, 0.8, 1.1, 55.2, 79.1, 0.7, 4.6, 'Liverpool', 'PremierLeague\r'),
(23736, 'gb', 'Daniel Sturridge', 26, ' FW', 188, 76, 11, 3, 980, 8, 1, 0, 0, 3.4, 78.2, 1, 0.4, 7.12, 0.2, 0.2, 0.1, 0, 0.3, 0.2, 0, 0, 0.5, 0.9, 0.5, 2.3, 1.5, 0.5, 22.6, 78.2, 0.1, 0.9, 'Liverpool', 'PremierLeague\r'),
(31451, 'br', 'Lucas Leiva', 29, ' D(C),M(C)', 179, 74, 21, 6, 1953, 0, 1, 8, 0, 0.3, 83.4, 1, 2.3, 7.08, 4, 1.9, 1.8, 0.1, 1, 1.4, 0.3, 0, 0.8, 0.7, 0, 0.7, 0.5, 0.8, 55, 83.4, 0, 3.1, 'Liverpool', 'PremierLeague\r'),
(21683, 'gb', 'Adam Lallana', 28, ' AM(CLR)', 172, 73, 23, 7, 2113, 4, 6, 2, 0, 1.5, 82.4, 1, 0.8, 7.08, 2, 0.7, 0.9, 0, 1.2, 1.1, 0.1, 0, 1.7, 1, 0.5, 1.9, 1.6, 1.7, 33, 82.4, 0.4, 0.8, 'Liverpool', 'PremierLeague\r'),
(29575, 'fr', 'Mamadou Sakho', 26, ' D(C)', 187, 83, 21, 1, 1855, 1, 0, 1, 0, 0.3, 87.9, 0, 3.4, 7.07, 1.4, 1.7, 0.4, 0.4, 6.2, 0.3, 1, 0, 0.2, 0.6, 0, 0.5, 0.5, 0.2, 56.5, 87.9, 0, 3.1, 'Liverpool', 'PremierLeague\r'),
(113275, 'es', 'Alberto Moreno', 23, ' D(L),M(L)', 170, 65, 28, 4, 2548, 1, 4, 3, 0, 1.1, 81.3, 3, 0.4, 7.05, 2.9, 2, 0.9, 0, 1.5, 1, 0.2, 0, 1.9, 0.7, 0.2, 0.9, 0.6, 1.9, 41.4, 81.3, 1.1, 2.7, 'Liverpool', 'PremierLeague\r'),
(111212, 'de', 'Emre Can', 22, ' D(CLR),DMC', 184, 82, 28, 2, 2493, 1, 0, 9, 0, 1, 81.3, 1, 1.5, 7.05, 2.6, 2.1, 1.2, 0.1, 1.4, 1.3, 0.3, 0, 1.1, 1, 0.2, 1.3, 1, 1.1, 59.8, 81.3, 0, 3.7, 'Liverpool', 'PremierLeague\r'),
(29106, 'hr', 'Dejan Lovren', 26, ' D(C)', 188, 84, 22, 2, 1898, 0, 0, 2, 0, 0.9, 84.6, 1, 3.3, 6.97, 1.4, 1.5, 1, 0.4, 6.4, 0.6, 0.6, 0, 0.3, 0.5, 0, 0, 0.3, 0.3, 43.8, 84.6, 0, 3.3, 'Liverpool', 'PremierLeague\r'),
(107846, 'gb', 'Kevin Stewart', 22, ' M(C)', 171, 73, 6, 1, 564, 0, 0, 1, 0, 0.7, 88, 0, 0.7, 6.94, 2.7, 2.1, 1.3, 0, 2, 0.7, 0.3, 0, 0.6, 2.3, 0, 1.3, 1.4, 0.6, 64.4, 88, 0, 3, 'Liverpool', 'PremierLeague\r'),
(19840, 'sk', 'Martin Skrtel', 31, ' D(C)', 193, 81, 21, 1, 1886, 1, 0, 5, 0, 0.5, 85.3, 0, 2.6, 6.93, 1, 1.9, 1, 0.7, 6.7, 0.2, 0.9, 1, 0.2, 0.3, 0, 0, 0.2, 0.2, 53.4, 85.3, 0, 2.5, 'Liverpool', 'PremierLeague\r'),
(136451, 'gb', 'Joseph Gomez', 19, ' D(CLR)', 188, 77, 5, 0, 438, 0, 1, 3, 0, 0.2, 78.8, 0, 1.8, 6.86, 2.4, 2.4, 1.8, 0, 3.6, 0.6, 0.6, 0, 0.6, 0.2, 0, 1.6, 0.4, 0.6, 44.4, 78.8, 0.2, 1.8, 'Liverpool', 'PremierLeague\r'),
(68312, 'be', 'Christian Benteke', 25, ' FW', 190, 83, 14, 15, 1520, 9, 3, 2, 0, 2.1, 66.1, 3, 4.4, 6.83, 0.3, 0, 1, 0, 0.4, 0.1, 0, 0, 1.1, 0.9, 0.6, 1.1, 1.7, 1.1, 17.7, 66.1, 0, 0.4, 'Liverpool', 'PremierLeague\r'),
(69375, 'gb', 'Nathaniel Clyne', 25, ' D(R),M(R)', 175, 67, 33, 0, 2970, 1, 0, 6, 0, 0.9, 78.6, 0, 0.3, 6.79, 2.5, 1.6, 0.6, 0.3, 1.7, 0.5, 0.2, 0, 0.7, 0.8, 0, 0.9, 0.7, 0.7, 45.8, 78.6, 0.3, 1.8, 'Liverpool', 'PremierLeague\r'),
(3817, 'ci', 'Kolo Touré', 35, ' D(C)', 183, 74, 9, 5, 859, 1, 0, 1, 0, 0.3, 81.5, 0, 0.6, 6.76, 1.6, 1.8, 0.1, 0.7, 3.2, 0.4, 0.2, 0, 0.1, 0.1, 0, 0, 0.1, 0.1, 33.2, 81.5, 0, 1.6, 'Liverpool', 'PremierLeague\r'),
(99165, 'gb', 'Danny Ward', 22, ' Goalkeeper', 191, 88, 2, 0, 180, 0, 0, 0, 0, 0, 53.1, 0, 0.5, 6.74, 0, 0, 0, 0, 0.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24.5, 53.1, 0, 4, 'Liverpool', 'PremierLeague\r'),
(141513, 'gb', 'Cameron Brannagan', 20, ' Midfielder', 180, 71, 1, 2, 112, 0, 0, 0, 0, 0.3, 95.1, 0, 0, 6.71, 1.7, 1.3, 0, 0, 0, 1.3, 0.3, 0, 1, 0, 0, 0.7, 0, 1, 40.7, 95.1, 0.7, 1.3, 'Liverpool', 'PremierLeague\r'),
(94030, 'gb', 'Jon Flanagan', 23, ' D(LR)', 181, 79, 5, 0, 421, 0, 1, 1, 0, 0, 83.8, 0, 1.4, 6.69, 2.2, 1.8, 1.4, 0.2, 3.4, 2.6, 0.4, 0, 0.4, 0.2, 0, 0.8, 0.8, 0.4, 50.6, 83.8, 0.2, 1, 'Liverpool', 'PremierLeague\r'),
(257539, 'gb', 'Sheyi Ojo', 19, ' AM(LR)', 177, 64, 5, 3, 397, 0, 3, 0, 0, 0.6, 87.1, 0, 0.3, 6.66, 1.1, 0.3, 0.4, 0, 0.1, 0.4, 0, 0, 1.5, 1, 0, 1.3, 1.5, 1.5, 17.4, 87.1, 0.5, 0.4, 'Liverpool', 'PremierLeague\r'),
(124688, 'be', 'Divock Origi', 21, ' AM(LR),FW', 185, 75, 7, 9, 669, 5, 1, 0, 0, 1.5, 75, 0, 0.4, 6.63, 0.3, 0, 0.7, 0, 0.1, 0.3, 0, 0, 0.6, 0.8, 0.6, 1.6, 1.5, 0.6, 10.3, 75, 0.2, 0, 'Liverpool', 'PremierLeague\r'),
(105797, 'gb', 'Jordon Ibe', 20, ' AM(LR)', 176, 81, 12, 15, 1172, 1, 2, 0, 0, 1.1, 84.8, 1, 0.1, 6.59, 0.4, 0, 0.4, 0, 0, 0.3, 0, 0, 0.7, 0.5, 0, 1.3, 1, 0.7, 17.7, 84.8, 0.4, 0.4, 'Liverpool', 'PremierLeague\r'),
(23444, 'gb', 'Joe Allen', 26, ' M(C)', 168, 62, 8, 11, 736, 2, 1, 0, 0, 0.6, 84.1, 0, 0.2, 6.57, 1.5, 0.7, 0.7, 0.1, 0.4, 0.7, 0.1, 0, 0.6, 1.1, 0, 0.7, 0.5, 0.6, 21.5, 84.1, 0.1, 1, 'Liverpool', 'PremierLeague\r'),
(91762, 'gb', 'Danny Ings', 23, ' AM(C),FW', 178, 73, 3, 3, 340, 2, 0, 1, 0, 1.7, 76.3, 0, 0.5, 6.54, 0.2, 0.2, 1.2, 0, 0.3, 0, 0, 0, 0.8, 0.8, 0.3, 0.5, 1.3, 0.8, 13.3, 76.3, 0.2, 0.5, 'Liverpool', 'PremierLeague\r'),
(52197, 'be', 'Simon Mignolet', 28, ' GK', 193, 87, 34, 0, 3060, 0, 0, 2, 0, 0, 60.6, 0, 0.1, 6.52, 0, 0.1, 0, 0, 0.8, 0, 0, 0, 0, 0.1, 0, 0, 0, 0, 23.6, 60.6, 0, 5.6, 'Liverpool', 'PremierLeague\r'),
(141437, 'gb', 'Jordan Rossiter', 19, ' Midfielder', 178, 68, 0, 1, 14, 0, 0, 0, 0, 0, 80, 0, 0, 6.35, 1, 1, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 5, 80, 0, 0, 'Liverpool', 'PremierLeague\r'),
(141414, 'au', 'Brad Smith', 22, ' D(L)', 178, 70, 3, 1, 285, 0, 0, 1, 1, 0.3, 76.6, 0, 0.5, 6.33, 2.8, 0.8, 1.8, 0, 3, 0.5, 0.3, 0, 0.5, 1.3, 0, 1.5, 0.8, 0.5, 26.8, 76.6, 1, 1.3, 'Liverpool', 'PremierLeague\r'),
(296522, 'gb', 'Connor Randall', 20, ' Defender', 180, 76, 2, 1, 163, 0, 0, 0, 0, 0.7, 73.2, 0, 0.7, 6.24, 1, 1, 0.7, 0, 0, 0.3, 0.3, 0, 0.3, 0.7, 0, 0.7, 1.3, 0.3, 27.3, 73.2, 0, 1.7, 'Liverpool', 'PremierLeague\r'),
(295964, 'es', 'Sergi Canos', 19, ' AM(R)', 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 80, 0, 1, 6.16, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 80, 0, 0, 'Liverpool', 'PremierLeague\r'),
(142352, 'pt', 'João Teixeira', 23, ' AM(CLR)', 167, 64, 0, 1, 3, 0, 0, 0, 0, 0, 100, 0, 0, 6.11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 100, 0, 0, 'Liverpool', 'PremierLeague\r'),
(76499, 'gb', 'Steven Caulker', 24, ' D(C)', 191, 76, 0, 3, 4, 0, 0, 0, 0, 0.3, 44.4, 0, 1, 6.06, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 44.4, 0, 0, 'Liverpool', 'PremierLeague\r'),
(69179, 'hu', 'Adam Bogdan', 28, ' GK', 193, 82, 2, 0, 180, 0, 0, 0, 0, 0, 46.2, 0, 0, 5.6, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19.5, 46.2, 0, 5.5, 'Liverpool', 'PremierLeague\r'),
(297409, 'es', 'Pedro Chirivella', 19, ' Midfielder', 178, 66, 1, 0, 46, 0, 0, 0, 0, 0, 72.7, 0, 0, 5.31, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 1, 0, 33, 72.7, 0, 2, 'Liverpool', 'PremierLeague\r'),
(75691, 'ar', 'Nicolás Otamendi', 28, ' D(C)', 183, 81, 30, 0, 2672, 1, 0, 9, 0, 0.9, 84.1, 4, 3, 7.47, 3, 3.5, 1, 0.8, 7, 1.4, 0.4, 0, 0.2, 1, 0, 0.2, 0.4, 0.2, 52.3, 84.1, 0, 3.2, 'Manchester City', 'PremierLeague\r'),
(73084, 'be', 'Kevin De Bruyne', 24, ' AM(CLR),FW', 181, 68, 22, 3, 2004, 7, 9, 2, 0, 2, 78.3, 4, 0.5, 7.45, 1.1, 0.7, 0.6, 0, 0.5, 1.9, 0, 0, 3.2, 0.7, 0.3, 1.4, 1.7, 3.2, 45.1, 78.3, 1.9, 1.9, 'Manchester City', 'PremierLeague\r'),
(14260, 'ar', 'Sergio Agüero', 28, ' AM(CL),FW', 173, 70, 29, 1, 2375, 24, 2, 1, 0, 4, 84.7, 5, 0.3, 7.39, 0.5, 0.2, 0.7, 0, 0, 0.6, 0, 0, 0.9, 1.2, 0.9, 3.4, 2, 0.9, 24.2, 84.7, 0.1, 0.5, 'Manchester City', 'PremierLeague\r'),
(10136, 'be', 'Vincent Kompany', 30, ' D(C)', 190, 85, 13, 1, 1179, 2, 0, 5, 0, 0.8, 82.9, 0, 2.5, 7.28, 1.4, 1.6, 1.1, 0.7, 5.6, 0.5, 0.3, 0, 0.2, 0.2, 0, 0.1, 0.3, 0.2, 48.4, 82.9, 0, 3.9, 'Manchester City', 'PremierLeague\r'),
(14102, 'es', 'David Silva', 30, ' M(CLR)', 173, 67, 22, 2, 1802, 2, 11, 1, 0, 1.2, 86.4, 2, 0.4, 7.28, 1.5, 0.7, 0.8, 0, 0.1, 1.5, 0, 0, 2.8, 1.4, 0, 2.4, 0.8, 2.8, 57.8, 86.4, 1.4, 2.1, 'Manchester City', 'PremierLeague\r'),
(6042, 'fr', 'Gaël Clichy', 30, ' D(L)', 176, 65, 12, 2, 1088, 0, 1, 0, 0, 0.1, 81.4, 0, 0.9, 7.24, 2, 3.6, 0.7, 0.4, 2.9, 0.9, 0.2, 0, 0.9, 0.4, 0, 0.6, 0.6, 0.9, 49.5, 81.4, 0.6, 2.1, 'Manchester City', 'PremierLeague\r'),
(14053, 'ci', 'Yaya Touré', 33, ' M(C)', 189, 90, 28, 4, 2335, 6, 5, 3, 0, 2.4, 86.5, 2, 0.9, 7.22, 1.3, 0.8, 0.8, 0, 1.1, 1.3, 0.1, 0, 1.4, 0.8, 0.1, 1.4, 0.8, 1.4, 57.4, 86.5, 0.1, 3.4, 'Manchester City', 'PremierLeague\r'),
(19119, 'br', 'Fernandinho', 31, ' DMC', 179, 67, 31, 2, 2732, 2, 2, 8, 0, 0.9, 87.4, 2, 1.3, 7.17, 3.2, 1.7, 1.7, 0.2, 1.3, 1.8, 0.2, 0, 0.9, 1, 0, 1, 0.8, 0.9, 56.7, 87.4, 0.1, 2.5, 'Manchester City', 'PremierLeague\r'),
(12267, 'rs', 'Aleksandar Kolarov', 30, ' D(L),M(L)', 187, 83, 25, 4, 2282, 3, 3, 3, 0, 1.3, 78.7, 1, 1.6, 7.14, 1.2, 1.6, 0.7, 0.2, 2.4, 0.7, 0.3, 0, 1.3, 1.1, 0.1, 0.5, 0.8, 1.3, 46.9, 78.7, 1.4, 2.2, 'Manchester City', 'PremierLeague\r'),
(19471, 'fr', 'Bacary Sagna', 33, ' D(CR)', 176, 72, 27, 1, 2448, 0, 3, 4, 0, 0.2, 82.7, 1, 3.1, 7.12, 1.8, 1.8, 0.6, 0.4, 3.5, 0.7, 0.3, 0, 1, 0.5, 0, 0.4, 0.5, 1, 56.7, 82.7, 0.7, 1.9, 'Manchester City', 'PremierLeague\r'),
(14244, 'ar', 'Pablo Zabaleta', 31, ' D(R)', 174, 74, 12, 1, 1062, 0, 1, 3, 0, 0.2, 85, 0, 1.4, 6.97, 3.3, 1.9, 1.2, 0.1, 2.7, 1.3, 0.2, 0, 0.2, 0.7, 0.2, 0.7, 0.4, 0.2, 44.2, 85, 0, 1, 'Manchester City', 'PremierLeague\r'),
(31958, 'br', 'Fernando', 28, ' DMC', 183, 76, 17, 7, 1713, 2, 0, 4, 0, 0.6, 89, 0, 1.6, 6.95, 2.5, 1.8, 1.1, 0.1, 1.5, 1.6, 0.2, 0, 0.3, 0.4, 0, 0.4, 0.4, 0.3, 38.1, 89, 0, 2, 'Manchester City', 'PremierLeague\r'),
(68852, 'fr', 'Eliaquim Mangala', 25, ' D(C)', 187, 74, 23, 0, 2011, 0, 0, 8, 0, 0.3, 87.4, 0, 1.8, 6.9, 1.4, 2.9, 1.6, 0.6, 5.2, 0.7, 0.3, 1, 0, 0.3, 0, 0.3, 0.3, 0, 43.6, 87.4, 0, 1.8, 'Manchester City', 'PremierLeague\r'),
(9446, 'es', 'Jesús Navas', 30, ' M(R)', 170, 60, 24, 10, 2282, 0, 7, 1, 0, 0.9, 83.4, 0, 0.3, 6.86, 0.9, 0.6, 0.5, 0, 0.3, 0.6, 0, 0, 1.6, 0.7, 0.1, 1.3, 1, 1.6, 37.3, 83.4, 1, 1.2, 'Manchester City', 'PremierLeague\r'),
(300495, 'al', 'Bersant Celina', 19, ' Midfielder', 177, 60, 0, 1, 13, 0, 1, 0, 0, 0, 100, 0, 0, 6.78, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 12, 100, 2, 0, 'Manchester City', 'PremierLeague\r'),
(97692, 'gb', 'Raheem Sterling', 21, ' AM(CLR),FW', 170, 69, 23, 8, 1928, 6, 2, 1, 0, 1.7, 85.3, 0, 0.3, 6.78, 1.1, 0.5, 0.8, 0, 0.1, 0.7, 0, 0, 1.1, 1.7, 0.2, 2.1, 1.2, 1.1, 27.3, 85.3, 0.2, 0.3, 'Manchester City', 'PremierLeague\r'),
(34749, 'ar', 'Willy Caballero', 34, ' GK', 186, 80, 3, 1, 310, 0, 0, 0, 0, 0, 52.9, 0, 0, 6.76, 0, 0, 0, 0, 0.5, 0.3, 0, 0, 0, 0, 0, 0, 0, 0, 21.3, 52.9, 0, 5.5, 'Manchester City', 'PremierLeague\r'),
(27213, 'gb', 'Fabian Delph', 26, ' M(CL)', 174, 60, 8, 9, 756, 2, 0, 0, 0, 0.8, 85.7, 1, 0.4, 6.75, 1.5, 1.3, 0.4, 0, 0.5, 0.8, 0.1, 0, 0.1, 0.5, 0, 1, 0.6, 0.1, 28.4, 85.7, 0.1, 0.6, 'Manchester City', 'PremierLeague\r'),
(8786, 'gb', 'Joe Hart', 29, ' GK', 196, 91, 35, 0, 3110, 0, 0, 0, 0, 0, 52.6, 0, 0.3, 6.7, 0, 0, 0, 0, 1.2, 0, 0, 0, 0.1, 0.1, 0, 0, 0, 0.1, 20.6, 52.6, 0, 5.1, 'Manchester City', 'PremierLeague\r'),
(13298, 'fr', 'Samir Nasri', 28, ' M(CLR)', 175, 75, 4, 8, 536, 2, 2, 3, 0, 1.2, 93.5, 0, 0, 6.68, 0.9, 0.2, 0.3, 0, 0, 0.6, 0, 0, 0.8, 0.4, 0.1, 1.1, 0.4, 0.8, 34.7, 93.5, 0.6, 1, 'Manchester City', 'PremierLeague\r'),
(5840, 'ar', 'Martín Demichelis', 35, ' D(C)', 184, 80, 10, 10, 1016, 0, 0, 3, 0, 0.3, 86.4, 0, 1.8, 6.64, 1, 1.8, 0.6, 0.5, 3.8, 1.1, 0.2, 0, 0.2, 0.5, 0, 0, 0.2, 0.2, 27.6, 86.4, 0, 1.2, 'Manchester City', 'PremierLeague\r'),
(42705, 'ci', 'Wilfried Bony', 27, ' FW', 182, 84, 13, 13, 1224, 4, 3, 1, 0, 2.3, 77.7, 1, 1.8, 6.62, 0.3, 0.1, 0.7, 0, 0.3, 0.3, 0, 0, 0.5, 0.8, 0.3, 1.3, 1, 0.5, 15.7, 77.7, 0, 0.2, 'Manchester City', 'PremierLeague\r'),
(289253, 'ng', 'Kelechi Iheanacho', 19, ' FW', 187, 77, 7, 19, 753, 8, 1, 1, 0, 1.1, 76.9, 1, 0.5, 6.56, 0.5, 0.1, 0.7, 0, 0.2, 0.2, 0, 0, 0.5, 0.2, 0.1, 1.5, 1, 0.5, 13.3, 76.9, 0, 0.2, 'Manchester City', 'PremierLeague\r'),
(295950, 'es', 'Manu García', 18, ' Midfielder', 170, 65, 0, 1, 10, 0, 0, 0, 0, 0, 100, 0, 0, 6.12, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 18, 100, 0, 1, 'Manchester City', 'PremierLeague\r'),
(136462, 'gb', 'Patrick Roberts', 19, ' Midfielder', 167, 58, 0, 1, 4, 0, 0, 0, 0, 0, 100, 0, 0, 6.01, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 3, 100, 0, 0, 'Manchester City', 'PremierLeague\r'),
(118244, 'gb', 'Luke Shaw', 20, ' D(L)', 185, 75, 5, 0, 450, 0, 1, 1, 0, 0.2, 86, 0, 2.8, 7.36, 1.8, 1, 1.6, 0.6, 3.8, 1.4, 0.4, 0, 0.8, 0.6, 0.2, 1.2, 0.4, 0.8, 54.2, 86, 1, 2.6, 'Manchester United', 'PremierLeague\r'),
(122366, 'fr', 'Anthony Martial', 20, ' AM(LR),FW', 181, 76, 29, 2, 2632, 11, 4, 2, 0, 1.8, 76.7, 3, 1.8, 7.23, 0.7, 0.3, 1.3, 0, 0.6, 0.6, 0.1, 0, 1.2, 1.8, 0.5, 3.1, 2.4, 1.2, 29.8, 76.7, 0.2, 0.4, 'Manchester United', 'PremierLeague\r'),
(71345, 'gb', 'Chris Smalling', 26, ' D(CR)', 192, 81, 35, 0, 3150, 0, 1, 8, 0, 0.5, 82.4, 1, 3.5, 7.17, 1.6, 2.8, 1.3, 0.5, 5.1, 0.4, 0.5, 1, 0.2, 0.4, 0, 0.3, 0.3, 0.2, 43.8, 82.4, 0, 3, 'Manchester United', 'PremierLeague\r'),
(70033, 'nl', 'Daley Blind', 26, ' D(CL),DMC,M(L)', 180, 72, 35, 0, 3117, 1, 1, 2, 0, 0.1, 83.7, 3, 1, 7.14, 2.7, 2.3, 0.8, 0.5, 3.4, 0.8, 0.6, 0, 0.7, 0.4, 0, 0.3, 0.5, 0.7, 58, 83.7, 0.9, 4.9, 'Manchester United', 'PremierLeague\r'),
(3859, 'gb', 'Wayne Rooney', 30, ' AM(CL),FW', 176, 83, 27, 1, 2410, 8, 6, 4, 0, 2.6, 83.1, 4, 0.9, 7.06, 1, 0.3, 1, 0, 0.5, 0.6, 0.3, 0, 1.5, 0.5, 0.5, 1.9, 1.8, 1.5, 40.9, 83.1, 0.2, 3.7, 'Manchester United', 'PremierLeague\r'),
(18296, 'ec', 'Antonio Valencia', 30, ' D(R),M(R)', 181, 83, 8, 6, 855, 0, 3, 1, 0, 0.4, 88.2, 0, 1.3, 7.05, 1.9, 1.1, 1.1, 0.1, 1.3, 0.6, 0.4, 0, 0.5, 0.4, 0.1, 0.3, 1.1, 0.5, 41.7, 88.2, 0.6, 1.6, 'Manchester United', 'PremierLeague\r'),
(300299, 'gb', 'Marcus Rashford', 18, ' FW', 180, 70, 11, 0, 862, 5, 2, 0, 0, 1.5, 76.9, 1, 0.3, 6.94, 0.6, 0.2, 0.5, 0, 0.8, 0.3, 0.4, 0, 0.5, 0.8, 0.4, 2, 2.3, 0.5, 18.1, 76.9, 0, 0.2, 'Manchester United', 'PremierLeague\r'),
(70050, 'ar', 'Marcos Rojo', 26, ' D(CL)', 187, 80, 15, 1, 1254, 0, 1, 3, 0, 0.5, 73.1, 1, 1.9, 6.93, 2.7, 1.7, 1.3, 0, 2, 0.9, 0.3, 0, 0.6, 0.8, 0.1, 0.5, 0.4, 0.6, 43.8, 73.1, 0.7, 1.6, 'Manchester United', 'PremierLeague\r'),
(29544, 'fr', 'Morgan Schneiderlin', 26, ' DMC', 181, 75, 25, 4, 2205, 1, 0, 3, 0, 0.4, 89.5, 0, 0.7, 6.92, 2.4, 2.5, 1.8, 0, 1.7, 0.8, 0.2, 0, 0.3, 0.5, 0, 0.4, 0.7, 0.3, 50.3, 89.5, 0, 3.4, 'Manchester United', 'PremierLeague\r'),
(23220, 'it', 'Matteo Darmian', 26, ' D(CLR),M(LR)', 182, 70, 24, 4, 1932, 1, 0, 8, 0, 0.2, 79.3, 2, 0.7, 6.91, 3, 1.5, 1, 0.3, 1.9, 1, 0.1, 0, 0.4, 0.8, 0.1, 0.6, 0.4, 0.4, 33.4, 79.3, 0.3, 1.4, 'Manchester United', 'PremierLeague\r'),
(145385, 'uy', 'Guillermo Varela', 23, ' D(R)', 180, 70, 3, 1, 315, 0, 0, 1, 0, 0.3, 78.8, 0, 0.3, 6.83, 3.3, 3, 1.3, 0, 1.5, 2.3, 0, 0, 0.3, 1.8, 0, 0.8, 1, 0.3, 36.5, 78.8, 0.3, 2.8, 'Manchester United', 'PremierLeague\r'),
(25363, 'es', 'Juan Mata', 28, ' AM(CLR)', 170, 63, 34, 4, 2902, 6, 5, 4, 1, 1.5, 89.2, 2, 0.1, 6.8, 0.8, 0.6, 0.6, 0, 0.5, 1.2, 0, 0, 1.4, 0.8, 0.2, 1.4, 0.8, 1.4, 47.4, 89.2, 0.5, 2.6, 'Manchester United', 'PremierLeague\r'),
(303379, 'gb', 'Donald Love', 21, ' Defender', 0, 0, 0, 1, 53, 0, 0, 0, 0, 0, 73.1, 0, 0, 6.8, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 26, 73.1, 0, 1, 'Manchester United', 'PremierLeague\r'),
(22738, 'be', 'Marouane Fellaini', 28, ' M(C)', 194, 85, 12, 6, 1070, 1, 0, 2, 0, 1.3, 83.6, 0, 2.7, 6.78, 1.4, 0.6, 1.8, 0, 1.2, 0.6, 0.1, 0, 0.6, 0.7, 0.2, 1.7, 1.2, 0.6, 32.8, 83.6, 0, 0.8, 'Manchester United', 'PremierLeague\r'),
(4567, 'de', 'Bastian Schweinsteiger', 31, ' M(C)', 183, 79, 13, 5, 1205, 1, 0, 3, 0, 0.7, 85.7, 0, 0.9, 6.78, 2, 1.3, 1.1, 0, 0.9, 0.9, 0.2, 0, 0.4, 0.9, 0, 1.6, 1.1, 0.4, 59.3, 85.7, 0.1, 3.6, 'Manchester United', 'PremierLeague\r'),
(71174, 'es', 'Ander Herrera', 26, ' M(C)', 182, 70, 17, 10, 1538, 3, 2, 4, 0, 0.9, 84, 2, 0.3, 6.77, 2.1, 0.9, 1, 0, 0.6, 1.3, 0.2, 0, 0.8, 0.8, 0, 1.2, 1.5, 0.8, 40.6, 84, 0.2, 1.7, 'Manchester United', 'PremierLeague\r'),
(109000, 'gb', 'Jesse Lingard', 23, ' AM(CLR)', 168, 58, 19, 6, 1635, 4, 1, 4, 0, 1.2, 84.7, 1, 0.1, 6.71, 1.5, 0.6, 1, 0, 0.4, 1.2, 0, 0, 0.6, 0.8, 0.2, 1, 1.5, 0.6, 28.5, 84.7, 0.1, 0.4, 'Manchester United', 'PremierLeague\r'),
(312739, 'nl', 'Timothy Fosu-Mensah', 18, ' Defender', 0, 0, 2, 6, 254, 0, 1, 1, 0, 0.3, 73.2, 0, 0.3, 6.7, 1.5, 1.6, 0.3, 0.1, 1.8, 0.3, 0.1, 0, 0.1, 0.3, 0, 0.1, 0.1, 0.1, 15.9, 73.2, 0, 0.5, 'Manchester United', 'PremierLeague\r'),
(136454, 'gb', 'Cameron Borthwick-Jackson', 19, ' D(L)', 183, 78, 6, 4, 692, 0, 1, 0, 0, 0.1, 81.9, 0, 1, 6.7, 0.8, 1.1, 0.8, 0.1, 1.7, 0.8, 0.4, 0, 0.7, 0.2, 0, 0.5, 0.5, 0.7, 35.3, 81.9, 0.5, 1.2, 'Manchester United', 'PremierLeague\r'),
(81726, 'gb', 'Phil Jones', 24, ' D(CR),DMC', 185, 72, 6, 4, 529, 0, 0, 0, 0, 0.1, 84.7, 0, 2, 6.68, 0.9, 1.3, 0.4, 0, 2.4, 0.1, 0.1, 0, 0, 0.2, 0, 0.2, 0.3, 0, 32, 84.7, 0.2, 1.3, 'Manchester United', 'PremierLeague\r'),
(2115, 'gb', 'Michael Carrick', 34, ' D(C),M(C)', 188, 74, 22, 6, 1975, 0, 0, 4, 0, 0.3, 86.5, 0, 0.6, 6.66, 1.5, 1.6, 0.4, 0.1, 1.3, 0.7, 0.1, 0, 0.4, 0.5, 0, 0.6, 0.5, 0.4, 55.9, 86.5, 0.1, 3.9, 'Manchester United', 'PremierLeague\r'),
(79554, 'es', 'David de Gea', 25, ' GK', 192, 76, 34, 0, 3060, 0, 0, 0, 0, 0, 56.9, 0, 0, 6.66, 0, 0, 0, 0, 0.6, 0, 0, 1, 0, 0, 0, 0, 0, 0, 25.1, 56.9, 0, 7.6, 'Manchester United', 'PremierLeague\r'),
(8166, 'gb', 'Ashley Young', 30, ' D(R),M(LR)', 180, 65, 11, 7, 1063, 1, 2, 5, 0, 0.4, 77.7, 0, 0.7, 6.6, 1.1, 1.4, 0.8, 0.1, 1, 0.6, 0, 0, 0.6, 1.1, 0.1, 0.4, 0.6, 0.6, 31.4, 77.7, 0.6, 2, 'Manchester United', 'PremierLeague\r'),
(35003, 'mx', 'Chicharito', 28, ' FW', 175, 73, 0, 1, 23, 0, 0, 0, 0, 1, 85.7, 0, 0, 6.45, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 14, 85.7, 0, 0, 'Manchester United', 'PremierLeague\r'),
(110154, 'nl', 'Memphis Depay', 22, ' AM(L)', 176, 78, 16, 13, 1478, 2, 0, 2, 0, 2, 80.8, 1, 0.3, 6.38, 0.4, 0.3, 0.7, 0, 0.3, 0.4, 0, 0, 0.4, 1.2, 0.3, 2.4, 1.7, 0.4, 22.1, 80.8, 0.5, 0.8, 'Manchester United', 'PremierLeague\r'),
(33831, 'ar', 'Sergio Romero', 29, ' GK', 192, 87, 4, 0, 360, 0, 0, 0, 0, 0, 55.7, 0, 0, 6.35, 0, 0, 0, 0, 0.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28.8, 55.7, 0, 5.5, 'Manchester United', 'PremierLeague\r'),
(130334, 'be', 'Adnan Januzaj', 21, ' AM(CLR)', 180, 75, 2, 3, 144, 1, 0, 1, 0, 0.8, 88.1, 0, 0, 6.33, 0.2, 0, 1, 0, 0.2, 0.2, 0, 0, 0.2, 0.6, 0, 0.8, 0.8, 0.2, 8.4, 88.1, 0, 1.2, 'Manchester United', 'PremierLeague\r'),
(244565, 'gb', 'Patrick McNair', 21, ' D(C)', 172, 72, 3, 5, 312, 0, 0, 0, 0, 0.4, 78.9, 0, 1, 6.23, 1.1, 0.6, 0.5, 0.1, 1.6, 1.4, 0, 0, 0.1, 0.3, 0, 0.4, 0.8, 0.1, 24.3, 78.9, 0.1, 1.8, 'Manchester United', 'PremierLeague\r'),
(243254, 'be', 'Andreas Pereira', 20, ' Midfielder', 177, 66, 0, 4, 80, 0, 0, 2, 0, 0, 85.7, 0, 0, 6.22, 0.3, 0.3, 0.5, 0, 0, 1, 0, 0, 0.8, 0.3, 0, 0.8, 0.5, 0.8, 12.3, 85.7, 1, 0, 'Manchester United', 'PremierLeague\r'),
(145271, 'gb', 'James Wilson', 20, ' FW', 184, 73, 0, 1, 8, 0, 0, 0, 0, 0, 85.7, 0, 0, 6.13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 7, 85.7, 0, 0, 'Manchester United', 'PremierLeague\r'),
(90211, 'gb', 'Nick Powell', 22, ' AM(C),FW', 183, 65, 0, 1, 16, 0, 0, 0, 0, 0, 50, 0, 1, 6.03, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 50, 0, 0, 'Manchester United', 'PremierLeague\r'),
(302386, 'gb', 'James Weir', 20, ' Midfielder', 177, 71, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Manchester United', 'PremierLeague\r'),
(107940, 'gb', 'Will Keane', 23, ' FW', 178, 78, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Manchester United', 'PremierLeague\r'),
(71522, 'gb', 'Andros Townsend', 24, ' AM(LR)', 181, 77, 12, 1, 1089, 4, 2, 0, 0, 1.8, 81.3, 1, 0, 7.35, 2.1, 0.8, 0.5, 0.1, 0.6, 1.9, 0.2, 0, 2, 1, 0, 1.9, 2.3, 2, 28, 81.3, 1.3, 0.2, 'Newcastle United', 'PremierLeague\r'),
(70483, 'gb', 'Karl Darlow', 25, ' GK', 185, 79, 9, 0, 810, 0, 0, 0, 0, 0, 43.7, 1, 0.2, 7.08, 0.1, 0, 0, 0, 1.6, 0, 0, 0, 0, 0.1, 0, 0, 0, 0, 23.9, 43.7, 0, 8.4, 'Newcastle United', 'PremierLeague\r'),
(29595, 'fr', 'Moussa Sissoko', 26, ' M(CR)', 187, 83, 37, 0, 3223, 1, 7, 3, 0, 1, 76, 4, 1.5, 7.04, 1.5, 0.9, 1.4, 0, 1, 0.4, 0.1, 0, 1.5, 0.8, 0.1, 1.7, 1.6, 1.5, 37.4, 76, 1.1, 1.1, 'Newcastle United', 'PremierLeague\r'),
(104368, 'cd', 'Chancel Mbemba', 21, ' D(C),DMC', 182, 82, 33, 0, 2924, 0, 0, 5, 0, 0.4, 76.8, 2, 1.4, 6.98, 2.3, 2.8, 0.6, 0.5, 6.9, 0.7, 0.8, 0, 0.1, 0.4, 0, 0.2, 0.4, 0.1, 34.7, 76.8, 0.1, 3.3, 'Newcastle United', 'PremierLeague\r'),
(33568, 'nl', 'Georginio Wijnaldum', 25, ' M(CL)', 175, 69, 36, 2, 3169, 11, 5, 1, 0, 1.4, 84.8, 2, 0.7, 6.91, 1, 0.7, 0.4, 0, 0.4, 0.5, 0.2, 0, 1.2, 1.3, 0.1, 1.8, 1.5, 1.2, 32.9, 84.8, 0.2, 1, 'Newcastle United', 'PremierLeague\r'),
(69867, 'gb', 'Jack Colback', 26, ' D(L),M(C)', 176, 70, 28, 1, 2397, 1, 1, 11, 0, 0.5, 84.8, 0, 0.9, 6.9, 2.8, 2.1, 1.7, 0, 1.3, 1.2, 0.4, 0, 0.6, 1.5, 0, 0.6, 0.3, 0.6, 36.8, 84.8, 0.6, 2.6, 'Newcastle United', 'PremierLeague\r'),
(112009, 'gb', 'Paul Dummett', 24, ' D(CL)', 183, 77, 23, 0, 1897, 1, 0, 3, 0, 0.2, 69.2, 0, 2, 6.89, 2.3, 1.8, 0.6, 0.3, 3.8, 1, 0.5, 0, 0.2, 0.4, 0, 0, 0.3, 0.2, 29.3, 69.2, 0.3, 2.1, 'Newcastle United', 'PremierLeague\r'),
(19396, 'ci', 'Cheick Tioté', 30, ' M(C)', 175, 76, 16, 4, 1228, 0, 0, 5, 0, 0.1, 85.5, 0, 1.8, 6.87, 2.4, 2.1, 1.6, 0, 1.5, 1.1, 0.2, 0, 0.4, 0.7, 0, 0.8, 0.5, 0.4, 41.8, 85.5, 0, 2.2, 'Newcastle United', 'PremierLeague\r'),
(32323, 'nl', 'Daryl Janmaat', 26, ' D(R)', 185, 80, 32, 0, 2755, 2, 4, 5, 1, 0.6, 73.8, 1, 0.8, 6.85, 2.5, 1.8, 0.9, 0.2, 2.6, 0.9, 0.3, 0, 0.8, 0.3, 0.2, 0.6, 1.1, 0.8, 39.1, 73.8, 0.9, 2.5, 'Newcastle United', 'PremierLeague\r'),
(94892, 'sn', 'Massadio Haidara', 23, ' D(L)', 181, 76, 6, 1, 556, 0, 0, 1, 0, 0.4, 81.3, 0, 1, 6.77, 1.7, 2.7, 1.3, 0.3, 2.6, 0.7, 0.4, 0, 0.3, 1.4, 0, 1.4, 1, 0.3, 32.9, 81.3, 0.6, 1.4, 'Newcastle United', 'PremierLeague\r'),
(40027, 'gb', 'Jonjo Shelvey', 24, ' M(C)', 185, 80, 11, 4, 1048, 0, 3, 3, 0, 1.5, 80.1, 0, 0.3, 6.72, 1.5, 1.3, 0.7, 0, 0.9, 0.7, 0.1, 0, 1.3, 0.1, 0, 0.3, 0.8, 1.3, 43.3, 80.1, 0.9, 4.6, 'Newcastle United', 'PremierLeague\r'),
(135366, 'es', 'Ayoze Pérez', 22, ' AM(CLR),FW', 179, 66, 22, 12, 2050, 6, 2, 4, 0, 1.5, 75.6, 1, 0.2, 6.71, 1.6, 0.8, 1, 0, 0.4, 1.2, 0.1, 0, 0.9, 1.1, 0.1, 1.9, 1.6, 0.9, 17.2, 75.6, 0.5, 0.7, 'Newcastle United', 'PremierLeague\r'),
(63885, 'nl', 'Vurnon Anita', 27, ' D(LR),DMC', 168, 63, 24, 4, 2108, 1, 3, 6, 0, 0.3, 77.4, 0, 0.6, 6.71, 2.6, 2, 1, 0.1, 1.4, 1, 0.3, 0, 0.5, 0.4, 0, 0.6, 0.6, 0.5, 35.4, 77.4, 0.2, 1.9, 'Newcastle United', 'PremierLeague\r'),
(2859, 'ar', 'Fabricio Coloccini', 34, ' D(C)', 183, 63, 26, 0, 2294, 1, 0, 2, 1, 0.4, 83.7, 1, 1.2, 6.69, 1.7, 2.3, 0.3, 0.6, 3.7, 1.1, 1.1, 1, 0.1, 0.3, 0, 0.2, 0.3, 0.1, 32.7, 83.7, 0, 3, 'Newcastle United', 'PremierLeague\r'),
(115279, 'rs', 'Aleksandar Mitrovic', 21, ' FW', 189, 82, 22, 12, 2117, 9, 4, 4, 2, 2.3, 71.8, 0, 2.5, 6.67, 0.7, 0.2, 1.5, 0, 0.9, 0.6, 0.2, 0, 0.9, 1.5, 0.5, 2, 2.5, 0.9, 21.1, 71.8, 0, 0.4, 'Newcastle United', 'PremierLeague\r'),
(22319, 'nl', 'Tim Krul', 28, ' GK', 188, 74, 8, 0, 720, 0, 0, 0, 0, 0, 55.6, 1, 0.4, 6.63, 0, 0.1, 0, 0, 1.1, 0.4, 0, 0, 0, 0.1, 0, 0, 0, 0, 32.4, 55.6, 0, 10, 'Newcastle United', 'PremierLeague\r'),
(13450, 'ie', 'Robert Elliot', 30, ' GK', 190, 98, 21, 0, 1890, 0, 0, 1, 0, 0, 51.3, 1, 0.5, 6.63, 0, 0, 0, 0, 1.1, 0, 0, 0, 0, 0.1, 0, 0, 0, 0, 28.7, 51.3, 0, 11, 'Newcastle United', 'PremierLeague\r'),
(105171, 'gb', 'Jamaal Lascelles', 22, ' D(C)', 189, 83, 10, 8, 1149, 2, 0, 1, 1, 0.2, 79.8, 0, 2.4, 6.61, 0.7, 1.6, 0.6, 0.3, 4.3, 0.2, 0.7, 0, 0.1, 0.2, 0, 0.1, 0.6, 0.1, 27, 79.8, 0, 1.4, 'Newcastle United', 'PremierLeague\r'),
(22818, 'fr', 'Gabriel Obertan', 27, ' M(LR)', 186, 79, 3, 2, 279, 0, 1, 1, 0, 0.6, 83.5, 0, 0.8, 6.48, 1.2, 0.8, 0.4, 0, 0.8, 0.8, 0, 0, 0.6, 0.4, 0.6, 0.6, 0.4, 0.6, 19.4, 83.5, 0.4, 0.4, 'Newcastle United', 'PremierLeague\r'),
(34949, 'sn', 'Henri Saivet', 25, ' M(CLR),FW', 175, 73, 2, 2, 148, 0, 0, 0, 0, 0, 75.3, 0, 0.3, 6.42, 3.3, 1.5, 0.3, 0, 0.5, 1.3, 0, 0, 0.3, 0.3, 0, 0.5, 0.5, 0.3, 20.3, 75.3, 0, 1, 'Newcastle United', 'PremierLeague\r'),
(6479, 'gb', 'Steven Taylor', 30, ' D(C)', 188, 81, 9, 1, 811, 0, 0, 1, 0, 0.1, 84.6, 0, 0.7, 6.38, 0.3, 1.7, 0.3, 1, 3.7, 0.3, 1.2, 1, 0.2, 0.4, 0, 0.1, 0.2, 0.2, 32.4, 84.6, 0, 1.6, 'Newcastle United', 'PremierLeague\r'),
(115230, 'ch', 'Kevin Mbabu', 21, ' Defender', 184, 80, 2, 1, 144, 0, 0, 0, 0, 0.3, 61, 0, 1, 6.38, 3.7, 1, 1, 0, 0.7, 1, 0, 0, 0.3, 0.7, 0.3, 0, 0, 0.3, 13.7, 61, 0, 1.3, 'Newcastle United', 'PremierLeague\r'),
(24223, 'sn', 'Papiss Demba Cissé', 31, ' AM(R),FW', 183, 73, 14, 7, 1071, 3, 0, 1, 0, 1.1, 74.8, 0, 1.2, 6.33, 0.5, 0.1, 0.6, 0, 0.5, 0.3, 0, 0, 0.5, 0.4, 0.9, 1, 2, 0.5, 19.3, 74.8, 0.1, 1, 'Newcastle United', 'PremierLeague\r'),
(235743, 'jm', 'Rolando Aarons', 20, ' Midfielder', 175, 67, 3, 7, 377, 1, 1, 1, 0, 0.2, 84, 0, 0.4, 6.32, 1.3, 0.6, 0.9, 0.1, 1, 0.5, 0.2, 0, 0.5, 0.8, 0, 0.4, 1.3, 0.5, 11.9, 84, 0.3, 0.7, 'Newcastle United', 'PremierLeague\r'),
(99143, 'fr', 'Florian Thauvin', 23, ' AM(CLR)', 179, 70, 3, 10, 420, 0, 0, 1, 0, 0.6, 68.6, 0, 0.2, 6.2, 0.6, 0.5, 0.4, 0, 0.2, 0.4, 0, 0, 0.4, 1.2, 0.2, 0.5, 0.9, 0.4, 13.2, 68.6, 0.4, 0.2, 'Newcastle United', 'PremierLeague\r'),
(276986, 'gb', 'Jamie Sterry', 20, ' Defender', 180, 70, 0, 1, 6, 0, 0, 0, 0, 0, 0, 0, 0, 6.2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Newcastle United', 'PremierLeague\r'),
(32196, 'nl', 'Siem de Jong', 27, ' AM(C),FW', 185, 76, 3, 15, 447, 0, 1, 0, 0, 0.4, 74.6, 0, 0.4, 6.2, 0.9, 0.2, 0.4, 0, 0.1, 0.4, 0.1, 0, 0.1, 0.3, 0, 0.2, 0.6, 0.1, 10.7, 74.6, 0.1, 0.3, 'Newcastle United', 'PremierLeague\r'),
(18436, 'fr', 'Yoan Gouffran', 30, ' M(CLR),FW', 176, 76, 2, 6, 224, 0, 0, 0, 0, 0.4, 79.1, 0, 0.5, 6.16, 0.8, 0.8, 0.4, 0.1, 0.4, 0.3, 0.3, 0, 0.1, 0.1, 0, 0.9, 0.4, 0.1, 11.4, 79.1, 0.1, 0.9, 'Newcastle United', 'PremierLeague\r'),
(70104, 'fr', 'Emmanuel Rivière', 26, ' FW', 182, 80, 1, 2, 64, 0, 0, 0, 0, 1, 94.7, 0, 0.3, 6.05, 1, 0, 0.7, 0, 0, 0.3, 0, 0, 0.3, 0.3, 0, 0.7, 1, 0.3, 6.3, 94.7, 0.3, 0, 'Newcastle United', 'PremierLeague\r'),
(27909, 'ci', 'Seydou Doumbia', 28, ' FW', 183, 74, 0, 3, 29, 0, 0, 0, 0, 0.3, 75, 0, 0, 6.03, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.3, 0, 0.3, 1, 0, 2.7, 75, 0, 0, 'Newcastle United', 'PremierLeague\r'),
(134240, 'gb', 'Ivan Toney', 20, ' Forward', 179, 70, 0, 2, 10, 0, 0, 0, 0, 0, 66.7, 0, 0, 5.94, 0, 0, 0, 0, 0, 0.5, 0, 0, 0, 0, 0, 0.5, 0.5, 0, 1.5, 66.7, 0, 0, 'Newcastle United', 'PremierLeague\r'),
(77114, 'ch', 'Timm Klose', 28, ' D(C)', 193, 87, 10, 0, 850, 1, 0, 3, 0, 0.3, 65.4, 3, 4, 7.21, 1.4, 2.4, 0.6, 0.8, 10.2, 0.6, 1, 1, 0, 0.7, 0, 0, 0.2, 0, 25.7, 65.4, 0, 2.9, 'Norwich', 'PremierLeague\r'),
(93473, 'ie', 'Robbie Brady', 24, ' D(L),M(CL)', 176, 71, 34, 2, 2988, 3, 2, 3, 0, 1.5, 70.5, 4, 1.2, 7.15, 2.8, 1.6, 1.1, 0.2, 2.4, 1, 0.1, 0, 1.5, 0.5, 0.1, 1, 1.1, 1.5, 31.6, 70.5, 1.7, 2.1, 'Norwich', 'PremierLeague\r'),
(22820, 'cd', 'Dieumerci Mbokani', 30, ' FW', 185, 80, 15, 14, 1589, 7, 1, 0, 0, 1.3, 68.8, 1, 4.1, 6.81, 0.4, 0.1, 0.6, 0, 0.8, 0.3, 0, 0, 0.9, 1.6, 1, 1.7, 1.7, 0.9, 16.7, 68.8, 0, 0.1, 'Norwich', 'PremierLeague\r'),
(23273, 'gb', 'Jonny Howson', 28, ' M(CR)', 180, 77, 33, 3, 2953, 3, 4, 7, 0, 1, 74.8, 0, 0.9, 6.77, 2.1, 1.2, 0.8, 0, 1.8, 1.3, 0.3, 0, 0.7, 0.5, 0.1, 1, 0.9, 0.7, 35.6, 74.8, 0.3, 1.8, 'Norwich', 'PremierLeague\r'),
(25834, 'gb', 'Ryan Bennett', 26, ' D(C)', 188, 70, 20, 2, 1838, 0, 0, 7, 0, 0.4, 74.3, 1, 2.5, 6.76, 0.9, 1.6, 0.6, 1.1, 7.9, 0.4, 0.6, 1, 0.2, 0.2, 0, 0, 0.1, 0.2, 25.5, 74.3, 0, 3, 'Norwich', 'PremierLeague\r'),
(86425, 'gb', 'Nathan Redmond', 22, ' AM(CLR)', 173, 69, 24, 11, 2339, 6, 3, 0, 0, 1.5, 77.5, 3, 0.2, 6.75, 0.9, 0.4, 0.8, 0, 0.3, 0.8, 0, 0, 1.3, 0.8, 0.2, 1.3, 1.4, 1.3, 27.8, 77.5, 0.7, 0.8, 'Norwich', 'PremierLeague\r'),
(19247, 'cm', 'Sebastien Bassong', 29, ' D(C)', 187, 73, 30, 2, 2789, 1, 0, 4, 0, 0.6, 76.8, 0, 3, 6.75, 0.8, 1.7, 0.8, 0.9, 8, 0.4, 0.6, 0, 0.1, 0.7, 0.1, 0.2, 0.2, 0.1, 27.5, 76.8, 0, 2.3, 'Norwich', 'PremierLeague\r'),
(19541, 'ie', 'Wes Hoolahan', 34, ' AM(CL)', 168, 71, 25, 5, 2006, 4, 8, 1, 0, 0.9, 82.1, 1, 0.1, 6.71, 0.9, 0.5, 0.6, 0, 0, 1.3, 0, 0, 1.6, 1.3, 0.2, 2.3, 1.5, 1.6, 37.1, 82.1, 0.5, 1.2, 'Norwich', 'PremierLeague\r'),
(9342, 'no', 'Alexander Tettey', 30, ' M(C)', 180, 68, 23, 0, 1952, 2, 0, 10, 0, 0.9, 83.8, 1, 1.3, 6.68, 2.1, 1.8, 1.7, 0, 2.2, 1, 0.2, 0, 0.2, 0.4, 0, 0.7, 0.7, 0.2, 46.3, 83.8, 0, 3, 'Norwich', 'PremierLeague\r'),
(8684, 'gb', 'Russell Martin', 30, ' D(CR)', 183, 74, 30, 0, 2698, 3, 0, 4, 1, 0.6, 73.3, 0, 1.5, 6.61, 1.4, 1.2, 1.1, 0.6, 6.7, 0.6, 0.8, 0, 0.3, 0.2, 0, 0.2, 0.3, 0.3, 37.3, 73.3, 0.2, 4, 'Norwich', 'PremierLeague\r'),
(101763, 'gb', 'Andre Wisdom', 23, ' D(R)', 186, 78, 9, 1, 824, 0, 0, 1, 0, 0.2, 76.9, 0, 0.9, 6.52, 1.9, 0.8, 0.3, 0.2, 2.2, 0.4, 0.1, 0, 0.4, 0.3, 0, 0.7, 0.5, 0.4, 30.8, 76.9, 0.4, 1.3, 'Norwich', 'PremierLeague\r'),
(70598, 'pt', 'Ivo Pinto', 26, ' D(R)', 184, 73, 9, 1, 811, 0, 0, 0, 0, 0, 74.8, 0, 0.5, 6.5, 1.7, 2.1, 0.9, 0.1, 2.8, 0.9, 0.2, 0, 0.2, 0.6, 0.3, 0.7, 1.1, 0.2, 30.6, 74.8, 0.8, 1.8, 'Norwich', 'PremierLeague\r'),
(40380, 'gb', 'Declan Rudd', 25, ' GK', 191, 80, 11, 0, 990, 0, 0, 2, 0, 0, 40.7, 0, 0, 6.5, 0.1, 0.1, 0.2, 0, 0.8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26.8, 40.7, 0, 7.8, 'Norwich', 'PremierLeague\r'),