-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.sql
More file actions
4440 lines (4420 loc) · 452 KB
/
data.sql
File metadata and controls
4440 lines (4420 loc) · 452 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
SQLyog Community v13.3.0 (64 bit)
MySQL - 10.4.32-MariaDB : Database - ufc_stats
*********************************************************************
*/
/*!40101 SET NAMES utf8 */;
/*!40101 SET SQL_MODE=''*/;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!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' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
CREATE DATABASE /*!32312 IF NOT EXISTS*/`ufc_stats` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci */;
USE `ufc_stats`;
/*Table structure for table `countries` */
DROP TABLE IF EXISTS `countries`;
CREATE TABLE `countries` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(80) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
`nicename` varchar(80) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
`iso3` char(3) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=240 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*Data for the table `countries` */
insert into `countries`(`id`,`name`,`nicename`,`iso3`) values
(1,'AFGHANISTAN','Afghanistan','AFG'),
(2,'ALBANIA','Albania','ALB'),
(3,'ALGERIA','Algeria','DZA'),
(4,'AMERICAN SAMOA','American Samoa','ASM'),
(5,'ANDORRA','Andorra','AND'),
(6,'ANGOLA','Angola','AGO'),
(7,'ANGUILLA','Anguilla','AIA'),
(8,'ANTARCTICA','Antarctica',NULL),
(9,'ANTIGUA AND BARBUDA','Antigua and Barbuda','ATG'),
(10,'ARGENTINA','Argentina','ARG'),
(11,'ARMENIA','Armenia','ARM'),
(12,'ARUBA','Aruba','ABW'),
(13,'AUSTRALIA','Australia','AUS'),
(14,'AUSTRIA','Austria','AUT'),
(15,'AZERBAIJAN','Azerbaijan','AZE'),
(16,'BAHAMAS','Bahamas','BHS'),
(17,'BAHRAIN','Bahrain','BHR'),
(18,'BANGLADESH','Bangladesh','BGD'),
(19,'BARBADOS','Barbados','BRB'),
(20,'BELARUS','Belarus','BLR'),
(21,'BELGIUM','Belgium','BEL'),
(22,'BELIZE','Belize','BLZ'),
(23,'BENIN','Benin','BEN'),
(24,'BERMUDA','Bermuda','BMU'),
(25,'BHUTAN','Bhutan','BTN'),
(26,'BOLIVIA','Bolivia','BOL'),
(27,'BOSNIA AND HERZEGOVINA','Bosnia and Herzegovina','BIH'),
(28,'BOTSWANA','Botswana','BWA'),
(29,'BOUVET ISLAND','Bouvet Island',NULL),
(30,'BRAZIL','Brazil','BRA'),
(31,'BRITISH INDIAN OCEAN TERRITORY','British Indian Ocean Territory',NULL),
(32,'BRUNEI DARUSSALAM','Brunei Darussalam','BRN'),
(33,'BULGARIA','Bulgaria','BGR'),
(34,'BURKINA FASO','Burkina Faso','BFA'),
(35,'BURUNDI','Burundi','BDI'),
(36,'CAMBODIA','Cambodia','KHM'),
(37,'CAMEROON','Cameroon','CMR'),
(38,'CANADA','Canada','CAN'),
(39,'CAPE VERDE','Cape Verde','CPV'),
(40,'CAYMAN ISLANDS','Cayman Islands','CYM'),
(41,'CENTRAL AFRICAN REPUBLIC','Central African Republic','CAF'),
(42,'CHAD','Chad','TCD'),
(43,'CHILE','Chile','CHL'),
(44,'CHINA','China','CHN'),
(45,'CHRISTMAS ISLAND','Christmas Island',NULL),
(46,'COCOS (KEELING) ISLANDS','Cocos (Keeling) Islands',NULL),
(47,'COLOMBIA','Colombia','COL'),
(48,'COMOROS','Comoros','COM'),
(49,'CONGO','Congo','COG'),
(50,'CONGO, THE DEMOCRATIC REPUBLIC OF THE','Congo, the Democratic Republic of the','COD'),
(51,'COOK ISLANDS','Cook Islands','COK'),
(52,'COSTA RICA','Costa Rica','CRI'),
(53,'COTE D\'IVOIRE','Cote D\'Ivoire','CIV'),
(54,'CROATIA','Croatia','HRV'),
(55,'CUBA','Cuba','CUB'),
(56,'CYPRUS','Cyprus','CYP'),
(57,'CZECH REPUBLIC','Czech Republic','CZE'),
(58,'DENMARK','Denmark','DNK'),
(59,'DJIBOUTI','Djibouti','DJI'),
(60,'DOMINICA','Dominica','DMA'),
(61,'DOMINICAN REPUBLIC','Dominican Republic','DOM'),
(62,'ECUADOR','Ecuador','ECU'),
(63,'EGYPT','Egypt','EGY'),
(64,'EL SALVADOR','El Salvador','SLV'),
(65,'EQUATORIAL GUINEA','Equatorial Guinea','GNQ'),
(66,'ERITREA','Eritrea','ERI'),
(67,'ESTONIA','Estonia','EST'),
(68,'ETHIOPIA','Ethiopia','ETH'),
(69,'FALKLAND ISLANDS (MALVINAS)','Falkland Islands (Malvinas)','FLK'),
(70,'FAROE ISLANDS','Faroe Islands','FRO'),
(71,'FIJI','Fiji','FJI'),
(72,'FINLAND','Finland','FIN'),
(73,'FRANCE','France','FRA'),
(74,'FRENCH GUIANA','French Guiana','GUF'),
(75,'FRENCH POLYNESIA','French Polynesia','PYF'),
(76,'FRENCH SOUTHERN TERRITORIES','French Southern Territories',NULL),
(77,'GABON','Gabon','GAB'),
(78,'GAMBIA','Gambia','GMB'),
(79,'GEORGIA','Georgia','GEO'),
(80,'GERMANY','Germany','DEU'),
(81,'GHANA','Ghana','GHA'),
(82,'GIBRALTAR','Gibraltar','GIB'),
(83,'GREECE','Greece','GRC'),
(84,'GREENLAND','Greenland','GRL'),
(85,'GRENADA','Grenada','GRD'),
(86,'GUADELOUPE','Guadeloupe','GLP'),
(87,'GUAM','Guam','GUM'),
(88,'GUATEMALA','Guatemala','GTM'),
(89,'GUINEA','Guinea','GIN'),
(90,'GUINEA-BISSAU','Guinea-Bissau','GNB'),
(91,'GUYANA','Guyana','GUY'),
(92,'HAITI','Haiti','HTI'),
(93,'HEARD ISLAND AND MCDONALD ISLANDS','Heard Island and Mcdonald Islands',NULL),
(94,'HOLY SEE (VATICAN CITY STATE)','Holy See (Vatican City State)','VAT'),
(95,'HONDURAS','Honduras','HND'),
(96,'HONG KONG','Hong Kong','HKG'),
(97,'HUNGARY','Hungary','HUN'),
(98,'ICELAND','Iceland','ISL'),
(99,'INDIA','India','IND'),
(100,'INDONESIA','Indonesia','IDN'),
(101,'IRAN, ISLAMIC REPUBLIC OF','Iran, Islamic Republic of','IRN'),
(102,'IRAQ','Iraq','IRQ'),
(103,'IRELAND','Ireland','IRL'),
(104,'ISRAEL','Israel','ISR'),
(105,'ITALY','Italy','ITA'),
(106,'JAMAICA','Jamaica','JAM'),
(107,'JAPAN','Japan','JPN'),
(108,'JORDAN','Jordan','JOR'),
(109,'KAZAKHSTAN','Kazakhstan','KAZ'),
(110,'KENYA','Kenya','KEN'),
(111,'KIRIBATI','Kiribati','KIR'),
(112,'KOREA, DEMOCRATIC PEOPLE\'S REPUBLIC OF','Korea, Democratic People\'s Republic of','PRK'),
(113,'KOREA, REPUBLIC OF','Korea, Republic of','KOR'),
(114,'KUWAIT','Kuwait','KWT'),
(115,'KYRGYZSTAN','Kyrgyzstan','KGZ'),
(116,'LAO PEOPLE\'S DEMOCRATIC REPUBLIC','Lao People\'s Democratic Republic','LAO'),
(117,'LATVIA','Latvia','LVA'),
(118,'LEBANON','Lebanon','LBN'),
(119,'LESOTHO','Lesotho','LSO'),
(120,'LIBERIA','Liberia','LBR'),
(121,'LIBYAN ARAB JAMAHIRIYA','Libyan Arab Jamahiriya','LBY'),
(122,'LIECHTENSTEIN','Liechtenstein','LIE'),
(123,'LITHUANIA','Lithuania','LTU'),
(124,'LUXEMBOURG','Luxembourg','LUX'),
(125,'MACAO','Macao','MAC'),
(126,'MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF','Macedonia, the Former Yugoslav Republic of','MKD'),
(127,'MADAGASCAR','Madagascar','MDG'),
(128,'MALAWI','Malawi','MWI'),
(129,'MALAYSIA','Malaysia','MYS'),
(130,'MALDIVES','Maldives','MDV'),
(131,'MALI','Mali','MLI'),
(132,'MALTA','Malta','MLT'),
(133,'MARSHALL ISLANDS','Marshall Islands','MHL'),
(134,'MARTINIQUE','Martinique','MTQ'),
(135,'MAURITANIA','Mauritania','MRT'),
(136,'MAURITIUS','Mauritius','MUS'),
(137,'MAYOTTE','Mayotte',NULL),
(138,'MEXICO','Mexico','MEX'),
(139,'MICRONESIA, FEDERATED STATES OF','Micronesia, Federated States of','FSM'),
(140,'MOLDOVA, REPUBLIC OF','Moldova, Republic of','MDA'),
(141,'MONACO','Monaco','MCO'),
(142,'MONGOLIA','Mongolia','MNG'),
(143,'MONTSERRAT','Montserrat','MSR'),
(144,'MOROCCO','Morocco','MAR'),
(145,'MOZAMBIQUE','Mozambique','MOZ'),
(146,'MYANMAR','Myanmar','MMR'),
(147,'NAMIBIA','Namibia','NAM'),
(148,'NAURU','Nauru','NRU'),
(149,'NEPAL','Nepal','NPL'),
(150,'NETHERLANDS','Netherlands','NLD'),
(151,'NETHERLANDS ANTILLES','Netherlands Antilles','ANT'),
(152,'NEW CALEDONIA','New Caledonia','NCL'),
(153,'NEW ZEALAND','New Zealand','NZL'),
(154,'NICARAGUA','Nicaragua','NIC'),
(155,'NIGER','Niger','NER'),
(156,'NIGERIA','Nigeria','NGA'),
(157,'NIUE','Niue','NIU'),
(158,'NORFOLK ISLAND','Norfolk Island','NFK'),
(159,'NORTHERN MARIANA ISLANDS','Northern Mariana Islands','MNP'),
(160,'NORWAY','Norway','NOR'),
(161,'OMAN','Oman','OMN'),
(162,'PAKISTAN','Pakistan','PAK'),
(163,'PALAU','Palau','PLW'),
(164,'PALESTINIAN TERRITORY, OCCUPIED','Palestinian Territory, Occupied',NULL),
(165,'PANAMA','Panama','PAN'),
(166,'PAPUA NEW GUINEA','Papua New Guinea','PNG'),
(167,'PARAGUAY','Paraguay','PRY'),
(168,'PERU','Peru','PER'),
(169,'PHILIPPINES','Philippines','PHL'),
(170,'PITCAIRN','Pitcairn','PCN'),
(171,'POLAND','Poland','POL'),
(172,'PORTUGAL','Portugal','PRT'),
(173,'PUERTO RICO','Puerto Rico','PRI'),
(174,'QATAR','Qatar','QAT'),
(175,'REUNION','Reunion','REU'),
(176,'ROMANIA','Romania','ROM'),
(177,'RUSSIAN FEDERATION','Russian Federation','RUS'),
(178,'RWANDA','Rwanda','RWA'),
(179,'SAINT HELENA','Saint Helena','SHN'),
(180,'SAINT KITTS AND NEVIS','Saint Kitts and Nevis','KNA'),
(181,'SAINT LUCIA','Saint Lucia','LCA'),
(182,'SAINT PIERRE AND MIQUELON','Saint Pierre and Miquelon','SPM'),
(183,'SAINT VINCENT AND THE GRENADINES','Saint Vincent and the Grenadines','VCT'),
(184,'SAMOA','Samoa','WSM'),
(185,'SAN MARINO','San Marino','SMR'),
(186,'SAO TOME AND PRINCIPE','Sao Tome and Principe','STP'),
(187,'SAUDI ARABIA','Saudi Arabia','SAU'),
(188,'SENEGAL','Senegal','SEN'),
(189,'SERBIA','Serbia','SRB'),
(190,'SEYCHELLES','Seychelles','SYC'),
(191,'SIERRA LEONE','Sierra Leone','SLE'),
(192,'SINGAPORE','Singapore','SGP'),
(193,'SLOVAKIA','Slovakia','SVK'),
(194,'SLOVENIA','Slovenia','SVN'),
(195,'SOLOMON ISLANDS','Solomon Islands','SLB'),
(196,'SOMALIA','Somalia','SOM'),
(197,'SOUTH AFRICA','South Africa','ZAF'),
(198,'SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS','South Georgia and the South Sandwich Islands',NULL),
(199,'SPAIN','Spain','ESP'),
(200,'SRI LANKA','Sri Lanka','LKA'),
(201,'SUDAN','Sudan','SDN'),
(202,'SURINAME','Suriname','SUR'),
(203,'SVALBARD AND JAN MAYEN','Svalbard and Jan Mayen','SJM'),
(204,'SWAZILAND','Swaziland','SWZ'),
(205,'SWEDEN','Sweden','SWE'),
(206,'SWITZERLAND','Switzerland','CHE'),
(207,'SYRIAN ARAB REPUBLIC','Syrian Arab Republic','SYR'),
(208,'TAIWAN, PROVINCE OF CHINA','Taiwan, Province of China','TWN'),
(209,'TAJIKISTAN','Tajikistan','TJK'),
(210,'TANZANIA, UNITED REPUBLIC OF','Tanzania, United Republic of','TZA'),
(211,'THAILAND','Thailand','THA'),
(212,'TIMOR-LESTE','Timor-Leste',NULL),
(213,'TOGO','Togo','TGO'),
(214,'TOKELAU','Tokelau','TKL'),
(215,'TONGA','Tonga','TON'),
(216,'TRINIDAD AND TOBAGO','Trinidad and Tobago','TTO'),
(217,'TUNISIA','Tunisia','TUN'),
(218,'TURKEY','Turkey','TUR'),
(219,'TURKMENISTAN','Turkmenistan','TKM'),
(220,'TURKS AND CAICOS ISLANDS','Turks and Caicos Islands','TCA'),
(221,'TUVALU','Tuvalu','TUV'),
(222,'UGANDA','Uganda','UGA'),
(223,'UKRAINE','Ukraine','UKR'),
(224,'UNITED ARAB EMIRATES','United Arab Emirates','ARE'),
(225,'UNITED KINGDOM','United Kingdom','GBR'),
(226,'UNITED STATES','United States','USA'),
(227,'UNITED STATES MINOR OUTLYING ISLANDS','United States Minor Outlying Islands',NULL),
(228,'URUGUAY','Uruguay','URY'),
(229,'UZBEKISTAN','Uzbekistan','UZB'),
(230,'VANUATU','Vanuatu','VUT'),
(231,'VENEZUELA','Venezuela','VEN'),
(232,'VIET NAM','Viet Nam','VNM'),
(233,'VIRGIN ISLANDS, BRITISH','Virgin Islands, British','VGB'),
(234,'VIRGIN ISLANDS, U.S.','Virgin Islands, U.s.','VIR'),
(235,'WALLIS AND FUTUNA','Wallis and Futuna','WLF'),
(236,'WESTERN SAHARA','Western Sahara','ESH'),
(237,'YEMEN','Yemen','YEM'),
(238,'ZAMBIA','Zambia','ZMB'),
(239,'ZIMBABWE','Zimbabwe','ZWE');
/*Table structure for table `fighters` */
DROP TABLE IF EXISTS `fighters`;
CREATE TABLE `fighters` (
`id` bigint(11) NOT NULL AUTO_INCREMENT,
`countryId` int(11) DEFAULT NULL,
`name` varchar(100) DEFAULT NULL,
`nickname` varchar(100) DEFAULT NULL,
`wins` int(11) DEFAULT NULL,
`losses` int(11) DEFAULT NULL,
`draws` int(11) DEFAULT NULL,
`height_cm` float DEFAULT NULL,
`weight_in_kg` float DEFAULT NULL,
`reach_in_cm` float DEFAULT NULL,
`stance` varchar(50) DEFAULT NULL,
`date_of_birth` date DEFAULT NULL,
`significant_strikes_landed_per_minute` float DEFAULT NULL,
`significant_striking_accuracy` float DEFAULT NULL,
`significant_strikes_absorbed_per_minute` float DEFAULT NULL,
`significant_strike_defence` float DEFAULT NULL,
`average_takedowns_landed_per_15_minutes` float DEFAULT NULL,
`takedown_accuracy` float DEFAULT NULL,
`takedown_defense` float DEFAULT NULL,
`average_submissions_attempted_per_15_minutes` float DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `countryId` (`countryId`),
CONSTRAINT `fighters_ibfk_1` FOREIGN KEY (`countryId`) REFERENCES `countries` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4114 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*Data for the table `fighters` */
insert into `fighters`(`id`,`countryId`,`name`,`nickname`,`wins`,`losses`,`draws`,`height_cm`,`weight_in_kg`,`reach_in_cm`,`stance`,`date_of_birth`,`significant_strikes_landed_per_minute`,`significant_striking_accuracy`,`significant_strikes_absorbed_per_minute`,`significant_strike_defence`,`average_takedowns_landed_per_15_minutes`,`takedown_accuracy`,`takedown_defense`,`average_submissions_attempted_per_15_minutes`) values
(1,77,'Robert Drysdale','',7,0,0,190.5,92.99,0,'Orthodox','1998-06-05',0,0,0,0,7.32,100,0,21.9),
(2,40,'Daniel McWilliams','The Animal',15,37,0,185.42,83.91,0,'Southpaw','2005-03-02',3.36,77,0,0,0,0,100,21.6),
(3,204,'Dan Molina','',13,9,0,177.8,97.98,0,'Southpaw','2002-08-24',0,0,5.58,60,0,0,0,20.9),
(4,185,'Paul Ruiz','',7,4,0,167.64,61.23,0,'Switch','1994-01-26',1.4,33,1.4,75,0,0,100,20.9),
(5,75,'Collin Huckbody','All In',8,2,0,190.5,83.91,193.04,'Orthodox','2002-10-22',2.05,60,2.73,42,10.23,100,0,20.4),
(6,56,'Gerald Strebendt','The Finishing Machine',9,7,0,175.26,70.31,0,'Orthodox','1990-12-30',0,0,4,38,0,0,0,16.4),
(7,56,'Isaiah Hill','',5,7,1,177.8,70.31,0,'Southpaw','2002-12-22',4.84,50,0.97,80,0,0,66,14.5),
(8,111,'Kenneth Seegrist','',4,7,0,182.88,83.91,0,'Orthodox','1987-11-09',3.21,66,1.28,0,0,0,40,14.4),
(9,147,'Will Kerr','',9,3,0,177.8,70.31,175.26,'Orthodox','1994-09-30',1.91,42,6.22,33,0,0,0,14.3),
(10,162,'Neil Grove','Goliath',12,8,1,198.12,120.2,0,'Orthodox','1984-10-23',0,0,0,0,0,0,100,14.3),
(11,132,'Raphael Butler','The Silencer',9,2,1,190.5,118.39,0,'Orthodox','1999-12-22',4.69,45,0.94,91,0,0,100,14.1),
(12,173,'Bo Nickal','',5,0,0,185.42,83.91,193.04,'Southpaw','1995-06-26',2.76,62,0.55,75,11.04,50,0,13.8),
(13,228,'Ian Entwistle','Enty',9,3,0,165.1,61.23,0,'Orthodox','1998-09-12',0.11,7,7.36,31,0,0,0,12.1),
(14,144,'Megumi Fujii','Mega Megu',26,3,0,160.02,51.26,0,'Orthodox','1991-03-14',2.4,42,0,100,0,0,0,12),
(15,35,'Gaston Reyno','Tonga',6,2,0,182.88,65.77,0,'Orthodox','2003-10-21',7.79,62,3.9,44,0,0,0,11.7),
(16,221,'Kenny Ento','Tha\' Dragon',14,15,0,187.96,87.09,0,'Southpaw','1985-10-04',8.41,79,0,100,5.49,100,0,11),
(17,42,'AJ McKee','Mercenary',8,0,0,177.8,65.77,0,'Orthodox','1992-06-15',2.75,32,0.92,80,11.01,100,100,11),
(18,26,'Westin Wilson','',16,8,0,185.42,65.77,185.42,'Southpaw','2005-02-18',1.38,50,7.59,26,0,0,0,10.3),
(19,4,'Philip Perez','',7,5,1,165.1,70.31,0,'Southpaw','1998-09-22',1.36,100,0.68,66,10.23,100,0,10.2),
(20,181,'Brandon Shuey','Big Dawg',7,6,0,170.18,70.31,0,'Orthodox','1993-11-23',0.68,33,1.36,0,0,0,0,10.2),
(21,175,'Dave Phillips','The Rockstar',13,7,0,182.88,83.91,0,'Orthodox','2004-10-15',0,0,2,25,0,0,0,10),
(22,92,'Johnny Sampaio','',3,1,0,172.72,77.11,0,'Orthodox','2005-03-08',1.32,40,2.64,50,9.89,50,0,9.9),
(23,175,'Dione Barbosa','The Witch',6,2,0,167.64,56.7,167.64,'Orthodox','2003-09-15',0.87,50,0.65,66,3.27,100,0,9.8),
(24,121,'Zach Reese','Savage',6,1,0,193.04,83.91,195.58,'Switch','1998-12-28',3.93,66,6.56,28,0,0,0,9.8),
(25,77,'Rodrigo Gripp de Sousa','Riscado',7,9,0,180.34,92.99,0,'Orthodox','2001-10-12',0.48,23,4.81,52,0,0,0,9.6),
(26,22,'Justin Burlinson','',6,1,0,185.42,77.11,187.96,'Switch','1992-03-16',1.24,40,3.09,61,0,0,100,9.3),
(27,118,'Poppies Martinez','The Tachi Kid',29,11,0,175.26,65.77,0,'Orthodox','2002-02-23',2.88,50,2.16,51,1.54,33,50,9.2),
(28,47,'Josh Rafferty','',9,8,0,182.88,77.11,0,'Orthodox','1988-03-29',0.6,33,3.6,50,0,0,0,9),
(29,117,'Daniel Puder','',8,0,0,190.5,106.59,0,'Orthodox','1994-07-22',2.77,68,1.17,38,1.21,50,81,9),
(30,204,'Yukio Sakaguchi','',6,7,0,175.26,83.91,0,'Orthodox','1986-09-14',0.3,25,2.4,50,4.5,100,0,9),
(31,192,'Magomed Sultanakhmedov','',18,6,0,187.96,83.91,0,'Southpaw','1983-08-18',0,0,2.4,42,9,100,0,9),
(32,109,'Jeff Newton','',4,2,0,187.96,92.99,0,'Sideways','1983-11-28',0.28,20,1.41,52,0,0,0,8.5),
(33,207,'Emiliano Sordi','He-Man',16,7,0,187.96,92.99,0,'Orthodox','1991-11-07',4.79,50,4.79,48,0,0,100,8.3),
(34,230,'Erik Apple','',10,3,0,182.88,77.11,0,'Orthodox','1984-04-11',0,0,0.54,81,0,0,0,8.1),
(35,49,'Fazlo Mulabitinovic','',4,2,0,0,61.23,0,'Orthodox','1987-12-04',0.54,16,0,100,0,0,0,8),
(36,34,'J.T Taylor','The Outlaw',7,7,0,177.8,0,0,'Orthodox','2003-05-07',3.17,80,3.7,26,3.96,100,0,7.9),
(37,20,'Adam Meredith','',5,3,0,187.96,77.11,0,'Orthodox','2004-07-25',2.63,50,2.11,55,7.89,100,100,7.9),
(38,1,'Klayton Mai','',8,3,0,175.26,56.7,0,'Southpaw','2000-11-25',1.53,42,1.02,63,3.83,100,0,7.7),
(39,180,'Ron Keslar','',11,9,0,0,83.91,0,'Southpaw','1985-04-30',0,0,2.05,60,0,0,100,7.7),
(40,181,'Bobby McAndrews','',1,3,0,0,0,0,'Orthodox','1990-06-11',2.56,83,1.03,50,0,0,33,7.7),
(41,125,'Ansar Chalangov','',14,5,0,175.26,77.11,0,'Orthodox','1984-10-03',0.68,66,1.69,54,0,0,0,7.6),
(42,83,'Jeremiah Constant','',11,8,0,185.42,108.86,0,'Orthodox','1993-09-02',1.5,75,3.25,43,0,0,0,7.5),
(43,39,'Paul Sass','',14,2,0,182.88,70.31,185.42,'Orthodox','2004-03-23',0.53,26,1.9,51,0.53,16,33,7.4),
(44,184,'Eddy Millis','',0,2,0,185.42,83.91,0,'Switch','1989-07-07',0,0,3.36,22,0,0,0,7.2),
(45,84,'James Lee','',15,3,0,180.34,92.99,0,'Southpaw','1996-01-18',1.4,42,3.72,27,13.95,50,0,7),
(46,110,'Mikhail Iloukhine','',30,11,1,175.26,92.99,0,'Orthodox','1991-07-17',0.16,20,2.95,26,0,0,0,7),
(47,55,'Kyle Jensen','',4,11,2,175.26,77.11,0,'Orthodox','1993-02-10',0,0,0.92,60,6.92,100,0,6.9),
(48,186,'Ilya Kotau','',1,2,0,0,77.11,0,'Orthodox','1988-08-04',3.94,40,4.38,44,6.57,100,100,6.6),
(49,46,'Trevor Harris','',2,2,0,167.64,65.77,0,'Orthodox','1985-07-15',1.73,50,0.43,75,0,0,50,6.5),
(50,148,'Jinnosuke Kashimura','',4,2,0,170.18,70.31,180.34,'Southpaw','1988-02-17',0.21,50,7.37,25,3.16,100,0,6.3),
(51,125,'Tom Erikson','The Big Cat',9,4,1,190.5,127.01,0,'Orthodox','2003-12-09',0.94,47,1.87,25,4.68,60,100,6.2),
(52,181,'Jason Black','The Black Legion',23,4,1,172.72,70.31,0,'Orthodox','2001-12-09',1.06,47,2.6,45,0.48,33,28,6.2),
(53,51,'Francisco France','Kiko',13,5,1,182.88,92.99,0,'Orthodox','1986-09-16',0.54,33,3.51,27,0,0,0,6.1),
(54,189,'John Albert','Prince',6,5,0,172.72,61.23,172.72,'Orthodox','2005-04-27',3.05,49,2.82,35,0,0,50,6.1),
(55,73,'Daniel Swain','',20,10,1,175.26,65.77,177.8,'Orthodox','1997-12-26',0.8,44,3.2,40,0,0,0,6),
(56,37,'Neiman Gracie','',6,0,0,182.88,77.11,0,'Orthodox','2003-02-20',0.77,100,0.38,75,5.77,100,0,5.8),
(57,207,'Shamil Gaziev','',11,0,0,193.04,120.2,198.12,'Orthodox','2005-01-23',1.52,100,0,0,0,0,0,5.7),
(58,206,'Masakatsu Funaki','',39,13,2,182.88,83.91,0,'Southpaw','1991-03-25',1.82,68,2.92,35,0,0,0,5.5),
(59,168,'David Terrell','The Soul Assassin',6,2,0,185.42,83.91,0,'Southpaw','1984-02-07',2.34,63,2.71,37,5.54,50,0,5.5),
(60,222,'Rob MacDonald','Maximus',5,4,0,190.5,92.99,198.12,'Orthodox','1992-03-01',1.8,50,2.04,46,7.19,80,80,5.4),
(61,130,'Nick Barnes','',11,2,0,180.34,77.11,0,'Orthodox','1997-06-30',2.86,29,8.93,51,5.36,100,100,5.4),
(62,219,'Matt Arroyo','No Regard',3,3,0,177.8,77.11,182.88,'Orthodox','1993-03-29',1.62,47,2.01,58,2.12,36,100,5.3),
(63,229,'Diego Lopes','',23,6,0,180.34,65.77,182.88,'Orthodox','2003-05-22',2.47,53,4.91,37,0,0,42,5.3),
(64,7,'Colin Robinson','Big C',10,12,0,193.04,110.22,0,'Orthodox','1987-07-13',6.19,69,7.91,37,2.58,100,50,5.2),
(65,64,'Nick Garcia','Nitro',8,3,0,162.56,56.7,0,'Orthodox','2004-11-07',0.67,25,3.03,50,0,0,83,5.1),
(66,59,'Justin Levens','The Executioner',10,7,0,180.34,83.91,0,'Orthodox','1990-09-12',1.24,47,3.15,37,1.69,50,33,5.1),
(67,103,'Mike Ciesnolevicz','',19,4,0,182.88,106.59,0,'Orthodox','1993-11-19',0.51,50,4.62,57,0,0,20,5.1),
(68,101,'Magno Almeida','',10,3,0,182.88,70.31,0,'Switch','2004-10-31',1.67,36,2.6,41,0,0,40,5),
(69,193,'George Pacurariu','Constantine',10,5,0,170.18,61.23,0,'Orthodox','1988-02-15',4.69,53,2.68,63,5.03,100,100,5),
(70,186,'Ronaldo Candido','Pacman',6,0,0,167.64,56.7,0,'Southpaw','2005-02-19',1.67,42,3.87,52,8,53,0,5),
(71,111,'Alex Schoenauer','',15,10,0,190.5,83.91,0,'Orthodox','1998-10-20',1.22,40,2.27,42,0,0,22,4.9),
(72,234,'Justin Guthrie','',18,9,0,185.42,77.11,0,'Southpaw','2001-04-15',0.16,33,3.74,14,2.44,25,0,4.9),
(73,120,'Billy Pasulatan','',10,3,0,165.1,56.7,167.64,'Switch','2003-07-22',0.65,20,5.22,48,0,0,0,4.9),
(74,135,'Aaron Ely','The Cyborg',5,2,0,172.72,61.23,0,'Switch','2002-03-15',0.82,15,0.66,69,2.47,100,50,4.9),
(75,76,'Shohei Nose','',10,4,2,167.64,61.23,172.72,'Switch','1993-03-03',2.48,40,3.61,53,3.23,17,0,4.8),
(76,216,'TJ Waldburger','',16,9,0,180.34,77.11,190.5,'Orthodox','1994-09-07',2.02,51,2.39,40,3.03,46,40,4.8),
(77,133,'Ronda Rousey','Rowdy',12,2,0,170.18,61.23,167.64,'Orthodox','2001-10-19',4.17,52,4.14,44,6.26,68,50,4.8),
(78,17,'Nik Theotikos','',6,2,0,0,83.91,0,'Orthodox','1993-04-25',0,0,5.48,19,0,0,0,4.8),
(79,164,'Valentijn Overeem','',30,32,0,190.5,104.33,0,'Orthodox','1989-01-19',0.93,34,1.49,58,1.86,50,0,4.7),
(80,51,'Keith Rockel','Rock',12,4,1,182.88,83.91,0,'Orthodox','1991-06-12',1.13,73,0.21,66,4.63,75,100,4.6),
(81,239,'Mark Hughes','',6,2,0,175.26,92.99,0,'Southpaw','2005-03-26',0.9,47,0.4,42,3,50,0,4.5),
(82,86,'Jimmy Flick','The Brick',16,7,0,170.18,56.7,172.72,'Orthodox','1986-09-26',1.99,50,5.05,38,1.66,27,0,4.4),
(83,192,'Kaline Medeiros','The Dark Angel',8,5,0,160.02,52.16,0,'Southpaw','1987-03-04',2.06,70,0.29,83,4.41,100,0,4.4),
(84,221,'Takeru Uchida','',6,1,0,165.1,56.7,172.72,'Southpaw','1990-12-09',0,0,0,0,0,0,0,4.4),
(85,52,'Joe Pearson','The Triangular Strangler',45,30,1,177.8,65.77,0,'Orthodox','1995-08-12',0.59,18,3.51,33,0,0,0,4.4),
(86,76,'Jordan Bailey','',6,3,0,175.26,65.77,0,'Southpaw','1990-05-29',1.74,40,0.29,0,4.35,100,0,4.3),
(87,223,'Branden Lee Hinkle','The Iron Lion',17,11,0,190.5,106.59,0,'Orthodox','1983-07-30',2.61,69,3.91,26,4.34,57,66,4.3),
(88,167,'Goiti Yamauchi','',21,3,0,177.8,65.77,0,'Orthodox','1998-07-19',1.66,54,1.01,66,0,0,0,4.3),
(89,168,'Masakatsu Okuda','',8,5,0,0,0,0,'Orthodox','1994-07-14',0,0,4.27,34,0,0,0,4.3),
(90,99,'Wayne Cole','',16,25,0,185.42,92.99,0,'Orthodox','1985-07-05',0.57,20,8.33,27,4.31,25,0,4.3),
(91,227,'Jason Glaza','',3,2,0,182.88,104.33,0,'Orthodox','1988-02-21',4.34,54,0.43,40,4.34,100,0,4.3),
(92,124,'Bret Bergmark','The Angry Hick',6,1,1,175.26,77.11,0,'Switch','1984-05-23',2.78,52,2.78,37,4.17,100,50,4.2),
(93,176,'Genki Sudo','Neo-Samurai',15,4,2,175.26,70.31,0,'Orthodox','2000-06-14',1.55,39,2.23,33,3.58,60,50,4.2),
(94,28,'Yasuhito Namekawa','',25,16,4,175.26,92.99,0,'Orthodox','2001-05-07',0.14,50,3.65,38,2.11,25,0,4.2),
(95,89,'Sean McCorkle','',17,7,0,200.66,120.2,205.74,'Orthodox','1988-11-06',0.85,44,2.48,52,2.12,40,33,4.2),
(96,123,'Jeremy Lang','',21,2,0,180.34,92.99,0,'Southpaw','1993-04-19',1.13,50,1.41,42,4.22,60,0,4.2),
(97,109,'Rene Kronvold','',5,1,0,172.72,77.11,0,'Orthodox','1986-04-16',0.82,100,2.47,60,0,0,66,4.1),
(98,176,'Victor Hugo','Striker',24,4,0,170.18,61.23,180.34,'Orthodox','1985-02-08',1.24,34,1.1,65,2.06,50,66,4.1),
(99,73,'Kain Royer','',2,2,0,0,83.91,0,'Orthodox','1989-09-21',0,0,1.63,14,0,0,0,4.1),
(100,76,'Rousimar Palhares','Toquinho',19,8,0,172.72,77.11,180.34,'Orthodox','1999-01-15',1.75,51,2.04,59,3.93,45,0,4.1),
(101,160,'Clay Mitchell','',1,2,0,187.96,83.91,0,'Orthodox','1983-08-06',1.63,85,0,0,0,0,100,4.1),
(102,92,'Karine Silva','Killer',17,4,0,165.1,56.7,170.18,'Orthodox','2003-03-16',3.37,35,3.37,50,2.45,60,0,4.1),
(103,222,'Dustin Hazelett','McLovin',12,7,0,185.42,77.11,193.04,'Orthodox','1990-10-29',2.24,40,3.51,46,0.55,50,25,4.1),
(104,113,'HanSeul Kim','Spade',13,5,0,185.42,77.11,187.96,'Southpaw','2005-02-25',6.93,45,8.09,50,0,0,0,4),
(105,139,'Shinya Aoki','Tobikan Judan',39,7,0,180.34,69.85,0,'Southpaw','1998-10-02',0.97,58,1.25,58,2.54,41,60,4),
(106,119,'Marcus Hicks','The Wrecking Ball',10,4,0,167.64,70.31,162.56,'Southpaw','1996-03-22',1.42,43,3.06,61,2.7,53,25,4),
(107,174,'Dan Evensen','The Viking',11,4,0,190.5,113.4,0,'Orthodox','1990-09-23',0.27,10,3.86,38,0,0,0,4),
(108,35,'Ralph Gracie','',6,1,0,175.26,83.01,0,'Orthodox','1995-02-18',0.86,37,1.72,31,0,0,25,4),
(109,130,'Charlie Kohler','',8,4,1,175.26,70.31,0,'Orthodox','1984-04-12',0.81,33,4.31,46,0,0,0,4),
(110,69,'Alberto Crane','',15,5,0,165.1,70.31,0,'Orthodox','1990-05-16',0.43,25,2.61,57,0,0,50,4),
(111,191,'Mike Hayes','',20,12,2,193.04,104.33,0,'Orthodox','2002-11-17',4.87,55,1.47,77,0,0,75,4),
(112,31,'Bruno Carvalho','',10,5,0,172.72,69.85,0,'Southpaw','1998-08-15',0.6,45,0.93,53,0,0,66,4),
(113,58,'Steve Byrnes','The Sergeant',6,1,0,182.88,77.11,0,'Orthodox','2003-03-11',1.2,51,2.67,27,3,60,0,4),
(114,199,'Aliaskhab Khizriev','Black Wolf',14,0,0,175.26,83.91,187.96,'Southpaw','1989-04-25',6.03,64,4.36,62,5.77,60,100,3.9),
(115,102,'Torrez Finney','The Punisher',7,0,0,172.72,83.91,190.5,'Orthodox','1999-07-23',0.91,58,2.33,47,13.61,63,0,3.9),
(116,152,'Bill Mahood','The Butcher',20,7,1,190.5,90.72,0,'Orthodox','1992-01-01',1.54,85,3.59,17,0,0,0,3.9),
(117,216,'Marius Enache','',3,3,0,180.34,70.31,0,'Orthodox','2000-04-23',1.71,34,0.66,84,3.94,100,0,3.9),
(118,142,'Abongo Humphrey','',7,3,0,180.34,92.99,0,'Orthodox','1990-03-02',1.45,40,3.83,46,1.41,37,33,3.8),
(119,65,'Antonio Trocoli','Malvado',12,3,0,195.58,92.99,208.28,'Orthodox','2002-09-09',1.27,71,4.56,25,3.8,100,100,3.8),
(120,137,'Hector Urbina','El Toro',17,10,1,180.34,77.11,185.42,'Orthodox','1997-11-19',0.97,38,2.44,39,0,0,38,3.8),
(121,11,'Gabriel Bonfim','Marretinha',15,1,0,185.42,77.11,182.88,'Orthodox','1991-11-25',4.87,40,5.25,59,4.75,71,100,3.8),
(122,121,'James Wilks','Lightning',7,4,0,185.42,77.11,190.5,'Orthodox','1989-05-31',1.82,45,2.03,50,1.27,22,66,3.8),
(123,94,'Assu Almabayev','Zulfikar',18,2,0,162.56,56.7,165.1,'Orthodox','1986-01-22',3.18,65,0.49,77,3.67,40,0,3.7),
(124,107,'Nyamjargal Tumendemberel','Art of Knockout',8,0,0,170.18,56.7,180.34,'Orthodox','2001-09-17',4.43,44,3.62,45,4.68,38,14,3.7),
(125,13,'Jaqueline Amorim','',7,1,0,160.02,52.16,172.72,'Orthodox','2004-04-14',3.42,52,1.81,62,1.57,23,0,3.7),
(126,222,'HyunSung Park','Peace of Mind',8,0,0,170.18,56.7,167.64,'Orthodox','1994-04-09',3.51,48,2.62,59,2.23,30,100,3.7),
(127,114,'Igor Gracie','',5,4,0,180.34,77.11,0,'Orthodox','2000-11-13',1.86,60,0.99,50,3.72,50,0,3.7),
(128,142,'Brady Fink','',2,3,0,182.88,83.01,0,'Orthodox','2002-05-08',1.69,41,1.69,61,3.63,25,0,3.6),
(129,129,'Tatsuya Mizuno','',16,12,1,185.42,92.99,0,'Southpaw','1986-02-28',2.25,37,3.52,53,1.19,25,40,3.6),
(130,220,'Per Eklund','',14,5,1,177.8,70.31,182.88,'Orthodox','1992-03-06',2.07,61,2.38,67,2.07,11,50,3.6),
(131,235,'Daisuke Nakamura','',28,19,1,170.18,69.85,0,'Orthodox','1997-03-18',0.94,30,1.38,61,0.46,40,30,3.6),
(132,34,'Brennan Ward','The Irish Bad Boy',14,5,0,177.8,77.11,180.34,'Orthodox','1986-09-12',7.2,60,2.76,52,0,0,100,3.6),
(133,183,'Ken Kaneko','',0,3,0,182.88,73.03,0,'Orthodox','1983-09-05',0,0,0.94,42,0,0,0,3.5),
(134,97,'Rolando Delgado','Roli',11,6,1,190.5,70.31,195.58,'Orthodox','1988-11-03',1.56,40,1.83,62,1.17,22,0,3.5),
(135,173,'Mike King','',5,1,0,190.5,83.91,0,'Orthodox','1993-03-12',4.44,58,1.29,72,1.75,25,40,3.5),
(136,98,'Kit Cope','Havoc',6,7,0,182.88,77.11,0,'Orthodox','1997-06-03',1.18,52,2.12,35,0,0,50,3.5),
(137,206,'Chris Sanford','',5,1,0,180.34,83.91,0,'Orthodox','1983-07-25',0.23,50,3.22,17,0,0,0,3.5),
(138,21,'Junie Browning','',5,6,0,175.26,70.31,0,'Orthodox','1997-02-19',3.76,48,1.76,66,3.53,66,0,3.5),
(139,201,'Preston Parsons','Pressure',10,4,0,180.34,77.11,180.34,'Orthodox','1998-11-13',4.14,56,3.76,49,3.11,33,100,3.5),
(140,225,'Mike Budnik','',13,4,0,175.26,65.77,172.72,'Orthodox','1985-07-24',0.65,52,0.95,53,0,0,0,3.4),
(141,43,'Zhang Tiequan','The Wolf',15,4,0,172.72,70.31,175.26,'Orthodox','1993-02-25',1.23,36,2.14,51,1.95,58,75,3.4),
(142,20,'Shannon Gugerty','',15,7,0,177.8,70.31,180.34,'Orthodox','1992-02-15',1.25,39,1.88,58,2.13,27,50,3.4),
(143,207,'Allen Berube','Monstah Lobstah',4,3,0,172.72,70.31,0,'Orthodox','1992-04-06',0.92,80,0.92,33,6.87,100,0,3.4),
(144,21,'Tim Credeur','',12,4,0,190.5,83.91,190.5,'Orthodox','1985-02-27',3.59,30,3.13,57,0.41,100,50,3.3),
(145,200,'Daisuke Sugie','Amazon',10,8,1,167.64,72.57,0,'Orthodox','1995-12-17',0,0,0.22,80,3.27,50,0,3.3),
(146,217,'Herbert Burns','The Blaze',11,4,0,175.26,65.77,185.42,'Orthodox','1985-01-25',1.61,51,4.74,30,3.92,75,60,3.3),
(147,8,'Edwin DeWees','Babyface',38,17,0,185.42,83.91,0,'Orthodox','1985-12-16',1.53,33,6.19,39,2.18,66,0,3.3),
(148,104,'Ricardo Romero','',11,3,0,182.88,92.99,193.04,'Orthodox','1992-11-24',2.17,55,4.77,46,1.63,10,100,3.3),
(149,21,'Rob Broughton','The Bear',16,7,1,187.96,120.2,187.96,'Orthodox','1986-09-28',2.83,60,2.54,51,0,0,26,3.2),
(150,28,'Ryuichi Murata','',8,3,1,172.72,83.01,0,'Orthodox','1987-04-18',0.84,36,1.89,50,4.74,50,100,3.2),
(151,77,'Roman Zentsov','The Russian Hammer',18,12,0,185.42,104.33,0,'Orthodox','2003-03-22',1.18,36,0.53,70,1.6,100,33,3.2),
(152,61,'Dmitry Sosnovskiy','Wicked Machine',11,0,0,190.5,108.86,195.58,'Orthodox','1991-11-09',2.95,70,2.53,35,3.16,66,100,3.2),
(153,73,'Jesse Taylor','JT Money',31,15,0,182.88,77.11,185.42,'Orthodox','1985-07-21',1.94,65,0.55,38,7.28,50,100,3.1),
(154,183,'Alexandre Dantas','Cafe',0,3,0,187.96,107.95,0,'Orthodox','1993-02-10',0.21,25,1.87,60,0,0,0,3.1),
(155,216,'Kevin Jousset','Air',9,2,0,187.96,77.11,190.5,'Orthodox','1987-06-03',6.02,50,8.1,33,3.11,100,0,3.1),
(156,55,'Manny Bermudez','The Bermudez Triangle',14,2,0,177.8,65.77,180.34,'Orthodox','1992-04-09',2.92,61,2.68,46,3.06,54,0,3.1),
(157,102,'Eric Lawson','',9,5,0,182.88,83.91,0,'Orthodox','1986-08-29',1.58,57,1.97,44,8.88,42,0,3),
(158,108,'Sidney Outlaw','',8,4,0,172.72,77.11,187.96,'Orthodox','1999-06-02',0.13,33,0.8,71,3,75,0,3),
(159,234,'Maiquel Falcao','Big Rig',37,10,0,180.34,83.91,0,'Orthodox','2000-03-31',1.67,55,0.53,86,1,100,71,3),
(160,125,'Samandar Murodov','',8,0,0,185.42,77.11,190.5,'Orthodox','2003-03-28',3.41,80,0.8,0,3.01,100,0,3),
(161,165,'Katsuaki Furuki','',1,1,0,182.88,76.2,0,'Orthodox','1994-08-02',0.27,10,2.67,39,0,0,0,3),
(162,210,'Matt Secor','',8,4,0,182.88,77.11,0,'Orthodox','1990-04-07',0.51,20,0.81,50,3.03,100,0,3),
(163,78,'Danny Mitchell','The Cheesecake Assassin',19,9,1,187.96,77.11,0,'Orthodox','1993-01-18',2.53,49,2.53,52,0,0,100,3),
(164,236,'Adam Piccolotti','',9,0,0,180.34,70.31,0,'Orthodox','2001-10-27',4.61,50,2.83,71,2.96,60,100,3),
(165,230,'Scott Shaffer','',0,1,0,170.18,65.77,0,'Orthodox','1992-06-15',2.4,67,0.53,50,0,0,72,3),
(166,202,'Raymond Daniels','',0,1,0,187.96,83.91,0,'Southpaw','2001-07-23',0,0,2.61,38,0,0,33,3),
(167,81,'Fabiano Iha','',9,5,0,172.72,70.31,0,'Orthodox','1986-10-28',1.73,47,2.49,42,2.88,40,50,2.9),
(168,38,'Jan Nortje','The Giant',2,6,0,185.42,140.61,0,'Southpaw','1994-11-22',3.32,51,4.5,32,0,0,66,2.9),
(169,185,'Will Ribeiro','',10,2,0,172.72,61.23,0,'Orthodox','2000-11-08',1.83,28,1.64,74,1.15,100,50,2.9),
(170,92,'Anthony Hernandez','Fluffy',11,2,0,182.88,83.91,190.5,'Orthodox','2002-06-24',4.33,62,3.36,46,6.79,57,63,2.9),
(171,146,'Marcus Jones','The Darkness',4,2,0,198.12,120.2,0,'Orthodox','1998-09-20',1.94,52,2.71,58,8.71,75,0,2.9),
(172,212,'Tatsuro Taira','',14,0,0,170.18,56.7,177.8,'Orthodox','1992-09-01',3.23,69,1.26,47,2.41,41,60,2.8),
(173,142,'Jason High','The Kansas City Bandit',21,6,0,172.72,70.31,185.42,'Southpaw','2004-07-01',1.28,42,1.56,48,2.36,63,37,2.8),
(174,77,'Mike Nickels','',9,5,0,193.04,92.99,0,'Orthodox','1994-10-03',4.44,52,1.11,64,11.11,80,0,2.8),
(175,195,'Shaheen Santana','Shazam',6,1,0,185.42,70.31,190.5,'Orthodox','1987-02-21',0.82,42,1.65,40,0,0,0,2.8),
(176,26,'Sam Patterson','',10,2,1,190.5,70.31,198.12,'Orthodox','1988-03-14',2.56,36,3.98,44,0,0,33,2.8),
(177,23,'Rei Tsuruya','',8,0,0,167.64,56.7,172.72,'Orthodox','1990-10-26',2.91,63,1.64,42,7.74,57,50,2.8),
(178,39,'Yoshiyuki Yoshida','Zenko',18,9,0,180.34,77.11,177.8,'Southpaw','2005-01-11',0.85,36,3.67,36,1.41,28,25,2.8),
(179,123,'Nadia Kassem','',5,2,0,165.1,56.7,167.64,'Southpaw','1987-06-28',3.13,41,4.48,48,0.46,33,40,2.8),
(180,22,'Rinya Nakamura','Hybred',8,0,0,170.18,61.23,172.72,'Southpaw','2001-04-11',4.23,54,1.78,70,4.23,85,100,2.8),
(181,217,'Ron Waterman','H20',16,6,2,187.96,127.01,0,'Orthodox','2003-03-07',0.84,50,1.37,42,4.19,69,50,2.8),
(182,62,'Abel Cullum','The Silent Assassin',20,6,0,170.18,63.05,0,'Orthodox','1988-03-16',1.82,40,1.23,46,4.01,52,0,2.8),
(183,135,'Andre Galvao','',5,2,0,170.18,76.2,0,'Orthodox','1989-08-04',2.34,52,1.56,58,2.02,27,0,2.8),
(184,14,'Dan Lauzon','The Upgrade',17,6,0,177.8,70.31,0,'Orthodox','2004-09-12',1.34,25,4.09,61,1.63,33,80,2.7),
(185,140,'Darrick Minner','',26,14,0,170.18,65.77,175.26,'Orthodox','1995-03-29',2.63,65,2.28,35,2.4,72,66,2.7),
(186,182,'Edson Berto','Little Tiger',17,12,1,167.64,70.31,0,'Orthodox','1994-07-21',1.76,36,4.62,47,5.47,40,0,2.7),
(187,9,'Khamzat Chimaev','Borz',13,0,0,187.96,83.91,190.5,'Orthodox','1985-08-31',5.72,58,3.46,42,3.99,46,100,2.7),
(188,215,'Carlton Jones','',1,4,0,185.42,102.06,0,'Orthodox','2001-12-18',2.32,41,3.58,56,4.02,50,57,2.7),
(189,91,'Charles Oliveira','Do Bronxs',34,9,0,177.8,70.31,187.96,'Orthodox','1986-08-05',3.54,53,3.19,51,2.32,40,55,2.7),
(190,50,'Matt Horwich','Suave',30,25,1,185.42,83.91,0,'Orthodox','1991-11-25',1.11,62,2.16,38,0.33,9,28,2.7),
(191,217,'Charles McCarthy','Chainsaw',10,5,0,177.8,83.91,180.34,'Orthodox','1988-01-05',0.18,12,4.03,56,2.67,60,0,2.7),
(192,217,'Jeff Bedard','Little Popeye',13,3,0,167.64,65.77,0,'Orthodox','1991-06-10',0.8,51,0,100,3.43,66,100,2.6),
(193,193,'Roybert Echeverria','The Unbroken',7,1,0,165.1,56.7,170.18,'Switch','1983-07-04',2.95,53,2.52,57,0,0,71,2.6),
(194,76,'Julian Marquez','The Cuban Missile Crisis',9,4,0,187.96,83.91,182.88,'Orthodox','1990-12-05',4.86,44,4.99,51,0,0,53,2.6),
(195,37,'Allan Goes','',10,5,2,182.88,92.99,0,'Orthodox','1994-06-01',0.64,52,1.35,41,1.75,40,0,2.6),
(196,198,'Joseph Morales','',9,2,0,167.64,56.7,175.26,'Switch','1993-11-09',1.58,37,1.72,60,0.53,50,23,2.6),
(197,162,'Nick Thompson','The Goat',38,14,1,185.42,77.11,187.96,'Orthodox','1999-10-21',1.87,42,1.8,49,1.06,100,35,2.6),
(198,217,'Dustin Pague','The Disciple',12,11,0,175.26,61.23,187.96,'Orthodox','1998-11-01',1.65,53,2.96,41,1.03,44,55,2.6),
(199,118,'Coty Wheeler','Ox',14,5,0,167.64,61.23,170.18,'Orthodox','2004-12-07',1.88,22,3.16,59,0.87,37,33,2.6),
(200,177,'Lu Kai','The Last Gladiator',8,5,0,175.26,65.77,175.26,'Orthodox','1999-07-09',3.76,43,5.51,55,2.62,50,100,2.6),
(201,51,'Renato Sobral','Babalu',37,11,0,185.42,92.99,190.5,'Orthodox','1990-09-28',2.23,45,1.53,57,2.48,42,65,2.6),
(202,205,'Daniel Roberts','Ninja',15,7,0,177.8,77.11,187.96,'Southpaw','1997-09-18',0.73,20,2.27,46,2.46,44,40,2.5),
(203,154,'Keigo Kunihara','',3,2,0,182.88,106.59,0,'Orthodox','1995-03-06',0.17,10,1.99,57,4.97,40,100,2.5),
(204,153,'Jeimeson Saudino','The Minion',8,5,0,167.64,61.23,0,'Orthodox','1989-04-07',0.66,30,0.82,84,2.47,50,0,2.5),
(205,62,'Marloes Coenen','',23,8,0,175.26,65.77,170.18,'Orthodox','1995-09-17',2.15,51,1.9,67,0.82,30,41,2.5),
(206,92,'Daniel Spohn','Dragon',15,6,0,193.04,92.99,200.66,'Southpaw','2001-05-21',2.42,49,1.6,53,0,0,28,2.5),
(207,32,'Andre Petroski','',10,3,0,182.88,83.91,185.42,'Switch','1996-03-24',3.61,51,3.03,51,4.48,54,71,2.5),
(208,123,'Dave Menne','The Warrior',45,17,2,177.8,77.11,0,'Orthodox','1993-02-20',1.84,44,1.99,42,0.46,50,57,2.5),
(209,41,'Kyle Kurtz','',7,5,0,0,77.11,0,'Orthodox','1990-11-18',1.31,36,2.95,52,1.23,20,0,2.5),
(210,75,'Renato Verissimo','Charuto',7,5,0,185.42,77.11,0,'Orthodox','1990-10-15',0.92,48,1.87,47,1.46,30,50,2.5),
(211,11,'Ken Shamrock','The World\'s Most Dangerous Man',28,17,2,185.42,92.99,182.88,'Orthodox','2001-05-08',1.47,46,4.3,39,0.94,60,44,2.5),
(212,70,'Lumumba Sayers','',6,5,0,182.88,83.91,0,'Orthodox','1988-10-28',2.54,41,2.37,48,7.63,75,0,2.5),
(213,79,'Dale Hartt','',6,3,0,177.8,70.31,175.26,'Orthodox','1990-11-01',1.14,35,1.55,66,1.22,100,25,2.5),
(214,183,'Thomas Petersen','The Train',8,1,0,185.42,119.75,187.96,'Southpaw','1985-09-26',3.59,73,2.45,40,7.34,100,100,2.5),
(215,199,'Tom Murphy','',8,0,0,187.96,102.97,0,'Southpaw','1988-10-02',2.5,71,0.17,84,7.51,85,0,2.5),
(216,208,'Naoki Inoue','',11,1,0,175.26,56.7,180.34,'Orthodox','2003-12-23',3.67,35,3.37,60,0,0,60,2.5),
(217,203,'Phil Cardella','',8,5,0,180.34,70.31,0,'Orthodox','1985-01-13',2.47,50,2,57,0,0,11,2.5),
(218,152,'Clayton Carpenter','',7,0,0,167.64,56.7,167.64,'Orthodox','2004-03-15',4.5,51,2.85,60,2.47,50,0,2.5),
(219,150,'Ivan Salaverry','',14,9,0,182.88,83.91,0,'Orthodox','1986-10-26',3.01,47,1.19,76,0.49,18,36,2.5),
(220,54,'Keisuke Fujiwara','',17,12,5,167.64,63.05,0,'Switch','1996-01-09',0.73,44,1.2,47,0,0,23,2.5),
(221,57,'Cody McKenzie','',16,10,0,182.88,70.31,182.88,'Switch','1991-05-03',1.74,34,2.5,67,2.5,25,14,2.5),
(222,124,'Tamdan McCrory','The Barncat',14,5,0,193.04,83.91,193.04,'Switch','1995-07-03',2.07,49,1.6,46,2.28,50,33,2.5),
(223,208,'Liam McGeary','',12,2,0,198.12,92.99,0,'Orthodox','1999-10-20',1.28,48,1.92,50,0.51,100,0,2.5),
(224,190,'Jailton Almeida','Malhadinho',20,2,0,190.5,92.99,200.66,'Orthodox','1999-12-26',2.78,64,0.52,43,5.14,55,75,2.4),
(225,87,'Doug Marshall','The Rhino',18,8,0,177.8,92.99,0,'Orthodox','1996-10-04',6.99,46,4.02,60,0,0,66,2.4),
(226,104,'Mark Weir','The Wizard',21,18,1,187.96,83.91,0,'Southpaw','2002-11-13',1.54,56,2.5,38,0.8,50,25,2.4),
(227,21,'Shane del Rosario','',11,2,0,193.04,113.4,0,'Southpaw','1995-12-24',3.93,60,2.97,54,1.2,40,16,2.4),
(228,30,'Juan Espino','El Guapo',11,2,0,190.5,115.67,203.2,'Orthodox','1985-01-18',2.38,70,1.95,40,8.93,78,50,2.4),
(229,84,'Jason Lambert','The Punisher',26,13,0,190.5,83.91,190.5,'Orthodox','2005-05-28',3.21,58,1.84,50,1.35,36,28,2.4),
(230,94,'Noad Lahat','Neo',11,2,0,175.26,65.77,175.26,'Orthodox','1983-07-30',2.79,46,1.47,63,2.37,26,16,2.4),
(231,218,'Paddy Pimblett','The Baddy',20,3,0,177.8,70.31,185.42,'Orthodox','1999-08-02',4.19,46,3.48,41,0.97,25,56,2.4),
(232,88,'Gabriel Miranda','Fly',17,6,0,180.34,65.77,180.34,'Orthodox','1998-03-14',3.52,51,6.88,39,4.8,40,0,2.4),
(233,27,'Rob Kimmons','The Rosedale Reaper',25,9,0,177.8,83.91,185.42,'Orthodox','2003-10-23',1.86,48,4.79,38,2.08,46,25,2.4),
(234,109,'Hermes Franca','',24,17,0,167.64,70.31,180.34,'Orthodox','1985-11-05',1.78,39,2.85,55,1.53,36,37,2.4),
(235,224,'Cesar Arzamendia','Goku',8,3,0,180.34,70.31,0,'Orthodox','2001-02-13',5.37,45,5.2,56,7.32,75,0,2.4),
(236,74,'Antonio Rodrigo Nogueira','Minotauro',34,10,1,190.5,108.86,195.58,'Orthodox','1985-12-12',1.95,42,2.4,55,1.3,29,36,2.4),
(237,175,'Chris Lytle','Lights Out',31,18,5,180.34,77.11,172.72,'Orthodox','1990-03-14',3.76,45,3.03,58,0.7,55,55,2.4),
(238,174,'Ramiz Brahimaj','',10,4,0,177.8,77.11,182.88,'Orthodox','1985-07-28',2.47,41,4.08,50,1.9,66,58,2.4),
(239,105,'Eugene Jackson','The Wolf',15,9,1,172.72,83.91,0,'Orthodox','1994-05-06',2.19,33,3.44,32,1.91,71,16,2.3),
(240,3,'Joe Doerksen','El Dirte',51,16,0,182.88,83.91,190.5,'Orthodox','1987-09-08',1.43,42,2.79,50,2.02,33,33,2.3),
(241,178,'Wes Sims','The Project',24,14,1,208.28,117.93,0,'Orthodox','1999-03-14',0.98,51,2.95,37,0,0,40,2.3),
(242,163,'JP Buys','Young Savage',9,6,0,165.1,61.23,170.18,'Orthodox','2000-12-01',1.88,39,3.02,40,1.55,25,25,2.3),
(243,40,'Brandon Royval','Raw Dawg',15,6,0,175.26,56.7,172.72,'Southpaw','1987-12-09',3.45,38,2.63,50,0.66,100,39,2.3),
(244,190,'Nate Smith','The Savage',6,1,0,167.64,56.7,175.26,'Switch','2004-10-25',1.28,38,2.04,35,0,0,33,2.3),
(245,111,'Mats Nilsson','',11,4,1,185.42,77.11,0,'Orthodox','1984-05-20',2.99,39,5.62,63,3.87,83,44,2.3),
(246,223,'Hideo Tokoro','',34,29,2,170.18,61.23,0,'Orthodox','2000-03-29',1.78,37,2.01,65,0.87,34,44,2.3),
(247,65,'Jose Maria','No Chance',37,7,0,165.1,56.7,0,'Orthodox','2002-05-31',3.2,53,3.98,52,2.32,27,33,2.3),
(248,134,'Yoshiki Takahashi','Kazuo',30,27,3,180.34,90.26,0,'Southpaw','1989-12-19',2.26,51,6.47,44,0,0,66,2.3),
(249,236,'Ikram Aliskerov','',15,1,0,182.88,83.91,193.04,'Southpaw','2001-12-17',8.24,65,7.15,36,2.33,33,0,2.3),
(250,62,'Mike Joy','',11,8,0,167.64,70.31,0,'Southpaw','1987-11-01',0.57,33,1.71,47,0.78,33,0,2.3),
(251,79,'Kimo Leopoldo','',10,7,1,190.5,106.59,0,'Orthodox','1993-06-22',0.76,83,2.12,30,4.55,100,0,2.3),
(252,208,'Chas Skelly','The Scrapper',19,3,0,180.34,65.77,182.88,'Orthodox','2003-10-14',2.01,40,3.21,49,1.74,34,39,2.3),
(253,83,'Ruan Potts','Fangzz',11,6,0,187.96,112.04,190.5,'Orthodox','1985-12-08',0.85,37,5.92,22,0.75,16,33,2.3),
(254,33,'Mark Holst','Boots',12,6,0,182.88,70.31,0,'Orthodox','1989-01-15',0.25,19,1.67,47,0.76,100,60,2.3),
(255,153,'Seth Petruzelli','The Silverback',14,8,0,182.88,92.99,193.04,'Orthodox','1992-08-15',2.17,41,2.08,55,0.46,50,47,2.3),
(256,186,'Christian Morecraft','',8,3,0,198.12,117.93,205.74,'Orthodox','2000-09-19',2.82,34,2.46,46,3.26,66,50,2.2),
(257,233,'Niklas Backstrom','',11,3,0,185.42,65.77,0,'Orthodox','1987-05-09',1.12,41,3.65,40,2.92,80,72,2.2),
(258,128,'Kaynan Kruschewsky','Bahia',15,2,0,182.88,70.31,185.42,'Orthodox','1987-07-21',5.08,39,4.79,47,2.18,100,0,2.2),
(259,179,'Drew Fickett','The Master',42,21,0,177.8,70.31,177.8,'Orthodox','1985-07-29',2.33,41,2.29,57,1.3,35,30,2.2),
(260,32,'Ryan Thomas','The Tank Engine',20,8,0,182.88,77.11,0,'Orthodox','1994-04-08',2.01,36,4.17,30,5.59,33,0,2.2),
(261,103,'Ryan Hall','The Wizard',9,2,0,177.8,65.77,177.8,'Southpaw','2003-03-23',2.38,50,1.33,65,0.22,9,0,2.2),
(262,179,'Dustin Kimura','The Diamond',11,3,0,170.18,61.23,180.34,'Orthodox','1993-02-09',1.33,21,3.82,51,0.93,37,50,2.2),
(263,106,'Alex Gilpin','',11,1,0,170.18,65.77,0,'Orthodox','1988-05-08',6.8,54,12.29,42,2.17,25,0,2.2),
(264,233,'Josh Grispi','The Fluke',14,5,0,180.34,65.77,187.96,'Orthodox','1984-12-16',1.44,41,3.71,50,1.97,36,16,2.2),
(265,131,'Anthony Torres','The Crush',5,3,0,172.72,77.11,0,'Orthodox','1995-05-19',3.54,48,7.52,45,0,0,100,2.2),
(266,192,'Danny Henry','The Hatchet',12,4,0,182.88,65.77,185.42,'Orthodox','1989-11-21',5.2,51,4.16,45,0.74,33,50,2.2),
(267,89,'Hidehiko Yoshida','',6,8,1,180.34,102.06,0,'Orthodox','1995-10-07',1.05,36,1.89,62,1.09,33,71,2.2),
(268,106,'Joe Stevenson','Daddy',33,16,0,170.18,65.77,177.8,'Orthodox','1984-10-19',2.05,44,2.44,60,2.75,44,39,2.2),
(269,23,'Everett Cummings','',12,0,0,0,92.99,0,'Orthodox','1997-08-11',0.43,60,4.34,45,0,0,0,2.2),
(270,39,'Jose Landi-Jons','Pele',29,16,0,180.34,77.11,0,'Orthodox','2004-09-06',0.99,40,0.77,43,2.2,80,40,2.2),
(271,122,'Wilson Gouveia','',14,8,0,185.42,83.91,193.04,'Orthodox','1992-10-01',3.02,39,4.06,56,0.9,66,57,2.2),
(272,15,'Chris Price','The Exorcist',19,4,0,187.96,83.91,0,'Southpaw','1992-05-27',1.44,66,2.59,48,0,0,33,2.2),
(273,188,'Fredson Paixao','',10,5,0,167.64,65.77,167.64,'Orthodox','2000-03-11',1.71,54,2.31,62,0.62,11,10,2.2),
(274,176,'Jake Hadley','White Kong',10,2,0,170.18,56.7,177.8,'Southpaw','1998-05-01',3.42,44,3.2,60,0.32,25,35,2.2),
(275,79,'Chase Hooper','The Dream',13,3,1,185.42,70.31,187.96,'Southpaw','1996-11-01',4.86,51,3.59,36,1.42,22,55,2.2),
(276,103,'Daniel Gracie','',5,4,1,187.96,102.06,0,'Orthodox','1988-03-09',1.9,38,1.33,59,0.36,100,80,2.1),
(277,41,'Masakazu Imanari','',36,16,2,162.56,63.05,0,'Southpaw','1989-05-01',0.55,30,1.74,57,0,0,0,2.1),
(278,135,'Andrew Holbrook','',12,3,0,180.34,70.31,177.8,'Southpaw','2001-11-15',2.2,49,3,54,0.85,18,10,2.1),
(279,70,'Mike Cook','',13,13,0,185.42,92.99,0,'Orthodox','2000-12-12',1.72,49,2.4,46,1.03,33,55,2.1),
(280,186,'Polyana Viana','Dama de Ferro',13,6,0,165.1,52.16,170.18,'Orthodox','1990-06-03',3.19,41,2.63,55,0.93,33,43,2.1),
(281,2,'Logan Clark','',18,6,0,187.96,83.91,0,'Orthodox','1984-10-10',2.2,54,1.49,53,0.31,100,30,2.1),
(282,168,'Nate Loughran','',11,2,0,187.96,83.91,0,'Orthodox','1996-03-24',1.81,40,4.11,59,0,0,0,2.1),
(283,116,'Tim McKenzie','',14,9,0,182.88,83.91,187.96,'Orthodox','1990-08-22',1.37,54,2.96,44,0,0,28,2.1),
(284,75,'Mackens Semerzier','Da Menace',8,4,0,175.26,65.77,182.88,'Orthodox','1986-05-27',2.91,45,3.48,46,2.14,50,50,2.1),
(285,28,'Dennis Hallman','Superman',53,20,2,175.26,70.31,182.88,'Orthodox','1996-03-04',1.12,44,1.96,43,1.79,30,25,2.1),
(286,153,'Chris Brennan','The Westside Strangler',21,13,1,172.72,77.11,0,'Orthodox','1986-12-19',0.6,40,0.97,50,0,0,25,2.1),
(287,202,'Josh Sampo','The Gremlin',11,5,0,162.56,56.7,162.56,'Orthodox','1990-02-10',1.99,36,2.96,55,1.06,33,40,2.1),
(288,72,'Katsuhisa Fujii','Shamoji',9,18,1,182.88,92.99,0,'Orthodox','1998-09-26',4,50,4.43,64,2.14,25,50,2.1),
(289,230,'Brooke Mayo','The Bully',0,1,0,170.18,56.7,0,'Orthodox','1996-04-12',1.92,34,3.2,63,3.2,60,0,2.1),
(290,219,'Satoru Kitaoka','',40,14,9,167.64,69.85,0,'Orthodox','1996-12-13',0.68,33,2.15,45,0.62,10,27,2.1),
(291,163,'Daermisi Zhawupasi','',7,1,0,172.72,61.23,172.72,'Switch','2000-11-07',1.24,51,2.75,34,6.19,75,64,2.1),
(292,160,'Jeremiah Metcalf','',13,7,0,185.42,83.91,0,'Orthodox','1999-11-26',1.74,59,0.27,60,4.02,66,100,2),
(293,69,'Harry Hunsucker','The Hurricane',7,6,0,187.96,92.99,190.5,'Orthodox','1986-09-30',3.54,52,6.53,42,0,0,0,2),
(294,106,'Charles Bennett','Krazy Horse',30,33,2,172.72,70.31,0,'Orthodox','1988-05-21',1.39,39,1.35,64,2.02,100,36,2),
(295,81,'Kevin Syler','El Nino Bala',10,1,0,175.26,70.31,180.34,'Switch','1989-11-22',5.6,69,4.03,48,1,40,77,2),
(296,87,'Mike Zichelle','',8,4,0,0,92.99,0,'Orthodox','1995-10-06',0.87,35,0.87,40,0,0,0,2),
(297,192,'Dave Galera','Scarecrow',5,1,0,180.34,61.23,0,'Orthodox','1984-09-27',1.67,69,0.53,33,0,0,14,2),
(298,219,'Kaik Brito','',16,5,0,180.34,77.11,182.88,'Orthodox','1992-06-25',2.8,38,3.87,55,0,0,55,2),
(299,40,'Josh Thornburg','',8,8,0,182.88,77.11,0,'Southpaw','1985-10-09',1.2,50,3.13,38,2,66,42,2),
(300,20,'Chad Reiner','The Grinder',33,18,0,180.34,77.11,0,'Orthodox','1993-08-14',0.53,20,1.97,46,0.99,33,25,2),
(301,220,'Jacob Volkmann','Christmas',19,7,0,175.26,70.31,180.34,'Southpaw','1998-02-16',1.19,34,1.78,52,3.19,48,52,2),
(302,84,'Brock Larson','',42,10,0,180.34,77.11,180.34,'Southpaw','1996-02-23',1.39,46,1.5,55,2.67,34,43,2),
(303,236,'Christian Lohsen','Hollywood',4,2,0,187.96,70.31,195.58,'Southpaw','2003-11-21',5.27,49,6.93,44,0,0,0,2),
(304,210,'Brent Primus','',8,0,0,177.8,70.31,0,'Southpaw','1995-11-05',1.73,39,2.27,59,5,38,0,2),
(305,102,'Nick Serra','The Mad Monkey',7,3,0,175.26,77.11,0,'Orthodox','1993-05-11',0,0,1.73,43,1,10,0,2),
(306,119,'Chris Holdsworth','',6,0,0,180.34,61.23,0,'Orthodox','1991-07-02',1.85,29,1.94,58,3.38,62,100,2),
(307,48,'David Mitchell','Daudi',22,7,0,182.88,77.11,190.5,'Orthodox','1989-07-11',1.74,32,2.06,55,0.66,50,29,2),
(308,122,'John Halverson','The Hurricane',16,8,0,175.26,70.31,0,'Southpaw','1999-10-22',2.94,43,5.29,47,0,0,66,2),
(309,226,'Sean Holden','',5,2,0,177.8,77.11,0,'Orthodox','1999-11-16',2.4,59,0.6,59,5,83,0,2),
(310,46,'Eric Wray','',5,1,0,182.88,77.11,0,'Orthodox','1985-08-26',1.76,48,3.12,28,4.07,66,0,2),
(311,30,'Kevin Haley','The North Woods Nightmare',6,4,0,187.96,92.99,0,'Switch','2001-10-28',0.87,59,0.87,64,3,100,0,2),
(312,13,'Mariusz Ksiazkiewicz','The Iron Pol',8,1,0,190.5,83.91,190.5,'Southpaw','1996-01-25',0.93,45,3.4,39,4,100,0,2),
(313,212,'Young Sam Jung','',4,8,0,172.72,63.05,0,'Orthodox','1995-02-05',0.53,9,2.79,63,0,0,0,2),
(314,65,'Luis Rodriguez','Lazy Boy',11,2,0,167.64,56.7,165.1,'Orthodox','2001-08-04',1.27,37,3.2,54,2,50,100,2),
(315,167,'Jarrod Kwitty','',2,2,0,172.72,83.91,0,'Orthodox','1990-08-30',0.53,50,4.4,32,8,50,0,2),
(316,160,'Jimmy Crute','',12,4,1,187.96,92.99,187.96,'Orthodox','1986-07-11',3.68,54,3.04,44,4.84,57,60,2),
(317,60,'Joe Lauzon','',28,16,0,177.8,70.31,180.34,'Orthodox','1985-04-30',2.84,39,5.39,54,2.39,45,54,2),
(318,59,'Tomoya Miyashita','',17,9,7,170.18,63.05,0,'Southpaw','1992-10-15',1.67,65,0.93,33,4,80,0,2),
(319,116,'Jack Cartwright','',10,1,0,175.26,61.23,172.72,'Orthodox','1997-05-02',0.8,38,3.33,29,6,66,0,2),
(320,163,'Jafel Filho','Pastor',15,3,0,170.18,56.7,172.72,'Orthodox','2000-07-07',2,37,2.31,45,1.53,27,55,2),
(321,227,'Mark Scanlon','',9,2,0,175.26,77.11,0,'Orthodox','1988-02-04',2.2,35,3.33,48,3,75,25,2),
(322,166,'Eric Esch','Butterbean',15,10,1,180.34,158.76,0,'Orthodox','2001-05-28',3.07,71,1.74,43,0,0,0,2),
(323,149,'Chris Tickle','BadBoy',9,9,0,175.26,70.31,0,'Orthodox','1996-03-08',1.07,40,1.13,43,1,25,20,2),
(324,9,'Ivana Petrovic','',6,1,0,172.72,56.7,177.8,'Southpaw','1988-02-07',1.47,35,2.73,52,2,33,66,2),
(325,74,'Kazuki Okubo','',7,9,0,180.34,79.38,0,'Orthodox','2001-07-18',1.53,38,1.97,46,0.51,25,36,2),
(326,104,'Abdul-Kerim Edilov','',17,4,0,187.96,92.99,0,'Orthodox','1986-10-06',10.22,61,0.13,92,3.98,100,0,2),
(327,60,'Eddy Ellis','Fast',21,16,1,175.26,77.11,0,'Orthodox','1989-11-18',3.4,69,1.53,68,4,66,50,2),
(328,226,'Jason MacDonald','The Athlete',25,16,0,190.5,83.91,203.2,'Orthodox','1993-03-05',1.55,52,2.7,46,1.43,16,35,2),
(329,232,'Micah Miller','Maverick',20,8,0,182.88,65.77,0,'Orthodox','1994-09-05',1.33,33,2.15,54,0.98,37,21,2),
(330,5,'Allan Begosso','Mini',7,2,1,165.1,61.23,167.64,'Orthodox','2000-08-21',1.8,40,7.73,34,0,0,25,2),
(331,44,'Yuma Horiuchi','Ichiban',9,5,0,167.64,56.7,170.18,'Switch','1999-04-25',3.73,30,5,35,2,16,0,2),
(332,203,'John Gunderson','Quick Guns',35,16,2,175.26,70.31,175.26,'Orthodox','1991-07-12',1.04,27,1.71,58,1.67,33,11,2),
(333,168,'Chris Haseman','The Hammer',20,17,0,180.34,92.99,0,'Orthodox','1993-06-03',0.93,70,4.67,28,0,0,40,2),
(334,230,'Josh Smith','',9,8,0,182.88,70.31,0,'Orthodox','1997-08-02',0.73,28,1.4,54,0,0,57,2),
(335,169,'Martin Kampmann','The Hitman',20,7,0,182.88,77.11,182.88,'Orthodox','2003-08-15',3.22,42,3.28,62,1.86,41,78,2),
(336,154,'Frank Mir','',18,11,0,190.5,119.75,200.66,'Southpaw','1987-10-20',2.18,47,3.84,38,2.02,40,54,2),
(337,22,'Mitch Gagnon','',12,5,0,165.1,61.23,165.1,'Southpaw','1990-11-27',2.76,46,2.21,61,1.16,25,65,1.9),
(338,127,'Lucio Linhares','',19,8,0,187.96,83.91,0,'Orthodox','1994-04-29',0.99,22,3.47,34,1.86,50,50,1.9),
(339,89,'Roger Gracie','',8,2,0,193.04,83.91,200.66,'Orthodox','1986-04-27',1.78,35,1.79,61,1.87,53,60,1.9),
(340,66,'Saidyokub Kakhramonov','',10,3,0,172.72,61.23,175.26,'Orthodox','1986-06-17',2.05,51,0.88,58,6.63,48,83,1.9),
(341,62,'Mickey Gall','',7,5,0,187.96,77.11,187.96,'Switch','2001-02-25',2.94,46,4.25,49,1.21,30,36,1.9),
(342,112,'Joe Soto','One Bad Mofo',18,7,0,167.64,61.23,165.1,'Orthodox','1992-01-20',3.36,41,5.37,67,0.85,21,70,1.9),
(343,134,'Austin Vanderford','AK-47',4,0,0,180.34,77.11,0,'Orthodox','1984-11-29',3.9,52,5.19,45,0,0,100,1.9),
(344,93,'Pat Sabatini','',18,5,0,172.72,65.77,177.8,'Orthodox','1989-03-02',2.02,59,1.54,49,3.73,42,50,1.9),
(345,62,'Jessamyn Duke','The Gun',3,5,0,180.34,61.23,185.42,'Orthodox','1984-03-26',4.83,53,4.43,57,1.27,36,50,1.9),
(346,32,'Ryan Jensen','',21,8,0,185.42,83.91,193.04,'Orthodox','1985-03-28',2.84,39,2.99,59,1.55,50,31,1.9),
(347,213,'Roman Mitichyan','',8,3,0,177.8,77.11,0,'Orthodox','2004-09-24',0.26,16,2.7,43,1.93,100,25,1.9),
(348,13,'Georgi Karakhanyan','Insane',26,7,1,172.72,65.77,0,'Orthodox','1999-01-08',4.49,39,5,54,1.41,50,33,1.9),
(349,140,'Brad Mitchell','',4,2,0,180.34,65.77,0,'Orthodox','2003-02-13',1.15,33,4.2,52,0,0,100,1.9),
(350,185,'Ikuhisa Minowa','Minowaman',60,42,8,175.26,82.1,0,'Orthodox','2002-05-29',0.88,40,1.66,49,1.82,41,5,1.9),
(351,26,'Joachim Hansen','Hellboy',23,14,1,170.18,68.04,0,'Southpaw','1993-12-04',2.01,43,2.04,58,2.21,58,34,1.9),
(352,54,'Jordan Griffin','Native Psycho',18,9,0,177.8,65.77,185.42,'Southpaw','1985-03-26',2.52,46,3.02,50,1.45,35,42,1.9),
(353,189,'Jon Delos Reyes','The Heat',8,5,0,167.64,56.7,170.18,'Orthodox','2003-05-13',2.99,38,4.14,51,3.2,83,55,1.9),
(354,65,'Luke Stewart','',6,3,0,180.34,77.11,0,'Orthodox','1986-02-19',3.75,56,2.34,53,3.75,33,50,1.9),
(355,238,'Vagner Rocha','Ceara',14,4,0,177.8,70.31,185.42,'Orthodox','1989-08-10',2.64,42,4.5,48,1.4,33,50,1.9),
(356,37,'Kyle Daukaus','',11,4,0,190.5,83.91,193.04,'Southpaw','1986-08-17',3.22,52,2.94,42,2.12,25,82,1.9),
(357,189,'Fedor Emelianenko','The Last Emperor',36,5,0,182.88,104.33,187.96,'Orthodox','1996-09-21',3.18,51,1,63,2,63,82,1.9),
(358,115,'Stephen Banaszak','',5,5,0,182.88,65.77,0,'Southpaw','2001-05-30',4.2,47,1.15,66,0,0,100,1.9),
(359,7,'Rani Yahya','',28,11,1,167.64,61.23,170.18,'Orthodox','1996-08-02',1.59,37,1.77,50,2.86,32,24,1.9),
(360,168,'Erick Wanderlei','',3,3,0,185.42,92.99,0,'Orthodox','2004-09-15',0.63,41,2.66,40,3.8,66,0,1.9),
(361,101,'Shane Roller','',11,7,0,177.8,70.31,182.88,'Orthodox','1995-06-19',2.04,34,2.65,60,2.46,33,42,1.9),
(362,1,'Aleksei Oleinik','The Boa Constrictor',60,17,1,187.96,108.86,203.2,'Orthodox','1993-09-28',3.29,48,3.8,44,1.82,46,37,1.9),
(363,180,'Ryan Quinn','',13,7,1,172.72,65.77,0,'Switch','1987-03-14',2.31,41,1.67,48,0,0,0,1.9),
(364,178,'Keisuke Sasu','Sasuke',11,3,1,165.1,65.77,175.26,'Switch','1994-05-29',2.76,49,2.42,48,3.76,40,61,1.9),
(365,109,'Don Shainis','Shameless',12,5,0,167.64,65.77,170.18,'Orthodox','1996-04-06',3.42,50,5.87,31,0.97,25,20,1.9),
(366,13,'Dan Argueta','The Determined',9,2,0,170.18,61.23,172.72,'Southpaw','1994-08-03',2.35,47,1.9,52,2.54,50,60,1.9),
(367,217,'Jeremy Freitag','',6,10,0,185.42,92.99,0,'Orthodox','1989-02-20',0,0,8.37,19,0,0,33,1.9),
(368,87,'Raul Rosas Jr.','El Nino Problema',8,1,0,175.26,61.23,170.18,'Switch','2002-08-18',1.28,44,1.52,46,3.57,33,0,1.8),
(369,24,'Rodolfo Marques Diniz','',23,9,1,167.64,61.23,0,'Southpaw','1993-01-07',1.08,32,2.36,33,0,0,50,1.8),
(370,98,'Miguel Baeza','Caramel Thunder',10,3,0,187.96,77.11,187.96,'Orthodox','1998-12-31',4.88,49,5.1,53,0.44,28,100,1.8),
(371,178,'Joe Proctor','',11,5,0,177.8,70.31,182.88,'Orthodox','2003-02-11',3.39,36,3.93,59,0,0,70,1.8),
(372,119,'Luc Bondole','',5,2,2,187.96,92.99,0,'Southpaw','2001-06-17',3.35,51,2.04,62,0,0,0,1.8),
(373,58,'Amanda Cooper','ABC',3,5,0,160.02,52.16,162.56,'Switch','2000-01-02',3.55,44,3.2,51,1.53,38,28,1.8),
(374,174,'Juliana Miller','Killer',4,3,0,170.18,56.7,167.64,'Orthodox','1999-03-20',3.31,45,4.75,32,1.84,44,0,1.8),
(375,215,'Louis Smolka','Da Last Samurai',17,9,0,175.26,61.23,172.72,'Orthodox','2003-05-09',4.67,47,4.11,53,1.69,35,32,1.8),
(376,75,'Assuerio Silva','',16,8,0,177.8,109.32,0,'Orthodox','1986-01-25',1.42,46,4.2,54,2.66,34,25,1.8),
(377,209,'Johnny Munoz','Kid Kvenbo',12,4,0,175.26,61.23,180.34,'Orthodox','2005-05-25',2.44,36,2.66,55,2.4,25,45,1.8),
(378,104,'Jake Rosholt','',12,5,0,185.42,83.91,0,'Orthodox','2004-03-16',2.68,53,2.33,49,6.51,68,0,1.8),
(379,129,'Sanae Kikuta','',31,9,3,175.26,90.72,0,'Orthodox','1985-08-09',0.7,45,0.9,52,1.6,63,25,1.8),
(380,95,'Eric Schafer','Red',14,8,2,190.5,83.91,193.04,'Orthodox','1996-12-16',1.89,34,3.38,56,1.81,36,50,1.8),
(381,86,'Dan Miller','',14,8,0,185.42,83.91,187.96,'Orthodox','2002-01-15',2.03,36,3.06,49,1.67,54,47,1.8),
(382,143,'Jim Miller','A-10',36,17,0,172.72,70.31,180.34,'Southpaw','1995-06-09',2.86,41,3.08,58,1.56,43,48,1.8),
(383,220,'Jesus Aguilar','',9,2,0,162.56,56.7,157.48,'Orthodox','1992-03-06',1.69,49,1.03,63,2.72,37,0,1.8),
(384,191,'Alex Serdyukov','The Russian Crusher',8,5,0,187.96,77.11,187.96,'Orthodox','1999-10-12',4.94,48,3.1,46,1.84,55,67,1.8),
(385,57,'Brian Foster','The Foster Boy',27,10,0,175.26,77.11,180.34,'Orthodox','1996-06-14',3.3,39,1.63,65,3.67,60,37,1.8),
(386,191,'Lee Murray','Lightning',8,2,1,190.5,83.91,0,'Orthodox','1990-11-23',0.36,15,3.28,32,0.9,100,42,1.8),
(387,65,'Blas Avena','The Disciple',8,7,0,182.88,77.11,187.96,'Orthodox','1994-03-30',2.34,47,3.36,43,2.37,80,50,1.8),
(388,227,'Joe Pyfer','Bodybagz',12,2,0,187.96,83.91,190.5,'Orthodox','2000-11-10',3.64,45,2.34,55,2.97,83,50,1.8),
(389,226,'Sam Spengler','The Ram',9,5,0,180.34,83.91,0,'Orthodox','2002-06-16',3.27,62,3.27,54,1.75,11,75,1.8),
(390,209,'Cole Miller','Magrinho',21,11,0,185.42,65.77,185.42,'Orthodox','1997-03-30',3,33,3.88,59,0.6,36,38,1.8),
(391,127,'Casey Olson','The Underdog',14,5,0,170.18,65.77,0,'Orthodox','1991-10-10',2.48,60,0,100,3.54,57,100,1.8),
(392,6,'Daniel Pineda','The Pit',28,15,0,170.18,65.77,175.26,'Orthodox','1998-10-18',3.09,49,3.18,46,1.71,25,48,1.7),
(393,129,'Kendall Grove','Da Spyder',23,17,0,198.12,83.91,200.66,'Orthodox','2001-06-18',2.31,41,2.4,54,0.49,45,56,1.7),
(394,146,'Danillo Villefort','Indio',15,5,0,185.42,83.91,0,'Orthodox','1999-12-08',2.86,37,2.4,68,1.71,66,33,1.7),
(395,106,'Karlos Vemola','',17,5,0,182.88,83.91,190.5,'Orthodox','1991-11-20',1.67,44,2.13,37,1.93,25,31,1.7),
(396,92,'Jose Palacios','',3,2,0,175.26,65.77,0,'Orthodox','1985-09-03',2.67,70,1,79,0,0,50,1.7),
(397,142,'Cristina Stanciu','Barbie',5,2,0,160.02,52.16,0,'Orthodox','2003-02-17',2.5,50,3.07,52,0.85,100,40,1.7),
(398,194,'Tom Aspinall','',14,3,0,195.58,116.12,198.12,'Orthodox','2002-09-20',7.72,66,2.77,66,3.46,100,100,1.7),
(399,65,'Dean Hancock','The Hammer',2,1,0,0,70.31,0,'Southpaw','2002-10-24',7.97,63,1.94,67,1.71,33,75,1.7),
(400,221,'Nassourdine Imavov','',12,4,0,190.5,83.91,190.5,'Orthodox','1992-03-30',4.55,53,3.76,58,1.09,31,72,1.7),
(401,191,'Roman Dolidze','',12,2,0,187.96,83.91,193.04,'Orthodox','2003-08-18',3.02,44,3.01,55,1.72,50,33,1.7),
(402,54,'Brendan Allen','All In',23,5,0,187.96,83.91,190.5,'Orthodox','1989-01-09',3.87,54,3.6,46,1.36,47,58,1.7),
(403,172,'Steve Berger','The Red Nosed Pitbull',21,23,2,180.34,77.11,0,'Orthodox','1990-01-29',1,27,3.26,36,0.84,40,16,1.7),
(404,221,'David Zawada','Sagat',17,7,0,182.88,77.11,190.5,'Orthodox','1992-07-28',3.84,41,4.54,55,0.97,33,57,1.7),
(405,112,'Kin Moy','Kong',8,3,0,165.1,61.23,0,'Orthodox','1994-06-22',2.3,33,1.93,62,1.67,42,50,1.7),
(406,133,'Erisson Ferreira','Gato',12,2,0,167.64,56.7,177.8,'Orthodox','2001-02-27',1.75,32,2.75,56,1.11,100,66,1.7),
(407,91,'Billy Giovanella','Wolverine',9,5,0,172.72,56.7,0,'Orthodox','1992-01-13',1.27,40,2.02,52,0.87,12,100,1.7),
(408,55,'Charlene Gellner','Princess',0,4,0,157.48,56.7,0,'Orthodox','2004-06-25',2.01,42,3.24,43,0,0,0,1.7),
(409,3,'Stefan Struve','Skyscraper',33,13,0,210.82,120.2,213.36,'Orthodox','1992-02-24',3.12,47,4.04,46,0.56,46,55,1.7),
(410,87,'Donny Walker','Eagle Eye',15,10,0,175.26,61.23,0,'Orthodox','1994-10-03',1.81,37,3.85,46,0,0,57,1.7),
(411,185,'Jason Knight','The Kid',20,5,0,177.8,65.77,180.34,'Orthodox','1988-04-22',2.95,33,3.02,51,1.31,31,47,1.7),
(412,188,'Cole Smith','The Cole Train',7,2,0,180.34,61.23,170.18,'Orthodox','2004-04-19',1.78,35,1.96,49,1.67,33,45,1.7),
(413,147,'Misha Cirkunov','',15,9,0,190.5,92.99,195.58,'Orthodox','1999-03-28',3.86,51,3.06,57,4.15,39,76,1.7),
(414,167,'Ralek Gracie','',3,1,0,187.96,95.25,0,'Orthodox','1984-02-12',1.61,46,1.05,55,2.5,75,0,1.7),
(415,155,'Kazushi Sakuraba','The Gracie Hunter',26,17,1,182.88,83.91,0,'Southpaw','1992-04-24',1.26,41,2.03,51,1.26,31,48,1.7),
(416,36,'Dustin Neace','The Beast',25,21,1,175.26,65.77,0,'Orthodox','1990-03-14',2.08,32,2.66,56,0,0,0,1.7),
(417,193,'Claude Patrick','The Prince',14,2,0,180.34,77.11,190.5,'Orthodox','1984-04-11',1.8,55,0.89,69,2.32,53,84,1.7),
(418,140,'Simeon Thoresen','The Grin',17,6,1,185.42,77.11,200.66,'Orthodox','1987-09-28',3.85,43,3.85,64,1.12,40,50,1.7),
(419,118,'Cody Donovan','Donnybrook',8,5,0,190.5,92.99,187.96,'Orthodox','1984-11-14',5.61,59,5.44,45,1.67,28,0,1.7),
(420,169,'Carlo Prater','Neo',31,18,1,180.34,70.31,182.88,'Switch','1984-02-27',2.03,47,4.07,35,0.43,9,57,1.7),
(421,14,'Damon Jackson','The Leech',22,6,1,180.34,65.77,180.34,'Switch','1997-06-07',3.02,40,3.46,50,2.44,34,40,1.6),
(422,40,'Gina Carano','Conviction',7,1,0,172.72,65.77,0,'Orthodox','1987-02-15',4.5,47,2.66,64,1.24,66,85,1.6),
(423,159,'Bobby Nash','',8,4,0,182.88,77.11,187.96,'Orthodox','1985-10-18',3.42,37,3.95,51,2.37,33,100,1.6),
(424,194,'Paulo Filho','',23,6,3,172.72,83.91,0,'Southpaw','1997-04-12',1.86,48,1.67,66,2.4,32,42,1.6),
(425,15,'Roland Delorme','',9,5,0,175.26,61.23,180.34,'Orthodox','1995-05-29',2.28,44,4.32,40,2.51,34,42,1.6),
(426,211,'Myktybek Orolbai','',12,1,1,177.8,77.11,187.96,'Orthodox','1992-07-09',0.87,40,1.52,48,11.41,70,0,1.6),
(427,51,'Daniel Barez','',16,6,0,167.64,56.7,167.64,'Orthodox','1989-07-12',3.8,53,5.32,55,4.07,31,91,1.6),
(428,101,'Mateusz Rebecki','',18,1,0,170.18,70.31,167.64,'Southpaw','1998-08-21',5.31,53,2.01,63,4.16,72,66,1.6),
(429,113,'Miguel Torres','',44,9,0,175.26,61.23,193.04,'Orthodox','2004-08-26',3.98,43,1.86,74,0,0,17,1.6),
(430,22,'George Sotiropoulos','',14,7,0,177.8,70.31,180.34,'Orthodox','1988-12-07',2.61,27,2.52,67,2.32,31,53,1.6),
(431,10,'Deiveson Figueiredo','Deus da Guerra',22,3,1,165.1,61.23,172.72,'Orthodox','2002-02-27',3.08,55,3.46,51,1.65,44,58,1.6),
(432,222,'Dan Bobish','',17,9,0,187.96,156.49,0,'Southpaw','1986-12-02',2.06,44,1.74,34,2.44,42,0,1.6),
(433,124,'Chris Wilson','The Professor',18,10,0,185.42,77.11,190.5,'Orthodox','1985-04-28',2.32,50,1.36,55,1.31,50,60,1.6),
(434,191,'Jess Liaudin','The Joker',20,11,0,175.26,77.11,182.88,'Orthodox','1990-03-06',2.46,51,2.76,41,3.28,53,30,1.6),
(435,104,'Kestutis Smirnovas','',24,8,2,177.8,90.72,0,'Orthodox','2003-10-02',4.95,52,5.05,54,1.55,50,100,1.6),
(436,185,'Marcio Cruz','Pe de Pano',8,3,0,193.04,105.23,0,'Orthodox','2003-12-15',2.92,46,1.51,68,0.53,7,37,1.6),
(437,137,'Paul Craig','Bearjew',17,7,1,190.5,83.91,193.04,'Orthodox','2004-08-31',2.42,46,2.86,45,1.76,22,37,1.6),
(438,130,'Neil Seery','2Tap',16,13,0,162.56,56.7,162.56,'Orthodox','1991-05-14',3.56,41,3.79,58,0.78,27,53,1.6),
(439,238,'Ryuta Sakurai','',24,24,6,170.18,83.01,0,'Orthodox','2000-04-09',1.8,48,3.44,58,0.52,100,36,1.6),
(440,84,'Shane Nelson','Sugar',16,7,0,175.26,70.31,177.8,'Southpaw','1985-02-27',1.38,31,2.84,61,1.31,18,54,1.6),
(441,181,'Steven Siler','Super',29,16,0,180.34,65.77,177.8,'Orthodox','1994-11-12',3.21,41,2.96,54,0.47,21,55,1.6),
(442,176,'Bryce Mitchell','Thug Nasty',16,2,0,177.8,65.77,177.8,'Southpaw','1998-04-27',2.34,58,1.64,58,3.51,41,33,1.6),
(443,97,'Marcus McGhee','The Maniac',8,1,0,172.72,61.23,175.26,'Orthodox','1995-07-26',3.42,48,1.81,77,0,0,100,1.6),
(444,196,'Eiji Mitsuoka','',18,9,2,170.18,65.77,0,'Southpaw','1984-02-11',1.49,49,2.26,45,2.3,36,20,1.6),
(445,211,'Jamie Colleen','',4,1,0,160.02,52.16,165.1,'Orthodox','1993-05-19',3.11,61,5.66,33,0.52,33,50,1.6),
(446,227,'Mayra Bueno Silva','Sheetara',10,2,1,167.64,61.23,167.64,'Orthodox','1996-06-24',4.16,54,4.71,57,0.35,50,68,1.6),
(447,23,'Rafaello Oliveira','Tractor',17,8,0,172.72,70.31,180.34,'Orthodox','1995-12-30',2.19,33,3.38,59,2.49,36,11,1.6),
(448,151,'Caio Magalhaes','Hellboy',10,3,0,185.42,83.91,185.42,'Orthodox','1988-11-20',2.27,40,2.78,56,1.05,15,58,1.6),
(449,206,'Satoshi Ishii','',15,8,1,180.34,108.86,0,'Orthodox','1998-03-07',1.41,36,1.58,63,3.47,52,100,1.6),
(450,100,'Justin James','',13,7,0,177.8,70.31,0,'Orthodox','2003-09-24',1.34,36,2.68,50,0,0,50,1.6),
(451,119,'Jerrod Sanders','J-Reazie',16,3,0,172.72,61.23,182.88,'Orthodox','2000-07-07',0.88,64,1.14,46,2.2,33,50,1.6),
(452,56,'Saimon Oliveira','',18,5,0,162.56,61.23,182.88,'Orthodox','1984-07-01',2.82,41,3.91,48,1.21,25,35,1.6),
(453,162,'Fabricio Camoes','Morango',14,9,1,177.8,70.31,180.34,'Orthodox','1988-02-15',1.29,33,1.85,61,2.34,32,20,1.5),
(454,163,'Pawel Nastula','',5,6,0,182.88,104.33,0,'Southpaw','2005-03-01',1.3,43,1.73,50,3,60,0,1.5),
(455,90,'Shavkat Rakhmonov','Nomad',17,0,0,185.42,77.11,195.58,'Orthodox','2002-04-19',4.45,59,2.61,53,1.49,33,100,1.5),
(456,199,'Dileno Lopes','',19,3,0,165.1,61.23,0,'Southpaw','2003-07-03',2.37,36,3.33,53,2.5,31,100,1.5),
(457,9,'Mike Pyle','Quicksand',27,14,1,182.88,77.11,187.96,'Orthodox','1997-02-18',2.74,45,2.84,60,1.8,35,70,1.5),
(458,162,'Thomas Denny','The Wildman',27,21,1,177.8,77.11,0,'Orthodox','2001-04-27',2.36,45,4.69,40,1.48,17,42,1.5),
(459,67,'Matt Veach','',17,5,0,180.34,70.31,0,'Orthodox','1986-02-24',1.12,28,4.91,44,3.64,38,100,1.5),
(460,87,'Bu-Kyung Jung','',0,4,0,170.18,69.85,0,'Orthodox','1993-04-19',0.63,36,1.85,56,1.1,75,0,1.5),
(461,234,'Ryan Spann','Superman',21,9,0,195.58,92.99,200.66,'Orthodox','1986-08-01',3.42,40,3.91,45,1.29,35,47,1.5),
(462,192,'Godofredo Pepey','',13,6,0,170.18,65.77,185.42,'Orthodox','1990-09-05',2.32,38,3.23,47,0.37,7,35,1.5),
(463,16,'Gerald Meerschaert','GM3',35,17,0,185.42,83.91,195.58,'Southpaw','1989-12-23',3.3,44,3.5,53,2.01,37,34,1.5),
(464,223,'Max Rohskopf','Rated R',5,1,0,185.42,70.31,180.34,'Orthodox','1983-10-07',1.7,31,5.8,42,3,33,0,1.5),
(465,110,'Joe Solecki','',13,4,0,175.26,70.31,177.8,'Orthodox','2000-01-10',2.21,56,1.53,52,2.65,50,50,1.5),
(466,121,'Javier Vazquez','Showtime',16,5,0,170.18,65.77,175.26,'Southpaw','2001-11-12',2.43,36,1.99,72,2.56,52,57,1.5),
(467,32,'Chris Indich','',6,4,0,177.8,77.11,0,'Orthodox','1998-06-29',1.31,30,4.32,43,0.75,50,50,1.5),
(468,39,'Gavin Tucker','Guv\'nor',13,3,0,167.64,65.77,167.64,'Southpaw','1990-11-12',4.29,44,4.18,57,3.13,44,53,1.5),
(469,97,'Mike Malott','Proper',10,1,1,185.42,77.11,185.42,'Orthodox','1989-04-24',4.21,42,3.07,56,2.53,55,0,1.5),
(470,129,'Oskar Piechota','Imadlo',11,3,1,182.88,83.91,193.04,'Southpaw','1999-06-06',3.3,52,3.93,51,0.61,40,38,1.5),
(471,116,'Jason Von Flue','Live Wire',14,12,1,182.88,77.11,0,'Orthodox','2001-08-07',1.89,36,3.23,52,0.62,16,58,1.5),
(472,192,'Tony DeSouza','',11,4,0,182.88,77.11,177.8,'Southpaw','1991-10-29',1.12,52,1.57,41,2.25,42,40,1.5),
(473,132,'Ilia Topuria','El Matador',14,0,0,170.18,65.77,175.26,'Orthodox','2002-07-19',4.44,46,3.05,67,2.19,56,92,1.5),
(474,83,'Ryuki Ueyama','',12,18,5,180.34,81.65,0,'Southpaw','1985-04-08',0.13,21,1.4,46,0.5,100,0,1.5),
(475,18,'Charles Byrd','Kid Dynamite',10,7,0,177.8,83.91,185.42,'Orthodox','1985-06-17',3.43,55,2.63,55,2.5,50,40,1.5),
(476,79,'Teemu Packalen','Pacu',8,3,0,185.42,70.31,190.5,'Orthodox','2002-08-19',2.57,54,3.91,47,2.31,25,100,1.5),
(477,104,'Rafael Alves','The Turn',20,12,0,172.72,70.31,172.72,'Orthodox','1994-02-22',1.85,48,3.3,58,0.29,25,44,1.5),
(478,43,'Thiago Tavares','',21,7,1,170.18,65.77,177.8,'Orthodox','1989-05-21',2,40,2.31,62,3.83,42,62,1.5),
(479,140,'Andre Muniz','Sergipano',23,6,0,185.42,83.91,198.12,'Southpaw','1987-04-25',2.17,50,2.03,53,2.97,40,35,1.5),
(480,93,'Matt Wiman','',16,10,0,177.8,70.31,172.72,'Orthodox','1983-10-21',3.17,50,3.57,51,2.13,37,56,1.5),
(481,43,'Patrick Walsh','The Beast of the East',10,3,0,180.34,83.91,0,'Orthodox','2002-09-11',2.03,19,2.83,64,3,54,100,1.5),
(482,175,'Michihiro Omigawa','',17,14,1,167.64,65.77,172.72,'Orthodox','2000-04-16',2.01,39,3.06,64,1.19,36,49,1.5),
(483,28,'Paul Kelly','',14,5,0,175.26,70.31,177.8,'Orthodox','1986-07-17',3.22,37,2.61,59,1.34,60,30,1.5),
(484,93,'Grant Dawson','KGD',20,2,1,177.8,70.31,182.88,'Switch','1988-01-01',2.97,51,2.27,45,3.68,36,40,1.5),
(485,143,'Gadzhimurad Antigulov','',20,8,0,180.34,92.99,177.8,'Orthodox','1991-05-29',2.08,55,4.21,40,5.08,36,0,1.4),
(486,194,'Said Nurmagomedov','',18,3,0,172.72,61.23,177.8,'Orthodox','2004-01-20',3.55,47,2.13,57,1.01,16,66,1.4),
(487,62,'Brian Bowles','',10,3,0,170.18,61.23,177.8,'Orthodox','1992-08-14',2.36,26,2.98,64,1.39,70,54,1.4),
(488,208,'Dokonjonosuke Mishima','',21,7,2,170.18,70.31,0,'Southpaw','1999-07-22',1.06,41,1.22,52,2.47,40,25,1.4),
(489,136,'Luke Cummo','',6,6,0,182.88,77.11,187.96,'Orthodox','1993-03-30',1.74,43,1.5,59,0.89,55,42,1.4),
(490,57,'Joe Taimanglo','The Juggernaut',23,7,1,162.56,61.23,0,'Orthodox','2000-12-02',4.18,42,4.55,59,5.45,40,100,1.4),
(491,113,'Terry Etim','',16,5,0,185.42,70.31,185.42,'Orthodox','1986-08-03',2.16,35,2.53,67,0.43,30,39,1.4),
(492,154,'Bobby Moffett','The Wolfman',13,5,0,177.8,65.77,185.42,'Orthodox','1994-03-14',3.41,39,3.15,61,2.74,66,66,1.4),
(493,192,'Josh Barnett','The Warmaster',35,8,0,190.5,113.4,198.12,'Orthodox','1994-10-06',3.2,50,2.11,57,1.26,55,55,1.4),
(494,21,'Mackenzie Dern','',13,4,0,162.56,52.16,160.02,'Orthodox','1986-01-04',3.49,40,4.21,51,0.77,14,40,1.4),
(495,4,'Chel Erwin-Davis','The First Sun',5,1,0,182.88,77.11,0,'Southpaw','1996-08-17',4.06,54,1.13,61,4.25,100,50,1.4),
(496,198,'Colton Smith','',7,4,0,182.88,70.31,180.34,'Orthodox','1989-02-11',1.64,41,2.3,51,4.09,36,25,1.4),
(497,19,'Tony Kelley','Primetime',8,3,0,175.26,61.23,177.8,'Switch','1998-10-31',5.55,47,4.85,45,0,0,52,1.4),
(498,218,'Darrell Montague','Mongoose',13,5,0,167.64,56.7,170.18,'Southpaw','2005-01-25',1.92,25,5.38,52,0.72,25,33,1.4),
(499,76,'Rodolfo Vieira','',9,2,0,182.88,83.91,185.42,'Orthodox','1991-01-29',3.36,54,4.84,48,3.7,26,100,1.4),
(500,205,'Carlos Eduardo Rocha','Ta Danado',9,4,0,177.8,77.11,185.42,'Orthodox','1991-03-09',1.24,34,1.85,55,0,0,52,1.4),
(501,79,'Tom Lawlor','Filthy',10,6,0,182.88,92.99,187.96,'Southpaw','2001-02-07',2.5,42,2.41,60,2.46,32,57,1.4),
(502,16,'Michael McDonald','Mayday',17,4,0,175.26,61.23,177.8,'Orthodox','1984-08-13',2.69,42,2.76,57,1.09,66,52,1.4),
(503,85,'Walel Watson','The Gazelle',14,10,0,180.34,61.23,190.5,'Orthodox','2002-01-23',2.1,29,3.79,43,0,0,61,1.4),
(504,137,'Mike Massenzio','The Master of Disaster',13,9,0,187.96,83.91,185.42,'Southpaw','1998-12-06',2.08,45,3.59,54,2.74,24,50,1.4),
(505,190,'Roan Carneiro','Jucao',21,11,0,180.34,77.11,193.04,'Orthodox','1994-06-08',1.46,46,1.82,62,3.05,42,83,1.4),
(506,59,'Hector Sandoval','Kid Alex',14,4,0,157.48,56.7,162.56,'Orthodox','1996-03-03',3.31,52,2.33,65,3.49,25,71,1.4),
(507,204,'Mario Sperry','Zen Machine',13,4,0,187.96,92.99,0,'Orthodox','1985-08-09',2.81,52,1.53,47,2.09,42,71,1.4),
(508,126,'Livinha Souza','The Brazilian Gangsta',14,4,0,160.02,52.16,160.02,'Orthodox','1999-04-07',1.75,45,3.6,56,2.54,45,40,1.4),
(509,19,'Nikita Krylov','The Miner',30,9,0,190.5,92.99,195.58,'Orthodox','1987-11-15',4.38,55,2.47,44,2.29,38,53,1.4),
(510,193,'Robert McDaniel','Bubba',28,10,0,190.5,83.91,190.5,'Southpaw','1998-06-22',1.64,44,1.98,56,0.93,50,50,1.4),
(511,191,'Jason Dent','Dynamite',22,13,0,177.8,70.31,180.34,'Orthodox','1988-06-17',2.01,39,3.7,62,0,0,26,1.4),
(512,138,'Fernando Gonzalez','The Menifee Maniac',26,14,0,175.26,77.11,172.72,'Southpaw','1993-09-30',4.47,47,4.03,65,0.86,33,43,1.4),
(513,114,'Yaotzin Meza','',21,11,0,175.26,65.77,180.34,'Orthodox','1988-05-06',1.43,41,1.62,64,1.06,20,18,1.4),
(514,157,'Kengo Ura','Uraken',14,12,2,175.26,74.84,0,'Orthodox','1986-02-13',1.05,37,2.38,48,2.85,28,50,1.4),
(515,202,'Jimy Hettes','The Kid',11,3,0,175.26,65.77,180.34,'Southpaw','1988-06-26',3.47,57,3.5,57,5.2,44,61,1.4),
(516,59,'Erick Silva','',19,9,0,182.88,77.11,187.96,'Orthodox','1997-05-31',2.5,48,4.18,49,0.85,35,56,1.4),
(517,170,'Claudio Puelles','Prince of Peru',13,3,0,177.8,70.31,182.88,'Southpaw','1984-10-10',1.82,49,2.93,47,2.41,30,60,1.4),
(518,193,'Benoit Saint Denis','God of War',13,1,0,180.34,70.31,185.42,'Southpaw','1997-04-26',5.53,52,5.2,44,4.55,36,66,1.4),
(519,216,'Roger Zapata','Viva',4,2,0,180.34,77.11,0,'Southpaw','1999-04-27',2.6,51,2.13,36,0,0,81,1.4),
(520,21,'Elias Garcia','',6,2,0,165.1,56.7,170.18,'Southpaw','1991-07-06',1.59,27,5.05,50,0.68,14,33,1.4),
(521,173,'Julija Stoliarenko','',11,8,2,170.18,56.7,167.64,'Orthodox','1992-02-05',2.81,40,4.56,44,0.91,30,62,1.4),
(522,85,'Christian Rodriguez','',10,1,0,170.18,61.23,180.34,'Orthodox','1988-07-11',3.51,46,2.46,58,1.4,54,70,1.4),
(523,144,'Josh Fremd','',11,5,0,193.04,83.91,193.04,'Orthodox','2003-05-29',2.93,43,2.63,47,0.84,25,31,1.4),
(524,225,'Marcus Davis','The Irish Hand Grenade',22,11,0,177.8,77.11,177.8,'Southpaw','1992-04-19',2.72,39,2.79,65,1.6,48,47,1.4),
(525,216,'Chris Fishgold','',18,4,1,172.72,65.77,172.72,'Orthodox','1990-04-21',2.01,32,2.7,46,2.59,46,44,1.3),
(526,165,'Mario Bautista','',13,2,0,175.26,61.23,175.26,'Switch','1995-05-11',5.32,51,4.2,53,2.72,50,56,1.3),
(527,177,'Travis Galbraith','The Gladiator',18,7,0,182.88,77.11,0,'Orthodox','1987-05-19',2.21,40,3.45,48,1.33,25,0,1.3),
(528,148,'Kenny Florian','KenFlo',14,6,0,177.8,65.77,187.96,'Southpaw','1991-04-18',2.41,40,1.85,63,2.22,33,60,1.3),
(529,212,'Muhammad Mokaev','The Punisher',11,0,0,170.18,56.7,177.8,'Orthodox','1990-06-30',1.12,51,1.19,52,6.47,53,0,1.3),
(530,134,'Hunter Azure','',9,2,0,172.72,65.77,175.26,'Orthodox','1992-01-10',3.92,53,2.08,58,1.97,34,67,1.3),
(531,35,'Papy Abedi','Makambo',10,4,0,180.34,83.91,0,'Southpaw','2004-04-26',2.8,55,3.15,48,3.47,57,50,1.3),
(532,12,'Rodrigo de Lima','Monstro',8,3,1,170.18,70.31,0,'Orthodox','1998-01-31',1.29,33,5.5,32,2.66,36,0,1.3),
(533,195,'Daniel Lacerda','Miojo',11,5,0,167.64,56.7,177.8,'Switch','1991-01-09',4.16,47,8.7,34,1.91,42,0,1.3),
(534,221,'TJ Brown','Downtown',17,11,0,175.26,65.77,182.88,'Switch','1984-12-27',3.37,44,2.89,49,3.41,57,36,1.3),
(535,42,'Nate Diaz','',22,13,0,182.88,77.11,193.04,'Southpaw','1997-11-15',4.57,45,3.77,52,1.05,30,41,1.3),
(536,22,'James Thompson','The Colossus',20,16,0,195.58,120.2,0,'Orthodox','1991-12-27',5.13,52,3.19,41,3.14,36,53,1.3),
(537,224,'Mark Bocek','',12,5,0,172.72,70.31,190.5,'Orthodox','1999-02-28',2.34,43,2.32,60,3.65,36,31,1.3),
(538,96,'Liana Jojua','She Wolf',8,5,0,162.56,56.7,157.48,'Orthodox','1997-07-02',2.42,30,5.32,54,1.71,66,50,1.3),
(539,46,'Ben Saunders','Killa B',22,13,2,187.96,77.11,195.58,'Orthodox','1993-05-12',3.23,50,3.58,51,0.2,40,66,1.3),
(540,183,'Matthew Lopez','',10,4,0,170.18,61.23,175.26,'Southpaw','1992-08-23',3.13,50,3.73,55,3.32,60,71,1.3),
(541,57,'Josh Thomson','The Punk',22,9,0,177.8,70.31,180.34,'Orthodox','2003-04-01',2.59,47,2.12,64,1.92,39,54,1.3),
(542,213,'Pablo Garza','The Scarecrow',12,4,0,185.42,65.77,185.42,'Orthodox','1994-04-04',3.37,44,2.7,50,0.94,25,15,1.3),
(543,176,'Alex Perez','',24,7,0,167.64,56.7,165.1,'Orthodox','2000-12-05',4.67,48,3.14,60,2.84,44,77,1.3),
(544,3,'Richard Crunkilton','Cleat',19,4,0,170.18,70.31,0,'Orthodox','1986-08-12',1.72,41,1.45,58,4.08,61,65,1.3),
(545,204,'Evan Tanner','',32,8,0,182.88,83.91,187.96,'Orthodox','1995-08-13',3.05,59,2.64,56,2.55,43,25,1.3),
(546,53,'Jacare Souza','',26,10,0,185.42,83.91,182.88,'Orthodox','1991-05-27',2.53,47,2.83,62,2.57,39,57,1.3),
(547,130,'Matt Brown','The Immortal',26,19,0,182.88,77.11,190.5,'Orthodox','2004-05-31',3.76,55,2.92,55,1.68,46,63,1.3),
(548,13,'Barb Honchak','Little Warrior',10,4,0,162.56,56.7,165.1,'Orthodox','1983-07-06',4.04,30,4.67,66,0,0,0,1.3),
(549,151,'Joel Alvarez','El Fenomeno',20,3,0,190.5,70.31,195.58,'Orthodox','1993-03-27',3.65,46,3.37,50,0,0,11,1.3),
(550,2,'Jason Brilz','Hitman',22,6,1,180.34,92.99,180.34,'Orthodox','2002-03-11',2.66,40,1.78,65,2.37,25,25,1.3),
(551,32,'Noah Thomas','',14,7,0,175.26,61.23,0,'Orthodox','1990-10-14',0.44,13,4.99,33,0,0,0,1.3),
(552,153,'Eduarda Moura','Ronda',10,0,0,167.64,52.16,167.64,'Orthodox','2001-07-07',5.61,67,0.45,80,5.34,100,0,1.3),
(553,190,'Josh Neer','The Dentist',36,16,1,180.34,77.11,182.88,'Orthodox','2004-12-25',3.29,46,3.63,58,1.09,34,46,1.3),
(554,12,'Matt Lindland','The Law',22,9,0,182.88,83.91,187.96,'Southpaw','2004-05-12',2.62,50,1.56,52,3.01,48,60,1.3),
(555,209,'Ryan Couture','',11,5,0,177.8,70.31,185.42,'Orthodox','2004-04-17',3.54,45,2.87,54,1.55,29,46,1.3),
(556,49,'Bobby Southworth','',10,6,0,187.96,92.99,0,'Orthodox','1995-08-20',0.99,39,1.38,65,3.98,78,64,1.3),
(557,99,'Nissen Osterneck','',12,4,0,187.96,83.91,0,'Orthodox','1991-08-28',3.15,58,2.9,41,0.63,12,42,1.3),
(558,108,'Paddy Holohan','The Hooligan',12,2,1,177.8,56.7,175.26,'Orthodox','1985-01-15',2.13,46,2.81,46,2.88,47,71,1.3),
(559,4,'Zelg Galesic','Benkei',11,9,0,187.96,83.91,0,'Orthodox','2004-03-01',4.86,62,0.61,66,1.3,100,20,1.3),
(560,173,'Vinicius Moreira','Mamute',9,5,0,193.04,92.99,193.04,'Orthodox','2005-01-12',3.15,59,5.07,43,1.97,18,0,1.3),
(561,135,'Marcus Aurelio','Maximus',22,10,0,177.8,70.31,187.96,'Orthodox','1986-06-10',1.42,33,2.27,59,1.69,27,27,1.3),
(562,156,'Clay Harvison','Bushwacker',13,6,0,185.42,77.11,187.96,'Orthodox','1997-05-22',3.29,48,3.91,58,0.66,100,68,1.3),
(563,136,'Marcin Held','',23,7,0,175.26,70.31,180.34,'Orthodox','1983-09-12',1.41,34,2.02,47,2.46,46,37,1.3),
(564,213,'Edgar Chairez','Puro Chicali',10,5,0,170.18,56.7,180.34,'Orthodox','1990-01-09',2.6,48,4.26,41,0,0,45,1.3),
(565,175,'Adam Cella','El Naturel',6,8,0,187.96,77.11,0,'Southpaw','1986-06-24',1.91,42,2.61,51,3.92,75,50,1.3),
(566,239,'Shayna Baszler','The Queen of Spades',15,11,0,170.18,61.23,0,'Orthodox','2001-03-11',2.49,30,6.36,51,0.67,18,44,1.3),
(567,188,'Miesha Tate','Cupcake',20,9,0,167.64,61.23,165.1,'Orthodox','1994-08-11',2.62,45,2.98,51,2.02,31,55,1.3),
(568,225,'Thiago Moises','',17,7,0,175.26,70.31,177.8,'Orthodox','1994-02-24',2.47,39,4.4,54,1.53,40,56,1.3),
(569,81,'Jason Miller','Mayhem',23,10,0,185.42,83.91,0,'Orthodox','1989-08-28',1.83,43,2.3,49,1.31,28,43,1.3),
(570,209,'Chad George','Savage',16,8,0,167.64,61.23,172.72,'Southpaw','1990-06-06',1.26,50,1.11,65,3.08,46,0,1.3),
(571,84,'Dong Sik Yoon','',9,9,0,182.88,83.91,0,'Orthodox','1983-07-15',0.99,36,2.33,51,1.6,29,33,1.3),
(572,32,'Sam Hoger','The Alaskan Assassin',10,4,0,187.96,92.99,0,'Orthodox','1994-08-05',1.07,25,2.25,57,1.12,38,29,1.3),
(573,146,'Everett Sims','Sexual Chocolate',4,1,0,195.58,117.93,195.58,'Southpaw','1991-10-04',0.81,66,2.19,30,0,0,42,1.2),
(574,155,'Brian Ortega','T-City',15,3,0,172.72,65.77,175.26,'Switch','1996-04-23',4.19,38,6.66,49,0.95,23,56,1.2),
(575,98,'Ricardo Almeida','Big Dog',13,5,0,182.88,77.11,187.96,'Orthodox','2000-05-16',2.02,49,1.2,61,3.74,38,31,1.2),
(576,24,'John Alessio','The Natural',35,17,0,177.8,70.31,182.88,'Orthodox','1996-07-24',2.1,39,2.91,54,1.85,38,70,1.2),
(577,67,'Daiju Takase','',12,15,2,182.88,77.11,0,'Southpaw','2003-08-19',0.49,30,1.64,47,0.84,17,21,1.2),
(578,21,'Fabricio Werdum','Vai Cavalo',24,9,1,193.04,104.78,195.58,'Orthodox','1990-03-21',3.59,52,2.64,55,1.75,31,31,1.2),
(579,144,'Greg Nagy','',1,3,0,185.42,95.25,0,'Orthodox','1986-10-16',0.41,50,2.69,37,0,0,0,1.2),
(580,179,'Billy Quarantillo','',18,5,0,177.8,65.77,177.8,'Orthodox','1993-05-09',7.71,57,5.61,43,1.31,23,63,1.2),
(581,222,'Denis Kang','',35,16,2,180.34,83.91,195.58,'Orthodox','1993-11-18',2.27,35,1.65,67,2.51,65,38,1.2),
(582,95,'Rafael Dias','',17,12,2,175.26,65.77,0,'Orthodox','2004-11-12',1.13,27,2.19,60,3.17,47,100,1.2),
(583,49,'Bobby Hoffman','The Truth',36,10,1,187.96,111.13,0,'Orthodox','1990-10-25',2.02,70,1.32,19,1.17,50,0,1.2),
(584,197,'Luke Flores','',9,2,0,182.88,70.31,185.42,'Southpaw','2004-12-30',1.56,44,1.88,60,0,0,40,1.2),
(585,120,'Alvin Robinson','',15,9,0,175.26,70.31,172.72,'Southpaw','1983-11-16',1.57,50,1.29,51,1.24,50,25,1.2),
(586,11,'Michael McBride','',8,3,0,185.42,70.31,0,'Orthodox','1986-11-27',4.08,48,5.85,40,1.85,42,30,1.2),
(587,171,'CB Dollaway','The Doberman',17,9,0,187.96,83.91,193.04,'Orthodox','2003-08-25',2.65,47,2.58,54,3.55,54,62,1.2),
(588,105,'Jeremiah Wells','',12,3,1,175.26,77.11,187.96,'Switch','1990-06-07',2.52,45,1.14,47,3.89,43,100,1.2),
(589,12,'Kevin Ferguson','Kimbo Slice',5,2,0,187.96,106.59,195.58,'Orthodox','1984-09-06',2.3,50,3.41,38,3.1,72,36,1.2),
(590,221,'Joao Paulo Faria','',1,1,0,175.26,70.31,0,'Orthodox','1987-05-13',6.69,64,2.09,85,1.25,50,0,1.2),
(591,112,'Paulo Thiago','',18,9,0,180.34,77.11,187.96,'Orthodox','1990-01-28',1.71,39,1.99,63,1.42,31,63,1.2),
(592,134,'Elvis Sinosic','The King of Rock n\' Rumble',7,11,2,190.5,92.99,195.58,'Orthodox','1992-06-23',1.13,37,4.6,53,0,0,0,1.2),
(593,97,'Sean Brady','',16,1,0,177.8,77.11,182.88,'Orthodox','1984-08-18',3.77,53,3.55,61,3.29,57,87,1.2),
(594,84,'Yuta Sasaki','Ulka',21,6,2,177.8,56.7,180.34,'Southpaw','2001-12-26',2.16,41,2.5,50,3.03,43,41,1.2),
(595,127,'Ricardo Arona','The Brazilian Tiger',14,5,0,180.34,92.99,0,'Orthodox','1991-05-11',1.66,48,1.15,57,2.41,48,58,1.2),
(596,144,'Vitor Ribeiro','Shaolin',20,5,0,172.72,69.85,0,'Orthodox','1999-03-16',1,28,1.95,48,1.58,26,100,1.2),
(597,98,'Murilo Rua','Ninja',20,13,1,180.34,83.91,0,'Orthodox','2000-12-29',2.48,45,1.85,53,1.97,45,37,1.2),
(598,57,'Yizha','',24,4,0,170.18,65.77,180.34,'Orthodox','1995-05-02',2.74,42,2.15,51,4.83,34,61,1.2),
(599,230,'Leandro Issa','Brodinho',13,6,0,170.18,61.23,175.26,'Orthodox','1983-09-17',2.08,37,3.17,58,2.38,22,50,1.2),
(600,24,'Travis Wiuff','The Diesel',75,21,0,190.5,92.99,0,'Orthodox','1992-10-03',0.48,30,4.03,41,4.84,57,44,1.2),
(601,145,'Jordan Johnson','',10,0,0,187.96,92.99,200.66,'Orthodox','1992-03-30',3.45,47,2.64,53,3.25,42,100,1.2),
(602,177,'Tresean Gore','Mr. Vicious',5,2,0,182.88,83.91,190.5,'Switch','1984-02-18',3.04,53,6.13,47,3.04,71,81,1.2),
(603,208,'Gilbert Smith','',12,6,0,175.26,83.91,0,'Southpaw','1993-07-29',1.09,41,2.73,35,3.51,60,0,1.2),
(604,31,'Jake Shields','',31,9,1,182.88,77.11,182.88,'Orthodox','1993-01-21',2.45,36,1.8,56,2.83,29,35,1.2),
(605,10,'Naoya Ogawa','',7,2,0,193.04,115.67,0,'Orthodox','2004-03-22',2.41,42,1.66,47,1.25,100,66,1.2),
(606,195,'Jeff Curran','Big Frog',36,18,1,167.64,61.23,175.26,'Orthodox','1987-12-26',1.54,31,2.48,60,0.35,12,35,1.2),
(607,227,'Gabriel Santos','Mosquitinho',10,2,0,175.26,65.77,177.8,'Orthodox','1988-12-23',4.46,55,6.03,44,4.34,46,66,1.2),
(608,71,'Donald Cerrone','Cowboy',36,17,0,185.42,70.31,185.42,'Orthodox','1985-01-08',4.41,46,4.48,53,1.16,33,73,1.2),
(609,152,'Donnie Liles','',17,7,0,175.26,77.11,0,'Orthodox','2001-11-18',2.25,41,1.75,65,2.5,28,0,1.2),
(610,68,'Jason Ireland','The Irish Tornado',19,9,1,175.26,73.03,0,'Southpaw','1999-11-06',1.2,25,2.07,51,3.59,75,0,1.2),
(611,121,'Jalin Turner','The Tarantula',14,7,0,190.5,70.31,195.58,'Southpaw','2002-06-06',6.02,48,4.63,41,0.88,55,75,1.2),
(612,163,'Yan Cabral','',13,3,0,180.34,70.31,185.42,'Orthodox','1993-11-05',2.02,47,1.98,62,2.89,35,37,1.2),
(613,213,'Jesse Forbes','Kid Hercules',15,5,0,187.96,83.91,190.5,'Southpaw','1997-07-05',2.11,24,4.06,53,1.79,75,66,1.2),
(614,97,'Jared Rollins','J-Roc',8,4,0,175.26,77.11,0,'Orthodox','1993-05-08',3.33,57,2.41,39,2.5,50,50,1.2),
(615,84,'Kamuela Kirk','The Jawaiian',12,6,0,177.8,70.31,190.5,'Switch','1991-05-12',3.22,50,5.87,40,1.5,26,47,1.2),
(616,127,'Brandon Halsey','Bull',9,3,0,182.88,83.91,0,'Orthodox','1999-01-03',1.74,47,0.87,65,4.98,53,100,1.2),
(617,144,'Murilo Bustamante','',15,8,1,187.96,83.01,0,'Orthodox','2004-03-08',1.33,32,1.9,60,2.46,33,54,1.2),
(618,102,'Dustin Poirier','The Diamond',29,8,0,175.26,70.31,182.88,'Southpaw','1985-09-19',5.49,50,4.3,53,1.36,36,63,1.2),
(619,76,'Jordan Rinaldi','All Day',14,7,0,177.8,65.77,182.88,'Orthodox','1987-04-08',1.56,35,2.32,59,1.45,35,20,1.2),
(620,75,'Nik Lentz','The Carny',30,12,2,172.72,65.77,172.72,'Orthodox','2000-12-04',3.44,47,3.25,50,3.3,32,43,1.2),
(621,144,'Din Thomas','Dinyero',26,9,0,175.26,70.31,0,'Orthodox','1985-06-17',1.85,37,2.6,59,1.38,52,76,1.2),
(622,18,'Christian Wellisch','The Hungarian Nightmare',8,5,0,187.96,106.14,195.58,'Orthodox','2002-09-18',3.12,27,3.04,56,1.22,42,45,1.2),
(623,134,'Erin Blanchfield','Cold Blooded',12,1,0,162.56,56.7,167.64,'Orthodox','2001-10-02',5.58,52,3.32,62,2.86,36,83,1.2),
(624,140,'Luis Pena','Violent Bob Ross',9,3,0,190.5,70.31,190.5,'Southpaw','1987-02-22',3.66,46,3.12,51,1.17,33,48,1.2),
(625,59,'JunYong Park','The Iron Turtle',17,5,0,177.8,83.91,185.42,'Orthodox','1988-04-02',4.94,51,3.66,53,2.1,50,69,1.2),
(626,111,'Allen Crowder','Pretty Boy',10,4,0,190.5,111.13,193.04,'Orthodox','1995-10-10',2.95,51,2.95,56,1.85,33,100,1.2),
(627,139,'Matt Hughes','',45,9,0,175.26,77.11,185.42,'Switch','1984-09-16',2.14,53,1.36,53,2.95,50,35,1.2),
(628,121,'Mike Guymon','The Joker',15,6,1,182.88,77.11,187.96,'Orthodox','1988-10-22',2.75,65,0.79,66,1.87,37,54,1.2),
(629,191,'Dylan Lockard','',6,2,0,175.26,65.77,182.88,'Orthodox','1988-04-11',1.31,53,3.31,52,2.31,40,28,1.2),
(630,111,'Dan Christison','The Sandman',20,7,0,203.2,120.2,0,'Orthodox','1999-04-08',4.23,51,3.88,54,0,0,37,1.1),
(631,223,'Darren Elkins','The Damage',28,11,0,177.8,65.77,180.34,'Orthodox','1987-11-23',3.44,38,3.27,52,2.85,35,56,1.1),
(632,64,'Alvaro Herrera Mendoza','Chango',9,6,0,182.88,70.31,187.96,'Orthodox','1999-11-01',1.89,38,3.4,55,0,0,33,1.1),
(633,129,'Justin Jaynes','The Guitar Hero',16,8,0,170.18,65.77,172.72,'Orthodox','2001-02-03',3.34,44,5.33,62,0.75,40,20,1.1),
(634,211,'Steven Koslow','Obi Won Shinobi The Pillow',6,1,0,170.18,56.7,175.26,'Switch','1983-08-01',0.77,37,3.73,40,5.28,55,0,1.1),
(635,192,'Jordan Leavitt','The Monkey King',11,3,0,175.26,70.31,180.34,'Southpaw','1998-06-26',2.55,61,1.84,57,2.19,25,30,1.1),
(636,88,'Rubens Xavier','Macula',5,3,0,190.5,99.79,0,'Orthodox','1988-04-07',0.77,42,1.82,21,2.1,40,25,1.1),
(637,103,'Mike Santiago','',19,12,0,177.8,65.77,175.26,'Orthodox','1996-12-25',3.44,49,3.58,36,2.66,50,53,1.1),
(638,11,'James McSweeney','The Hammer',15,15,0,193.04,104.33,195.58,'Switch','2004-07-25',3.94,55,4.33,42,0.52,33,100,1.1),
(639,222,'Dricus Du Plessis','Stillknocks',20,2,0,185.42,83.91,193.04,'Switch','2002-03-07',6.95,55,3.79,53,2.72,50,40,1.1),
(640,122,'Gabriel Gonzaga','Napao',17,11,0,187.96,109.77,193.04,'Orthodox','1989-08-30',2.12,45,2.94,57,2.8,39,66,1.1),
(641,182,'John Maguire','The One',24,9,0,175.26,70.31,175.26,'Southpaw','1991-04-06',1.41,41,2.44,65,2.8,46,77,1.1),
(642,64,'Anthony Perosh','The Hippo',15,10,0,190.5,92.99,190.5,'Orthodox','1990-04-19',2.27,43,3.77,53,2.03,22,33,1.1),
(643,14,'Dennis Bermudez','The Menace',17,9,0,167.64,70.31,167.64,'Orthodox','1995-08-01',4.42,46,3.07,59,3.89,40,82,1.1),
(644,118,'Cody Brundage','',10,5,0,182.88,83.91,182.88,'Orthodox','1986-08-29',1.8,55,2.51,43,2.69,52,73,1.1),
(645,68,'Rich Clementi','No Love',45,23,1,175.26,70.31,182.88,'Southpaw','2000-08-16',1.43,37,2.29,60,1.72,42,25,1.1),
(646,223,'Gabriel Benitez','Moggly',23,11,0,172.72,70.31,180.34,'Southpaw','1999-03-17',4.79,41,4.05,65,0.27,50,58,1.1),
(647,196,'Daniel Straus','',24,7,0,170.18,65.77,180.34,'Southpaw','2003-08-15',4.76,43,2.99,57,0.84,15,81,1.1),
(648,72,'Makwan Amirkhani','Mr. Finland',17,9,0,177.8,65.77,182.88,'Southpaw','1990-03-09',1.33,44,2.98,46,3.96,43,35,1.1),
(649,10,'Georges St-Pierre','Rush',26,2,0,180.34,83.91,193.04,'Orthodox','1984-04-12',3.78,53,1.4,72,4.16,74,83,1.1),
(650,72,'Goran Reljic','',15,8,0,190.5,92.99,205.74,'Southpaw','1987-11-23',1.69,37,2.69,59,1.69,50,33,1.1),
(651,92,'Pat Healy','Bam Bam',34,23,0,182.88,70.31,182.88,'Orthodox','1999-09-27',2.57,36,2.57,50,3.08,37,55,1.1),
(652,5,'Loopy Godinez','',12,3,0,157.48,52.16,154.94,'Orthodox','1992-04-04',4.31,49,3.76,62,3.39,46,86,1.1),
(653,226,'Youssef Zalal','The Moroccan Devil',10,5,1,177.8,61.23,182.88,'Switch','1986-07-27',2.75,48,1.75,64,2.14,31,60,1.1),
(654,156,'John Moraga','',19,7,0,167.64,56.7,167.64,'Orthodox','1991-10-22',2.57,43,2.55,56,0.62,23,44,1.1),
(655,103,'Gesias Cavalcante','JZ',21,10,1,172.72,70.31,180.34,'Orthodox','2001-06-07',1.98,35,3.11,51,1.25,36,66,1.1),
(656,47,'Julius Anglickas','',5,1,0,190.5,92.99,0,'Orthodox','1996-04-18',4.62,78,1.86,50,4.47,50,60,1.1),
(657,164,'Tom Breese','',12,3,0,190.5,83.91,185.42,'Southpaw','1997-12-27',3.34,50,2.81,60,0,0,70,1.1),
(658,199,'Makoto Takimoto','',6,5,0,170.18,92.99,0,'Southpaw','2003-06-07',1.37,39,1.71,55,1.48,50,25,1.1),
(659,25,'Nate Landwehr','The Train',17,5,0,175.26,65.77,182.88,'Orthodox','1988-07-18',6.14,46,5.58,55,1.07,41,86,1.1),
(660,7,'Frank Shamrock','',23,10,2,177.8,83.91,0,'Orthodox','2004-10-21',4.75,53,4.66,57,0.35,50,37,1.1),
(661,197,'Gegard Mousasi','',42,6,2,187.96,83.91,193.04,'Orthodox','1984-08-31',3.75,50,1.21,68,1.59,60,59,1.1),
(662,9,'Semmy Schilt','Hightower',26,14,1,208.28,120.2,0,'Orthodox','1983-09-12',1.2,50,1.31,53,0,0,47,1.1),
(663,168,'Joe Ellenberger','Excalibur',15,2,0,175.26,70.31,182.88,'Orthodox','1991-07-14',1.62,47,3.45,48,3.17,40,0,1.1),
(664,96,'Trenell Young','Savant',11,9,0,167.64,65.77,0,'Orthodox','1992-02-05',1.43,22,5.13,50,1.13,20,0,1.1),
(665,213,'Bea Malecki','',4,1,0,175.26,61.23,187.96,'Orthodox','1988-05-08',6.84,46,6.96,62,0,0,78,1.1),
(666,63,'Louis Gaudinot','Goodnight',8,4,0,160.02,56.7,160.02,'Orthodox','1986-01-23',2.34,37,6.42,48,0.57,40,31,1.1),
(667,152,'Ramsey Nijem','',9,6,0,180.34,70.31,190.5,'Orthodox','2005-05-07',3.05,44,1.62,62,5.32,62,55,1.1),
(668,94,'Claudio Silva','Hannibal',14,4,0,180.34,77.11,180.34,'Southpaw','2000-04-27',2.48,42,3,46,2.85,26,44,1.1),
(669,11,'Marcos Galvao','Loro',18,8,1,170.18,61.23,0,'Orthodox','1990-04-01',1.97,32,3.86,61,2.27,28,88,1.1),
(670,15,'Joey Villasenor','Smokin\' Joe',29,10,0,182.88,83.91,0,'Orthodox','1989-02-18',2.05,38,3.26,52,0.71,40,53,1.1),
(671,38,'Taila Santos','',19,3,0,167.64,56.7,172.72,'Orthodox','2002-08-04',3.39,48,2.64,58,2,76,86,1.1),
(672,146,'Matt Schnell','Danger',16,7,0,172.72,56.7,177.8,'Orthodox','1990-05-05',4.24,39,4.46,55,0.63,44,46,1.1),
(673,138,'Anthony Pettis','Showtime',24,10,0,177.8,70.31,182.88,'Orthodox','1999-06-19',3.05,47,3.44,54,0.61,50,60,1.1),
(674,12,'Darrill Schoonover','The Boss',14,8,0,187.96,99.79,0,'Orthodox','2004-01-06',1.2,33,4.35,38,0,0,50,1.1),
(675,123,'Jeff Hougland','Hellbound',10,6,0,170.18,61.23,172.72,'Orthodox','1987-05-15',1.86,48,3.46,47,0.86,18,0,1.1),
(676,100,'Jeremy Horn','Gumby',91,22,5,185.42,83.91,187.96,'Orthodox','1991-03-06',1.19,39,1.99,55,1.83,38,29,1.1),
(677,130,'Thales Leites','',28,9,0,185.42,83.91,198.12,'Orthodox','2002-05-12',2.13,40,2.99,52,2.1,27,30,1.1),
(678,113,'Dean Lister','The Boogeyman',13,7,0,185.42,83.91,190.5,'Orthodox','1987-07-23',1.26,35,1.89,61,1.58,15,50,1.1),
(679,172,'Kurt Holobaugh','',21,7,0,180.34,70.31,177.8,'Orthodox','1985-08-06',4.89,44,4.44,48,0.87,36,50,1.1),
(680,44,'Chris Wade','',12,3,0,177.8,70.31,177.8,'Orthodox','1995-08-29',1.7,53,1.75,51,2.6,51,55,1.1),
(681,179,'Dylan Potter','Big Poppa',10,6,0,187.96,102.06,195.58,'Switch','1995-05-23',3.1,48,5.78,46,0,0,33,1.1),
(682,47,'Tatsuya Kawajiri','Crusher',36,11,2,170.18,65.77,175.26,'Orthodox','1988-10-19',2.04,44,2.01,50,3.63,48,63,1.1),
(683,176,'Trevor Prangley','',34,11,2,185.42,83.91,190.5,'Orthodox','1986-12-21',2.59,60,2.02,48,3.38,55,74,1),
(684,20,'Karolina Wojcik','Polish Assassin',9,2,0,157.48,52.16,0,'Orthodox','1990-07-17',2.67,65,0.87,62,2,66,100,1),
(685,49,'Pat Miletich','The Croatian Sensation',29,7,2,177.8,77.11,0,'Orthodox','1995-11-17',1.79,45,1.66,63,1.96,100,54,1),
(686,187,'Steve Erceg','Astroboy',11,1,0,172.72,56.7,172.72,'Orthodox','1997-01-22',4.27,48,3.57,49,2,33,77,1),
(687,70,'Evan Dunham','',18,9,1,177.8,70.31,177.8,'Southpaw','1991-07-08',5.33,39,3.54,61,1.82,33,79,1),
(688,28,'Josh Stansbury','The Sandman',4,8,0,187.96,92.99,187.96,'Orthodox','1989-07-27',3.22,54,3.54,54,0,0,87,1),
(689,166,'Ed Herman','Short Fuse',27,16,0,185.42,92.99,195.58,'Orthodox','2002-06-21',3.31,48,3.71,42,1.96,47,59,1),
(690,32,'Ali AlQaisi','The Royal Fighter',8,5,0,167.64,61.23,172.72,'Orthodox','1996-02-03',2.43,42,1.97,56,3.5,29,60,1),
(691,137,'Elaina Maxwell','Beef',7,4,0,172.72,65.77,0,'Orthodox','1997-10-03',2.07,60,2.4,53,0,0,50,1),
(692,109,'Mando Gutierrez','El Toro',7,2,0,167.64,61.23,177.8,'Southpaw','1998-11-03',0.8,75,1.33,50,1,100,40,1),
(693,137,'Claudia Leite','',8,3,0,160.02,61.23,162.56,'Orthodox','1984-06-26',1.27,47,1.73,57,1,25,0,1),
(694,116,'Ray Borg','The Tazmexican Devil',13,5,0,162.56,61.23,160.02,'Orthodox','1986-12-11',1.52,52,1.93,48,3.89,50,46,1),