-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsports.log
1769 lines (1766 loc) · 97.6 KB
/
sports.log
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
[DEBUG] Output level: DEBUG
[INFO] Random seed: 0.6547841400537493
[DEBUG] Generated negative examples:
[DEBUG] 0.0::athleteplayssport(yao_ming,tennis)
[DEBUG] 0.0::athleteplayssport(luke_harangody,professional_basketball)
[DEBUG] 0.0::athleteplayssport(ginobili,golf)
[DEBUG] 0.0::athleteplayssport(tommie_agee,golf)
[DEBUG] 0.0::athleteplayssport(will_bynum,football)
[DEBUG] 0.0::athleteplayssport(ben_roethlisberger,tennis)
[DEBUG] 0.0::athleteplayssport(samardo_samuels,professional_football)
[DEBUG] 0.0::athleteplayssport(adam_burish,baseball)
[DEBUG] 0.0::athleteplayssport(phil_kessel,boxing)
[DEBUG] 0.0::athleteplayssport(braylon_edwards,boxing)
[DEBUG] 0.0::athleteplayssport(phil_dumatrait,cycling)
[DEBUG] 0.0::athleteplayssport(ja,lacrosse)
[DEBUG] 0.0::athleteplayssport(daisuke_matsuzaka,softball)
[DEBUG] 0.0::athleteplayssport(matt_palmer,tennis)
[DEBUG] 0.0::athleteplayssport(mike_timlin,golf)
[DEBUG] 0.0::athleteplayssport(henry_barrera,baseball)
[DEBUG] 0.0::athleteplayssport(andy_pettite,baseball)
[DEBUG] 0.0::athleteplayssport(robert_cupp,boxing)
[DEBUG] 0.0::athleteplayssport(steve_austin,soccer)
[DEBUG] 0.0::athleteplayssport(kevin_kouzmanoff,golf)
[DEBUG] 0.0::athleteplayssport(baldelli,football)
[DEBUG] 0.0::athleteplayssport(mike_maroth,football)
[DEBUG] 0.0::athleteplayssport(randall_simon,cycling)
[DEBUG] 0.0::athleteplayssport(d_j__mbenga,track_and_field)
[DEBUG] 0.0::athleteplayssport(amir_johnson,football)
[DEBUG] 0.0::athleteplayssport(eric_patterson,cycling)
[DEBUG] 0.0::athleteplayssport(quarterback_peyton_manning,football)
[DEBUG] 0.0::athleteplayssport(chris_iannetta,lacrosse)
[DEBUG] 0.0::athleteplayssport(david_robertson,wrestling)
[DEBUG] 0.0::athleteplayssport(nate_robertson,basketball)
[DEBUG] 0.0::athleteplayssport(jake_westbrook,sailing)
[DEBUG] 0.0::athleteplayssport(mike_macdougal,professional_football)
[DEBUG] 0.0::athleteplayssport(drew_anderson,hockey)
[DEBUG] 0.0::athleteplayssport(juan_diaz,football)
[DEBUG] 0.0::athleteplayssport(ramon_martinez,hockey)
[DEBUG] 0.0::athleteplayssport(chris_simon,football)
[DEBUG] 0.0::athleteplayssport(rich_gannon,professional_basketball)
[DEBUG] 0.0::athleteplayssport(jenrry_mejia,boxing)
[DEBUG] 0.0::athleteplayssport(erik_ersberg,soccer)
[DEBUG] 0.0::athleteplayssport(jamarcus_russell,softball)
[DEBUG] 0.0::athleteplayssport(lamont_peterson,softball)
[DEBUG] 0.0::athleteplayssport(bob_sanders,tennis)
[DEBUG] 0.0::athleteplayssport(keith_tkachuk,basketball)
[DEBUG] 0.0::athleteplayssport(andrei_kirilenko,boxing)
[DEBUG] 0.0::athleteplayssport(kimmo_timonen,lacrosse)
[DEBUG] 0.0::athleteplayssport(luis_valdez,soccer)
[DEBUG] 0.0::athleteplayssport(ambiorix_burgos,golf)
[DEBUG] 0.0::athleteplayssport(mike_mckenna,lacrosse)
[DEBUG] 0.0::athleteplayssport(jack_kidwell,basketball)
[DEBUG] 0.0::athleteplayssport(chris_jakubauskas,golf)
[DEBUG] 0.0::athleteplayssport(nate_burleson,soccer)
[DEBUG] 0.0::athleteplayssport(richard_jefferson,soccer)
[DEBUG] 0.0::athleteplayssport(mccovey,track_and_field)
[DEBUG] 0.0::athleteplayssport(dorsey_levens,professional_basketball)
[DEBUG] 0.0::athleteplayssport(jason_perry,track_and_field)
[DEBUG] 0.0::athleteplayssport(javon_ringer,sailing)
[DEBUG] 0.0::athleteplayssport(armando_galarraga,football)
[DEBUG] 0.0::athleteplayssport(cedrick_bowers,sailing)
[DEBUG] 0.0::athleteplayssport(evan_reed,wrestling)
[DEBUG] 0.0::athleteplayssport(adam_wainwright,sailing)
[DEBUG] 0.0::athleteplayssport(kevin_cameron,college_baseball)
[DEBUG] 0.0::athleteplayssport(jailen_peguero,lacrosse)
[DEBUG] 0.0::athleteplayssport(qb_matt_ryan,lacrosse)
[DEBUG] 0.0::athleteplayssport(jake_tsakalidis,boxing)
[DEBUG] 0.0::athleteplayssport(dustin_richardson,softball)
[DEBUG] 0.0::athleteplayssport(player,lacrosse)
[DEBUG] 0.0::athleteplayssport(jacob_turner,boxing)
[DEBUG] 0.0::athleteplayssport(brian_moran,basketball)
[DEBUG] 0.0::athleteplayssport(daryl_thompson,hockey)
[DEBUG] 0.0::athleteplayssport(mike_wallace,college_baseball)
[DEBUG] 0.0::athleteplayssport(dustin_nippert,hockey)
[DEBUG] 0.0::athleteplayssport(marcus_camby,golf)
[DEBUG] 0.0::athleteplayssport(john_wasdin,boxing)
[DEBUG] 0.0::athleteplayssport(james_wisniewski,cycling)
[DEBUG] 0.0::athleteplayssport(john_lucas,track_and_field)
[DEBUG] 0.0::athleteplayssport(adrian_griffin,sailing)
[DEBUG] 0.0::athleteplayssport(jenrry_mejia,softball)
[DEBUG] 0.0::athleteplayssport(zdeno_chara,lacrosse)
[DEBUG] 0.0::athleteplayssport(brian_moehler,swimming)
[DEBUG] 0.0::athleteplayssport(manny_legace,baseball)
[DEBUG] 0.0::athleteplayssport(dwayne_bowe,swimming)
[DEBUG] 0.0::athleteplayssport(eric_hinske,golfing)
[DEBUG] 0.0::athleteplayssport(reed_sorenson,baseball)
[DEBUG] 0.0::athleteplayssport(philip_rivers,boxing)
[DEBUG] 0.0::athleteplayssport(choo_choo_coleman,boxing)
[DEBUG] 0.0::athleteplayssport(kaka,professional_football)
[DEBUG] 0.0::athleteplayssport(mike_cameron,sailing)
[DEBUG] 0.0::athleteplayssport(jordan_tata,swimming)
[DEBUG] 0.0::athleteplayssport(kevin_millar,golf)
[DEBUG] 0.0::athleteplayssport(john_david_booty,professional_football)
[DEBUG] 0.0::athleteplayssport(guillermo_mota,golf)
[DEBUG] 0.0::athleteplayssport(david_herndon,car_racing)
[DEBUG] 0.0::athleteplayssport(kevin_harvick,basketball)
[DEBUG] 0.0::athleteplayssport(marian_hossa,hockey)
[DEBUG] 0.0::athleteplayssport(mark_melancon,swimming)
[DEBUG] 0.0::athleteplayssport(jeff_gordon,cycling)
[DEBUG] 0.0::athleteplayssport(jim_engh,hockey)
[DEBUG] 0.0::athleteplayssport(rio_ferdinand,wrestling)
[DEBUG] 0.0::athleteplayssport(bill_murphy,sailing)
[DEBUG] 0.0::athleteplayssport(devin_brown,track_and_field)
[DEBUG] 0.0::athleteplayssport(brian_skinner,lacrosse)
[DEBUG] 0.0::athleteplayssport(glaus,soccer)
[DEBUG] 0.0::athleteplayssport(player,golf)
[DEBUG] 0.0::athleteplayssport(quarterback_brett_favre,golfing)
[DEBUG] 0.0::athleteplayssport(josh_butler,car_racing)
[DEBUG] 0.0::athleteplayssport(jon_niese,softball)
[DEBUG] 0.0::athleteplayssport(garrett_atkins,soccer)
[DEBUG] 0.0::athleteplayssport(darnell_jackson,baseball)
[DEBUG] 0.0::athleteplayssport(ernie_sims,college_baseball)
[DEBUG] 0.0::athleteplayssport(deion_branch,professional_football)
[DEBUG] 0.0::athleteplayssport(dave_henderson,cycling)
[DEBUG] 0.0::athleteplayssport(jackie_butler,soccer)
[DEBUG] 0.0::athleteplayssport(ryan_franklin,golfing)
[DEBUG] 0.0::athleteplayssport(ronaldo,golfing)
[DEBUG] 0.0::athleteplayssport(bill_gadsby,wrestling)
[DEBUG] 0.0::athleteplayssport(luis_figueroa,track_and_field)
[DEBUG] 0.0::athleteplayssport(dan_marino,golf)
[DEBUG] 0.0::athleteplayssport(gorzelanny,basketball)
[DEBUG] 0.0::athleteplayssport(sean_smith,lacrosse)
[DEBUG] 0.0::athleteplayssport(ben_davis,professional_football)
[DEBUG] 0.0::athleteplayssport(jason_maxiell,college_baseball)
[DEBUG] 0.0::athleteplayssport(wladimir_klitschko,golf)
[DEBUG] 0.0::athleteplayssport(ryan_speier,boxing)
[DEBUG] 0.0::athleteplayssport(rick_vandenhurk,tennis)
[DEBUG] 0.0::athleteplayssport(phil_dumatrait,hockey)
[DEBUG] 0.0::athleteplayssport(raul_valdes,professional_basketball)
[DEBUG] 0.0::athleteplayssport(jeff_ridgway,tennis)
[DEBUG] 0.0::athleteplayssport(rick_ankiel,cycling)
[DEBUG] 0.0::athleteplayssport(randy_white,car_racing)
[DEBUG] 0.0::athleteplayssport(fabio_castro,tennis)
[DEBUG] 0.0::athleteplayssport(paul_mara,professional_football)
[DEBUG] 0.0::athleteplayssport(jim_johnson,college_baseball)
[DEBUG] 0.0::athleteplayssport(james_white,professional_football)
[DEBUG] 0.0::athleteplayssport(ryan_anderson,softball)
[DEBUG] 0.0::athleteplayssport(jeremy_morin,sailing)
[DEBUG] 0.0::athleteplayssport(kleiza,golf)
[DEBUG] 0.0::athleteplayssport(floyd_mayweather_jr,professional_basketball)
[DEBUG] 0.0::athleteplayssport(ladanian_tomlinson,swimming)
[DEBUG] 0.0::athleteplayssport(casey_fossum,golfing)
[DEBUG] 0.0::athleteplayssport(joffrey_lupul,tennis)
[DEBUG] 0.0::athleteplayssport(matt_harrison,football)
[DEBUG] 0.0::athleteplayssport(michael_dunn,basketball)
[DEBUG] 0.0::athleteplayssport(cory_sullivan,golf)
[DEBUG] 0.0::athleteplayssport(tony_dorsett,car_racing)
[DEBUG] 0.0::athleteplayssport(von_hagge,hockey)
[DEBUG] 0.0::athleteplayssport(dustin_nippert,basketball)
[DEBUG] 0.0::athleteplayssport(raitis_ivanans,softball)
[DEBUG] 0.0::athleteplayssport(scott_cassidy,wrestling)
[DEBUG] 0.0::athleteplayssport(gene_bates,football)
[DEBUG] 0.0::athleteplayssport(aaron_boone,hockey)
[DEBUG] 0.0::athleteplayssport(chris_andersen,tennis)
[DEBUG] 0.0::athleteplayssport(robert_trent_jones_jr_,golfing)
[DEBUG] 0.0::athleteplayssport(ramon_vazquez,swimming)
[DEBUG] 0.0::athleteplayssport(bobby_labonte,sailing)
[DEBUG] 0.0::athleteplayssport(zinedine_zidane,basketball)
[DEBUG] 0.0::athleteplayssport(dainius_zubrus,boxing)
[DEBUG] 0.0::athleteplayssport(corey_koskie,golfing)
[DEBUG] 0.0::athleteplayssport(ray_durham,basketball)
[DEBUG] 0.0::athleteplayssport(mark_ingram,basketball)
[DEBUG] 0.0::athleteplayssport(joaquin_arias,basketball)
[DEBUG] 0.0::athleteplayssport(nigel_dawes,wrestling)
[DEBUG] 0.0::athleteplayssport(patric_young,hockey)
[DEBUG] 0.0::athleteplayssport(quarterback_brett_favre,cycling)
[DEBUG] 0.0::athleteplayssport(randy_johnson,boxing)
[DEBUG] 0.0::athleteplayssport(ben_johnson,sailing)
[DEBUG] 0.0::athleteplayssport(antonio_cromartie,lacrosse)
[DEBUG] 0.0::athleteplayssport(player,hockey)
[DEBUG] 0.0::athleteplayssport(paul_pierce,basketball)
[DEBUG] 0.0::athleteplayssport(amare,golfing)
[DEBUG] 0.0::athleteplayssport(jim_hoey,soccer)
[DEBUG] 0.0::athleteplayssport(anthony_lerew,tennis)
[DEBUG] 0.0::athleteplayssport(ashley_lelie,soccer)
[DEBUG] 0.0::athleteplayssport(gale_sayers,track_and_field)
[DEBUG] 0.0::athleteplayssport(henry_rodriguez,cycling)
[DEBUG] 0.0::athleteplayssport(chris_paul,hockey)
[DEBUG] 0.0::athleteplayssport(joe_girardi,boxing)
[DEBUG] 0.0::athleteplayssport(lee_evans,softball)
[DEBUG] 0.0::athleteplayssport(omri_casspi,track_and_field)
[DEBUG] 0.0::athleteplayssport(tyreke_evans,soccer)
[DEBUG] 0.0::athleteplayssport(nikolai_kulemin,softball)
[DEBUG] 0.0::athleteplayssport(thomas_robinson,soccer)
[DEBUG] 0.0::athleteplayssport(raitis_ivanans,car_racing)
[DEBUG] 0.0::athleteplayssport(gerald_henderson,soccer)
[DEBUG] 0.0::athleteplayssport(david_west,baseball)
[DEBUG] 0.0::athleteplayssport(craig_stammen,tennis)
[DEBUG] 0.0::athleteplayssport(matt_jones,softball)
[DEBUG] 0.0::athleteplayssport(brian_campbell,lacrosse)
[DEBUG] 0.0::athleteplayssport(emmitt_smith,car_racing)
[DEBUG] 0.0::athleteplayssport(burke_badenhop,wrestling)
[DEBUG] 0.0::athleteplayssport(patrick_o_sullivan,football)
[DEBUG] 0.0::athleteplayssport(carlos_silva,soccer)
[DEBUG] 0.0::athleteplayssport(nelson_figueroa,professional_basketball)
[DEBUG] 0.0::athleteplayssport(jarron_collins,sailing)
[DEBUG] 0.0::athleteplayssport(luis_pena,professional_basketball)
[DEBUG] 0.0::athleteplayssport(marc_mariani,soccer)
[DEBUG] 0.0::athleteplayssport(emmitt_smith,soccer)
[DEBUG] 0.0::athleteplayssport(carson_palmer,car_racing)
[DEBUG] 0.0::athleteplayssport(pekka_rinne,swimming)
[DEBUG] 0.0::athleteplayssport(monta_ellis,car_racing)
[DEBUG] 0.0::athleteplayssport(kris_medlen,soccer)
[DEBUG] 0.0::athleteplayssport(cristiano_ronaldo,tennis)
[DEBUG] 0.0::athleteplayssport(pat_williams,soccer)
[DEBUG] 0.0::athleteplayssport(b_j_upton,boxing)
[DEBUG] 0.0::athleteplayssport(matt_treanor,lacrosse)
[DEBUG] 0.0::athleteplayssport(ervin_santana,tennis)
[DEBUG] 0.0::athleteplayssport(robby_naish,basketball)
[DEBUG] 0.0::athleteplayssport(gene_bates,tennis)
[DEBUG] 0.0::athleteplayssport(alex_acker,soccer)
[DEBUG] 0.0::athleteplayssport(tony_sipp,wrestling)
[DEBUG] 0.0::athleteplayssport(rafael_rodriguez,hockey)
[DEBUG] 0.0::athleteplayssport(leandro_barbosa,basketball)
[DEBUG] 0.0::athleteplayssport(lionel_messi,basketball)
[DEBUG] 0.0::athleteplayssport(ross_wolf,professional_football)
[DEBUG] 0.0::athleteplayssport(steve_breaston,lacrosse)
[DEBUG] 0.0::athleteplayssport(matt_albers,college_baseball)
[DEBUG] 0.0::athleteplayssport(chris_volstad,boxing)
[DEBUG] 0.0::athleteplayssport(howie_clark,college_baseball)
[DEBUG] 0.0::athleteplayssport(bernard_langer,lacrosse)
[DEBUG] 0.0::athleteplayssport(francesco_totti,baseball)
[DEBUG] 0.0::athleteplayssport(legendary_arnold_palmer,golfing)
[DEBUG] 0.0::athleteplayssport(marian_gaborik,cycling)
[DEBUG] 0.0::athleteplayssport(wilson_ramos,golf)
[DEBUG] 0.0::athleteplayssport(mario_williams,car_racing)
[DEBUG] 0.0::athleteplayssport(cm_punk,basketball)
[DEBUG] 0.0::athleteplayssport(mike_mussina,golf)
[DEBUG] 0.0::athleteplayssport(nicklas_backstrom,car_racing)
[DEBUG] 0.0::athleteplayssport(j_j__barea,football)
[DEBUG] 0.0::athleteplayssport(jesse_english,professional_football)
[DEBUG] 0.0::athleteplayssport(kenny_britt,hockey)
[DEBUG] 0.0::athleteplayssport(jason_garrett,basketball)
[DEBUG] 0.0::athleteplayssport(jordan_staal,baseball)
[DEBUG] 0.0::athleteplayssport(stan_musial,soccer)
[DEBUG] 0.0::athleteplayssport(jason_waddell,golf)
[DEBUG] 0.0::athleteplayssport(steve_young,cycling)
[DEBUG] 0.0::athleteplayssport(mets_third_baseman_david_wright,track_and_field)
[DEBUG] 0.0::athleteplayssport(bernard_robinson,wrestling)
[DEBUG] 0.0::athleteplayssport(jason_bergmann,baseball)
[DEBUG] 0.0::athleteplayssport(ahmad_bradshaw,track_and_field)
[DEBUG] 0.0::athleteplayssport(reggie_wayne,professional_football)
[DEBUG] 0.0::athleteplayssport(jonathan_toews,sailing)
[DEBUG] 0.0::athleteplayssport(fausto_carmona,wrestling)
[DEBUG] 0.0::athleteplayssport(david_dejesus,softball)
[DEBUG] 0.0::athleteplayssport(jason_isringhausen,golfing)
[DEBUG] 0.0::athleteplayssport(gary_carter,swimming)
[DEBUG] 0.0::athleteplayssport(joseph_ortiz,hockey)
[DEBUG] 0.0::athleteplayssport(biggio,soccer)
[DEBUG] 0.0::athleteplayssport(zack_segovia,professional_football)
[DEBUG] 0.0::athleteplayssport(eric_hurley,golf)
[DEBUG] 0.0::athleteplayssport(sal_maglie,professional_basketball)
[DEBUG] 0.0::athleteplayssport(bruce_gradkowski,lacrosse)
[DEBUG] 0.0::athleteplayssport(eddie_bonine,cycling)
[DEBUG] 0.0::athleteplayssport(anthony_grundy,cycling)
[DEBUG] 0.0::athleteplayssport(david_dellucci,sailing)
[DEBUG] 0.0::athleteplayssport(pascal_leclaire,basketball)
[DEBUG] 0.0::athleteplayssport(orel_hershiser,baseball)
[DEBUG] 0.0::athleteplayssport(brett_favre,sailing)
[DEBUG] 0.0::athleteplayssport(roger_mason,lacrosse)
[DEBUG] 0.0::athleteplayssport(clyde_drexler,soccer)
[DEBUG] 0.0::athleteplayssport(gerry_cooney,lacrosse)
[DEBUG] 0.0::athleteplayssport(albert_haynesworth,golfing)
[DEBUG] 0.0::athleteplayssport(martin_lapointe,soccer)
[DEBUG] 0.0::athleteplayssport(eric_milton,swimming)
[DEBUG] 0.0::athleteplayssport(warner_madrigal,car_racing)
[DEBUG] 0.0::athleteplayssport(babe_ruth,cycling)
[DEBUG] 0.0::athleteplayssport(jason_jaramillo,boxing)
[DEBUG] 0.0::athleteplayssport(chris_capuano,hockey)
[DEBUG] 0.0::athleteplayssport(chris_heintz,sailing)
[DEBUG] 0.0::athleteplayssport(andrew_cashner,car_racing)
[DEBUG] 0.0::athleteplayssport(brandon_morrow,softball)
[DEBUG] 0.0::athleteplayssport(donell_taylor,hockey)
[DEBUG] 0.0::athleteplayssport(owen_daniels,car_racing)
[DEBUG] 0.0::athleteplayssport(willie_harris,college_baseball)
[DEBUG] 0.0::athleteplayssport(casey_janssen,sailing)
[DEBUG] 0.0::athleteplayssport(bruce_bowen,golfing)
[DEBUG] 0.0::athleteplayssport(brian_stokes,football)
[DEBUG] 0.0::athleteplayssport(jacob_cruz,professional_basketball)
[DEBUG] 0.0::athleteplayssport(dennis_sarfate,golf)
[DEBUG] 0.0::athleteplayssport(jason_wright,wrestling)
[DEBUG] 0.0::athleteplayssport(steve_garvey,professional_football)
[DEBUG] 0.0::athleteplayssport(wilt_chamberlain,lacrosse)
[DEBUG] 0.0::athleteplayssport(jon_leicester,swimming)
[DEBUG] 0.0::athleteplayssport(kyrie_irving,baseball)
[DEBUG] 0.0::athleteplayssport(jeff_fassero,baseball)
[DEBUG] 0.0::athleteplayssport(joselo_diaz,golf)
[DEBUG] 0.0::athleteplayssport(sean_tracey,soccer)
[DEBUG] 0.0::athleteplayssport(raja_bell,professional_basketball)
[DEBUG] 0.0::athleteplayssport(ryan_braun,boxing)
[DEBUG] 0.0::athleteplayssport(brandon_puffer,swimming)
[DEBUG] 0.0::athleteplayssport(omri_casspi,wrestling)
[DEBUG] 0.0::athleteplayssport(phil_kessel,golfing)
[DEBUG] 0.0::athleteplayssport(lee_gardner,lacrosse)
[DEBUG] 0.0::athleteplayssport(denard_span,hockey)
[DEBUG] 0.0::athleteplayssport(mark_recchi,hockey)
[DEBUG] 0.0::athleteplayssport(jason_kubel,professional_football)
[DEBUG] 0.0::athleteplayssport(warren_sapp,basketball)
[DEBUG] 0.0::athleteplayssport(lamont_jordan,cycling)
[DEBUG] 0.0::athleteplayssport(joel_pineiro,sailing)
[DEBUG] 0.0::athleteplayssport(sosa,tennis)
[DEBUG] 0.0::athleteplayssport(carmelo_anthony,professional_basketball)
[DEBUG] 0.0::athleteplayssport(chris_bosh,football)
[DEBUG] 0.0::athleteplayssport(markus_naslund,college_baseball)
[DEBUG] 0.0::athleteplayssport(bubba_smith,lacrosse)
[DEBUG] 0.0::athleteplayssport(ellsbury,swimming)
[DEBUG] 0.0::athleteplayssport(emilio_bonifacio,golf)
[DEBUG] 0.0::athleteplayssport(danny_ferry,football)
[DEBUG] 0.0::athleteplayssport(patrick_roy,lacrosse)
[DEBUG] 0.0::athleteplayssport(hector_mercado,sailing)
[DEBUG] 0.0::athleteplayssport(eli_marrero,sailing)
[DEBUG] 0.0::athleteplayssport(al_horford,wrestling)
[DEBUG] 0.0::athleteplayssport(jamie_walker,tennis)
[DEBUG] 0.0::athleteplayssport(triple_h,lacrosse)
[DEBUG] 0.0::athleteplayssport(ambiorix_burgos,baseball)
[DEBUG] 0.0::athleteplayssport(jordan_crawford,football)
[DEBUG] 0.0::athleteplayssport(ryan_spilborghs,softball)
[DEBUG] 0.0::athleteplayssport(jose_ceda,professional_football)
[DEBUG] 0.0::athleteplayssport(alou,track_and_field)
[DEBUG] 0.0::athleteplayssport(cory_wade,sailing)
[DEBUG] 0.0::athleteplayssport(joel_peralta,college_baseball)
[DEBUG] 0.0::athleteplayssport(nomar_garciaparra,golf)
[DEBUG] 0.0::athleteplayssport(damion_easley,boxing)
[DEBUG] 0.0::athleteplayssport(heath_phillips,golf)
[DEBUG] 0.0::athleteplayssport(eric_davis,tennis)
[DEBUG] 0.0::athleteplayssport(yorvit_torrealba,boxing)
[DEBUG] 0.0::athleteplayssport(berroa,professional_football)
[DEBUG] 0.0::athleteplayssport(jason_shiell,college_baseball)
[DEBUG] 0.0::athleteplayssport(jon_leicester,professional_football)
[DEBUG] 0.0::athleteplayssport(corliss_williamson,sailing)
[DEBUG] 0.0::athleteplayssport(ryan_gomes,football)
[DEBUG] 0.0::athleteplayssport(dennys_reyes,track_and_field)
[DEBUG] 0.0::athleteplayssport(edwin_moses,soccer)
[DEBUG] 0.0::athleteplayssport(kris_draper,baseball)
[DEBUG] 0.0::athleteplayssport(ruud_van_nistelrooy,wrestling)
[DEBUG] 0.0::athleteplayssport(larry_fitzgerald,basketball)
[DEBUG] 0.0::athleteplayssport(chris_lambert,track_and_field)
[DEBUG] 0.0::athleteplayssport(dustin_keller,soccer)
[DEBUG] 0.0::athleteplayssport(francisco_cruceta,golfing)
[DEBUG] 0.0::athleteplayssport(mike_parisi,track_and_field)
[DEBUG] 0.0::athleteplayssport(ryan_rowland_smith,swimming)
[DEBUG] 0.0::athleteplayssport(jacoby_jones,cycling)
[DEBUG] 0.0::athleteplayssport(joel_przybilla,sailing)
[DEBUG] 0.0::athleteplayssport(joe_inglett,golf)
[DEBUG] 0.0::athleteplayssport(kyle_orton,golf)
[DEBUG] 0.0::athleteplayssport(mike_green,basketball)
[DEBUG] 0.0::athleteplayssport(matkovich,soccer)
[DEBUG] 0.0::athleteplayssport(carlos_rosa,boxing)
[DEBUG] 0.0::athleteplayssport(sean_rodriguez,boxing)
[DEBUG] 0.0::athleteplayssport(luis_vizcaino,softball)
[DEBUG] 0.0::athleteplayssport(jose_valentin,golf)
[DEBUG] 0.0::athleteplayssport(virgil_vasquez,car_racing)
[DEBUG] 0.0::athleteplayssport(fausto_carmona,track_and_field)
[DEBUG] 0.0::athleteplayssport(cris_carter,golf)
[DEBUG] 0.0::athleteplayssport(jason_frasor,golfing)
[DEBUG] 0.0::athleteplayssport(j_a_happ,football)
[DEBUG] 0.0::athleteplayssport(joe_bisenius,tennis)
[DEBUG] 0.0::athleteplayssport(shockey,sailing)
[DEBUG] 0.0::athleteplayssport(ryan_spilborghs,professional_basketball)
[DEBUG] 0.0::athleteplayssport(brent_seabrook,college_baseball)
[DEBUG] 0.0::athleteplayssport(gary_panks,golf)
[DEBUG] 0.0::athleteplayssport(marvin_harrison,sailing)
[DEBUG] 0.0::athleteplayssport(bernard_hopkins,golfing)
[DEBUG] 0.0::athleteplayssport(julio_jones,baseball)
[DEBUG] 0.0::athleteplayssport(kris_versteeg,car_racing)
[DEBUG] 0.0::athleteplayssport(seth_smith,swimming)
[DEBUG] 0.0::athleteplayssport(robert_von_hagge,hockey)
[DEBUG] 0.0::athleteplayssport(derrick_williams,baseball)
[DEBUG] 0.0::athleteplayssport(niklas_hagman,baseball)
[DEBUG] 0.0::athleteplayssport(eric_dickerson,swimming)
[DEBUG] 0.0::athleteplayssport(plekanec,college_baseball)
[DEBUG] 0.0::athleteplayssport(brian_cardinal,college_baseball)
[DEBUG] 0.0::athleteplayssport(chad_ocho_cinco,basketball)
[DEBUG] 0.0::athleteplayssport(dirk_hayhurst,football)
[DEBUG] 0.0::athleteplayssport(michael_phelps,college_baseball)
[DEBUG] 0.0::athleteplayssport(eddie_bonine,baseball)
[DEBUG] 0.0::athleteplayssport(cody_ross,golf)
[DEBUG] 0.0::athleteplayssport(ryan_hanigan,softball)
[DEBUG] 0.0::athleteplayssport(nate_davis,football)
[DEBUG] 0.0::athleteplayssport(stan_mikita,hockey)
[DEBUG] 0.0::athleteplayssport(ian_stewart,soccer)
[DEBUG] 0.0::athleteplayssport(williams,soccer)
[DEBUG] 0.0::athleteplayssport(amani_toomer,football)
[DEBUG] 0.0::athleteplayssport(jackie_gayda,softball)
[DEBUG] 0.0::athleteplayssport(brent_dlugach,golf)
[DEBUG] 0.0::athleteplayssport(albert_belle,car_racing)
[DEBUG] 0.0::athleteplayssport(buddy_ryan,baseball)
[DEBUG] 0.0::athleteplayssport(david_justice,golfing)
[DEBUG] 0.0::athleteplayssport(larry_walker,softball)
[DEBUG] 0.0::athleteplayssport(dominik_hasek,sailing)
[DEBUG] 0.0::athleteplayssport(alay_soler,golf)
[DEBUG] 0.0::athleteplayssport(jonathan_stewart,golf)
[DEBUG] 0.0::athleteplayssport(chad_reineke,golfing)
[DEBUG] 0.0::athleteplayssport(casey_fossum,professional_football)
[DEBUG] 0.0::athleteplayssport(chad_bradford,professional_basketball)
[DEBUG] 0.0::athleteplayssport(joe_martinez,professional_football)
[DEBUG] 0.0::athleteplayssport(rene_bourque,sailing)
[DEBUG] 0.0::athleteplayssport(brenden_morrow,swimming)
[DEBUG] 0.0::athleteplayssport(fabricio_oberto,professional_basketball)
[DEBUG] 0.0::athleteplayssport(jason_bartlett,wrestling)
[DEBUG] 0.0::athleteplayssport(artem_anisimov,boxing)
[DEBUG] 0.0::athleteplayssport(kris_letang,tennis)
[DEBUG] 0.0::athleteplayssport(kyle_calder,wrestling)
[DEBUG] 0.0::athleteplayssport(mohamed_massaquoi,wrestling)
[DEBUG] 0.0::athleteplayssport(yunel_escobar,professional_football)
[DEBUG] 0.0::athleteplayssport(michael_owen,sailing)
[DEBUG] 0.0::athleteplayssport(anquan_boldin,swimming)
[DEBUG] 0.0::athleteplayssport(bud_norris,car_racing)
[DEBUG] 0.0::athleteplayssport(demaryius_thomas,softball)
[DEBUG] 0.0::athleteplayssport(deangelo_hall,cycling)
[DEBUG] 0.0::athleteplayssport(lance_berkman,track_and_field)
[DEBUG] 0.0::athleteplayssport(joe_mauer,lacrosse)
[DEBUG] 0.0::athleteplayssport(john_madden,car_racing)
[DEBUG] 0.0::athleteplayssport(ted_robinson,basketball)
[DEBUG] 0.0::athleteplayssport(cory_wade,hockey)
[DEBUG] 0.0::athleteplayssport(gerald_green,softball)
[DEBUG] 0.0::athleteplayssport(juan_salas,baseball)
[DEBUG] 0.0::athleteplayssport(steve_montador,swimming)
[DEBUG] 0.0::athleteplayssport(brent_burns,golfing)
[DEBUG] 0.0::athleteplayssport(francis_beltran,baseball)
[DEBUG] 0.0::athleteplayssport(griffey_jr_,baseball)
[DEBUG] 0.0::athleteplayssport(aardsma,baseball)
[DEBUG] 0.0::athleteplayssport(brandon_medders,car_racing)
[DEBUG] 0.0::athleteplayssport(jeremy_morin,soccer)
[DEBUG] 0.0::athleteplayssport(jeff_salazar,car_racing)
[DEBUG] 0.0::athleteplayssport(jonathan_toews,golf)
[DEBUG] 0.0::athleteplayssport(joe_tinker,golf)
[DEBUG] 0.0::athleteplayssport(ken_ray,golfing)
[DEBUG] 0.0::athleteplayssport(willie_eyre,basketball)
[DEBUG] 0.0::athleteplayssport(bernard_berrian,college_baseball)
[DEBUG] 0.0::athleteplayssport(joe_martinez,swimming)
[DEBUG] 0.0::athleteplayssport(calvin_booth,softball)
[DEBUG] 0.0::athleteplayssport(larry_foote,college_baseball)
[DEBUG] 0.0::athleteplayssport(marco_belinelli,football)
[DEBUG] 0.0::athleteplayssport(damian_williams,professional_basketball)
[DEBUG] 0.0::athleteplayssport(jerious_norwood,boxing)
[DEBUG] 0.0::athleteplayssport(cory_doyne,golfing)
[DEBUG] 0.0::athleteplayssport(jamie_walker,golfing)
[DEBUG] 0.0::athleteplayssport(jimmy_gobble,golfing)
[DEBUG] 0.0::athleteplayssport(clyde_johnston,golf)
[DEBUG] 0.0::athleteplayssport(brandon_league,sailing)
[DEBUG] 0.0::athleteplayssport(brent_seabrook,professional_football)
[DEBUG] 0.0::athleteplayssport(jason_waddell,boxing)
[DEBUG] 0.0::athleteplayssport(randy_moss,swimming)
[DEBUG] 0.0::athleteplayssport(francesco_totti,track_and_field)
[DEBUG] 0.0::athleteplayssport(caron_butler,car_racing)
[DEBUG] 0.0::athleteplayssport(tiki_barber,golf)
[DEBUG] 0.0::athleteplayssport(colin_montgomerie,track_and_field)
[DEBUG] 0.0::athleteplayssport(dorell_wright,lacrosse)
[DEBUG] 0.0::athleteplayssport(jesse_foppert,professional_basketball)
[DEBUG] 0.0::athleteplayssport(petr_sykora,golf)
[DEBUG] 0.0::athleteplayssport(ersan_ilyasova,football)
[DEBUG] 0.0::athleteplayssport(kevin_seraphin,swimming)
[DEBUG] 0.0::athleteplayssport(jay_cutler,lacrosse)
[DEBUG] 0.0::athleteplayssport(davis_romero,track_and_field)
[DEBUG] 0.0::athleteplayssport(darcy_tucker,football)
[DEBUG] 0.0::athleteplayssport(keith_bogans,golfing)
[DEBUG] 0.0::athleteplayssport(marshawn_lynch,soccer)
[DEBUG] 0.0::athleteplayssport(jay_marshall,basketball)
[DEBUG] 0.0::athleteplayssport(glavine,tennis)
[DEBUG] 0.0::athleteplayssport(cody_ross,football)
[DEBUG] 0.0::athleteplayssport(carlos_rosa,basketball)
[DEBUG] 0.0::athleteplayssport(mewelde_moore,track_and_field)
[DEBUG] 0.0::athleteplayssport(giancarlo_stanton,softball)
[DEBUG] 0.0::athleteplayssport(pedro_astacio,golf)
[DEBUG] 0.0::athleteplayssport(jake_mcgee,soccer)
[DEBUG] 0.0::athleteplayssport(pierre_garcon,professional_basketball)
[DEBUG] 0.0::athleteplayssport(eric_patterson,sailing)
[DEBUG] 0.0::athleteplayssport(jesse_english,golf)
[DEBUG] 0.0::athleteplayssport(mike_parisi,college_baseball)
[DEBUG] 0.0::athleteplayssport(tiger_woods,car_racing)
[DEBUG] 0.0::athleteplayssport(matt_hensley,boxing)
[DEBUG] 0.0::athleteplayssport(alfredo_amezaga,track_and_field)
[DEBUG] 0.0::athleteplayssport(daniel_descalso,swimming)
[DEBUG] 0.0::athleteplayssport(john_duddy,professional_football)
[DEBUG] 0.0::athleteplayssport(gload,wrestling)
[DEBUG] 0.0::athleteplayssport(morris_peterson,sailing)
[DEBUG] 0.0::athleteplayssport(byron_nelson,wrestling)
[DEBUG] 0.0::athleteplayssport(derek_stepan,football)
[DEBUG] 0.0::athleteplayssport(dwayne_jarrett,swimming)
[DEBUG] 0.0::athleteplayssport(jeremy_shockey,hockey)
[DEBUG] 0.0::athleteplayssport(jerry_stackhouse,professional_basketball)
[DEBUG] 0.0::athleteplayssport(seve_ballesteros,track_and_field)
[DEBUG] 0.0::athleteplayssport(scott_richmond,football)
[DEBUG] 0.0::athleteplayssport(qb_matt_ryan,boxing)
[DEBUG] 0.0::athleteplayssport(dwayne_bowe,golf)
[DEBUG] 0.0::athleteplayssport(chris_chambers,boxing)
[DEBUG] 0.0::athleteplayssport(antonio_mcdyess,car_racing)
[DEBUG] 0.0::athleteplayssport(matt_carroll,professional_football)
[DEBUG] 0.0::athleteplayssport(bill_russell,basketball)
[DEBUG] 0.0::athleteplayssport(damien_wilkins,professional_basketball)
[DEBUG] 0.0::athleteplayssport(bob_cupp,wrestling)
[DEBUG] 0.0::athleteplayssport(nick_palmieri,car_racing)
[DEBUG] 0.0::athleteplayssport(clemmensen,boxing)
[DEBUG] 0.0::athleteplayssport(larry_bigbie,lacrosse)
[DEBUG] 0.0::athleteplayssport(robyn_regehr,golf)
[DEBUG] 0.0::athleteplayssport(raul_mondesi,baseball)
[DEBUG] 0.0::athleteplayssport(kobe_bryant,golf)
[DEBUG] 0.0::athleteplayssport(leon_powe,swimming)
[DEBUG] 0.0::athleteplayssport(jair_jurrjens,boxing)
[DEBUG] 0.0::athleteplayssport(ryan_perrilloux,golf)
[DEBUG] 0.0::athleteplayssport(edward_mujica,lacrosse)
[DEBUG] 0.0::athleteplayssport(joey_harrington,football)
[DEBUG] 0.0::athleteplayssport(j_j__yeley,football)
[DEBUG] 0.0::athleteplayssport(kevin_correia,wrestling)
[DEBUG] 0.0::athleteplayssport(zito,soccer)
[DEBUG] 0.0::athleteplayssport(josh_butler,lacrosse)
[DEBUG] 0.0::athleteplayssport(felix_doubront,golf)
[DEBUG] 0.0::athleteplayssport(steve_yzerman,wrestling)
[DEBUG] 0.0::athleteplayssport(dom_dimaggio,boxing)
[DEBUG] 0.0::athleteplayssport(guillermo_mota,sailing)
[DEBUG] 0.0::athleteplayssport(cuttino_mobley,golfing)
[DEBUG] 0.0::athleteplayssport(yorman_bazardo,tennis)
[DEBUG] 0.0::athleteplayssport(kyle_lowry,sailing)
[DEBUG] 0.0::athleteplayssport(brandon_jacobs,basketball)
[DEBUG] 0.0::athleteplayssport(halak,football)
[DEBUG] 0.0::athleteplayssport(carlos_rosa,tennis)
[DEBUG] 0.0::athleteplayssport(jumaine_jones,college_baseball)
[DEBUG] 0.0::athleteplayssport(jesse_english,lacrosse)
[DEBUG] 0.0::athleteplayssport(robert_trent_jones_sr_,golfing)
[DEBUG] 0.0::athleteplayssport(eric_gagne,track_and_field)
[DEBUG] 0.0::athleteplayssport(matt_macri,swimming)
[DEBUG] 0.0::athleteplayssport(ilya_bryzgalov,football)
[DEBUG] 0.0::athleteplayssport(scott_niedermayer,softball)
[DEBUG] 0.0::athleteplayssport(francesco_totti,softball)
[DEBUG] 0.0::athleteplayssport(landon_donovan,sailing)
[DEBUG] 0.0::athleteplayssport(meche,basketball)
[DEBUG] 0.0::athleteplayssport(anthony_lerew,football)
[DEBUG] 0.0::athleteplayssport(rasheed_wallace,softball)
[DEBUG] 0.0::athleteplayssport(kleiza,golfing)
[DEBUG] 0.0::athleteplayssport(andrew_goudelock,tennis)
[DEBUG] 0.0::athleteplayssport(len_dawson,tennis)
[DEBUG] 0.0::athleteplayssport(miller,soccer)
[DEBUG] 0.0::athleteplayssport(michael_cuddyer,cycling)
[DEBUG] 0.0::athleteplayssport(rick_helling,college_baseball)
[DEBUG] 0.0::athleteplayssport(tuomo_ruutu,football)
[DEBUG] 0.0::athleteplayssport(boris_diaw,swimming)
[DEBUG] 0.0::athleteplayssport(josh_johnson,sailing)
[DEBUG] 0.0::athleteplayssport(cliff_politte,football)
[DEBUG] 0.0::athleteplayssport(hinrich,softball)
[DEBUG] 0.0::athleteplayssport(lawrence_taylor,professional_basketball)
[DEBUG] 0.0::athleteplayssport(nenad_krstic,lacrosse)
[DEBUG] 0.0::athleteplayssport(kyrie_irving,college_baseball)
[DEBUG] 0.0::athleteplayssport(marwin_vega,swimming)
[DEBUG] 0.0::athleteplayssport(andrei_kostitsyn,track_and_field)
[DEBUG] 0.0::athleteplayssport(scott_kazmir,basketball)
[DEBUG] 0.0::athleteplayssport(hector_rondon,wrestling)
[DEBUG] 0.0::athleteplayssport(jeff_green,track_and_field)
[DEBUG] 0.0::athleteplayssport(sultan_ibragimov,soccer)
[DEBUG] 0.0::athleteplayssport(daniel_davidson,baseball)
[DEBUG] 0.0::athleteplayssport(john_madden,sailing)
[DEBUG] 0.0::athleteplayssport(lionel_messi,hockey)
[DEBUG] 0.0::athleteplayssport(jose_arredondo,professional_football)
[DEBUG] 0.0::athleteplayssport(manu_ginobili,sailing)
[DEBUG] 0.0::athleteplayssport(nate_washington,football)
[DEBUG] 0.0::athleteplayssport(brian_fuentes,professional_basketball)
[DEBUG] 0.0::athleteplayssport(keith_van_horn,car_racing)
[DEBUG] 0.0::athleteplayssport(bobby_livingston,sailing)
[DEBUG] 0.0::athleteplayssport(ryan_babel,lacrosse)
[DEBUG] 0.0::athleteplayssport(mel_ott,professional_basketball)
[DEBUG] 0.0::athleteplayssport(stephon_marbury,basketball)
[DEBUG] 0.0::athleteplayssport(cesar_valdez,professional_football)
[DEBUG] 0.0::athleteplayssport(tex,car_racing)
[DEBUG] 0.0::athleteplayssport(dario_veras,car_racing)
[DEBUG] 0.0::athleteplayssport(al_zikorus,football)
[DEBUG] 0.0::athleteplayssport(brian_moran,swimming)
[DEBUG] 0.0::athleteplayssport(billy_traber,lacrosse)
[DEBUG] 0.0::athleteplayssport(carlos_martinez,college_baseball)
[DEBUG] 0.0::athleteplayssport(troy_murphy,track_and_field)
[DEBUG] 0.0::athleteplayssport(joey_harrington,professional_football)
[DEBUG] 0.0::athleteplayssport(marko_jaric,golf)
[DEBUG] 0.0::athleteplayssport(derrick_turnbow,car_racing)
[DEBUG] 0.0::athleteplayssport(ken_ray,golf)
[DEBUG] 0.0::athleteplayssport(t_j__houshmandzadeh,lacrosse)
[DEBUG] 0.0::athleteplayssport(steve_garvey,lacrosse)
[DEBUG] 0.0::athleteplayssport(alay_soler,boxing)
[DEBUG] 0.0::athleteplayssport(miguel_montero,football)
[DEBUG] 0.0::athleteplayssport(lamont_peterson,lacrosse)
[DEBUG] 0.0::athleteplayssport(tiago_splitter,basketball)
[DEBUG] 0.0::athleteplayssport(mitch_holmberg,college_baseball)
[DEBUG] 0.0::athleteplayssport(sidney_crosby,baseball)
[DEBUG] 0.0::athleteplayssport(dick_phelps,professional_basketball)
[DEBUG] 0.0::athleteplayssport(jerry_blevins,college_baseball)
[DEBUG] 0.0::athleteplayssport(jason_hirsh,baseball)
[DEBUG] 0.0::athleteplayssport(eric_chavez,golf)
[DEBUG] 0.0::athleteplayssport(james_hardy,track_and_field)
[DEBUG] 0.0::athleteplayssport(anthony_grundy,college_baseball)
[DEBUG] 0.0::athleteplayssport(patrik_elias,lacrosse)
[DEBUG] 0.0::athleteplayssport(cory_schneider,softball)
[DEBUG] 0.0::athleteplayssport(gary_neville,football)
[DEBUG] 0.0::athleteplayssport(pippen,softball)
[DEBUG] 0.0::athleteplayssport(ron_garl,professional_football)
[DEBUG] 0.0::athleteplayssport(john_wall,track_and_field)
[DEBUG] 0.0::athleteplayssport(bill_pulsipher,softball)
[DEBUG] 0.0::athleteplayssport(daniel_ray_herrera,cycling)
[DEBUG] 0.0::athleteplayssport(sun_yue,tennis)
[DEBUG] 0.0::athleteplayssport(valtteri_filppula,professional_basketball)
[DEBUG] 0.0::athleteplayssport(charlie_bell,softball)
[DEBUG] 0.0::athleteplayssport(daniel_hudson,lacrosse)
[DEBUG] 0.0::athleteplayssport(cesar_carrillo,softball)
[DEBUG] 0.0::athleteplayssport(ben_wallace,sailing)
[DEBUG] 0.0::athleteplayssport(daniel_moskos,boxing)
[DEBUG] 0.0::athleteplayssport(jumaine_jones,wrestling)
[DEBUG] 0.0::athleteplayssport(graham_cooke,softball)
[DEBUG] 0.0::athleteplayssport(jim_leyritz,professional_football)
[DEBUG] 0.0::athleteplayssport(carlos_martinez,sailing)
[DEBUG] 0.0::athleteplayssport(troy_brouwer,swimming)
[DEBUG] 0.0::athleteplayssport(jon_rauch,softball)
[DEBUG] 0.0::athleteplayssport(chad_qualls,cycling)
[DEBUG] 0.0::athleteplayssport(mark_difelice,track_and_field)
[DEBUG] 0.0::athleteplayssport(adonal_foyle,track_and_field)
[DEBUG] 0.0::athleteplayssport(emmitt_smith,professional_basketball)
[DEBUG] 0.0::athleteplayssport(federer,basketball)
[DEBUG] 0.0::athleteplayssport(charles_woodson,baseball)
[DEBUG] 0.0::athleteplayssport(jamie_moyer,wrestling)
[DEBUG] 0.0::athleteplayssport(shawn_estes,cycling)
[DEBUG] 0.0::athleteplayssport(michael_doleac,boxing)
[DEBUG] 0.0::athleteplayssport(joe_beimel,swimming)
[DEBUG] 0.0::athleteplayssport(tsuyoshi_nishioka,football)
[DEBUG] 0.0::athleteplayssport(patrick_kane,cycling)
[DEBUG] 0.0::athleteplayssport(kurt_birkins,car_racing)
[DEBUG] 0.0::athleteplayssport(ryan_franklin,college_baseball)
[DEBUG] 0.0::athleteplayssport(brian_shackelford,swimming)
[DEBUG] 0.0::athleteplayssport(brees,sailing)
[DEBUG] 0.0::athleteplayssport(solomon_jones,wrestling)
[DEBUG] 0.0::athleteplayssport(pierre_garcon,golf)
[DEBUG] 0.0::athleteplayssport(jose_veras,cycling)
[DEBUG] 0.0::athleteplayssport(desmond_muirhead,basketball)
[DEBUG] 0.0::athleteplayssport(priest_holmes,hockey)
[DEBUG] 0.0::athleteplayssport(richard_hamilton,tennis)
[DEBUG] 0.0::athleteplayssport(alejandro_deaza,tennis)
[DEBUG] 0.0::athleteplayssport(joe_nelson,sailing)
[DEBUG] 0.0::athleteplayssport(al_jefferson,sailing)
[DEBUG] 0.0::athleteplayssport(allan_ray,sailing)
[DEBUG] 0.0::athleteplayssport(manny_malhotra,golfing)
[DEBUG] 0.0::athleteplayssport(elvis_andrus,car_racing)
[DEBUG] 0.0::athleteplayssport(cam_janssen,sailing)
[DEBUG] 0.0::athleteplayssport(brian_bruney,wrestling)
[DEBUG] 0.0::athleteplayssport(josh_fields,boxing)
[DEBUG] 0.0::athleteplayssport(jurickson_profar,swimming)
[DEBUG] 0.0::athleteplayssport(brent_sopel,baseball)
[DEBUG] 0.0::athleteplayssport(eude_brito,basketball)
[DEBUG] 0.0::athleteplayssport(jim_courier,soccer)
[DEBUG] 0.0::athleteplayssport(brandon_puffer,golf)
[DEBUG] 0.0::athleteplayssport(martin_brodeur,golfing)
[DEBUG] 0.0::athleteplayssport(lindsey_hunter,wrestling)
[DEBUG] 0.0::athleteplayssport(ronaldo,softball)
[DEBUG] 0.0::athleteplayssport(brian_buscher,cycling)
[DEBUG] 0.0::athleteplayssport(john_buck,wrestling)
[DEBUG] 0.0::athleteplayssport(tom_jackson,professional_basketball)
[DEBUG] 0.0::athleteplayssport(tim_wood,softball)
[DEBUG] 0.0::athleteplayssport(rudy_fernandez,baseball)
[DEBUG] 0.0::athleteplayssport(gary_majewski,cycling)
[DEBUG] 0.0::athleteplayssport(randy_winn,track_and_field)
[DEBUG] 0.0::athleteplayssport(jesus_delgado,boxing)
[DEBUG] 0.0::athleteplayssport(delonte_west,basketball)
[DEBUG] 0.0::athleteplayssport(tommy_maddox,hockey)
[DEBUG] 0.0::athleteplayssport(lavarus_giles,college_baseball)
[DEBUG] 0.0::athleteplayssport(eric_piatkowski,car_racing)
[DEBUG] 0.0::athleteplayssport(tomas_kaberle,golfing)
[DEBUG] 0.0::athleteplayssport(brad_smith,swimming)
[DEBUG] 0.0::athleteplayssport(steve_mason,boxing)
[DEBUG] 0.0::athleteplayssport(dan_maples,college_baseball)
[DEBUG] 0.0::athleteplayssport(henrik_lundqvist,college_baseball)
[DEBUG] 0.0::athleteplayssport(ville_peltonen,boxing)
[DEBUG] 0.0::athleteplayssport(joe_horn,sailing)
[DEBUG] 0.0::athleteplayssport(jeff_francoeur001,wrestling)
[DEBUG] 0.0::athleteplayssport(edgar_gonzalez,basketball)
[DEBUG] 0.0::athleteplayssport(jamal_mayers,cycling)
[DEBUG] 0.0::athleteplayssport(daisuke_matsuzaka,hockey)
[DEBUG] 0.0::athleteplayssport(devern_hansack,softball)
[DEBUG] 0.0::athleteplayssport(al_zikorus,wrestling)
[DEBUG] 0.0::athleteplayssport(landon_donovan,basketball)
[DEBUG] 0.0::athleteplayssport(mason_raymond,professional_football)
[DEBUG] 0.0::athleteplayssport(steve_slaton,golf)
[DEBUG] 0.0::athleteplayssport(clevelan_santeliz,boxing)
[DEBUG] 0.0::athleteplayssport(sean_green,softball)
[DEBUG] 0.0::athleteplayssport(john_grabow,hockey)
[DEBUG] 0.0::athleteplayssport(crede,baseball)
[DEBUG] 0.0::athleteplayssport(john_gaub,car_racing)
[DEBUG] 0.0::athleteplayssport(jarome_iginla,swimming)
[DEBUG] 0.0::athleteplayssport(kobe_bryant,wrestling)
[DEBUG] 0.0::athleteplayssport(shaq,football)
[DEBUG] 0.0::athleteplayssport(danilo_gallinari,lacrosse)
[DEBUG] 0.0::athleteplayssport(ty_taubenheim,professional_football)
[DEBUG] 0.0::athleteplayssport(duncan_keith,soccer)
[DEBUG] 0.0::athleteplayssport(terry_glenn,baseball)
[DEBUG] 0.0::athleteplayssport(jay_bouwmeester,softball)
[DEBUG] 0.0::athleteplayssport(juan_pablo_montoya,softball)
[DEBUG] 0.0::athleteplayssport(dustin_byfuglien,hockey)
[DEBUG] 0.0::athleteplayssport(jeff_weaver,track_and_field)
[DEBUG] 0.0::athleteplayssport(jim_brower,sailing)
[DEBUG] 0.0::athleteplayssport(justin_masterson,baseball)
[DEBUG] 0.0::athleteplayssport(john_halama,baseball)
[DEBUG] 0.0::athleteplayssport(kirk_gibson,wrestling)
[DEBUG] 0.0::athleteplayssport(max_pacioretty,professional_football)
[DEBUG] 0.0::athleteplayssport(bobby_ryan,cycling)
[DEBUG] 0.0::athleteplayssport(koji_uehara,football)
[DEBUG] 0.0::athleteplayssport(victor_martinez,golfing)
[DEBUG] 0.0::athleteplayssport(dr__michael_hurdzan,wrestling)
[DEBUG] 0.0::athleteplayssport(al_montoya,car_racing)
[DEBUG] 0.0::athleteplayssport(eric_piatkowski,track_and_field)
[DEBUG] 0.0::athleteplayssport(david_west,softball)
[DEBUG] 0.0::athleteplayssport(matt_desalvo,softball)
[DEBUG] 0.0::athleteplayssport(taylor_twellman,car_racing)
[DEBUG] 0.0::athleteplayssport(ramon_martinez,car_racing)
[DEBUG] 0.0::athleteplayssport(tony_womack,professional_basketball)
[DEBUG] 0.0::athleteplayssport(jacob_bell,baseball)
[DEBUG] 0.0::athleteplayssport(rob_blake,professional_football)
[DEBUG] 0.0::athleteplayssport(mathieu_garon,golf)
[DEBUG] 0.0::athleteplayssport(david_riske,professional_football)
[DEBUG] 0.0::athleteplayssport(peavy,wrestling)
[DEBUG] 0.0::athleteplayssport(brian_sanches,golf)
[DEBUG] 0.0::athleteplayssport(joey_porter,softball)
[DEBUG] 0.0::athleteplayssport(denny_neagle,hockey)
[DEBUG] 0.0::athleteplayssport(brian_reith,boxing)
[DEBUG] 0.0::athleteplayssport(jeff_baker,swimming)
[DEBUG] 0.0::athleteplayssport(jed_lowrie,golf)
[DEBUG] 0.0::athleteplayssport(jamie_vermilyea,cycling)
[DEBUG] 0.0::athleteplayssport(goose_gossage,sailing)
[DEBUG] 0.0::athleteplayssport(cedrick_bowers,soccer)
[DEBUG] 0.0::athleteplayssport(jason_collins,golfing)
[DEBUG] 0.0::athleteplayssport(martez_wilson,basketball)
[DEBUG] 0.0::athleteplayssport(brendan_ryan,hockey)
[DEBUG] 0.0::athleteplayssport(joba_chamberlain,college_baseball)
[DEBUG] 0.0::athleteplayssport(manny_harris,football)
[DEBUG] 0.0::athleteplayssport(kirk_hinrich,football)
[DEBUG] 0.0::athleteplayssport(joba_chamberlain,soccer)
[DEBUG] 0.0::athleteplayssport(peter_matkovitch,soccer)
[DEBUG] 0.0::athleteplayssport(garrett_atkins,car_racing)
[DEBUG] 0.0::athleteplayssport(chris_withrow,football)
[DEBUG] 0.0::athleteplayssport(jason_windsor,lacrosse)
[DEBUG] 0.0::athleteplayssport(jose_marte,professional_football)
[DEBUG] 0.0::athleteplayssport(anderson_hernandez,wrestling)
[DEBUG] 0.0::athleteplayssport(ricky_nolasco,football)
[DEBUG] 0.0::athleteplayssport(chris_henry,wrestling)
[DEBUG] 0.0::athleteplayssport(ruud_van_nistelrooy,college_baseball)
[DEBUG] 0.0::athleteplayssport(mcgahee,tennis)
[DEBUG] 0.0::athleteplayssport(carlos_martinez,swimming)
[DEBUG] 0.0::athleteplayssport(doug_brocail,soccer)
[DEBUG] 0.0::athleteplayssport(mathieu_perreault,football)
[DEBUG] 0.0::athleteplayssport(ian_stewart,golf)
[DEBUG] 0.0::athleteplayssport(harrison_barnes,golf)
[DEBUG] 0.0::athleteplayssport(francisley_bueno,basketball)
[DEBUG] 0.0::athleteplayssport(alfredo_amezaga,soccer)
[DEBUG] 0.0::athleteplayssport(cliff_bartosh,golfing)
[DEBUG] 0.0::athleteplayssport(rich_aurilia,wrestling)
[DEBUG] 0.0::athleteplayssport(ryan_rowland_smith,hockey)
[DEBUG] 0.0::athleteplayssport(greg_burke,hockey)
[DEBUG] 0.0::athleteplayssport(tom_doak,swimming)
[DEBUG] 0.0::athleteplayssport(seneca_wallace,cycling)
[DEBUG] 0.0::athleteplayssport(james_blake,football)
[DEBUG] 0.0::athleteplayssport(luis_perdomo,basketball)
[DEBUG] 0.0::athleteplayssport(kyle_mcclellan,sailing)
[DEBUG] 0.0::athleteplayssport(drew_carpenter,boxing)
[DEBUG] 0.0::athleteplayssport(erik_cole,tennis)
[DEBUG] 0.0::athleteplayssport(roy_corcoran,football)
[DEBUG] 0.0::athleteplayssport(marc_andre_fleury,professional_football)
[DEBUG] 0.0::athleteplayssport(gasol,car_racing)
[DEBUG] 0.0::athleteplayssport(shin_soo_choo,wrestling)
[DEBUG] 0.0::athleteplayssport(matt_desalvo,cycling)
[DEBUG] 0.0::athleteplayssport(bart_starr,tennis)
[DEBUG] 0.0::athleteplayssport(dennis_eckersley,soccer)
[DEBUG] 0.0::athleteplayssport(drew_gooden,hockey)
[DEBUG] 0.0::athleteplayssport(matt_flynn,soccer)
[DEBUG] 0.0::athleteplayssport(damon_jones,golfing)
[DEBUG] 0.0::athleteplayssport(radhames_liz,tennis)
[DEBUG] 0.0::athleteplayssport(danny_green,boxing)
[DEBUG] 0.0::athleteplayssport(cal_ripken,soccer)
[DEBUG] 0.0::athleteplayssport(terry_glenn,boxing)
[DEBUG] 0.0::athleteplayssport(erick_dampier,softball)
[DEBUG] 0.0::athleteplayssport(jeff_karstens,cycling)
[DEBUG] 0.0::athleteplayssport(brian_anderson,basketball)
[DEBUG] 0.0::athleteplayssport(frerotte,professional_basketball)
[DEBUG] 0.0::athleteplayssport(courtney_lee,cycling)
[DEBUG] 0.0::athleteplayssport(wladimir_balentien,golf)
[DEBUG] 0.0::athleteplayssport(anthony_smith,hockey)
[DEBUG] 0.0::athleteplayssport(brandon_saine,track_and_field)
[DEBUG] 0.0::athleteplayssport(ronnie_brewer,golfing)
[DEBUG] 0.0::athleteplayssport(tyler_hansbrough,basketball)
[DEBUG] 0.0::athleteplayssport(justin_lehr,college_baseball)
[DEBUG] 0.0::athleteplayssport(john_lackey,football)
[DEBUG] 0.0::athleteplayssport(glavine,boxing)
[DEBUG] 0.0::athleteplayssport(nate_schierholtz,tennis)
[DEBUG] 0.0::athleteplayssport(miguel_cairo,soccer)
[DEBUG] 0.0::athleteplayssport(mark_melancon,professional_basketball)
[DEBUG] 0.0::athleteplayssport(tim_hardaway,hockey)
[DEBUG] 0.0::athleteplayssport(danny_fortson,softball)
[DEBUG] 0.0::athleteplayssport(wilt_chamberlain,soccer)
[DEBUG] 0.0::athleteplayssport(brady_quinn,hockey)
[DEBUG] 0.0::athleteplayssport(omar_quintanilla,professional_basketball)
[DEBUG] 0.0::athleteplayssport(josh_barfield,sailing)
[DEBUG] 0.0::athleteplayssport(bryan_bickell,boxing)
[DEBUG] 0.0::athleteplayssport(eric_bledsoe,wrestling)
[DEBUG] 0.0::athleteplayssport(brandon_jennings,boxing)
[DEBUG] 0.0::athleteplayssport(tyronn_lue,soccer)
[DEBUG] 0.0::athleteplayssport(terrell_suggs,lacrosse)
[DEBUG] 0.0::athleteplayssport(cory_sullivan,college_baseball)
[DEBUG] 0.0::athleteplayssport(jeremy_guthrie,hockey)
[DEBUG] 0.0::athleteplayssport(ian_snell,golfing)
[DEBUG] 0.0::athleteplayssport(david_lee,track_and_field)
[DEBUG] 0.0::athleteplayssport(carlos_silva,softball)
[DEBUG] 0.0::athleteplayssport(gload,golf)
[DEBUG] 0.0::athleteplayssport(jerry_sands,car_racing)
[DEBUG] 0.0::athleteplayssport(marc_mariani,boxing)
[DEBUG] 0.0::athleteplayssport(reggie_wayne,wrestling)
[DEBUG] 0.0::athleteplayssport(kevin_mcreynolds,boxing)
[DEBUG] 0.0::athleteplayssport(jon_huber,track_and_field)
[DEBUG] 0.0::athleteplayssport(rb_willie_parker,professional_basketball)
[DEBUG] 0.0::athleteplayssport(burnett,baseball)
[DEBUG] 0.0::athleteplayssport(guillaume_latendresse,car_racing)
[DEBUG] 0.0::athleteplayssport(ryan_giggs,golf)
[DEBUG] 0.0::athleteplayssport(p_j__axelsson,golf)
[DEBUG] 0.0::athleteplayssport(drew_anderson,track_and_field)
[DEBUG] 0.0::athleteplayssport(joe_haden,soccer)
[DEBUG] 0.0::athleteplayssport(michel_goulet,cycling)
[DEBUG] 0.0::athleteplayssport(jason_hirsh,football)
[DEBUG] 0.0::athleteplayssport(jesse_english,football)
[DEBUG] 0.0::athleteplayssport(sidney_rice,track_and_field)
[DEBUG] 0.0::athleteplayssport(ron_garl,professional_basketball)
[DEBUG] 0.0::athleteplayssport(dave_bolland,college_baseball)
[DEBUG] 0.0::athleteplayssport(chris_phillips,soccer)
[DEBUG] 0.0::athleteplayssport(justin_hampson,golf)
[DEBUG] 0.0::athleteplayssport(william_buford,golfing)
[DEBUG] 0.0::athleteplayssport(dustin_richardson,tennis)
[DEBUG] 0.0::athleteplayssport(howie_clark,cycling)
[DEBUG] 0.0::athleteplayssport(joseph_addai,golfing)
[DEBUG] 0.0::athleteplayssport(greg_biffle,professional_football)
[DEBUG] 0.0::athleteplayssport(rob_mackowiak,professional_football)
[DEBUG] 0.0::athleteplayssport(baldelli,professional_football)
[DEBUG] 0.0::athleteplayssport(aj_burnett,sailing)
[DEBUG] 0.0::athleteplayssport(drew_willy,baseball)
[DEBUG] 0.0::athleteplayssport(daniel_barone,boxing)
[DEBUG] 0.0::athleteplayssport(trey_burke,professional_basketball)
[DEBUG] 0.0::athleteplayssport(erik_morales,professional_football)
[DEBUG] 0.0::athleteplayssport(carlos_gonzalez,sailing)
[DEBUG] 0.0::athleteplayssport(dermarr_johnson,track_and_field)
[DEBUG] 0.0::athleteplayssport(marino_salas,tennis)
[DEBUG] 0.0::athleteplayssport(tomas_kaberle,basketball)
[DEBUG] 0.0::athleteplayssport(chris_schroder,professional_basketball)
[DEBUG] 0.0::athleteplayssport(frolov,baseball)
[DEBUG] 0.0::athleteplayssport(jamaal_tinsley,football)
[DEBUG] 0.0::athleteplayssport(eric_snow,professional_football)
[DEBUG] 0.0::athleteplayssport(jose_theodore,college_baseball)
[DEBUG] 0.0::athleteplayssport(wesley_wright,professional_football)
[DEBUG] 0.0::athleteplayssport(brad_thomas,softball)
[DEBUG] 0.0::athleteplayssport(glavine,track_and_field)
[DEBUG] 0.0::athleteplayssport(duhon,basketball)
[DEBUG] 0.0::athleteplayssport(joey_harrington,basketball)
[DEBUG] 0.0::athleteplayssport(rosenfels,golfing)
[DEBUG] 0.0::athleteplayssport(andre_brown,cycling)
[DEBUG] 0.0::athleteplayssport(bryan_little,college_baseball)
[DEBUG] 0.0::athleteplayssport(jerome_james,basketball)
[DEBUG] 0.0::athleteplayssport(al_horford,basketball)
[DEBUG] 0.0::athleteplayssport(jacob_turner,baseball)
[DEBUG] 0.0::athleteplayssport(tommy_hunter,hockey)
[DEBUG] 0.0::athleteplayssport(coco_crisp,hockey)
[DEBUG] 0.0::athleteplayssport(doug_carrick,track_and_field)
[DEBUG] 0.0::athleteplayssport(david_justice,sailing)
[DEBUG] 0.0::athleteplayssport(selanne,lacrosse)
[DEBUG] 0.0::athleteplayssport(etan_thomas,basketball)
[DEBUG] 0.0::athleteplayssport(andre_owens,football)
[DEBUG] 0.0::athleteplayssport(nomar_garciaparra,professional_basketball)
[DEBUG] 0.0::athleteplayssport(freddy_adu,professional_football)
[DEBUG] 0.0::athleteplayssport(charlie_bell,tennis)
[DEBUG] 0.0::athleteplayssport(maddux,wrestling)
[DEBUG] 0.0::athleteplayssport(john_halama,football)
[DEBUG] 0.0::athleteplayssport(belfour,professional_football)
[DEBUG] 0.0::athleteplayssport(evander_holyfield,lacrosse)
[DEBUG] 0.0::athleteplayssport(jose_mijares,boxing)
[DEBUG] 0.0::athleteplayssport(shannon_stewart,hockey)
[DEBUG] 0.0::athleteplayssport(jeff_lacy,professional_football)
[DEBUG] 0.0::athleteplayssport(conor_jackson,swimming)
[DEBUG] 0.0::athleteplayssport(eddie_hackett,soccer)
[DEBUG] 0.0::athleteplayssport(zach_randolph,wrestling)
[DEBUG] 0.0::athleteplayssport(trevor_bell,sailing)
[DEBUG] 0.0::athleteplayssport(brad_hennessey,softball)
[DEBUG] 0.0::athleteplayssport(gregor_blanco,football)
[DEBUG] 0.0::athleteplayssport(todd_coffey,soccer)
[DEBUG] 0.0::athleteplayssport(nerio_rodriguez,college_baseball)
[DEBUG] 0.0::athleteplayssport(tony_scheffler,track_and_field)
[DEBUG] 0.0::athleteplayssport(greg_burke,sailing)
[DEBUG] 0.0::athleteplayssport(tayshaun_prince,tennis)
[DEBUG] 0.0::athleteplayssport(scott_strickland,professional_basketball)
[DEBUG] 0.0::athleteplayssport(dan_giese,tennis)
[DEBUG] 0.0::athleteplayssport(jim_plunkett,baseball)
[DEBUG] 0.0::athleteplayssport(james_augustine,professional_basketball)
[DEBUG] 0.0::athleteplayssport(robb_nen,swimming)
[DEBUG] 0.0::athleteplayssport(pedro_astacio,professional_basketball)
[DEBUG] 0.0::athleteplayssport(gordon_lewis,golf)
[DEBUG] 0.0::athleteplayssport(jeff_keppinger,boxing)
[DEBUG] 0.0::athleteplayssport(darrell_rasner,boxing)
[DEBUG] 0.0::athleteplayssport(darren_sproles,basketball)
[DEBUG] 0.0::athleteplayssport(brian_rogers,softball)
[DEBUG] 0.0::athleteplayssport(d_j__augustin,hockey)
[DEBUG] 0.0::athleteplayssport(jerry_rice,basketball)
[DEBUG] 0.0::athleteplayssport(donnie_veal,lacrosse)
[DEBUG] 0.0::athleteplayssport(angel_miranda,professional_basketball)
[DEBUG] 0.0::athleteplayssport(michel_gayon,professional_football)
[DEBUG] 0.0::athleteplayssport(mark_mcgwire_and_sammy_sosa,golfing)
[DEBUG] 0.0::athleteplayssport(robert_cupp,cycling)
[DEBUG] 0.0::athleteplayssport(vinny_castilla,golf)
[DEBUG] 0.0::athleteplayssport(brett_myers,boxing)
[DEBUG] 0.0::athleteplayssport(mike_shanahan,cycling)
[DEBUG] 0.0::athleteplayssport(john_maine,wrestling)
[DEBUG] 0.0::athleteplayssport(martez_wilson,softball)
[DEBUG] 0.0::athleteplayssport(chin_hui_tsao,tennis)
[DEBUG] 0.0::athleteplayssport(sean_west,car_racing)
[DEBUG] 0.0::athleteplayssport(brian_duensing,baseball)
[DEBUG] 0.0::athleteplayssport(scott_dohmann,college_baseball)
[DEBUG] 0.0::athleteplayssport(clay_mortensen,cycling)
[DEBUG] 0.0::athleteplayssport(favre,softball)
[DEBUG] 0.0::athleteplayssport(mark_hendrickson,car_racing)
[DEBUG] 0.0::athleteplayssport(carlos_silva,tennis)
[DEBUG] 0.0::athleteplayssport(whitey_ford,wrestling)
[DEBUG] 0.0::athleteplayssport(tom_mastny,track_and_field)
[DEBUG] 0.0::athleteplayssport(ryan_fitzpatrick,swimming)
[DEBUG] 0.0::athleteplayssport(mike_parisi,golf)
[DEBUG] 0.0::athleteplayssport(emmitt_smith,cycling)
[DEBUG] 0.0::athleteplayssport(patrick_kane,wrestling)
[DEBUG] 0.0::athleteplayssport(samuel_eto_o,sailing)
[DEBUG] 0.0::athleteplayssport(derrick_turnbow,track_and_field)
[DEBUG] 0.0::athleteplayssport(kyle_mcclellan,lacrosse)
[DEBUG] 0.0::athleteplayssport(brett_myers,golf)
[DEBUG] 0.0::athleteplayssport(malcolm_delaney,college_baseball)
[DEBUG] 0.0::athleteplayssport(patrick_sharp,softball)
[DEBUG] 0.0::athleteplayssport(jason_jones,car_racing)
[DEBUG] 0.0::athleteplayssport(tom_mastny,golfing)
[DEBUG] 0.0::athleteplayssport(brian_stokes,swimming)
[DEBUG] 0.0::athleteplayssport(matt_garza,tennis)
[DEBUG] 0.0::athleteplayssport(cuttino_mobley,professional_basketball)
[DEBUG] 0.0::athleteplayssport(pedro_astacio,car_racing)
[DEBUG] 0.0::athleteplayssport(cm_punk,softball)
[DEBUG] 0.0::athleteplayssport(lynn_swann,track_and_field)
[DEBUG] 0.0::athleteplayssport(travis_metcalf,college_baseball)
[DEBUG] 0.0::athleteplayssport(clayton_richard,soccer)
[DEBUG] 0.0::athleteplayssport(clyde_johnston,track_and_field)
[DEBUG] 0.0::athleteplayssport(geoff_geary,professional_football)
[DEBUG] 0.0::athleteplayssport(jackie_gayda,swimming)
[DEBUG] 0.0::athleteplayssport(mike_matheny,lacrosse)
[DEBUG] 0.0::athleteplayssport(ryan_giggs,wrestling)
[DEBUG] 0.0::athleteplayssport(jesse_foppert,swimming)
[DEBUG] 0.0::athleteplayssport(baldelli,basketball)
[DEBUG] 0.0::athleteplayssport(jamal_mayers,basketball)
[DEBUG] 0.0::athleteplayssport(randy_johnson,lacrosse)
[DEBUG] 0.0::athleteplayssport(radhames_liz,golfing)
[DEBUG] 0.0::athleteplayssport(george_parros,cycling)
[DEBUG] 0.0::athleteplayssport(james_white,hockey)
[DEBUG] 0.0::athleteplayssport(jeff_gordon,wrestling)
[DEBUG] 0.0::athleteplayssport(luis_perez,hockey)
[DEBUG] 0.0::athleteplayssport(luis_figueroa,softball)
[DEBUG] 0.0::athleteplayssport(robert_muir_graves,wrestling)
[DEBUG] 0.0::athleteplayssport(seth_smith,basketball)
[DEBUG] 0.0::athleteplayssport(thomas_diamond,golf)
[DEBUG] 0.0::athleteplayssport(leon_washington,track_and_field)
[DEBUG] 0.0::athleteplayssport(joel_przybilla,golfing)
[DEBUG] 0.0::athleteplayssport(chris_gissell,tennis)
[DEBUG] 0.0::athleteplayssport(chris_gissell,baseball)
[DEBUG] 0.0::athleteplayssport(tiquan_underwood,wrestling)
[DEBUG] 0.0::athleteplayssport(shaun_hill,softball)
[DEBUG] 0.0::athleteplayssport(p_j__brown,basketball)
[DEBUG] 0.0::athleteplayssport(tom_doak,professional_football)
[DEBUG] 0.0::athleteplayssport(dario_veras,golf)
[DEBUG] 0.0::athleteplayssport(wally_szczerbiak,baseball)
[DEBUG] 0.0::athleteplayssport(john_ennis,boxing)
[DEBUG] 0.0::athleteplayssport(mike_myers,professional_football)
[DEBUG] 0.0::athleteplayssport(dirk_nowitzki,track_and_field)
[DEBUG] 0.0::athleteplayssport(doug_rader,soccer)
[DEBUG] 0.0::athleteplayssport(miguel_olivo,boxing)
[DEBUG] 0.0::athleteplayssport(chris_reitsma,professional_football)
[DEBUG] 0.0::athleteplayssport(amani_toomer,cycling)
[DEBUG] 0.0::athleteplayssport(ike_brown,golf)
[DEBUG] 0.0::athleteplayssport(marcin_gortat,soccer)
[DEBUG] 0.0::athleteplayssport(shawn_chacon,sailing)
[DEBUG] 0.0::athleteplayssport(brian_roberts,college_baseball)
[DEBUG] 0.0::athleteplayssport(catcher_yadier_molina,college_baseball)
[DEBUG] 0.0::athleteplayssport(scott_patterson,lacrosse)
[DEBUG] 0.0::athleteplayssport(bruce_chen,basketball)
[DEBUG] 0.0::athleteplayssport(tadahito_iguchi,professional_basketball)
[DEBUG] 0.0::athleteplayssport(ferguson_jenkins,softball)
[DEBUG] 0.0::athleteplayssport(mccovey,sailing)
[DEBUG] 0.0::athleteplayssport(mike_lieberthal,basketball)
[DEBUG] 0.0::athleteplayssport(bartolo_colon,softball)
[DEBUG] 0.0::athleteplayssport(corey_koskie,swimming)
[DEBUG] 0.0::athleteplayssport(darryl_strawberry,professional_basketball)
[DEBUG] 0.0::athleteplayssport(dominic_moore,basketball)
[DEBUG] 0.0::athleteplayssport(tony_stewart,basketball)
[DEBUG] 0.0::athleteplayssport(kwame_brown,wrestling)
[DEBUG] 0.0::athleteplayssport(doug_weight,soccer)
[DEBUG] 0.0::athleteplayssport(phil_stockman,boxing)
[DEBUG] 0.0::athleteplayssport(kyle_orton,tennis)
[DEBUG] 0.0::athleteplayssport(zito,wrestling)
[DEBUG] 0.0::athleteplayssport(shelton_benjamin,professional_basketball)
[DEBUG] 0.0::athleteplayssport(art_monk,car_racing)
[DEBUG] 0.0::athleteplayssport(tim_hamulack,sailing)
[DEBUG] 0.0::athleteplayssport(tebow,car_racing)
[DEBUG] 0.0::athleteplayssport(andre_agassi,wrestling)
[DEBUG] 0.0::athleteplayssport(marian_gaborik,tennis)
[DEBUG] 0.0::athleteplayssport(jason_jones,soccer)
[DEBUG] 0.0::athleteplayssport(huet,basketball)