-
Notifications
You must be signed in to change notification settings - Fork 0
/
Fantasy-NFL-Players.xml
3021 lines (3021 loc) · 581 KB
/
Fantasy-NFL-Players.xml
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
<!-- NFL Players obtained from Fantasy Football-->
<?xml version="1.0" encoding="UTF-8" ?>
<Players>
<Player playerId="1" active="0" jersey="0" lname="Ainge" fname="Erik" displayName="Erik Ainge" team="NYJ" position="QB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="2" active="1" jersey="3" lname="Anderson" fname="Derek" displayName="Derek Anderson" team="CAR" position="QB" height="6-6" weight="230" dob="0000-00-00" college="Oregon State" />
<Player playerId="3" active="0" jersey="0" lname="Baker" fname="Matt" displayName="Matt Baker" team="BUF" position="QB" height="6-2" weight="217" dob="0000-00-00" college="North Carolina" />
<Player playerId="4" active="0" jersey="2" lname="Bartel" fname="Richard" displayName="Richard Bartel" team="ARI" position="QB" height="6-4" weight="230" dob="1983-02-03" college="Tarleton State" />
<Player playerId="5" active="0" jersey="14" lname="Basanez" fname="Brett" displayName="Brett Basanez" team="CHI" position="QB" height="6-1" weight="208" dob="0000-00-00" college="Northwestern" />
<Player playerId="6" active="0" jersey="16" lname="Batch" fname="Charlie" displayName="Charlie Batch" team="PIT" position="QB" height="6-2" weight="216" dob="1974-12-05" college="Eastern Michigan" />
<Player playerId="7" active="0" jersey="12" lname="Beck" fname="John" displayName="John Beck" team="HOU" position="QB" height="6-2" weight="215" dob="1981-08-21" college="Brigham Young" />
<Player playerId="8" active="0" jersey="0" lname="Berlin" fname="Brock" displayName="Brock Berlin" team="DET" position="QB" height="6-1" weight="215" dob="0000-00-00" college="Miami (Fla.)" />
<Player playerId="9" active="0" jersey="7" lname="Boller" fname="Kyle" displayName="Kyle Boller" team="OAK" position="QB" height="6-3" weight="220" dob="0000-00-00" college="California" />
<Player playerId="10" active="0" jersey="0" lname="Bollinger" fname="Brooks" displayName="Brooks Bollinger" team="DET" position="QB" height="6-1" weight="205" dob="0000-00-00" college="Wisconsin" />
<Player playerId="12" active="0" jersey="4" lname="Bouman" fname="Todd" displayName="Todd Bouman" team="JAC" position="QB" height="6-2" weight="236" dob="1972-08-01" college="St. Cloud State" />
<Player playerId="13" active="1" jersey="12" lname="Brady" fname="Tom" displayName="Tom Brady" team="NE" position="QB" height="6-4" weight="225" dob="0000-00-00" college="Michigan" />
<Player playerId="14" active="1" jersey="9" lname="Brees" fname="Drew" displayName="Drew Brees" team="NO" position="QB" height="6-0" weight="209" dob="0000-00-00" college="Purdue" />
<Player playerId="15" active="0" jersey="5" lname="Brennan" fname="Colt" displayName="Colt Brennan" team="OAK" position="QB" height="6-3" weight="215" dob="0000-00-00" college="Hawaii" />
<Player playerId="16" active="0" jersey="0" lname="Brink" fname="Alex" displayName="Alex Brink" team="HOU" position="QB" height="6-2" weight="208" dob="0000-00-00" college="Washington State" />
<Player playerId="17" active="0" jersey="4" lname="Brohm" fname="Brian" displayName="Brian Brohm" team="BUF" position="QB" height="6-3" weight="223" dob="0000-00-00" college="Louisville" />
<Player playerId="18" active="0" jersey="8" lname="Brunell" fname="Mark" displayName="Mark Brunell" team="NYJ" position="QB" height="6-1" weight="215" dob="0000-00-00" college="Washington" />
<Player playerId="19" active="0" jersey="10" lname="Bulger" fname="Marc" displayName="Marc Bulger" team="BAL" position="QB" height="6-3" weight="208" dob="0000-00-00" college="West Virginia" />
<Player playerId="20" active="1" jersey="17" lname="Campbell" fname="Jason" displayName="Jason Campbell" team="CIN" position="QB" height="6-5" weight="235" dob="0000-00-00" college="Auburn" />
<Player playerId="21" active="1" jersey="8" lname="Carr" fname="David" displayName="David Carr" team="NYG" position="QB" height="6-3" weight="212" dob="0000-00-00" college="Fresno State" />
<Player playerId="22" active="1" jersey="16" lname="Cassel" fname="Matt" displayName="Matt Cassel" team="TEN" position="QB" height="6-4" weight="228" dob="0000-00-00" college="USC" />
<Player playerId="23" active="1" jersey="10" lname="Clemens" fname="Kellen" displayName="Kellen Clemens" team="SD" position="QB" height="6-2" weight="220" dob="0000-00-00" college="Oregon" />
<Player playerId="24" active="0" jersey="5" lname="Collins" fname="Kerry" displayName="Kerry Collins" team="IND" position="QB" height="6-5" weight="247" dob="0000-00-00" college="Penn State" />
<Player playerId="25" active="0" jersey="10" lname="Collins" fname="Todd" displayName="Todd Collins" team="CHI" position="QB" height="6-4" weight="223" dob="0000-00-00" college="Michigan" />
<Player playerId="26" active="0" jersey="12" lname="Croyle" fname="Brodie" displayName="Brodie Croyle" team="ARI" position="QB" height="6-2" weight="206" dob="1983-02-06" college="Alabama" />
<Player playerId="27" active="0" jersey="0" lname="Culpepper" fname="Daunte" displayName="Daunte Culpepper" team="DET" position="QB" height="6-4" weight="260" dob="0000-00-00" college="Central Florida" />
<Player playerId="28" active="1" jersey="6" lname="Cutler" fname="Jay" displayName="Jay Cutler" team="CHI" position="QB" height="6-3" weight="220" dob="0000-00-00" college="Vanderbilt" />
<Player playerId="29" active="0" jersey="17" lname="Delhomme" fname="Jake" displayName="Jake Delhomme" team="HOU" position="QB" height="6-2" weight="215" dob="0000-00-00" college="Louisiana-Lafayette" />
<Player playerId="30" active="1" jersey="6" lname="Dixon" fname="Dennis" displayName="Dennis Dixon" team="BUF" position="QB" height="6-3" weight="215" dob="0000-00-00" college="Oregon" />
<Player playerId="31" active="0" jersey="0" lname="Dorsey" fname="Ken" displayName="Ken Dorsey" team="CLE" position="QB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="32" active="1" jersey="5" lname="Edwards" fname="Trent" displayName="Trent Edwards" team="OAK" position="QB" height="6-4" weight="230" dob="0000-00-00" college="Stanford" />
<Player playerId="33" active="0" jersey="4" lname="Feeley" fname="A.J." displayName="A.J. Feeley" team="LA" position="QB" height="6-3" weight="216" dob="0000-00-00" college="Oregon" />
<Player playerId="34" active="1" jersey="14" lname="Fitzpatrick" fname="Ryan" displayName="Ryan Fitzpatrick" team="NYJ" position="QB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="35" active="1" jersey="5" lname="Flacco" fname="Joe" displayName="Joe Flacco" team="BAL" position="QB" height="6-6" weight="245" dob="0000-00-00" college="Delaware" />
<Player playerId="36" active="1" jersey="5" lname="Flynn" fname="Matt" displayName="Matt Flynn" team="NO" position="QB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="37" active="0" jersey="0" lname="Frerotte" fname="Gus" displayName="Gus Frerotte" team="MIN" position="QB" height="6-3" weight="233" dob="0000-00-00" college="Tulsa" />
<Player playerId="38" active="0" jersey="3" lname="Frye" fname="Charlie" displayName="Charlie Frye" team="OAK" position="QB" height="6-4" weight="220" dob="0000-00-00" college="Akron" />
<Player playerId="39" active="0" jersey="0" lname="Garcia" fname="Jeff" displayName="Jeff Garcia" team="HOU" position="QB" height="6-1" weight="205" dob="0000-00-00" college="San Jose State" />
<Player playerId="40" active="1" jersey="4" lname="Garrard" fname="David" displayName="David Garrard" team="NYJ" position="QB" height="6-1" weight="236" dob="0000-00-00" college="East Carolina" />
<Player playerId="41" active="1" jersey="5" lname="Gradkowski" fname="Bruce" displayName="Bruce Gradkowski" team="PIT" position="QB" height="6-1" weight="220" dob="0000-00-00" college="Toledo" />
<Player playerId="42" active="0" jersey="0" lname="Gray" fname="Quinn" displayName="Quinn Gray" team="KC" position="QB" height="6-3" weight="254" dob="0000-00-00" college="Florida A&M" />
<Player playerId="43" active="0" jersey="0" lname="Green" fname="Trent" displayName="Trent Green" team="LA" position="QB" height="6-3" weight="208" dob="0000-00-00" college="Indiana" />
<Player playerId="44" active="0" jersey="0" lname="Griese" fname="Brian" displayName="Brian Griese" team="TB" position="QB" height="6-3" weight="214" dob="0000-00-00" college="Michigan" />
<Player playerId="45" active="0" jersey="8" lname="Grossman" fname="Rex" displayName="Rex Grossman" team="ATL" position="QB" height="6-1" weight="225" dob="1980-08-23" college="Florida" />
<Player playerId="46" active="0" jersey="0" lname="Gutierrez" fname="Matt" displayName="Matt Gutierrez" team="WAS" position="QB" height="6-4" weight="230" dob="1984-06-09" college="Idaho State" />
<Player playerId="47" active="0" jersey="0" lname="Hackney" fname="Darrell" displayName="Darrell Hackney" team="DEN" position="QB" height="6-0" weight="248" dob="0000-00-00" college="Alabama-Birmingham" />
<Player playerId="48" active="0" jersey="0" lname="Hamdan" fname="Gibran" displayName="Gibran Hamdan" team="BUF" position="QB" height="6-4" weight="220" dob="0000-00-00" college="Indiana" />
<Player playerId="49" active="1" jersey="7" lname="Hanie" fname="Caleb" displayName="Caleb Hanie" team="DAL" position="QB" height="6-2" weight="235" dob="0000-00-00" college="Colorado State" />
<Player playerId="50" active="0" jersey="0" lname="Harrington" fname="Joey" displayName="Joey Harrington" team="NO" position="QB" height="6-4" weight="210" dob="0000-00-00" college="Oregon" />
<Player playerId="51" active="1" jersey="8" lname="Hasselbeck" fname="Matt" displayName="Matt Hasselbeck" team="IND" position="QB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="52" active="1" jersey="7" lname="Henne" fname="Chad" displayName="Chad Henne" team="JAC" position="QB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="53" active="0" jersey="0" lname="Henson" fname="Drew" displayName="Drew Henson" team="DET" position="QB" height="6-4" weight="235" dob="0000-00-00" college="Michigan" />
<Player playerId="54" active="1" jersey="13" lname="Hill" fname="Shaun" displayName="Shaun Hill" team="MIN" position="QB" height="6-3" weight="230" dob="0000-00-00" college="Maryland" />
<Player playerId="55" active="0" jersey="0" lname="Huard" fname="Damon" displayName="Damon Huard" team="SF" position="QB" height="6-3" weight="218" dob="0000-00-00" college="Washington" />
<Player playerId="56" active="1" jersey="7" lname="Jackson" fname="Tarvaris" displayName="Tarvaris Jackson" team="SEA" position="QB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="57" active="0" jersey="0" lname="Johnson" fname="Brad" displayName="Brad Johnson" team="DAL" position="QB" height="6-5" weight="235" dob="0000-00-00" college="Florida State" />
<Player playerId="58" active="1" jersey="8" lname="Johnson" fname="Josh" displayName="Josh Johnson" team="BUF" position="QB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="59" active="1" jersey="3" lname="Kitna" fname="Jon" displayName="Jon Kitna" team="DAL" position="QB" height="6-2" weight="220" dob="0000-00-00" college="Central Washington" />
<Player playerId="60" active="1" jersey="4" lname="Kolb" fname="Kevin" displayName="Kevin Kolb" team="BUF" position="QB" height="6-3" weight="218" dob="0000-00-00" college="Houston" />
<Player playerId="61" active="0" jersey="4" lname="Leftwich" fname="Byron" displayName="Byron Leftwich" team="PIT" position="QB" height="6-5" weight="250" dob="1980-01-14" college="Marshall" />
<Player playerId="62" active="0" jersey="7" lname="Leinart" fname="Matt" displayName="Matt Leinart" team="OAK" position="QB" height="6-5" weight="225" dob="1983-05-11" college="USC" />
<Player playerId="63" active="0" jersey="0" lname="Lemon" fname="Cleo" displayName="Cleo Lemon" team="BAL" position="QB" height="6-2" weight="215" dob="0000-00-00" college="Arkansas State" />
<Player playerId="64" active="0" jersey="7" lname="Losman" fname="J.P." displayName="J.P. Losman" team="SEA" position="QB" height="6-2" weight="217" dob="0000-00-00" college="Tulane" />
<Player playerId="65" active="1" jersey="10" lname="Manning" fname="Eli" displayName="Eli Manning" team="NYG" position="QB" height="6-4" weight="218" dob="0000-00-00" college="Ole Miss" />
<Player playerId="66" active="1" jersey="18" lname="Manning" fname="Peyton" displayName="Peyton Manning" team="DEN" position="QB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="67" active="0" jersey="0" lname="Martin" fname="Ingle" displayName="Ingle Martin" team="KC" position="QB" height="6-2" weight="220" dob="0000-00-00" college="Furman" />
<Player playerId="68" active="0" jersey="0" lname="Martin" fname="Jamie" displayName="Jamie Martin" team="SF" position="QB" height="6-2" weight="205" dob="0000-00-00" college="Weber State" />
<Player playerId="69" active="1" jersey="13" lname="McCown" fname="Josh" displayName="Josh McCown" team="CLE" position="QB" height="6-4" weight="218" dob="0000-00-00" college="Sam Houston State" />
<Player playerId="70" active="1" jersey="7" lname="McCown" fname="Luke" displayName="Luke McCown" team="NO" position="QB" height="6-4" weight="217" dob="0000-00-00" college="Louisiana Tech" />
<Player playerId="71" active="0" jersey="5" lname="McNabb" fname="Donovan" displayName="Donovan McNabb" team="MIN" position="QB" height="6-2" weight="240" dob="0000-00-00" college="Syracuse" />
<Player playerId="72" active="1" jersey="8" lname="Moore" fname="Matt" displayName="Matt Moore" team="MIA" position="QB" height="6-3" weight="220" dob="0000-00-00" college="Oregon State" />
<Player playerId="73" active="0" jersey="8" lname="O'Connell" fname="Kevin" displayName="Kevin O'Connell" team="SD" position="QB" height="6-5" weight="225" dob="1985-05-25" college="San Diego State" />
<Player playerId="74" active="0" jersey="13" lname="O'Sullivan" fname="J.T." displayName="J.T. O'Sullivan" team="OAK" position="QB" height="6-2" weight="232" dob="0000-00-00" college="California-Davis" />
<Player playerId="75" active="1" jersey="8" lname="Orlovsky" fname="Dan" displayName="Dan Orlovsky" team="DET" position="QB" height="6-5" weight="215" dob="0000-00-00" college="Connecticut" />
<Player playerId="76" active="1" jersey="0" lname="Orton" fname="Kyle" displayName="Kyle Orton" team="BUF" position="QB" height="6-4" weight="228" dob="1982-11-14" college="Purdue" />
<Player playerId="77" active="0" jersey="0" lname="Otis" fname="Jeff" displayName="Jeff Otis" team="LA" position="QB" height="6-2" weight="208" dob="0000-00-00" college="Columbia" />
<Player playerId="78" active="0" jersey="4" lname="Palko" fname="Tyler" displayName="Tyler Palko" team="KC" position="QB" height="6-1" weight="215" dob="0000-00-00" college="Pittsburgh" />
<Player playerId="79" active="1" jersey="3" lname="Palmer" fname="Carson" displayName="Carson Palmer" team="ARI" position="QB" height="6-5" weight="235" dob="0000-00-00" college="USC" />
<Player playerId="80" active="1" jersey="5" lname="Palmer" fname="Jordan" displayName="Jordan Palmer" team="TEN" position="QB" height="6-5" weight="230" dob="0000-00-00" college="Texas-El Paso" />
<Player playerId="81" active="0" jersey="10" lname="Pennington" fname="Chad" displayName="Chad Pennington" team="MIA" position="QB" height="6-3" weight="225" dob="0000-00-00" college="Marshall" />
<Player playerId="82" active="1" jersey="3" lname="Quinn" fname="Brady" displayName="Brady Quinn" team="MIA" position="QB" height="6-3" weight="235" dob="0000-00-00" college="Notre Dame" />
<Player playerId="83" active="0" jersey="9" lname="Ramsey" fname="Patrick" displayName="Patrick Ramsey" team="MIN" position="QB" height="6-2" weight="225" dob="0000-00-00" college="Tulane" />
<Player playerId="84" active="0" jersey="7" lname="Ratliff" fname="Brett" displayName="Brett Ratliff" team="TB" position="QB" height="6-4" weight="224" dob="1985-08-08" college="Utah" />
<Player playerId="85" active="0" jersey="8" lname="Redman" fname="Chris" displayName="Chris Redman" team="ATL" position="QB" height="6-3" weight="225" dob="1977-07-07" college="Louisville" />
<Player playerId="86" active="1" jersey="17" lname="Rivers" fname="Philip" displayName="Philip Rivers" team="SD" position="QB" height="6-5" weight="228" dob="0000-00-00" college="NC State" />
<Player playerId="87" active="1" jersey="12" lname="Rodgers" fname="Aaron" displayName="Aaron Rodgers" team="GB" position="QB" height="6-2" weight="225" dob="0000-00-00" college="California" />
<Player playerId="88" active="1" jersey="7" lname="Roethlisberger" fname="Ben" displayName="Ben Roethlisberger" team="PIT" position="QB" height="6-5" weight="240" dob="0000-00-00" college="Miami (OH)" />
<Player playerId="89" active="1" jersey="9" lname="Romo" fname="Tony" displayName="Tony Romo" team="DAL" position="QB" height="6-2" weight="230" dob="0000-00-00" college="Eastern Illinois" />
<Player playerId="90" active="0" jersey="18" lname="Rosenfels" fname="Sage" displayName="Sage Rosenfels" team="MIN" position="QB" height="6-4" weight="225" dob="1978-03-06" college="Iowa State" />
<Player playerId="91" active="0" jersey="0" lname="Rowe" fname="Jeff" displayName="Jeff Rowe" team="NE" position="QB" height="6-5" weight="221" dob="0000-00-00" college="Nevada-Reno" />
<Player playerId="92" active="0" jersey="0" lname="Russell" fname="JaMarcus" displayName="JaMarcus Russell" team="OAK" position="QB" height="6-6" weight="260" dob="1985-08-09" college="LSU" />
<Player playerId="93" active="1" jersey="2" lname="Ryan" fname="Matt" displayName="Matt Ryan" team="ATL" position="QB" height="6-4" weight="217" dob="0000-00-00" college="Boston College" />
<Player playerId="94" active="1" jersey="8" lname="Schaub" fname="Matt" displayName="Matt Schaub" team="ATL" position="QB" height="6-6" weight="245" dob="0000-00-00" college="Virginia" />
<Player playerId="95" active="0" jersey="0" lname="Shockley" fname="D.J." displayName="D.J. Shockley" team="ATL" position="QB" height="6-0" weight="218" dob="0000-00-00" college="Georgia" />
<Player playerId="96" active="0" jersey="7" lname="Simms" fname="Chris" displayName="Chris Simms" team="TEN" position="QB" height="6-4" weight="230" dob="0000-00-00" college="Texas" />
<Player playerId="97" active="1" jersey="11" lname="Smith" fname="Alex" displayName="Alex Smith" team="KC" position="QB" height="6-4" weight="217" dob="0000-00-00" college="Utah" />
<Player playerId="98" active="0" jersey="0" lname="Smith" fname="Paul" displayName="Paul Smith" team="JAC" position="QB" height="6-1" weight="202" dob="0000-00-00" college="Tulsa" />
<Player playerId="99" active="0" jersey="0" lname="Smith" fname="Troy" displayName="Troy Smith" team="PIT" position="QB" height="6-0" weight="217" dob="0000-00-00" college="Ohio State" />
<Player playerId="100" active="0" jersey="19" lname="Sorgi" fname="Jim" displayName="Jim Sorgi" team="NYG" position="QB" height="6-5" weight="196" dob="0000-00-00" college="Wisconsin" />
<Player playerId="101" active="1" jersey="6" lname="St. Pierre" fname="Brian" displayName="Brian St. Pierre" team="CAR" position="QB" height="6-3" weight="224" dob="0000-00-00" college="Boston College" />
<Player playerId="102" active="1" jersey="5" lname="Stanton" fname="Drew" displayName="Drew Stanton" team="ARI" position="QB" height="6-3" weight="243" dob="0000-00-00" college="Michigan State" />
<Player playerId="103" active="1" jersey="4" lname="Thigpen" fname="Tyler" displayName="Tyler Thigpen" team="CLE" position="QB" height="6-1" weight="216" dob="1984-04-14" college="Coastal Carolina" />
<Player playerId="104" active="0" jersey="0" lname="Tuiasosopo" fname="Marques" displayName="Marques Tuiasosopo" team="OAK" position="QB" height="6-1" weight="220" dob="0000-00-00" college="Washington" />
<Player playerId="105" active="1" jersey="2" lname="Vick" fname="Michael" displayName="Michael Vick" team="PIT" position="QB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="106" active="0" jersey="7" lname="Volek" fname="Billy" displayName="Billy Volek" team="SD" position="QB" height="6-2" weight="214" dob="0000-00-00" college="Fresno State" />
<Player playerId="107" active="1" jersey="9" lname="Wallace" fname="Seneca" displayName="Seneca Wallace" team="GB" position="QB" height="5-11" weight="205" dob="0000-00-00" college="Iowa State" />
<Player playerId="108" active="0" jersey="0" lname="Walter" fname="Andrew" displayName="Andrew Walter" team="OAK" position="QB" height="6-6" weight="230" dob="0000-00-00" college="Arizona State" />
<Player playerId="109" active="0" jersey="0" lname="Warner" fname="Kurt" displayName="Kurt Warner" team="ARI" position="QB" height="6-2" weight="214" dob="1971-06-22" college="Northern Iowa" />
<Player playerId="110" active="1" jersey="6" lname="Whitehurst" fname="Charlie" displayName="Charlie Whitehurst" team="IND" position="QB" height="6-5" weight="226" dob="0000-00-00" college="Clemson" />
<Player playerId="111" active="0" jersey="0" lname="Woodson" fname="Andre" displayName="Andre Woodson" team="WAS" position="QB" height="6-4" weight="230" dob="0000-00-00" college="Kentucky" />
<Player playerId="112" active="0" jersey="0" lname="Wright" fname="Anthony" displayName="Anthony Wright" team="NYG" position="QB" height="6-1" weight="211" dob="0000-00-00" college="South Carolina" />
<Player playerId="113" active="1" jersey="13" lname="Young" fname="Vince" displayName="Vince Young" team="GB" position="QB" height="6-5" weight="232" dob="0000-00-00" college="Texas" />
<Player playerId="114" active="0" jersey="0" lname="Abrams" fname="Josh" displayName="Josh Abrams" team="GB" position="RB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="115" active="0" jersey="29" lname="Addai" fname="Joseph" displayName="Joseph Addai" team="NE" position="RB" height="5-11" weight="205" dob="0000-00-00" college="LSU" />
<Player playerId="116" active="0" jersey="38" lname="Ali" fname="Charles" displayName="Charles Ali" team="ARI" position="RB" height="6-2" weight="255" dob="1984-08-23" college="Arkansas-Pine Bluff" />
<Player playerId="117" active="0" jersey="33" lname="Anderson" fname="Deon" displayName="Deon Anderson" team="MIA" position="RB" height="5-10" weight="240" dob="1983-01-27" college="Connecticut" />
<Player playerId="118" active="0" jersey="0" lname="Arrington" fname="J.J." displayName="J.J. Arrington" team="PHI" position="RB" height="5-9" weight="212" dob="0000-00-00" college="California" />
<Player playerId="119" active="0" jersey="0" lname="Askew" fname="B.J." displayName="B.J. Askew" team="TB" position="RB" height="6-3" weight="233" dob="0000-00-00" college="Michigan" />
<Player playerId="120" active="0" jersey="35" lname="Ball" fname="Lance" displayName="Lance Ball" team="DEN" position="RB" height="5-9" weight="224" dob="1985-06-19" college="Maryland" />
<Player playerId="121" active="0" jersey="24" lname="Barber" fname="Marion" displayName="Marion Barber" team="CHI" position="RB" height="5-11" weight="218" dob="1983-06-10" college="Minnesota" />
<Player playerId="122" active="0" jersey="0" lname="Barnes" fname="Darian" displayName="Darian Barnes" team="NO" position="RB" height="6-2" weight="240" dob="0000-00-00" college="Hampton" />
<Player playerId="123" active="1" jersey="44" lname="Battle" fname="Jackie" displayName="Jackie Battle" team="TEN" position="RB" height="6-2" weight="240" dob="0000-00-00" college="Houston" />
<Player playerId="124" active="0" jersey="22" lname="Bell" fname="Mike" displayName="Mike Bell" team="DET" position="RB" height="6-0" weight="225" dob="1983-04-23" college="Arizona" />
<Player playerId="125" active="0" jersey="0" lname="Bell" fname="Tatum" displayName="Tatum Bell" team="DEN" position="RB" height="5-11" weight="213" dob="0000-00-00" college="Oklahoma State" />
<Player playerId="126" active="0" jersey="32" lname="Bennett" fname="Michael" displayName="Michael Bennett" team="OAK" position="RB" height="5-9" weight="205" dob="1978-08-13" college="Wisconsin" />
<Player playerId="127" active="0" jersey="32" lname="Benson" fname="Cedric" displayName="Cedric Benson" team="GB" position="RB" height="5-11" weight="227" dob="1982-12-28" college="Texas" />
<Player playerId="128" active="0" jersey="46" lname="Betts" fname="Ladell" displayName="Ladell Betts" team="NO" position="RB" height="5-11" weight="224" dob="0000-00-00" college="Iowa" />
<Player playerId="129" active="0" jersey="0" lname="Birmingham" fname="DeCori" displayName="DeCori Birmingham" team="CAR" position="RB" height="5-10" weight="210" dob="0000-00-00" college="Arkansas" />
<Player playerId="130" active="0" jersey="27" lname="Booker" fname="Lorenzo" displayName="Lorenzo Booker" team="MIN" position="RB" height="5-10" weight="201" dob="1984-06-14" college="Florida State" />
<Player playerId="131" active="0" jersey="0" lname="Boyd" fname="Cory" displayName="Cory Boyd" team="DEN" position="RB" height="6-1" weight="213" dob="0000-00-00" college="South Carolina" />
<Player playerId="132" active="1" jersey="44" lname="Bradshaw" fname="Ahmad" displayName="Ahmad Bradshaw" team="IND" position="RB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="133" active="0" jersey="0" lname="Brown" fname="Chris" displayName="Chris Brown" team="HOU" position="RB" height="6-3" weight="235" dob="0000-00-00" college="Colorado" />
<Player playerId="134" active="1" jersey="30" lname="Brown" fname="Ronnie" displayName="Ronnie Brown" team="SD" position="RB" height="6-0" weight="223" dob="0000-00-00" college="Auburn" />
<Player playerId="135" active="0" jersey="0" lname="Brown" fname="Thomas" displayName="Thomas Brown" team="CLE" position="RB" height="5-8" weight="203" dob="0000-00-00" college="Georgia" />
<Player playerId="136" active="0" jersey="28" lname="Buckhalter" fname="Correll" displayName="Correll Buckhalter" team="DEN" position="RB" height="6-0" weight="223" dob="0000-00-00" college="Nebraska" />
<Player playerId="137" active="0" jersey="34" lname="Buckley" fname="Eldra" displayName="Eldra Buckley" team="PHI" position="RB" height="5-9" weight="207" dob="1985-06-23" college="Tennessee-Chattanooga" />
<Player playerId="138" active="0" jersey="29" lname="Bush" fname="Michael" displayName="Michael Bush" team="ARI" position="RB" height="6-1" weight="245" dob="0000-00-00" college="Louisville" />
<Player playerId="139" active="1" jersey="23" lname="Bush" fname="Reggie" displayName="Reggie Bush" team="SF" position="RB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="140" active="0" jersey="0" lname="Calhoun" fname="Brian" displayName="Brian Calhoun" team="DET" position="RB" height="5-10" weight="208" dob="0000-00-00" college="Wisconsin" />
<Player playerId="141" active="0" jersey="28" lname="Cartwright" fname="Rock" displayName="Rock Cartwright" team="SF" position="RB" height="5-8" weight="215" dob="1979-12-03" college="Kansas State" />
<Player playerId="142" active="0" jersey="0" lname="Cason" fname="Aveion" displayName="Aveion Cason" team="DET" position="RB" height="5-10" weight="215" dob="0000-00-00" college="Illinois State" />
<Player playerId="143" active="0" jersey="46" lname="Castille" fname="Tim" displayName="Tim Castille" team="KC" position="RB" height="5-11" weight="238" dob="0000-00-00" college="Alabama" />
<Player playerId="144" active="0" jersey="30" lname="Caulcrick" fname="Jehuu" displayName="Jehuu Caulcrick" team="BUF" position="RB" height="6-0" weight="250" dob="1983-08-06" college="Michigan State" />
<Player playerId="145" active="1" jersey="25" lname="Charles" fname="Jamaal" displayName="Jamaal Charles" team="KC" position="RB" height="5-11" weight="199" dob="0000-00-00" college="Texas" />
<Player playerId="146" active="0" jersey="0" lname="Chatman" fname="Jesse" displayName="Jesse Chatman" team="NYJ" position="RB" height="5-8" weight="225" dob="0000-00-00" college="Eastern Washington" />
<Player playerId="147" active="1" jersey="20" lname="Choice" fname="Tashard" displayName="Tashard Choice" team="BUF" position="RB" height="5-10" weight="210" dob="0000-00-00" college="Georgia Tech" />
<Player playerId="148" active="0" jersey="31" lname="Clayton" fname="Thomas" displayName="Thomas Clayton" team="ARI" position="RB" height="5-11" weight="222" dob="1984-04-26" college="Kansas State" />
<Player playerId="149" active="0" jersey="38" lname="Cobbs" fname="Patrick" displayName="Patrick Cobbs" team="NO" position="RB" height="5-8" weight="205" dob="1983-01-31" college="North Texas" />
<Player playerId="150" active="0" jersey="0" lname="Coleman" fname="Alonzo" displayName="Alonzo Coleman" team="DAL" position="RB" height="5-9" weight="210" dob="0000-00-00" college="Hampton" />
<Player playerId="151" active="1" jersey="45" lname="Collins" fname="Jed" displayName="Jed Collins" team="DAL" position="RB" height="6-1" weight="252" dob="1986-03-03" college="Washington State" />
<Player playerId="152" active="0" jersey="0" lname="Cook" fname="Jameel" displayName="Jameel Cook" team="TB" position="RB" height="5-10" weight="237" dob="0000-00-00" college="Illinois" />
<Player playerId="153" active="0" jersey="0" lname="Cotrone" fname="Anthony" displayName="Anthony Cotrone" team="JAC" position="RB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="154" active="0" jersey="42" lname="Cox" fname="Mike" displayName="Mike Cox" team="ATL" position="RB" height="6-0" weight="252" dob="1985-07-11" college="Georgia Tech" />
<Player playerId="155" active="0" jersey="0" lname="Cramer" fname="Casey" displayName="Casey Cramer" team="TEN" position="RB" height="6-2" weight="250" dob="0000-00-00" college="Dartmouth" />
<Player playerId="156" active="0" jersey="0" lname="Crosslin" fname="Julius" displayName="Julius Crosslin" team="DAL" position="RB" height="5-11" weight="245" dob="0000-00-00" college="Oklahoma State" />
<Player playerId="157" active="0" jersey="0" lname="Daniels" fname="P.J." displayName="P.J. Daniels" team="BAL" position="RB" height="5-10" weight="210" dob="0000-00-00" college="Georgia Tech" />
<Player playerId="158" active="0" jersey="34" lname="Darby" fname="Kenneth" displayName="Kenneth Darby" team="LA" position="RB" height="5-10" weight="219" dob="0000-00-00" college="Alabama" />
<Player playerId="159" active="0" jersey="0" lname="Davis" fname="Carey" displayName="Carey Davis" team="WAS" position="RB" height="5-10" weight="225" dob="0000-00-00" college="Illinois" />
<Player playerId="160" active="0" jersey="43" lname="Davis" fname="Jason" displayName="Jason Davis" team="NYJ" position="RB" height="5-10" weight="242" dob="0000-00-00" college="Illinois" />
<Player playerId="161" active="0" jersey="0" lname="Dawson" fname="Clifton" displayName="Clifton Dawson" team="HOU" position="RB" height="5-10" weight="212" dob="0000-00-00" college="Harvard" />
<Player playerId="162" active="0" jersey="38" lname="Dorsey" fname="DeDe" displayName="DeDe Dorsey" team="DET" position="RB" height="5-11" weight="210" dob="0000-00-00" college="Lindenwood" />
<Player playerId="163" active="0" jersey="0" lname="Dorsey" fname="Dominique" displayName="Dominique Dorsey" team="WAS" position="RB" height="5-7" weight="175" dob="0000-00-00" college="Nevada-Las Vegas" />
<Player playerId="164" active="0" jersey="0" lname="Droughns" fname="Reuben" displayName="Reuben Droughns" team="NYG" position="RB" height="5-11" weight="220" dob="0000-00-00" college="Oregon" />
<Player playerId="165" active="0" jersey="0" lname="Duckett" fname="T.J." displayName="T.J. Duckett" team="SEA" position="RB" height="6-0" weight="254" dob="0000-00-00" college="Michigan State" />
<Player playerId="166" active="0" jersey="0" lname="Dunn" fname="Warrick" displayName="Warrick Dunn" team="TB" position="RB" height="5-9" weight="187" dob="0000-00-00" college="Florida State" />
<Player playerId="167" active="0" jersey="36" lname="Eckel" fname="Kyle" displayName="Kyle Eckel" team="DEN" position="RB" height="5-11" weight="237" dob="0000-00-00" college="Navy" />
<Player playerId="168" active="0" jersey="0" lname="Ervin" fname="Allen" displayName="Allen Ervin" team="DET" position="RB" height="5-10" weight="224" dob="0000-00-00" college="Lambuth" />
<Player playerId="169" active="0" jersey="44" lname="Evans" fname="Heath" displayName="Heath Evans" team="NO" position="RB" height="6-0" weight="250" dob="0000-00-00" college="Auburn" />
<Player playerId="170" active="0" jersey="0" lname="Evans" fname="Jonathan" displayName="Jonathan Evans" team="WAS" position="RB" height="6-1" weight="245" dob="0000-00-00" college="Baylor" />
<Player playerId="171" active="0" jersey="25" lname="Fargas" fname="Justin" displayName="Justin Fargas" team="DEN" position="RB" height="6-1" weight="220" dob="0000-00-00" college="USC" />
<Player playerId="172" active="0" jersey="33" lname="Faulk" fname="Kevin" displayName="Kevin Faulk" team="NE" position="RB" height="5-8" weight="202" dob="0000-00-00" college="LSU" />
<Player playerId="173" active="1" jersey="42" lname="Felton" fname="Jerome" displayName="Jerome Felton" team="BUF" position="RB" height="6-0" weight="248" dob="0000-00-00" college="Furman" />
<Player playerId="174" active="1" jersey="29" lname="Forsett" fname="Justin" displayName="Justin Forsett" team="BAL" position="RB" height="5-8" weight="195" dob="0000-00-00" college="California" />
<Player playerId="175" active="1" jersey="22" lname="Forte" fname="Matt" displayName="Matt Forte" team="NYJ" position="RB" height="6-2" weight="218" dob="0000-00-00" college="Tulane" />
<Player playerId="176" active="0" jersey="0" lname="Foster" fname="DeShaun" displayName="DeShaun Foster" team="SF" position="RB" height="6-0" weight="222" dob="0000-00-00" college="UCLA" />
<Player playerId="177" active="0" jersey="0" lname="Gado" fname="Samkon" displayName="Samkon Gado" team="TEN" position="RB" height="5-10" weight="227" dob="0000-00-00" college="Liberty" />
<Player playerId="178" active="0" jersey="25" lname="Ganther" fname="Quinton" displayName="Quinton Ganther" team="BUF" position="RB" height="5-9" weight="220" dob="0000-00-00" college="Utah" />
<Player playerId="179" active="0" jersey="0" lname="Goings" fname="Nick" displayName="Nick Goings" team="CAR" position="RB" height="6-0" weight="225" dob="0000-00-00" college="Pittsburgh" />
<Player playerId="180" active="1" jersey="23" lname="Gore" fname="Frank" displayName="Frank Gore" team="IND" position="RB" height="5-9" weight="217" dob="0000-00-00" college="Miami" />
<Player playerId="181" active="0" jersey="34" lname="Graham" fname="Earnest" displayName="Earnest Graham" team="TB" position="RB" height="5-9" weight="225" dob="0000-00-00" college="Florida" />
<Player playerId="182" active="0" jersey="25" lname="Grant" fname="Ryan" displayName="Ryan Grant" team="GB" position="RB" height="6-1" weight="222" dob="1982-12-09" college="Notre Dame" />
<Player playerId="183" active="0" jersey="0" lname="Green" fname="Ahman" displayName="Ahman Green" team="FA" position="RB" height="6-0" weight="218" dob="0000-00-00" college="Nebraska" />
<Player playerId="184" active="0" jersey="0" lname="Green" fname="Justin" displayName="Justin Green" team="ARI" position="RB" height="5-11" weight="251" dob="0000-00-00" college="Montana" />
<Player playerId="185" active="0" jersey="42" lname="Green-Ellis" fname="BenJarvus" displayName="BenJarvus Green-Ellis" team="CIN" position="RB" height="5-11" weight="220" dob="1985-07-02" college="Mississippi" />
<Player playerId="186" active="0" jersey="45" lname="Griffith" fname="Justin" displayName="Justin Griffith" team="HOU" position="RB" height="6-0" weight="230" dob="0000-00-00" college="Mississippi State" />
<Player playerId="187" active="0" jersey="45" lname="Hall" fname="Ahmard" displayName="Ahmard Hall" team="TEN" position="RB" height="5-11" weight="241" dob="1979-11-13" college="Texas" />
<Player playerId="188" active="0" jersey="0" lname="Hall" fname="Andre" displayName="Andre Hall" team="HOU" position="RB" height="5-10" weight="212" dob="0000-00-00" college="South Florida" />
<Player playerId="189" active="0" jersey="36" lname="Hall" fname="Bruce" displayName="Bruce Hall" team="BUF" position="RB" height="5-11" weight="205" dob="1985-03-18" college="Mississippi" />
<Player playerId="190" active="0" jersey="30" lname="Hamilton" fname="Lynell" displayName="Lynell Hamilton" team="NO" position="RB" height="6-0" weight="235" dob="0000-00-00" college="San Diego State" />
<Player playerId="191" active="0" jersey="0" lname="Harris" fname="Kay-Jay" displayName="Kay-Jay Harris" team="NYG" position="RB" height="6-0" weight="240" dob="0000-00-00" college="West Virginia" />
<Player playerId="192" active="0" jersey="36" lname="Harrison" fname="Jerome" displayName="Jerome Harrison" team="DET" position="RB" height="5-9" weight="205" dob="0000-00-00" college="Washington State" />
<Player playerId="193" active="0" jersey="32" lname="Hart" fname="Mike" displayName="Mike Hart" team="IND" position="RB" height="5-9" weight="206" dob="0000-00-00" college="Michigan" />
<Player playerId="194" active="0" jersey="39" lname="Hedgecock" fname="Madison" displayName="Madison Hedgecock" team="NYG" position="RB" height="6-3" weight="266" dob="0000-00-00" college="North Carolina" />
<Player playerId="195" active="0" jersey="40" lname="Henry" fname="Chris" displayName="Chris Henry" team="SEA" position="RB" height="5-11" weight="234" dob="0000-00-00" college="Arizona" />
<Player playerId="196" active="0" jersey="0" lname="Herron" fname="Noah" displayName="Noah Herron" team="CLE" position="RB" height="5-11" weight="220" dob="0000-00-00" college="Northwestern" />
<Player playerId="197" active="0" jersey="22" lname="Hester" fname="Jacob" displayName="Jacob Hester" team="DEN" position="RB" height="5-11" weight="225" dob="0000-00-00" college="LSU" />
<Player playerId="198" active="0" jersey="0" lname="Hicks" fname="Maurice" displayName="Maurice Hicks" team="MIN" position="RB" height="5-11" weight="205" dob="0000-00-00" college="North Carolina A&T" />
<Player playerId="199" active="1" jersey="34" lname="Hightower" fname="Tim" displayName="Tim Hightower" team="NO" position="RB" height="6-0" weight="220" dob="0000-00-00" college="Richmond" />
<Player playerId="200" active="1" jersey="36" lname="Hilliard" fname="Lex" displayName="Lex Hilliard" team="NYJ" position="RB" height="5-11" weight="235" dob="0000-00-00" college="Montana" />
<Player playerId="201" active="1" jersey="33" lname="Hillis" fname="Peyton" displayName="Peyton Hillis" team="NYG" position="RB" height="6-2" weight="250" dob="0000-00-00" college="Arkansas" />
<Player playerId="202" active="0" jersey="0" lname="Hoover" fname="Brad" displayName="Brad Hoover" team="CAR" position="RB" height="6-0" weight="245" dob="0000-00-00" college="Western Carolina" />
<Player playerId="203" active="0" jersey="27" lname="Jackson" fname="Brandon" displayName="Brandon Jackson" team="CLE" position="RB" height="5-10" weight="215" dob="0000-00-00" college="Nebraska" />
<Player playerId="204" active="1" jersey="22" lname="Jackson" fname="Fred" displayName="Fred Jackson" team="SEA" position="RB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="205" active="1" jersey="39" lname="Jackson" fname="Steven" displayName="Steven Jackson" team="NE" position="RB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="206" active="1" jersey="34" lname="Jacobs" fname="Brandon" displayName="Brandon Jacobs" team="NYG" position="RB" height="6-4" weight="264" dob="0000-00-00" college="Southern Illinois" />
<Player playerId="207" active="0" jersey="0" lname="James" fname="Edgerrin" displayName="Edgerrin James" team="SEA" position="RB" height="6-0" weight="219" dob="0000-00-00" college="Miami (Fla.)" />
<Player playerId="208" active="1" jersey="23" lname="Johnson" fname="Chris" displayName="Chris Johnson" team="ARI" position="RB" height="5-11" weight="203" dob="0000-00-00" college="East Carolina" />
<Player playerId="209" active="0" jersey="0" lname="Johnson" fname="James" displayName="James Johnson" team="PIT" position="RB" height="5-11" weight="205" dob="1984-09-06" college="Kansas State" />
<Player playerId="210" active="0" jersey="23" lname="Johnson" fname="Larry" displayName="Larry Johnson" team="MIA" position="RB" height="6-1" weight="235" dob="0000-00-00" college="Penn State" />
<Player playerId="211" active="0" jersey="0" lname="Johnson" fname="Rudi" displayName="Rudi Johnson" team="DET" position="RB" height="5-10" weight="225" dob="0000-00-00" college="Auburn" />
<Player playerId="212" active="1" jersey="23" lname="Jones" fname="Felix" displayName="Felix Jones" team="PIT" position="RB" height="5-10" weight="215" dob="0000-00-00" college="Arkansas" />
<Player playerId="213" active="1" jersey="33" lname="Jones" fname="Greg" displayName="Greg Jones" team="HOU" position="RB" height="6-1" weight="251" dob="1981-05-09" college="Florida State" />
<Player playerId="214" active="0" jersey="21" lname="Jones" fname="Julius" displayName="Julius Jones" team="NO" position="RB" height="5-10" weight="208" dob="0000-00-00" college="Notre Dame" />
<Player playerId="215" active="0" jersey="0" lname="Jones" fname="Kevin" displayName="Kevin Jones" team="CHI" position="RB" height="6-0" weight="225" dob="0000-00-00" college="Virginia Tech" />
<Player playerId="216" active="0" jersey="20" lname="Jones" fname="Thomas" displayName="Thomas Jones" team="KC" position="RB" height="5-10" weight="212" dob="0000-00-00" college="Virginia" />
<Player playerId="217" active="0" jersey="21" lname="Jones-Drew" fname="Maurice" displayName="Maurice Jones-Drew" team="OAK" position="RB" height="5-7" weight="210" dob="1985-03-23" college="UCLA" />
<Player playerId="218" active="0" jersey="0" lname="Jordan" fname="LaMont" displayName="LaMont Jordan" team="DEN" position="RB" height="5-10" weight="242" dob="0000-00-00" college="Maryland" />
<Player playerId="219" active="0" jersey="44" lname="Karney" fname="Mike" displayName="Mike Karney" team="LA" position="RB" height="5-11" weight="260" dob="0000-00-00" college="Arizona State" />
<Player playerId="220" active="1" jersey="30" lname="Kuhn" fname="John" displayName="John Kuhn" team="GB" position="RB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="221" active="0" jersey="34" lname="Latsko" fname="Billy" displayName="Billy Latsko" team="SD" position="RB" height="5-10" weight="233" dob="0000-00-00" college="Florida" />
<Player playerId="222" active="0" jersey="32" lname="Lawrence" fname="Matt" displayName="Matt Lawrence" team="BAL" position="RB" height="6-1" weight="209" dob="1985-05-05" college="Massachusetts" />
<Player playerId="223" active="0" jersey="44" lname="Lawton" fname="Luke" displayName="Luke Lawton" team="OAK" position="RB" height="6-0" weight="240" dob="0000-00-00" college="McNeese State" />
<Player playerId="224" active="1" jersey="44" lname="Leach" fname="Vonta" displayName="Vonta Leach" team="BAL" position="RB" height="6-0" weight="260" dob="0000-00-00" college="East Carolina" />
<Player playerId="225" active="1" jersey="30" lname="Leonard" fname="Brian" displayName="Brian Leonard" team="TB" position="RB" height="6-1" weight="225" dob="0000-00-00" college="Rutgers" />
<Player playerId="226" active="0" jersey="0" lname="Lewis" fname="Jamal" displayName="Jamal Lewis" team="CLE" position="RB" height="5-11" weight="245" dob="0000-00-00" college="Tennessee" />
<Player playerId="227" active="0" jersey="0" lname="Little" fname="Rafael" displayName="Rafael Little" team="TEN" position="RB" height="5-9" weight="195" dob="0000-00-00" college="Kentucky" />
<Player playerId="228" active="0" jersey="11" lname="Logan" fname="Stefan" displayName="Stefan Logan" team="DET" position="RB" height="5-6" weight="180" dob="1981-06-02" college="South Dakota" />
<Player playerId="229" active="0" jersey="20" lname="Lumpkin" fname="Kregg" displayName="Kregg Lumpkin" team="SEA" position="RB" height="5-11" weight="228" dob="1984-05-15" college="Georgia" />
<Player playerId="230" active="1" jersey="24" lname="Lynch" fname="Marshawn" displayName="Marshawn Lynch" team="SEA" position="RB" height="5-11" weight="215" dob="0000-00-00" college="California" />
<Player playerId="231" active="0" jersey="26" lname="Maroney" fname="Laurence" displayName="Laurence Maroney" team="DEN" position="RB" height="5-11" weight="220" dob="0000-00-00" college="Minnesota" />
<Player playerId="232" active="0" jersey="29" lname="Mason" fname="Marcus" displayName="Marcus Mason" team="SD" position="RB" height="5-9" weight="226" dob="0000-00-00" college="Youngstown State" />
<Player playerId="233" active="0" jersey="0" lname="McAllister" fname="Deuce" displayName="Deuce McAllister" team="NO" position="RB" height="6-1" weight="232" dob="0000-00-00" college="Mississippi" />
<Player playerId="234" active="1" jersey="33" lname="McClain" fname="Le'Ron" displayName="Le'Ron McClain" team="SD" position="RB" height="6-0" weight="260" dob="0000-00-00" college="Alabama" />
<Player playerId="235" active="1" jersey="20" lname="McFadden" fname="Darren" displayName="Darren McFadden" team="DAL" position="RB" height="6-1" weight="220" dob="0000-00-00" college="Arkansas" />
<Player playerId="236" active="1" jersey="26" lname="McGahee" fname="Willis" displayName="Willis McGahee" team="CLE" position="RB" height="6-0" weight="235" dob="0000-00-00" college="Miami (Fla.)" />
<Player playerId="237" active="0" jersey="49" lname="McHugh" fname="Sean" displayName="Sean McHugh" team="PIT" position="TE" height="6-5" weight="265" dob="0000-00-00" college="Penn State" />
<Player playerId="238" active="0" jersey="38" lname="McIntyre" fname="Corey" displayName="Corey McIntyre" team="BUF" position="RB" height="6-0" weight="245" dob="1979-01-25" college="West Virginia" />
<Player playerId="239" active="0" jersey="38" lname="McKie" fname="Jason" displayName="Jason McKie" team="BAL" position="RB" height="5-11" weight="247" dob="0000-00-00" college="Temple" />
<Player playerId="240" active="1" jersey="28" lname="Mendenhall" fname="Rashard" displayName="Rashard Mendenhall" team="ARI" position="RB" height="5-10" weight="225" dob="0000-00-00" college="Illinois" />
<Player playerId="241" active="0" jersey="86" lname="Mills" fname="Garrett" displayName="Garrett Mills" team="NE" position="TE" height="6-1" weight="235" dob="1983-10-12" college="Tulsa" />
<Player playerId="242" active="0" jersey="0" lname="Minor" fname="Travis" displayName="Travis Minor" team="LA" position="RB" height="5-10" weight="203" dob="0000-00-00" college="Florida State" />
<Player playerId="243" active="0" jersey="30" lname="Moats" fname="Ryan" displayName="Ryan Moats" team="MIN" position="RB" height="5-8" weight="210" dob="0000-00-00" college="Louisiana Tech" />
<Player playerId="244" active="0" jersey="26" lname="Moore" fname="Mewelde" displayName="Mewelde Moore" team="IND" position="RB" height="5-11" weight="209" dob="1982-07-24" college="Tulane" />
<Player playerId="245" active="0" jersey="28" lname="Morris" fname="Maurice" displayName="Maurice Morris" team="DET" position="RB" height="5-11" weight="216" dob="0000-00-00" college="Oregon" />
<Player playerId="246" active="0" jersey="34" lname="Morris" fname="Sammy" displayName="Sammy Morris" team="DAL" position="RB" height="6-0" weight="220" dob="0000-00-00" college="Texas Tech" />
<Player playerId="247" active="0" jersey="0" lname="Neal" fname="Lorenzo" displayName="Lorenzo Neal" team="BAL" position="RB" height="5-11" weight="255" dob="0000-00-00" college="Fresno State" />
<Player playerId="248" active="0" jersey="40" lname="Norris" fname="Moran" displayName="Moran Norris" team="HOU" position="RB" height="6-1" weight="250" dob="1978-06-16" college="Kansas" />
<Player playerId="249" active="0" jersey="34" lname="Norwood" fname="Jerious" displayName="Jerious Norwood" team="LA" position="RB" height="5-11" weight="205" dob="0000-00-00" college="Mississippi State" />
<Player playerId="250" active="0" jersey="0" lname="O'Neal" fname="Oren" displayName="Oren O'Neal" team="OAK" position="RB" height="5-11" weight="245" dob="0000-00-00" college="Arkansas State" />
<Player playerId="251" active="0" jersey="33" lname="Omon" fname="Xavier" displayName="Xavier Omon" team="DEN" position="RB" height="5-11" weight="227" dob="1985-02-15" college="Northwest Missouri State" />
<Player playerId="252" active="1" jersey="24" lname="Owens" fname="Montell" displayName="Montell Owens" team="CHI" position="RB" height="5-10" weight="225" dob="1984-05-04" college="Maine" />
<Player playerId="253" active="0" jersey="39" lname="Parker" fname="Willie" displayName="Willie Parker" team="WAS" position="RB" height="5-10" weight="212" dob="0000-00-00" college="North Carolina" />
<Player playerId="254" active="1" jersey="35" lname="Parmele" fname="Jalen" displayName="Jalen Parmele" team="CLE" position="RB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="255" active="0" jersey="0" lname="Patrick" fname="Allen" displayName="Allen Patrick" team="LA" position="RB" height="6-1" weight="196" dob="0000-00-00" college="Oklahoma" />
<Player playerId="256" active="0" jersey="35" lname="Pearman" fname="Alvin" displayName="Alvin Pearman" team="TEN" position="RB" height="5-10" weight="196" dob="0000-00-00" college="Virginia" />
<Player playerId="257" active="0" jersey="0" lname="Perry" fname="Chris" displayName="Chris Perry" team="CIN" position="RB" height="6-0" weight="224" dob="0000-00-00" college="Michigan" />
<Player playerId="258" active="0" jersey="0" lname="Peterson" fname="Adrian" displayName="Adrian Peterson" team="SEA" position="RB" height="5-10" weight="212" dob="0000-00-00" college="Georgia Southern" />
<Player playerId="259" active="1" jersey="28" lname="Peterson" fname="Adrian" displayName="Adrian Peterson" team="MIN" position="RB" height="6-1" weight="220" dob="0000-00-00" college="Oklahoma" />
<Player playerId="260" active="0" jersey="0" lname="Pinnock" fname="Andrew" displayName="Andrew Pinnock" team="DEN" position="RB" height="5-10" weight="250" dob="0000-00-00" college="South Carolina" />
<Player playerId="261" active="0" jersey="0" lname="Pittman" fname="Antonio" displayName="Antonio Pittman" team="LA" position="RB" height="5-11" weight="195" dob="0000-00-00" college="Ohio State" />
<Player playerId="262" active="0" jersey="0" lname="Pittman" fname="Michael" displayName="Michael Pittman" team="DEN" position="RB" height="6-0" weight="225" dob="0000-00-00" college="Fresno State" />
<Player playerId="263" active="0" jersey="45" lname="Polite" fname="Lousaka" displayName="Lousaka Polite" team="ATL" position="RB" height="6-0" weight="245" dob="1981-09-14" college="Pittsburgh" />
<Player playerId="264" active="0" jersey="26" lname="Portis" fname="Clinton" displayName="Clinton Portis" team="WAS" position="RB" height="5-11" weight="219" dob="0000-00-00" college="Miami (Fla.)" />
<Player playerId="265" active="0" jersey="0" lname="Powdrell" fname="Ryan" displayName="Ryan Powdrell" team="SEA" position="RB" height="5-11" weight="254" dob="0000-00-00" college="USC" />
<Player playerId="266" active="0" jersey="40" lname="Rankin" fname="Louis" displayName="Louis Rankin" team="OAK" position="RB" height="6-1" weight="207" dob="1985-05-04" college="Washington" />
<Player playerId="267" active="1" jersey="45" lname="Reece" fname="Marcel" displayName="Marcel Reece" team="OAK" position="RB" height="6-1" weight="250" dob="0000-00-00" college="Washington" />
<Player playerId="268" active="0" jersey="30" lname="Rhodes" fname="Dominic" displayName="Dominic Rhodes" team="IND" position="RB" height="5-9" weight="203" dob="0000-00-00" college="Midwestern State" />
<Player playerId="269" active="0" jersey="27" lname="Rice" fname="Ray" displayName="Ray Rice" team="BAL" position="RB" height="5-8" weight="206" dob="1987-01-22" college="Rutgers" />
<Player playerId="270" active="0" jersey="49" lname="Richardson" fname="Tony" displayName="Tony Richardson" team="NYJ" position="RB" height="6-1" weight="240" dob="0000-00-00" college="Auburn" />
<Player playerId="271" active="1" jersey="26" lname="Robinson" fname="Michael" displayName="Michael Robinson" team="SEA" position="RB" height="6-1" weight="240" dob="0000-00-00" college="Penn State" />
<Player playerId="272" active="0" jersey="0" lname="Runnels" fname="J.D." displayName="J.D. Runnels" team="CIN" position="RB" height="5-11" weight="237" dob="0000-00-00" college="Oklahoma" />
<Player playerId="273" active="0" jersey="0" lname="Russell" fname="Gary" displayName="Gary Russell" team="OAK" position="RB" height="5-11" weight="215" dob="0000-00-00" college="Minnesota" />
<Player playerId="274" active="0" jersey="0" lname="Sapp" fname="Cecil" displayName="Cecil Sapp" team="HOU" position="RB" height="5-11" weight="236" dob="0000-00-00" college="Colorado State" />
<Player playerId="275" active="0" jersey="26" lname="Savage" fname="Dantrell" displayName="Dantrell Savage" team="CAR" position="RB" height="5-8" weight="182" dob="0000-00-00" college="Oklahoma State" />
<Player playerId="276" active="0" jersey="44" lname="Schmitt" fname="Owen" displayName="Owen Schmitt" team="OAK" position="RB" height="6-2" weight="250" dob="1985-02-13" college="West Virginia" />
<Player playerId="277" active="0" jersey="2" lname="Simpson" fname="Chad" displayName="Chad Simpson" team="WAS" position="RB" height="5-9" weight="216" dob="0000-00-00" college="Morgan State" />
<Player playerId="278" active="0" jersey="23" lname="Slaton" fname="Steve" displayName="Steve Slaton" team="MIA" position="RB" height="5-9" weight="208" dob="1986-01-04" college="West Virginia" />
<Player playerId="279" active="0" jersey="28" lname="Smith" fname="Clifton" displayName="Clifton Smith" team="CLE" position="RB" height="5-9" weight="190" dob="0000-00-00" college="Fresno State" />
<Player playerId="280" active="0" jersey="30" lname="Smith" fname="Kevin" displayName="Kevin Smith" team="DET" position="RB" height="6-1" weight="217" dob="0000-00-00" college="Central Florida" />
<Player playerId="281" active="0" jersey="0" lname="Smith" fname="Kolby" displayName="Kolby Smith" team="JAC" position="RB" height="5-11" weight="219" dob="0000-00-00" college="Louisville" />
<Player playerId="282" active="0" jersey="0" lname="Smith" fname="Terrelle" displayName="Terrelle Smith" team="DET" position="RB" height="6-0" weight="246" dob="0000-00-00" college="Arizona State" />
<Player playerId="283" active="1" jersey="44" lname="Snelling" fname="Jason" displayName="Jason Snelling" team="ATL" position="RB" height="5-11" weight="234" dob="0000-00-00" college="Virginia" />
<Player playerId="284" active="0" jersey="0" lname="Sobomehin" fname="Olaniyi" displayName="Olaniyi Sobomehin" team="NO" position="RB" height="6-1" weight="230" dob="0000-00-00" college="Portland State" />
<Player playerId="285" active="1" jersey="43" lname="Sproles" fname="Darren" displayName="Darren Sproles" team="PHI" position="RB" height="5-6" weight="190" dob="0000-00-00" college="Kansas State" />
<Player playerId="286" active="0" jersey="0" lname="Stecker" fname="Aaron" displayName="Aaron Stecker" team="ATL" position="RB" height="5-10" weight="213" dob="1975-11-13" college="Western Illinois" />
<Player playerId="287" active="1" jersey="28" lname="Stewart" fname="Jonathan" displayName="Jonathan Stewart" team="CAR" position="RB" height="5-10" weight="235" dob="0000-00-00" college="Oregon" />
<Player playerId="288" active="0" jersey="0" lname="Storer" fname="Byron" displayName="Byron Storer" team="TB" position="RB" height="6-1" weight="219" dob="0000-00-00" college="California" />
<Player playerId="289" active="0" jersey="38" lname="Tahi" fname="Naufahu" displayName="Naufahu Tahi" team="MIN" position="RB" height="6-0" weight="254" dob="0000-00-00" college="Brigham Young" />
<Player playerId="290" active="0" jersey="29" lname="Taylor" fname="Chester" displayName="Chester Taylor" team="ARI" position="RB" height="5-11" weight="213" dob="0000-00-00" college="Toledo" />
<Player playerId="291" active="0" jersey="21" lname="Taylor" fname="Fred" displayName="Fred Taylor" team="NE" position="RB" height="6-1" weight="228" dob="0000-00-00" college="Florida" />
<Player playerId="292" active="1" jersey="23" lname="Thomas" fname="Pierre" displayName="Pierre Thomas" team="WAS" position="RB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="293" active="0" jersey="0" lname="Thomas" fname="Marcus" displayName="Marcus Thomas" team="DEN" position="RB" height="6-0" weight="215" dob="0000-00-00" college="Texas-El Paso" />
<Player playerId="294" active="1" jersey="35" lname="Tolbert" fname="Mike" displayName="Mike Tolbert" team="CAR" position="RB" height="5-9" weight="250" dob="0000-00-00" college="Coastal Carolina" />
<Player playerId="295" active="0" jersey="21" lname="Tomlinson" fname="LaDainian" displayName="LaDainian Tomlinson" team="NYJ" position="RB" height="5-10" weight="215" dob="1979-06-23" college="Texas Christian" />
<Player playerId="296" active="0" jersey="46" lname="Torain" fname="Ryan" displayName="Ryan Torain" team="NYG" position="RB" height="6-0" weight="220" dob="0000-00-00" college="Arizona State" />
<Player playerId="297" active="0" jersey="33" lname="Turner" fname="Michael" displayName="Michael Turner" team="ATL" position="RB" height="5-10" weight="247" dob="1982-02-13" college="Northern Illinois" />
<Player playerId="298" active="0" jersey="47" lname="Vickers" fname="Lawrence" displayName="Lawrence Vickers" team="DAL" position="RB" height="6-0" weight="250" dob="0000-00-00" college="Colorado" />
<Player playerId="299" active="0" jersey="0" lname="Vincent" fname="Chris" displayName="Chris Vincent" team="ARI" position="RB" height="6-1" weight="218" dob="0000-00-00" college="Oregon" />
<Player playerId="300" active="0" jersey="28" lname="Vincent" fname="Justin" displayName="Justin Vincent" team="PIT" position="RB" height="5-10" weight="219" dob="0000-00-00" college="LSU" />
<Player playerId="301" active="0" jersey="32" lname="Ward" fname="Derrick" displayName="Derrick Ward" team="HOU" position="RB" height="5-11" weight="240" dob="0000-00-00" college="Ottawa (Kans.)" />
<Player playerId="302" active="0" jersey="28" lname="Ware" fname="D.J." displayName="D.J. Ware" team="TB" position="RB" height="6-0" weight="225" dob="1985-02-18" college="Georgia" />
<Player playerId="303" active="0" jersey="33" lname="Washington" fname="Chauncey" displayName="Chauncey Washington" team="LA" position="RB" height="5-11" weight="222" dob="0000-00-00" college="USC" />
<Player playerId="304" active="1" jersey="29" lname="Washington" fname="Leon" displayName="Leon Washington" team="TEN" position="RB" height="5-8" weight="192" dob="1982-08-29" college="Florida State" />
<Player playerId="305" active="0" jersey="0" lname="Watson" fname="Kenny" displayName="Kenny Watson" team="CIN" position="RB" height="6-0" weight="220" dob="0000-00-00" college="Penn State" />
<Player playerId="306" active="0" jersey="43" lname="Weaver" fname="Leonard" displayName="Leonard Weaver" team="PHI" position="RB" height="6-0" weight="250" dob="0000-00-00" college="Carson-Newman" />
<Player playerId="307" active="0" jersey="20" lname="Westbrook" fname="Brian" displayName="Brian Westbrook" team="SF" position="RB" height="5-10" weight="203" dob="0000-00-00" college="Villanova" />
<Player playerId="308" active="0" jersey="25" lname="White" fname="LenDale" displayName="LenDale White" team="DEN" position="RB" height="6-1" weight="235" dob="1984-12-20" college="USC" />
<Player playerId="309" active="0" jersey="33" lname="Williams" fname="Cadillac" displayName="Cadillac Williams" team="LA" position="RB" height="5-11" weight="218" dob="0000-00-00" college="Auburn" />
<Player playerId="310" active="1" jersey="34" lname="Williams" fname="DeAngelo" displayName="DeAngelo Williams" team="PIT" position="RB" height="5-9" weight="207" dob="0000-00-00" college="Memphis" />
<Player playerId="311" active="0" jersey="34" lname="Williams" fname="Ricky" displayName="Ricky Williams" team="BAL" position="RB" height="5-10" weight="230" dob="0000-00-00" college="Texas" />
<Player playerId="312" active="0" jersey="25" lname="Wolfe" fname="Garrett" displayName="Garrett Wolfe" team="CHI" position="RB" height="5-7" weight="185" dob="0000-00-00" college="Northern Illinois" />
<Player playerId="313" active="1" jersey="39" lname="Woodhead" fname="Danny" displayName="Danny Woodhead" team="SD" position="RB" height="5-8" weight="200" dob="0000-00-00" college="Chadron State" />
<Player playerId="314" active="0" jersey="0" lname="Wright" fname="Dwayne" displayName="Dwayne Wright" team="PIT" position="RB" height="5-11" weight="228" dob="0000-00-00" college="Fresno State" />
<Player playerId="315" active="0" jersey="31" lname="Wright" fname="Jason" displayName="Jason Wright" team="ARI" position="RB" height="5-10" weight="212" dob="0000-00-00" college="Northwestern" />
<Player playerId="316" active="0" jersey="35" lname="Wynn" fname="DeShawn" displayName="DeShawn Wynn" team="NO" position="RB" height="5-10" weight="232" dob="0000-00-00" college="Florida" />
<Player playerId="317" active="0" jersey="34" lname="Young" fname="Albert" displayName="Albert Young" team="JAC" position="RB" height="5-10" weight="209" dob="1985-02-25" college="Iowa" />
<Player playerId="318" active="0" jersey="0" lname="Young" fname="Selvin" displayName="Selvin Young" team="DEN" position="RB" height="5-11" weight="215" dob="0000-00-00" college="Texas" />
<Player playerId="319" active="0" jersey="85" lname="Aiken" fname="Sam" displayName="Sam Aiken" team="CLE" position="WR" height="6-2" weight="220" dob="0000-00-00" college="North Carolina" />
<Player playerId="320" active="0" jersey="85" lname="Allen" fname="Jake" displayName="Jake Allen" team="CLE" position="WR" height="6-4" weight="196" dob="0000-00-00" college="Mississippi College" />
<Player playerId="321" active="0" jersey="88" lname="Allison" fname="Aundrae" displayName="Aundrae Allison" team="TB" position="WR" height="6-0" weight="198" dob="1984-06-25" college="East Carolina" />
<Player playerId="322" active="0" jersey="0" lname="Alridge" fname="Anthony" displayName="Anthony Alridge" team="WAS" position="WR" height="5-9" weight="185" dob="0000-00-00" college="Houston" />
<Player playerId="323" active="1" jersey="80" lname="Amendola" fname="Danny" displayName="Danny Amendola" team="NE" position="WR" height="5-11" weight="190" dob="0000-00-00" college="Texas Tech" />
<Player playerId="324" active="0" jersey="89" lname="Anderson" fname="David" displayName="David Anderson" team="HOU" position="WR" height="5-10" weight="193" dob="1983-07-28" college="Colorado State" />
<Player playerId="325" active="1" jersey="86" lname="Armstrong" fname="Anthony" displayName="Anthony Armstrong" team="CLE" position="WR" height="5-10" weight="185" dob="0000-00-00" college="West Texas A&M" />
<Player playerId="326" active="0" jersey="13" lname="Aromashodu" fname="Devin" displayName="Devin Aromashodu" team="CHI" position="WR" height="6-2" weight="201" dob="0000-00-00" college="Auburn" />
<Player playerId="327" active="0" jersey="87" lname="Arrington" fname="Adrian" displayName="Adrian Arrington" team="NO" position="WR" height="6-3" weight="192" dob="1985-11-07" college="Michigan" />
<Player playerId="328" active="0" jersey="19" lname="Austin" fname="Miles" displayName="Miles Austin" team="PHI" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="329" active="1" jersey="81" lname="Avant" fname="Jason" displayName="Jason Avant" team="KC" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="330" active="1" jersey="17" lname="Avery" fname="Donnie" displayName="Donnie Avery" team="KC" position="WR" height="5-11" weight="200" dob="1984-06-12" college="Houston" />
<Player playerId="331" active="0" jersey="0" lname="Baker" fname="Dallas" displayName="Dallas Baker" team="PIT" position="WR" height="6-3" weight="206" dob="0000-00-00" college="Florida" />
<Player playerId="332" active="0" jersey="16" lname="Banks" fname="Gary" displayName="Gary Banks" team="SD" position="WR" height="6-0" weight="198" dob="0000-00-00" college="Troy" />
<Player playerId="333" active="0" jersey="19" lname="Baskett" fname="Hank" displayName="Hank Baskett" team="MIN" position="WR" height="6-4" weight="220" dob="0000-00-00" college="New Mexico" />
<Player playerId="334" active="0" jersey="81" lname="Battle" fname="Arnaz" displayName="Arnaz Battle" team="PIT" position="WR" height="6-1" weight="208" dob="0000-00-00" college="Notre Dame" />
<Player playerId="335" active="0" jersey="0" lname="Bennett" fname="Drew" displayName="Drew Bennett" team="BAL" position="WR" height="6-5" weight="196" dob="0000-00-00" college="UCLA" />
<Player playerId="336" active="1" jersey="0" lname="Bennett" fname="Earl" displayName="Earl Bennett" team="CLE" position="WR" height="6-0" weight="206" dob="0000-00-00" college="Vanderbilt" />
<Player playerId="337" active="0" jersey="87" lname="Berrian" fname="Bernard" displayName="Bernard Berrian" team="MIN" position="WR" height="6-1" weight="185" dob="0000-00-00" college="Fresno State" />
<Player playerId="338" active="1" jersey="15" lname="Bess" fname="Davone" displayName="Davone Bess" team="CLE" position="WR" height="5-10" weight="195" dob="0000-00-00" college="Hawaii" />
<Player playerId="339" active="0" jersey="15" lname="Biddle" fname="Taye" displayName="Taye Biddle" team="MIN" position="WR" height="6-1" weight="185" dob="0000-00-00" college="Mississippi" />
<Player playerId="340" active="0" jersey="10" lname="Bodiford" fname="Shaun" displayName="Shaun Bodiford" team="OAK" position="WR" height="5-11" weight="186" dob="1982-05-04" college="Portland State" />
<Player playerId="341" active="1" jersey="81" lname="Boldin" fname="Anquan" displayName="Anquan Boldin" team="SF" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="342" active="0" jersey="0" lname="Booker" fname="Marty" displayName="Marty Booker" team="ATL" position="WR" height="6-0" weight="205" dob="0000-00-00" college="Louisiana-Monroe" />
<Player playerId="343" active="1" jersey="80" lname="Bowe" fname="Dwayne" displayName="Dwayne Bowe" team="CLE" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="344" active="0" jersey="0" lname="Bradford" fname="Mark" displayName="Mark Bradford" team="SF" position="WR" height="6-2" weight="205" dob="0000-00-00" college="Stanford" />
<Player playerId="345" active="0" jersey="16" lname="Bradley" fname="Mark" displayName="Mark Bradley" team="NO" position="WR" height="6-1" weight="201" dob="0000-00-00" college="Oklahoma" />
<Player playerId="346" active="0" jersey="84" lname="Branch" fname="Deion" displayName="Deion Branch" team="NE" position="WR" height="5-9" weight="195" dob="0000-00-00" college="Louisville" />
<Player playerId="347" active="0" jersey="85" lname="Breaston" fname="Steve" displayName="Steve Breaston" team="NO" position="WR" height="6-0" weight="189" dob="0000-00-00" college="Michigan" />
<Player playerId="348" active="0" jersey="0" lname="Broussard" fname="John" displayName="John Broussard" team="DET" position="WR" height="6-1" weight="181" dob="0000-00-00" college="San Jose State" />
<Player playerId="349" active="0" jersey="15" lname="Brown" fname="Reggie" displayName="Reggie Brown" team="TB" position="WR" height="6-1" weight="197" dob="0000-00-00" college="Georgia" />
<Player playerId="350" active="0" jersey="0" lname="Brown" fname="Travis" displayName="Travis Brown" team="LA" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="351" active="0" jersey="0" lname="Bruce" fname="Isaac" displayName="Isaac Bruce" team="SF" position="WR" height="6-0" weight="188" dob="0000-00-00" college="Memphis" />
<Player playerId="352" active="0" jersey="81" lname="Bryant" fname="Antonio" displayName="Antonio Bryant" team="CIN" position="WR" height="6-1" weight="211" dob="0000-00-00" college="Pittsburgh" />
<Player playerId="353" active="0" jersey="0" lname="Bumpus" fname="Michael" displayName="Michael Bumpus" team="SEA" position="WR" height="5-11" weight="194" dob="0000-00-00" college="Washington State" />
<Player playerId="354" active="0" jersey="0" lname="Burgess" fname="Rudy" displayName="Rudy Burgess" team="CHI" position="WR" height="5-10" weight="186" dob="0000-00-00" college="Arizona State" />
<Player playerId="355" active="0" jersey="13" lname="Burleson" fname="Nate" displayName="Nate Burleson" team="CLE" position="WR" height="6-0" weight="198" dob="0000-00-00" college="Nevada" />
<Player playerId="356" active="0" jersey="80" lname="Burress" fname="Plaxico" displayName="Plaxico Burress" team="PIT" position="WR" height="6-5" weight="232" dob="0000-00-00" college="Michigan State" />
<Player playerId="357" active="0" jersey="14" lname="Burton" fname="Keenan" displayName="Keenan Burton" team="LA" position="WR" height="6-0" weight="206" dob="0000-00-00" college="Kentucky" />
<Player playerId="358" active="1" jersey="12" lname="Caldwell" fname="Andre" displayName="Andre Caldwell" team="DEN" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="359" active="0" jersey="17" lname="Camarillo" fname="Greg" displayName="Greg Camarillo" team="NO" position="WR" height="6-2" weight="200" dob="1982-04-18" college="Stanford" />
<Player playerId="360" active="0" jersey="0" lname="Campbell" fname="Kelly" displayName="Kelly Campbell" team="TB" position="WR" height="5-10" weight="175" dob="0000-00-00" college="Georgia Tech" />
<Player playerId="361" active="0" jersey="0" lname="Carter" fname="Drew" displayName="Drew Carter" team="OAK" position="WR" height="6-3" weight="200" dob="0000-00-00" college="Ohio State" />
<Player playerId="362" active="0" jersey="0" lname="Carter" fname="Jason" displayName="Jason Carter" team="CAR" position="WR" height="6-0" weight="205" dob="0000-00-00" college="Texas A&M" />
<Player playerId="363" active="0" jersey="84" lname="Chambers" fname="Chris" displayName="Chris Chambers" team="KC" position="WR" height="5-11" weight="210" dob="0000-00-00" college="Wisconsin" />
<Player playerId="364" active="0" jersey="0" lname="Chatman" fname="Antonio" displayName="Antonio Chatman" team="CIN" position="WR" height="5-8" weight="185" dob="0000-00-00" college="Cincinnati" />
<Player playerId="365" active="0" jersey="87" lname="Clark" fname="Brian" displayName="Brian Clark" team="DET" position="WR" height="6-2" weight="204" dob="0000-00-00" college="North Carolina State" />
<Player playerId="366" active="0" jersey="89" lname="Clayton" fname="Mark" displayName="Mark Clayton" team="LA" position="WR" height="5-10" weight="190" dob="1982-07-02" college="Oklahoma" />
<Player playerId="367" active="0" jersey="83" lname="Clayton" fname="Michael" displayName="Michael Clayton" team="NYG" position="WR" height="6-4" weight="215" dob="1982-10-13" college="LSU" />
<Player playerId="368" active="0" jersey="17" lname="Clowney" fname="David" displayName="David Clowney" team="BUF" position="WR" height="6-0" weight="188" dob="1985-07-07" college="Virginia Tech" />
<Player playerId="369" active="0" jersey="84" lname="Colbert" fname="Keary" displayName="Keary Colbert" team="KC" position="WR" height="6-1" weight="205" dob="0000-00-00" college="USC" />
<Player playerId="370" active="0" jersey="87" lname="Coles" fname="Laveranues" displayName="Laveranues Coles" team="NYJ" position="WR" height="5-11" weight="200" dob="0000-00-00" college="Florida State" />
<Player playerId="371" active="1" jersey="12" lname="Colston" fname="Marques" displayName="Marques Colston" team="NO" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="372" active="0" jersey="15" lname="Copper" fname="Terrance" displayName="Terrance Copper" team="KC" position="WR" height="6-0" weight="207" dob="0000-00-00" college="East Carolina" />
<Player playerId="373" active="1" jersey="82" lname="Cotchery" fname="Jerricho" displayName="Jerricho Cotchery" team="CAR" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="374" active="0" jersey="12" lname="Crayton" fname="Patrick" displayName="Patrick Crayton" team="SD" position="WR" height="6-0" weight="205" dob="0000-00-00" college="Northwestern Oklahoma State" />
<Player playerId="375" active="1" jersey="0" lname="Cribbs" fname="Josh" displayName="Josh Cribbs" team="IND" position="WR" height="6-1" weight="192" dob="0000-00-00" college="Kent State" />
<Player playerId="376" active="0" jersey="0" lname="Curry" fname="Ronald" displayName="Ronald Curry" team="LA" position="WR" height="6-2" weight="210" dob="0000-00-00" college="North Carolina" />
<Player playerId="377" active="0" jersey="17" lname="Curtis" fname="Kevin" displayName="Kevin Curtis" team="TEN" position="WR" height="6-0" weight="186" dob="1978-07-17" college="Utah State" />
<Player playerId="378" active="0" jersey="0" lname="Darling" fname="Devard" displayName="Devard Darling" team="HOU" position="WR" height="6-1" weight="213" dob="1982-04-16" college="Washington State" />
<Player playerId="379" active="0" jersey="11" lname="Davis" fname="Andre" displayName="Andre Davis" team="HOU" position="WR" height="6-1" weight="200" dob="0000-00-00" college="Virginia Tech" />
<Player playerId="380" active="0" jersey="0" lname="Davis" fname="Chris" displayName="Chris Davis" team="CIN" position="WR" height="5-10" weight="181" dob="0000-00-00" college="Florida State" />
<Player playerId="381" active="0" jersey="84" lname="Davis" fname="Buster" displayName="Buster Davis" team="SD" position="WR" height="6-1" weight="210" dob="0000-00-00" college="LSU" />
<Player playerId="382" active="0" jersey="81" lname="Davis" fname="Rashied" displayName="Rashied Davis" team="CHI" position="WR" height="5-9" weight="187" dob="1979-07-24" college="San Jose State" />
<Player playerId="383" active="0" jersey="85" lname="Doucet" fname="Early" displayName="Early Doucet" team="ARI" position="WR" height="6-0" weight="212" dob="1985-10-28" college="LSU" />
<Player playerId="384" active="1" jersey="83" lname="Douglas" fname="Harry" displayName="Harry Douglas" team="TEN" position="WR" height="6-0" weight="183" dob="0000-00-00" college="Louisville" />
<Player playerId="385" active="0" jersey="80" lname="Driver" fname="Donald" displayName="Donald Driver" team="GB" position="WR" height="6-0" weight="194" dob="1975-02-02" college="Alcorn State" />
<Player playerId="386" active="0" jersey="0" lname="Ealy" fname="Biren" displayName="Biren Ealy" team="GB" position="WR" height="6-3" weight="207" dob="0000-00-00" college="Houston" />
<Player playerId="387" active="0" jersey="17" lname="Edwards" fname="Braylon" displayName="Braylon Edwards" team="NYJ" position="WR" height="6-3" weight="214" dob="0000-00-00" college="Michigan" />
<Player playerId="388" active="0" jersey="0" lname="Ellis" fname="Devale" displayName="Devale Ellis" team="CLE" position="WR" height="5-10" weight="174" dob="0000-00-00" college="Hofstra" />
<Player playerId="389" active="0" jersey="88" lname="Engram" fname="Bobby" displayName="Bobby Engram" team="CLE" position="WR" height="5-10" weight="192" dob="0000-00-00" college="Penn State" />
<Player playerId="390" active="0" jersey="83" lname="Evans" fname="Lee" displayName="Lee Evans" team="JAC" position="WR" height="6-0" weight="210" dob="1981-03-11" college="Wisconsin" />
<Player playerId="391" active="0" jersey="13" lname="Figurs" fname="Yamon" displayName="Yamon Figurs" team="TEN" position="WR" height="5-11" weight="185" dob="1982-01-10" college="Kansas State" />
<Player playerId="392" active="0" jersey="0" lname="Filani" fname="Joel" displayName="Joel Filani" team="TB" position="WR" height="6-2" weight="206" dob="0000-00-00" college="Texas Tech" />
<Player playerId="393" active="0" jersey="86" lname="Finneran" fname="Brian" displayName="Brian Finneran" team="ATL" position="WR" height="6-5" weight="210" dob="0000-00-00" college="Villanova" />
<Player playerId="394" active="1" jersey="11" lname="Fitzgerald" fname="Larry" displayName="Larry Fitzgerald" team="ARI" position="WR" height="6-3" weight="218" dob="0000-00-00" college="Pittsburgh" />
<Player playerId="395" active="1" jersey="80" lname="Floyd" fname="Malcom" displayName="Malcom Floyd" team="SD" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="396" active="0" jersey="0" lname="Floyd" fname="Marquis" displayName="Marquis Floyd" team="SEA" position="WR" height="6-0" weight="190" dob="0000-00-00" college="West Georgia" />
<Player playerId="397" active="0" jersey="0" lname="Foster" fname="Jayson" displayName="Jayson Foster" team="DEN" position="WR" height="5-7" weight="175" dob="0000-00-00" college="Georgia Southern" />
<Player playerId="398" active="0" jersey="18" lname="Fowler" fname="Eric" displayName="Eric Fowler" team="DET" position="WR" height="6-3" weight="210" dob="0000-00-00" college="Grand Valley State" />
<Player playerId="399" active="0" jersey="0" lname="Franklin" fname="Will" displayName="Will Franklin" team="OAK" position="WR" height="6-0" weight="210" dob="0000-00-00" college="Missouri" />
<Player playerId="400" active="0" jersey="85" lname="Furrey" fname="Mike" displayName="Mike Furrey" team="WAS" position="WR" height="6-0" weight="192" dob="0000-00-00" college="Northern Iowa" />
<Player playerId="401" active="0" jersey="10" lname="Gaffney" fname="Jabar" displayName="Jabar Gaffney" team="MIA" position="WR" height="6-2" weight="200" dob="1980-12-01" college="Florida" />
<Player playerId="402" active="0" jersey="12" lname="Gage" fname="Justin" displayName="Justin Gage" team="TEN" position="WR" height="6-4" weight="204" dob="1981-01-24" college="Missouri" />
<Player playerId="403" active="0" jersey="84" lname="Galloway" fname="Joey" displayName="Joey Galloway" team="WAS" position="WR" height="5-11" weight="197" dob="0000-00-00" college="Ohio State" />
<Player playerId="404" active="1" jersey="88" lname="Garcon" fname="Pierre" displayName="Pierre Garcon" team="WAS" position="WR" height="6-0" weight="216" dob="0000-00-00" college="Mount Union" />
<Player playerId="405" active="0" jersey="0" lname="Giguere" fname="Samuel" displayName="Samuel Giguere" team="NYG" position="WR" height="5-11" weight="215" dob="1985-07-11" college="Unknown" />
<Player playerId="406" active="1" jersey="19" lname="Ginn Jr." fname="Ted" displayName="Ted Ginn Jr." team="CAR" position="WR" height="5-11" weight="185" dob="0000-00-00" college="Ohio State" />
<Player playerId="407" active="0" jersey="0" lname="Gonzalez" fname="Anthony" displayName="Anthony Gonzalez" team="NE" position="WR" height="6-0" weight="193" dob="0000-00-00" college="Ohio State" />
<Player playerId="408" active="0" jersey="0" lname="Green" fname="Skyler" displayName="Skyler Green" team="NO" position="WR" height="5-9" weight="190" dob="0000-00-00" college="LSU" />
<Player playerId="409" active="0" jersey="0" lname="Hackett" fname="D.J." displayName="D.J. Hackett" team="WAS" position="WR" height="6-2" weight="208" dob="0000-00-00" college="Colorado" />
<Player playerId="410" active="1" jersey="80" lname="Hagan" fname="Derek" displayName="Derek Hagan" team="TEN" position="WR" height="6-2" weight="210" dob="0000-00-00" college="Arizona State" />
<Player playerId="411" active="0" jersey="0" lname="Hagans" fname="Marques" displayName="Marques Hagans" team="WAS" position="WR" height="5-10" weight="205" dob="0000-00-00" college="Virginia" />
<Player playerId="412" active="0" jersey="0" lname="Hall" fname="Dante" displayName="Dante Hall" team="LA" position="WR" height="5-8" weight="187" dob="0000-00-00" college="Texas A&M" />
<Player playerId="413" active="0" jersey="0" lname="Hall" fname="Roy" displayName="Roy Hall" team="NO" position="WR" height="6-3" weight="240" dob="0000-00-00" college="Ohio State" />
<Player playerId="414" active="0" jersey="0" lname="Hankton" fname="Cortez" displayName="Cortez Hankton" team="TB" position="WR" height="6-0" weight="200" dob="0000-00-00" college="Texas Southern" />
<Player playerId="415" active="0" jersey="0" lname="Hannon" fname="Chris" displayName="Chris Hannon" team="BAL" position="WR" height="6-3" weight="205" dob="0000-00-00" college="Tennessee" />
<Player playerId="416" active="0" jersey="84" lname="Hardy" fname="James" displayName="James Hardy" team="BAL" position="WR" height="6-5" weight="220" dob="1985-12-24" college="Indiana" />
<Player playerId="417" active="0" jersey="82" lname="Harper" fname="Justin" displayName="Justin Harper" team="BAL" position="WR" height="6-3" weight="226" dob="1985-02-24" college="Virginia Tech" />
<Player playerId="418" active="0" jersey="0" lname="Harrison" fname="Marvin" displayName="Marvin Harrison" team="IND" position="WR" height="6-0" weight="185" dob="1972-08-25" college="Syracuse" />
<Player playerId="419" active="0" jersey="18" lname="Hass" fname="Mike" displayName="Mike Hass" team="SEA" position="WR" height="6-1" weight="210" dob="0000-00-00" college="Oregon State" />
<Player playerId="420" active="1" jersey="15" lname="Hawkins" fname="Lavelle" displayName="Lavelle Hawkins" team="TB" position="WR" height="5-11" weight="194" dob="0000-00-00" college="California" />
<Player playerId="421" active="0" jersey="0" lname="Hawthorne" fname="C.J." displayName="C.J. Hawthorne" team="BUF" position="WR" height="5-11" weight="168" dob="0000-00-00" college="Hawaii" />
<Player playerId="422" active="0" jersey="87" lname="Henderson" fname="Devery" displayName="Devery Henderson" team="WAS" position="WR" height="5-11" weight="200" dob="0000-00-00" college="LSU" />
<Player playerId="423" active="0" jersey="0" lname="Henry" fname="Chris" displayName="Chris Henry" team="CIN" position="WR" height="6-4" weight="200" dob="1983-05-17" college="West Virginia" />
<Player playerId="424" active="0" jersey="0" lname="Henry" fname="Marcus" displayName="Marcus Henry" team="CAR" position="WR" height="6-4" weight="212" dob="0000-00-00" college="Kansas" />
<Player playerId="425" active="1" jersey="17" lname="Hester" fname="Devin" displayName="Devin Hester" team="ATL" position="WR" height="5-11" weight="190" dob="0000-00-00" college="Miami" />
<Player playerId="426" active="1" jersey="15" lname="Higgins" fname="Johnnie Lee" displayName="Johnnie Lee Higgins" team="PHI" position="WR" height="5-11" weight="185" dob="0000-00-00" college="Texas-El Paso" />
<Player playerId="427" active="0" jersey="0" lname="Hill" fname="Jason" displayName="Jason Hill" team="NYJ" position="WR" height="6-0" weight="202" dob="0000-00-00" college="Washington State" />
<Player playerId="428" active="0" jersey="0" lname="Hilliard" fname="Ike" displayName="Ike Hilliard" team="TB" position="WR" height="5-11" weight="210" dob="0000-00-00" college="Florida" />
<Player playerId="429" active="1" jersey="0" lname="Hixon" fname="Domenik" displayName="Domenik Hixon" team="CHI" position="WR" height="6-2" weight="205" dob="0000-00-00" college="Akron" />
<Player playerId="430" active="0" jersey="17" lname="Holland" fname="Jonathan" displayName="Jonathan Holland" team="OAK" position="WR" height="6-1" weight="195" dob="0000-00-00" college="Louisiana Tech" />
<Player playerId="431" active="1" jersey="14" lname="Holmes" fname="Santonio" displayName="Santonio Holmes" team="CHI" position="WR" height="5-11" weight="192" dob="0000-00-00" college="Ohio State" />
<Player playerId="432" active="0" jersey="0" lname="Holt" fname="Glenn" displayName="Glenn Holt" team="DET" position="WR" height="6-1" weight="193" dob="0000-00-00" college="Kentucky" />
<Player playerId="433" active="0" jersey="84" lname="Holt" fname="Torry" displayName="Torry Holt" team="NE" position="WR" height="6-0" weight="200" dob="0000-00-00" college="North Carolina State" />
<Player playerId="434" active="0" jersey="84" lname="Houshmandzadeh" fname="T.J." displayName="T.J. Houshmandzadeh" team="OAK" position="WR" height="6-2" weight="203" dob="0000-00-00" college="Oregon State" />
<Player playerId="435" active="0" jersey="17" lname="Hubbard" fname="Paul" displayName="Paul Hubbard" team="BUF" position="WR" height="6-2" weight="225" dob="1985-06-12" college="Wisconsin" />
<Player playerId="436" active="0" jersey="15" lname="Huggins" fname="Felton" displayName="Felton Huggins" team="BUF" position="WR" height="6-2" weight="195" dob="1983-02-15" college="Southeastern Louisiana" />
<Player playerId="437" active="0" jersey="86" lname="Hughes" fname="Nate" displayName="Nate Hughes" team="DET" position="WR" height="6-2" weight="195" dob="0000-00-00" college="Alcorn State" />
<Player playerId="438" active="0" jersey="81" lname="Hurd" fname="Sam" displayName="Sam Hurd" team="CHI" position="WR" height="6-3" weight="200" dob="0000-00-00" college="Northern Illinois" />
<Player playerId="439" active="0" jersey="17" lname="Jackson" fname="Chad" displayName="Chad Jackson" team="OAK" position="WR" height="6-1" weight="223" dob="1985-03-06" college="Florida" />
<Player playerId="440" active="0" jersey="0" lname="Jackson" fname="Darrell" displayName="Darrell Jackson" team="DEN" position="WR" height="5-11" weight="210" dob="0000-00-00" college="Florida" />
<Player playerId="441" active="1" jersey="11" lname="Jackson" fname="DeSean" displayName="DeSean Jackson" team="WAS" position="WR" height="5-10" weight="178" dob="0000-00-00" college="California" />
<Player playerId="442" active="0" jersey="89" lname="Jackson" fname="Dexter" displayName="Dexter Jackson" team="NYJ" position="WR" height="5-9" weight="182" dob="0000-00-00" college="Appalachian State" />
<Player playerId="443" active="0" jersey="0" lname="Jackson" fname="Nate" displayName="Nate Jackson" team="CLE" position="WR" height="6-3" weight="235" dob="0000-00-00" college="Menlo College" />
<Player playerId="444" active="1" jersey="83" lname="Jackson" fname="Vincent" displayName="Vincent Jackson" team="TB" position="WR" height="6-5" weight="230" dob="0000-00-00" college="Northern Colorado" />
<Player playerId="445" active="0" jersey="80" lname="Jarrett" fname="Dwayne" displayName="Dwayne Jarrett" team="CAR" position="WR" height="6-4" weight="219" dob="0000-00-00" college="USC" />
<Player playerId="446" active="0" jersey="0" lname="Jefferson" fname="Mike" displayName="Mike Jefferson" team="DAL" position="WR" height="6-1" weight="206" dob="0000-00-00" college="Montana State" />
<Player playerId="447" active="0" jersey="10" lname="Jenkins" fname="Darnell" displayName="Darnell Jenkins" team="NE" position="WR" height="5-10" weight="191" dob="1982-12-31" college="Miami (Fla.)" />
<Player playerId="448" active="0" jersey="0" lname="Jenkins" fname="Justin" displayName="Justin Jenkins" team="BUF" position="WR" height="6-0" weight="207" dob="0000-00-00" college="Mississippi State" />
<Player playerId="449" active="0" jersey="10" lname="Jenkins" fname="Michael" displayName="Michael Jenkins" team="NE" position="WR" height="6-4" weight="214" dob="0000-00-00" college="Ohio State" />
<Player playerId="450" active="0" jersey="0" lname="Jennings" fname="Adam" displayName="Adam Jennings" team="NYG" position="WR" height="5-9" weight="180" dob="0000-00-00" college="Fresno State" />
<Player playerId="451" active="1" jersey="85" lname="Jennings" fname="Greg" displayName="Greg Jennings" team="MIA" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="452" active="1" jersey="81" lname="Johnson" fname="Andre" displayName="Andre Johnson" team="IND" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="453" active="0" jersey="89" lname="Johnson" fname="Bryant" displayName="Bryant Johnson" team="HOU" position="WR" height="6-3" weight="212" dob="0000-00-00" college="Penn State" />
<Player playerId="454" active="0" jersey="81" lname="Johnson" fname="Calvin" displayName="Calvin Johnson" team="DET" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="455" active="0" jersey="83" lname="Johnson" fname="Jaymar" displayName="Jaymar Johnson" team="ARI" position="WR" height="6-0" weight="183" dob="1984-07-10" college="Jackson State" />
<Player playerId="456" active="1" jersey="11" lname="Johnson" fname="Stevie" displayName="Stevie Johnson" team="SD" position="WR" height="6-2" weight="207" dob="0000-00-00" college="Kentucky" />
<Player playerId="457" active="0" jersey="0" lname="Jones" fname="Brandon" displayName="Brandon Jones" team="BAL" position="WR" height="6-1" weight="212" dob="1982-10-06" college="Oklahoma" />
<Player playerId="458" active="0" jersey="0" lname="Jones" fname="C.J." displayName="C.J. Jones" team="DEN" position="WR" height="5-11" weight="195" dob="0000-00-00" college="Iowa" />
<Player playerId="459" active="1" jersey="12" lname="Jones" fname="Jacoby" displayName="Jacoby Jones" team="PIT" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="460" active="1" jersey="89" lname="Jones" fname="James" displayName="James Jones" team="GB" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="461" active="0" jersey="0" lname="Jones" fname="Mark" displayName="Mark Jones" team="TEN" position="WR" height="5-9" weight="185" dob="0000-00-00" college="Tennessee" />
<Player playerId="462" active="0" jersey="0" lname="Jones" fname="Matt" displayName="Matt Jones" team="CIN" position="WR" height="6-6" weight="222" dob="0000-00-00" college="Arkansas" />
<Player playerId="463" active="0" jersey="0" lname="Jones" fname="Nate" displayName="Nate Jones" team="LA" position="WR" height="6-2" weight="195" dob="0000-00-00" college="Texas" />
<Player playerId="464" active="0" jersey="17" lname="Jones" fname="Onrea" displayName="Onrea Jones" team="CHI" position="WR" height="5-11" weight="202" dob="1983-12-22" college="Hampton" />
<Player playerId="465" active="0" jersey="0" lname="Jurevicius" fname="Joe" displayName="Joe Jurevicius" team="CLE" position="WR" height="6-5" weight="230" dob="0000-00-00" college="Penn State" />
<Player playerId="466" active="0" jersey="12" lname="Kelly" fname="Malcolm" displayName="Malcolm Kelly" team="WAS" position="WR" height="6-4" weight="226" dob="1986-12-30" college="Oklahoma" />
<Player playerId="467" active="0" jersey="82" lname="Kent" fname="Jordan" displayName="Jordan Kent" team="LA" position="WR" height="6-4" weight="219" dob="0000-00-00" college="Oregon" />
<Player playerId="468" active="0" jersey="0" lname="Kilmer" fname="Ethan" displayName="Ethan Kilmer" team="MIA" position="WR" height="6-0" weight="205" dob="0000-00-00" college="Penn State" />
<Player playerId="469" active="0" jersey="0" lname="Leggett" fname="Lance" displayName="Lance Leggett" team="CLE" position="WR" height="6-3" weight="205" dob="0000-00-00" college="Miami (Fla.)" />
<Player playerId="470" active="0" jersey="0" lname="Lelie" fname="Ashley" displayName="Ashley Lelie" team="KC" position="WR" height="6-3" weight="195" dob="0000-00-00" college="Hawaii" />
<Player playerId="471" active="0" jersey="17" lname="Lewis" fname="Greg" displayName="Greg Lewis" team="MIN" position="WR" height="6-0" weight="185" dob="0000-00-00" college="Illinois" />
<Player playerId="472" active="1" jersey="84" lname="Lloyd" fname="Brandon" displayName="Brandon Lloyd" team="SF" position="WR" height="6-0" weight="200" dob="1981-07-05" college="Illinois" />
<Player playerId="473" active="0" jersey="15" lname="London" fname="Brandon" displayName="Brandon London" team="PIT" position="WR" height="6-4" weight="210" dob="0000-00-00" college="Massachusetts" />
<Player playerId="474" active="0" jersey="86" lname="Long" fname="Lance" displayName="Lance Long" team="DET" position="WR" height="5-11" weight="186" dob="0000-00-00" college="Mississippi State" />
<Player playerId="475" active="0" jersey="0" lname="Looker" fname="Dane" displayName="Dane Looker" team="DET" position="WR" height="6-0" weight="194" dob="0000-00-00" college="Washington" />
<Player playerId="476" active="0" jersey="0" lname="Lowber" fname="Todd" displayName="Todd Lowber" team="MIA" position="WR" height="6-3" weight="205" dob="0000-00-00" college="Ramapo" />
<Player playerId="477" active="0" jersey="0" lname="Lucas" fname="Chad" displayName="Chad Lucas" team="LA" position="WR" height="6-1" weight="201" dob="0000-00-00" college="Alabama State" />
<Player playerId="478" active="0" jersey="0" lname="Madsen" fname="John" displayName="John Madsen" team="CLE" position="TE" height="6-5" weight="240" dob="0000-00-00" college="Utah" />
<Player playerId="479" active="1" jersey="86" lname="Manningham" fname="Mario" displayName="Mario Manningham" team="NYG" position="WR" height="5-11" weight="185" dob="1986-05-25" college="Michigan" />
<Player playerId="480" active="1" jersey="15" lname="Marshall" fname="Brandon" displayName="Brandon Marshall" team="NYJ" position="WR" height="6-4" weight="230" dob="0000-00-00" college="UCF" />
<Player playerId="481" active="0" jersey="82" lname="Martin" fname="Ruvell" displayName="Ruvell Martin" team="BUF" position="WR" height="6-4" weight="214" dob="1982-08-10" college="Saginaw Valley State" />
<Player playerId="482" active="0" jersey="0" lname="Martinez" fname="Glenn" displayName="Glenn Martinez" team="HOU" position="WR" height="6-1" weight="190" dob="0000-00-00" college="Saginaw Valley State" />
<Player playerId="484" active="0" jersey="0" lname="Maxwell" fname="Marcus" displayName="Marcus Maxwell" team="SEA" position="WR" height="6-3" weight="210" dob="0000-00-00" college="Oregon" />
<Player playerId="485" active="0" jersey="0" lname="McBride" fname="Shaheer" displayName="Shaheer McBride" team="PHI" position="WR" height="6-2" weight="205" dob="0000-00-00" college="Delaware State" />
<Player playerId="486" active="0" jersey="0" lname="McCareins" fname="Justin" displayName="Justin McCareins" team="TEN" position="WR" height="6-2" weight="215" dob="0000-00-00" college="Northern Illinois" />
<Player playerId="487" active="0" jersey="0" lname="McDonald" fname="Shaun" displayName="Shaun McDonald" team="PIT" position="WR" height="5-10" weight="183" dob="0000-00-00" college="Arizona State" />
<Player playerId="488" active="0" jersey="0" lname="McMahan" fname="Kevin" displayName="Kevin McMahan" team="CAR" position="WR" height="6-2" weight="192" dob="0000-00-00" college="Maine" />
<Player playerId="489" active="0" jersey="0" lname="McMullen" fname="Billy" displayName="Billy McMullen" team="DET" position="WR" height="6-4" weight="215" dob="0000-00-00" college="Virginia" />
<Player playerId="490" active="1" jersey="0" lname="Meachem" fname="Robert" displayName="Robert Meachem" team="NO" position="WR" height="6-2" weight="215" dob="0000-00-00" college="Tennessee" />
<Player playerId="491" active="0" jersey="82" lname="Moore" fname="Evan" displayName="Evan Moore" team="SEA" position="TE" height="6-6" weight="250" dob="1985-01-03" college="Stanford" />
<Player playerId="492" active="0" jersey="80" lname="Moore" fname="Kenny" displayName="Kenny Moore" team="PIT" position="WR" height="5-11" weight="195" dob="1985-02-19" college="Wake Forest" />
<Player playerId="493" active="1" jersey="16" lname="Moore" fname="Lance" displayName="Lance Moore" team="DET" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="494" active="0" jersey="0" lname="Morey" fname="Sean" displayName="Sean Morey" team="SEA" position="WR" height="5-11" weight="193" dob="0000-00-00" college="Brown" />
<Player playerId="495" active="1" jersey="17" lname="Morgan" fname="Josh" displayName="Josh Morgan" team="NO" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="496" active="0" jersey="84" lname="Moss" fname="Randy" displayName="Randy Moss" team="SF" position="WR" height="6-4" weight="210" dob="0000-00-00" college="Marshall" />
<Player playerId="497" active="1" jersey="89" lname="Moss" fname="Santana" displayName="Santana Moss" team="WAS" position="WR" height="5-10" weight="193" dob="1979-06-01" college="Miami (Fla.)" />
<Player playerId="498" active="0" jersey="83" lname="Moss" fname="Sinorice" displayName="Sinorice Moss" team="PHI" position="WR" height="5-8" weight="185" dob="1983-12-28" college="Miami (Fla.)" />
<Player playerId="499" active="0" jersey="0" lname="Muhammad" fname="Muhsin" displayName="Muhsin Muhammad" team="CAR" position="WR" height="6-2" weight="215" dob="0000-00-00" college="Michigan State" />
<Player playerId="500" active="0" jersey="19" lname="Naanee" fname="Legedu" displayName="Legedu Naanee" team="MIA" position="WR" height="6-2" weight="215" dob="1983-09-16" college="Boise State" />
<Player playerId="501" active="0" jersey="0" lname="Nance" fname="Martin" displayName="Martin Nance" team="PIT" position="WR" height="6-3" weight="212" dob="0000-00-00" college="Miami (Ohio)" />
<Player playerId="502" active="1" jersey="87" lname="Nelson" fname="Jordy" displayName="Jordy Nelson" team="GB" position="WR" height="6-3" weight="217" dob="0000-00-00" college="Kansas State" />
<Player playerId="503" active="0" jersey="86" lname="Northcutt" fname="Dennis" displayName="Dennis Northcutt" team="DET" position="WR" height="5-11" weight="172" dob="0000-00-00" college="Arizona" />
<Player playerId="504" active="1" jersey="15" lname="Obomanu" fname="Ben" displayName="Ben Obomanu" team="NYJ" position="WR" height="6-1" weight="204" dob="0000-00-00" college="Auburn" />
<Player playerId="505" active="0" jersey="85" lname="Johnson" fname="Chad" displayName="Chad Johnson" team="MIA" position="WR" height="6-1" weight="188" dob="0000-00-00" college="Oregon State" />
<Player playerId="506" active="1" jersey="14" lname="Osgood" fname="Kassim" displayName="Kassim Osgood" team="SF" position="WR" height="6-5" weight="220" dob="0000-00-00" college="San Diego State" />
<Player playerId="507" active="0" jersey="10" lname="Owens" fname="Terrell" displayName="Terrell Owens" team="SEA" position="WR" height="6-3" weight="224" dob="0000-00-00" college="Tennessee-Chattanooga" />
<Player playerId="508" active="0" jersey="12" lname="Parrish" fname="Roscoe" displayName="Roscoe Parrish" team="TB" position="WR" height="5-9" weight="175" dob="1982-07-16" college="Miami (Fla.)" />
<Player playerId="509" active="0" jersey="0" lname="Patten" fname="David" displayName="David Patten" team="NE" position="WR" height="5-10" weight="190" dob="0000-00-00" college="Western Carolina" />
<Player playerId="510" active="0" jersey="18" lname="Payne" fname="Logan" displayName="Logan Payne" team="BAL" position="WR" height="6-2" weight="205" dob="1985-01-21" college="Minnesota" />
<Player playerId="511" active="0" jersey="0" lname="Perry" fname="Tab" displayName="Tab Perry" team="MIA" position="WR" height="6-3" weight="215" dob="0000-00-00" college="UCLA" />
<Player playerId="512" active="0" jersey="0" lname="Porter" fname="Jerry" displayName="Jerry Porter" team="JAC" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="513" active="0" jersey="0" lname="Price" fname="Maurice" displayName="Maurice Price" team="TB" position="WR" height="6-1" weight="197" dob="1985-09-11" college="Charleston Southern" />
<Player playerId="514" active="0" jersey="14" lname="Purify" fname="Maurice" displayName="Maurice Purify" team="CIN" position="WR" height="6-3" weight="222" dob="0000-00-00" college="Nebraska" />
<Player playerId="515" active="1" jersey="82" lname="Randle El" fname="Antwaan" displayName="Antwaan Randle El" team="PIT" position="WR" height="5-10" weight="185" dob="0000-00-00" college="Indiana" />
<Player playerId="516" active="0" jersey="0" lname="Raymond" fname="Paul" displayName="Paul Raymond" team="CLE" position="WR" height="5-10" weight="185" dob="0000-00-00" college="Brown" />
<Player playerId="517" active="0" jersey="82" lname="Reed" fname="Josh" displayName="Josh Reed" team="SD" position="WR" height="5-10" weight="210" dob="0000-00-00" college="LSU" />
<Player playerId="518" active="0" jersey="25" lname="Reynaud" fname="Darius" displayName="Darius Reynaud" team="TEN" position="RB" height="5-9" weight="201" dob="1984-12-29" college="West Virginia" />
<Player playerId="519" active="1" jersey="18" lname="Rice" fname="Sidney" displayName="Sidney Rice" team="SEA" position="WR" height="6-4" weight="202" dob="0000-00-00" college="South Carolina" />
<Player playerId="520" active="0" jersey="0" lname="Rideau" fname="Brandon" displayName="Brandon Rideau" team="CHI" position="WR" height="6-3" weight="198" dob="0000-00-00" college="Kansas" />
<Player playerId="521" active="0" jersey="0" lname="Robinson" fname="Kevin" displayName="Kevin Robinson" team="KC" position="WR" height="6-0" weight="196" dob="0000-00-00" college="Utah State" />
<Player playerId="522" active="0" jersey="0" lname="Robinson" fname="Koren" displayName="Koren Robinson" team="SEA" position="WR" height="6-1" weight="205" dob="0000-00-00" college="North Carolina State" />
<Player playerId="523" active="0" jersey="81" lname="Robinson" fname="Laurent" displayName="Laurent Robinson" team="JAC" position="WR" height="6-2" weight="205" dob="1985-05-20" college="Illinois State" />
<Player playerId="524" active="0" jersey="0" lname="Robinson" fname="Ryne" displayName="Ryne Robinson" team="CAR" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="525" active="1" jersey="15" lname="Roby" fname="Courtney" displayName="Courtney Roby" team="ATL" position="WR" height="6-0" weight="189" dob="0000-00-00" college="Indiana" />
<Player playerId="526" active="1" jersey="19" lname="Royal" fname="Eddie" displayName="Eddie Royal" team="CHI" position="WR" height="5-10" weight="185" dob="0000-00-00" college="Virginia Tech" />
<Player playerId="527" active="0" jersey="0" lname="Rucker" fname="Micah" displayName="Micah Rucker" team="NYG" position="WR" height="6-6" weight="221" dob="0000-00-00" college="Eastern Illinois" />
<Player playerId="528" active="0" jersey="0" lname="Russell" fname="Cliff" displayName="Cliff Russell" team="DEN" position="WR" height="5-11" weight="190" dob="0000-00-00" college="Utah" />
<Player playerId="529" active="0" jersey="0" lname="Sam" fname="Lorne" displayName="Lorne Sam" team="GB" position="WR" height="6-3" weight="220" dob="0000-00-00" college="Texas-El Paso" />
<Player playerId="530" active="0" jersey="0" lname="Sam" fname="P.K." displayName="P.K. Sam" team="BUF" position="WR" height="6-3" weight="210" dob="0000-00-00" college="Florida State" />
<Player playerId="531" active="0" jersey="0" lname="Sanders" fname="Steve" displayName="Steve Sanders" team="ARI" position="WR" height="6-3" weight="205" dob="0000-00-00" college="Bowling Green State" />
<Player playerId="532" active="0" jersey="19" lname="Schilens" fname="Chaz" displayName="Chaz Schilens" team="DET" position="WR" height="6-4" weight="225" dob="0000-00-00" college="San Diego State" />
<Player playerId="533" active="0" jersey="0" lname="Shepherd" fname="Edell" displayName="Edell Shepherd" team="DEN" position="WR" height="6-1" weight="175" dob="0000-00-00" college="San Jose State" />
<Player playerId="534" active="0" jersey="0" lname="Shields" fname="Arman" displayName="Arman Shields" team="OAK" position="WR" height="6-1" weight="195" dob="0000-00-00" college="Richmond" />
<Player playerId="535" active="0" jersey="0" lname="Simmons" fname="Mark" displayName="Mark Simmons" team="HOU" position="WR" height="5-10" weight="185" dob="0000-00-00" college="Kansas" />
<Player playerId="536" active="1" jersey="14" lname="Simpson" fname="Jerome" displayName="Jerome Simpson" team="SF" position="WR" height="6-2" weight="190" dob="0000-00-00" college="Coastal Carolina" />
<Player playerId="537" active="1" jersey="18" lname="Slater" fname="Matthew" displayName="Matthew Slater" team="NE" position="WR" height="6-0" weight="205" dob="0000-00-00" college="UCLA" />
<Player playerId="538" active="1" jersey="16" lname="Smith" fname="Brad" displayName="Brad Smith" team="PHI" position="WR" height="6-2" weight="213" dob="1983-12-12" college="Missouri" />
<Player playerId="539" active="0" jersey="11" lname="Smith" fname="Marcus" displayName="Marcus Smith" team="BAL" position="WR" height="6-1" weight="225" dob="1985-01-11" college="New Mexico" />
<Player playerId="540" active="0" jersey="12" lname="Smith" fname="Steve" displayName="Steve Smith" team="TB" position="WR" height="5-11" weight="195" dob="1985-05-06" college="USC" />
<Player playerId="541" active="1" jersey="89" lname="Smith" fname="Steve" displayName="Steve Smith" team="BAL" position="WR" height="5-9" weight="195" dob="0000-00-00" college="Utah" />
<Player playerId="542" active="0" jersey="10" lname="Smith" fname="Taj" displayName="Taj Smith" team="IND" position="WR" height="6-0" weight="192" dob="1983-09-30" college="Syracuse" />
<Player playerId="543" active="1" jersey="18" lname="Spurlock" fname="Micheal" displayName="Micheal Spurlock" team="CHI" position="WR" height="5-11" weight="210" dob="0000-00-00" college="Mississippi" />
<Player playerId="544" active="0" jersey="14" lname="Stallworth" fname="Donte'" displayName="Donte' Stallworth" team="WAS" position="WR" height="6-0" weight="200" dob="0000-00-00" college="Tennessee" />
<Player playerId="545" active="0" jersey="86" lname="Stanback" fname="Isaiah" displayName="Isaiah Stanback" team="JAC" position="TE" height="6-2" weight="228" dob="0000-00-00" college="Washington" />
<Player playerId="546" active="0" jersey="0" lname="Standeford" fname="John" displayName="John Standeford" team="CIN" position="WR" height="6-4" weight="200" dob="1982-04-15" college="Purdue" />
<Player playerId="547" active="0" jersey="0" lname="Stanley" fname="Derek" displayName="Derek Stanley" team="LA" position="WR" height="5-11" weight="182" dob="0000-00-00" college="Wis.-Whitewater" />
<Player playerId="548" active="0" jersey="10" lname="Steptoe" fname="Syndric" displayName="Syndric Steptoe" team="CLE" position="WR" height="5-9" weight="200" dob="0000-00-00" college="Arizona" />
<Player playerId="549" active="1" jersey="80" lname="Stokley" fname="Brandon" displayName="Brandon Stokley" team="BAL" position="WR" height="6-0" weight="194" dob="0000-00-00" college="Louisiana-Lafayette" />
<Player playerId="550" active="0" jersey="83" lname="Stovall" fname="Maurice" displayName="Maurice Stovall" team="JAC" position="TE" height="6-5" weight="220" dob="1985-02-21" college="Notre Dame" />
<Player playerId="551" active="0" jersey="17" lname="Stuckey" fname="Chansi" displayName="Chansi Stuckey" team="ARI" position="WR" height="6-0" weight="196" dob="0000-00-00" college="Clemson" />
<Player playerId="552" active="0" jersey="16" lname="Swain" fname="Brett" displayName="Brett Swain" team="SEA" position="WR" height="6-0" weight="200" dob="0000-00-00" college="San Diego State" />
<Player playerId="553" active="0" jersey="80" lname="Sweed" fname="Limas" displayName="Limas Sweed" team="PIT" position="WR" height="6-4" weight="220" dob="1984-12-25" college="Texas" />
<Player playerId="554" active="0" jersey="0" lname="Taylor" fname="Courtney" displayName="Courtney Taylor" team="SEA" position="WR" height="6-1" weight="205" dob="0000-00-00" college="Auburn" />
<Player playerId="555" active="0" jersey="0" lname="Taylor" fname="Travis" displayName="Travis Taylor" team="DET" position="WR" height="6-1" weight="210" dob="0000-00-00" college="Florida" />
<Player playerId="556" active="0" jersey="11" lname="Thomas" fname="Devin" displayName="Devin Thomas" team="DET" position="WR" height="6-2" weight="221" dob="0000-00-00" college="Michigan State" />
<Player playerId="557" active="0" jersey="0" lname="Thorpe" fname="Craphonso" displayName="Craphonso Thorpe" team="TEN" position="WR" height="6-0" weight="187" dob="0000-00-00" college="Florida State" />
<Player playerId="558" active="0" jersey="0" lname="Thrash" fname="James" displayName="James Thrash" team="WAS" position="WR" height="6-0" weight="204" dob="0000-00-00" college="Missouri Southern State" />
<Player playerId="559" active="0" jersey="0" lname="Toomer" fname="Amani" displayName="Amani Toomer" team="KC" position="WR" height="6-3" weight="203" dob="0000-00-00" college="Michigan" />
<Player playerId="560" active="0" jersey="0" lname="Tyree" fname="David" displayName="David Tyree" team="BAL" position="WR" height="6-0" weight="206" dob="0000-00-00" college="Syracuse" />
<Player playerId="561" active="0" jersey="83" lname="Urban" fname="Jerheme" displayName="Jerheme Urban" team="KC" position="WR" height="6-3" weight="207" dob="0000-00-00" college="Trinity (Tex.)" />
<Player playerId="562" active="0" jersey="0" lname="Urrutia" fname="Mario" displayName="Mario Urrutia" team="TB" position="WR" height="6-6" weight="232" dob="0000-00-00" college="Louisville" />
<Player playerId="563" active="0" jersey="19" lname="Wade" fname="Bobby" displayName="Bobby Wade" team="WAS" position="WR" height="5-10" weight="195" dob="0000-00-00" college="Arizona" />
<Player playerId="564" active="1" jersey="82" lname="Walker" fname="Delanie" displayName="Delanie Walker" team="TEN" position="TE" height="6-0" weight="248" dob="0000-00-00" college="Central Missouri State" />
<Player playerId="565" active="0" jersey="0" lname="Walker" fname="Javon" displayName="Javon Walker" team="MIN" position="WR" height="6-3" weight="215" dob="0000-00-00" college="Florida State" />
<Player playerId="566" active="0" jersey="10" lname="Sims-Walker" fname="Mike" displayName="Mike Sims-Walker" team="LA" position="WR" height="6-2" weight="212" dob="0000-00-00" college="Central Florida" />
<Player playerId="567" active="1" jersey="87" lname="Walter" fname="Kevin" displayName="Kevin Walter" team="TEN" position="WR" height="6-3" weight="218" dob="0000-00-00" college="Eastern Michigan" />
<Player playerId="568" active="0" jersey="86" lname="Ward" fname="Hines" displayName="Hines Ward" team="PIT" position="WR" height="6-0" weight="205" dob="1976-03-08" college="Georgia" />
<Player playerId="569" active="0" jersey="0" lname="Warren" fname="Paris" displayName="Paris Warren" team="NO" position="WR" height="6-0" weight="213" dob="0000-00-00" college="Utah" />
<Player playerId="570" active="0" jersey="87" lname="Washington" fname="Kelley" displayName="Kelley Washington" team="SD" position="WR" height="6-3" weight="217" dob="1979-08-21" college="Tennessee" />
<Player playerId="571" active="1" jersey="84" lname="Washington" fname="Nate" displayName="Nate Washington" team="NE" position="WR" height="6-1" weight="183" dob="0000-00-00" college="Tiffin University" />
<Player playerId="572" active="0" jersey="19" lname="Watkins" fname="Todd" displayName="Todd Watkins" team="NYG" position="WR" height="6-3" weight="195" dob="1983-06-22" college="Brigham Young" />
<Player playerId="573" active="0" jersey="15" lname="Wayne" fname="Reggie" displayName="Reggie Wayne" team="NE" position="WR" height="6-0" weight="203" dob="1978-11-17" college="Miami (FL)" />
<Player playerId="574" active="0" jersey="0" lname="Webb" fname="Jeff" displayName="Jeff Webb" team="KC" position="WR" height="6-2" weight="211" dob="0000-00-00" college="San Diego State" />
<Player playerId="575" active="1" jersey="14" lname="Weems" fname="Eric" displayName="Eric Weems" team="ATL" position="WR" height="5-9" weight="195" dob="0000-00-00" college="Bethune-Cookman" />
<Player playerId="576" active="1" jersey="83" lname="Welker" fname="Wes" displayName="Wes Welker" team="LA" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="577" active="0" jersey="0" lname="Wheelwright" fname="Ernie" displayName="Ernie Wheelwright" team="BAL" position="WR" height="6-5" weight="217" dob="0000-00-00" college="Minnesota" />
<Player playerId="578" active="1" jersey="84" lname="White" fname="Roddy" displayName="Roddy White" team="ATL" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="579" active="0" jersey="0" lname="Whittaker" fname="Huey" displayName="Huey Whittaker" team="NYJ" position="WR" height="6-4" weight="234" dob="0000-00-00" college="South Florida" />
<Player playerId="580" active="0" jersey="85" lname="Wilford" fname="Ernest" displayName="Ernest Wilford" team="JAC" position="WR" height="6-4" weight="235" dob="0000-00-00" college="Virginia Tech" />
<Player playerId="581" active="0" jersey="0" lname="Williams" fname="Brandon" displayName="Brandon Williams" team="PIT" position="WR" height="5-11" weight="170" dob="0000-00-00" college="Wisconsin" />
<Player playerId="582" active="0" jersey="8" lname="Williams" fname="Chandler" displayName="Chandler Williams" team="KC" position="WR" height="5-11" weight="176" dob="1985-08-09" college="Florida International" />
<Player playerId="583" active="0" jersey="88" lname="Williams" fname="Demetrius" displayName="Demetrius Williams" team="JAC" position="WR" height="6-2" weight="202" dob="1983-03-28" college="Oregon" />
<Player playerId="584" active="0" jersey="0" lname="Williams" fname="Edward" displayName="Edward Williams" team="CLE" position="WR" height="6-4" weight="210" dob="0000-00-00" college="Lane" />
<Player playerId="585" active="0" jersey="0" lname="Williams" fname="Harry" displayName="Harry Williams" team="HOU" position="WR" height="6-2" weight="187" dob="0000-00-00" college="Tuskegee" />
<Player playerId="586" active="0" jersey="17" lname="Williams" fname="Paul" displayName="Paul Williams" team="HOU" position="WR" height="6-1" weight="196" dob="1983-12-02" college="Fresno State" />
<Player playerId="587" active="0" jersey="0" lname="Williams" fname="Reggie" displayName="Reggie Williams" team="SEA" position="WR" height="6-4" weight="212" dob="0000-00-00" college="Washington" />
<Player playerId="588" active="0" jersey="11" lname="Williams" fname="Roy" displayName="Roy Williams" team="CHI" position="WR" height="6-3" weight="215" dob="0000-00-00" college="Texas" />
<Player playerId="589" active="0" jersey="84" lname="Williamson" fname="Troy" displayName="Troy Williamson" team="JAC" position="WR" height="6-1" weight="203" dob="0000-00-00" college="South Carolina" />
<Player playerId="590" active="0" jersey="12" lname="Willis" fname="Matt" displayName="Matt Willis" team="DET" position="WR" height="6-0" weight="190" dob="0000-00-00" college="UCLA" />
<Player playerId="591" active="0" jersey="37" lname="Wilson" fname="George" displayName="George Wilson" team="BUF" position="WR" height="6-0" weight="212" dob="1981-03-14" college="Arkansas" />
<Player playerId="592" active="0" jersey="0" lname="Wilson" fname="Travis" displayName="Travis Wilson" team="DAL" position="WR" height="6-1" weight="210" dob="0000-00-00" college="Oklahoma" />
<Player playerId="593" active="0" jersey="0" lname="Woods" fname="D'Juan" displayName="D'Juan Woods" team="NO" position="WR" height="6-1" weight="210" dob="0000-00-00" college="Oklahoma State" />
<Player playerId="594" active="0" jersey="12" lname="Wright" fname="Wallace" displayName="Wallace Wright" team="TB" position="WR" height="6-1" weight="197" dob="1984-02-01" college="North Carolina" />
<Player playerId="595" active="0" jersey="17" lname="Zeigler" fname="Dominique" displayName="Dominique Zeigler" team="SF" position="WR" height="6-3" weight="185" dob="1984-10-11" college="Baylor" />
<Player playerId="596" active="0" jersey="0" lname="Anderson" fname="Courtney" displayName="Courtney Anderson" team="HOU" position="TE" height="6-6" weight="270" dob="0000-00-00" college="San Jose State" />
<Player playerId="597" active="0" jersey="89" lname="Angulo" fname="Richard" displayName="Richard Angulo" team="CHI" position="TE" height="6-8" weight="260" dob="0000-00-00" college="Western New Mexico" />
<Player playerId="598" active="1" jersey="86" lname="Bajema" fname="Billy" displayName="Billy Bajema" team="BAL" position="TE" height="6-4" weight="259" dob="0000-00-00" college="Oklahoma State" />
<Player playerId="599" active="0" jersey="86" lname="Baker" fname="Chris" displayName="Chris Baker" team="SEA" position="TE" height="6-3" weight="261" dob="0000-00-00" college="Michigan State" />
<Player playerId="600" active="1" jersey="82" lname="Barnidge" fname="Gary" displayName="Gary Barnidge" team="CLE" position="TE" height="6-6" weight="250" dob="0000-00-00" college="Louisville" />
<Player playerId="601" active="0" jersey="87" lname="Becht" fname="Anthony" displayName="Anthony Becht" team="KC" position="TE" height="6-6" weight="270" dob="1977-08-08" college="West Virginia" />
<Player playerId="602" active="1" jersey="83" lname="Bennett" fname="Martellus" displayName="Martellus Bennett" team="NE" position="TE" height="6-6" weight="273" dob="0000-00-00" college="Texas A&M" />
<Player playerId="603" active="0" jersey="84" lname="Bergen" fname="Adam" displayName="Adam Bergen" team="DEN" position="TE" height="6-4" weight="267" dob="0000-00-00" college="Lehigh" />
<Player playerId="604" active="0" jersey="50" lname="Binn" fname="David" displayName="David Binn" team="SD" position="TE" height="6-3" weight="228" dob="1972-02-06" college="California" />
<Player playerId="605" active="0" jersey="80" lname="Boss" fname="Kevin" displayName="Kevin Boss" team="KC" position="TE" height="6-6" weight="255" dob="1984-01-11" college="Western Oregon" />
<Player playerId="606" active="0" jersey="0" lname="Brown" fname="Chris" displayName="Chris Brown" team="MIA" position="RB" height="6-0" weight="239" dob="0000-00-00" college="Tennessee" />
<Player playerId="607" active="0" jersey="0" lname="Bruener" fname="Mark" displayName="Mark Bruener" team="HOU" position="TE" height="6-4" weight="253" dob="0000-00-00" college="Washington" />
<Player playerId="608" active="0" jersey="0" lname="Butler" fname="Eric" displayName="Eric Butler" team="OAK" position="TE" height="6-2" weight="263" dob="0000-00-00" college="Mississippi State" />
<Player playerId="609" active="0" jersey="0" lname="Campbell" fname="Dan" displayName="Dan Campbell" team="NO" position="TE" height="6-5" weight="265" dob="0000-00-00" college="Texas A&M" />
<Player playerId="610" active="0" jersey="0" lname="Campbell" fname="Mark" displayName="Mark Campbell" team="NO" position="TE" height="6-6" weight="260" dob="0000-00-00" college="Michigan" />
<Player playerId="611" active="1" jersey="89" lname="Carlson" fname="John" displayName="John Carlson" team="ARI" position="TE" height="6-5" weight="248" dob="0000-00-00" college="Notre Dame" />
<Player playerId="612" active="1" jersey="87" lname="Celek" fname="Brent" displayName="Brent Celek" team="PHI" position="TE" height="6-4" weight="255" dob="0000-00-00" college="Cincinnati" />
<Player playerId="613" active="1" jersey="88" lname="Chandler" fname="Scott" displayName="Scott Chandler" team="NE" position="TE" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="614" active="0" jersey="0" lname="Cieslak" fname="Brad" displayName="Brad Cieslak" team="CLE" position="TE" height="6-3" weight="260" dob="0000-00-00" college="Northern Illinois" />
<Player playerId="615" active="1" jersey="87" lname="Clark" fname="Dallas" displayName="Dallas Clark" team="BAL" position="TE" height="6-3" weight="252" dob="0000-00-00" college="Iowa" />
<Player playerId="616" active="0" jersey="88" lname="Clark" fname="Desmond" displayName="Desmond Clark" team="CHI" position="TE" height="6-3" weight="249" dob="1977-04-20" college="Wake Forest" />
<Player playerId="617" active="0" jersey="85" lname="Coats" fname="Daniel" displayName="Daniel Coats" team="NYG" position="TE" height="6-3" weight="264" dob="1984-04-16" college="Brigham Young" />
<Player playerId="618" active="0" jersey="47" lname="Cooley" fname="Chris" displayName="Chris Cooley" team="WAS" position="TE" height="6-3" weight="243" dob="0000-00-00" college="Utah State" />
<Player playerId="619" active="0" jersey="87" lname="Cottam" fname="Brad" displayName="Brad Cottam" team="KC" position="TE" height="6-7" weight="269" dob="0000-00-00" college="Tennessee" />
<Player playerId="620" active="0" jersey="82" lname="Crumpler" fname="Alge" displayName="Alge Crumpler" team="NE" position="TE" height="6-2" weight="275" dob="0000-00-00" college="North Carolina" />
<Player playerId="621" active="0" jersey="88" lname="Curtis" fname="Tony" displayName="Tony Curtis" team="WAS" position="TE" height="6-5" weight="251" dob="1983-02-11" college="Portland State" />
<Player playerId="622" active="1" jersey="81" lname="Daniels" fname="Owen" displayName="Owen Daniels" team="DEN" position="TE" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="623" active="0" jersey="0" lname="Davis" fname="Charles" displayName="Charles Davis" team="SD" position="TE" height="6-6" weight="260" dob="1983-03-13" college="Purdue" />
<Player playerId="624" active="1" jersey="83" lname="Davis" fname="Fred" displayName="Fred Davis" team="NE" position="TE" height="6-4" weight="247" dob="0000-00-00" college="USC" />
<Player playerId="625" active="1" jersey="47" lname="Davis" fname="Kellen" displayName="Kellen Davis" team="NYJ" position="TE" height="6-7" weight="265" dob="0000-00-00" college="Michigan State" />
<Player playerId="626" active="1" jersey="0" lname="Davis" fname="Vernon" displayName="Vernon Davis" team="WAS" position="TE" height="6-3" weight="250" dob="0000-00-00" college="Maryland" />
<Player playerId="627" active="0" jersey="0" lname="DeVree" fname="Tyson" displayName="Tyson DeVree" team="IND" position="TE" height="6-6" weight="245" dob="1984-11-12" college="Colorado" />
<Player playerId="628" active="0" jersey="58" lname="Dearth" fname="James" displayName="James Dearth" team="NE" position="TE" height="6-4" weight="265" dob="1976-01-22" college="Tarleton State" />
<Player playerId="629" active="0" jersey="0" lname="Dekker" fname="Jon" displayName="Jon Dekker" team="PIT" position="TE" height="6-5" weight="250" dob="0000-00-00" college="Princeton" />
<Player playerId="630" active="0" jersey="0" lname="Dinkins" fname="Darnell" displayName="Darnell Dinkins" team="NO" position="TE" height="6-4" weight="260" dob="0000-00-00" college="Pittsburgh" />
<Player playerId="631" active="1" jersey="81" lname="Dreessen" fname="Joel" displayName="Joel Dreessen" team="DEN" position="TE" height="6-4" weight="245" dob="0000-00-00" college="Colorado State" />
<Player playerId="632" active="0" jersey="83" lname="Dugan" fname="Jeff" displayName="Jeff Dugan" team="MIN" position="TE" height="6-4" weight="258" dob="1981-04-08" college="Maryland" />
<Player playerId="633" active="0" jersey="88" lname="Estandia" fname="Greg" displayName="Greg Estandia" team="CLE" position="TE" height="6-8" weight="266" dob="0000-00-00" college="Nevada-Las Vegas" />
<Player playerId="634" active="1" jersey="80" lname="Fasano" fname="Anthony" displayName="Anthony Fasano" team="TEN" position="TE" height="6-4" weight="255" dob="0000-00-00" college="Notre Dame" />
<Player playerId="635" active="1" jersey="85" lname="Fells" fname="Daniel" displayName="Daniel Fells" team="NYG" position="TE" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="636" active="0" jersey="82" lname="Fine" fname="Derek" displayName="Derek Fine" team="HOU" position="TE" height="6-3" weight="247" dob="0000-00-00" college="Kansas" />
<Player playerId="637" active="0" jersey="88" lname="Finley" fname="Jermichael" displayName="Jermichael Finley" team="GB" position="TE" height="6-5" weight="247" dob="1987-03-26" college="Texas" />
<Player playerId="638" active="0" jersey="49" lname="Finley" fname="J.J." displayName="J.J. Finley" team="CAR" position="TE" height="6-6" weight="250" dob="0000-00-00" college="Oklahoma" />
<Player playerId="639" active="0" jersey="0" lname="Fitzsimmons" fname="Casey" displayName="Casey Fitzsimmons" team="DET" position="TE" height="6-4" weight="260" dob="0000-00-00" college="Carroll (Mont.)" />
<Player playerId="640" active="0" jersey="0" lname="Franks" fname="Bubba" displayName="Bubba Franks" team="NYJ" position="TE" height="6-6" weight="265" dob="0000-00-00" college="Miami (Fla.)" />
<Player playerId="641" active="0" jersey="43" lname="Gafford" fname="Thomas" displayName="Thomas Gafford" team="KC" position="TE" height="6-2" weight="250" dob="0000-00-00" college="Houston" />
<Player playerId="642" active="0" jersey="0" lname="Gaines" fname="Michael" displayName="Michael Gaines" team="HOU" position="TE" height="6-2" weight="267" dob="0000-00-00" college="Central Florida" />
<Player playerId="643" active="1" jersey="85" lname="Gates" fname="Antonio" displayName="Antonio Gates" team="SD" position="TE" height="6-4" weight="255" dob="0000-00-00" college="Kent State" />
<Player playerId="644" active="0" jersey="89" lname="Gilmore" fname="John" displayName="John Gilmore" team="NO" position="TE" height="6-5" weight="257" dob="0000-00-00" college="Penn State" />
<Player playerId="645" active="0" jersey="88" lname="Gonzalez" fname="Tony" displayName="Tony Gonzalez" team="ATL" position="TE" height="6-5" weight="247" dob="1976-02-27" college="California" />
<Player playerId="646" active="0" jersey="86" lname="Graham" fname="Daniel" displayName="Daniel Graham" team="NO" position="TE" height="6-3" weight="257" dob="1978-11-16" college="Colorado" />
<Player playerId="647" active="0" jersey="0" lname="Halterman" fname="Aaron" displayName="Aaron Halterman" team="MIA" position="TE" height="6-5" weight="265" dob="0000-00-00" college="Indiana" />
<Player playerId="648" active="0" jersey="0" lname="Hannah" fname="Rodney" displayName="Rodney Hannah" team="DAL" position="TE" height="6-6" weight="258" dob="0000-00-00" college="Houston" />
<Player playerId="649" active="1" jersey="46" lname="Harris" fname="Clark" displayName="Clark Harris" team="CIN" position="TE" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="650" active="1" jersey="0" lname="Hartsock" fname="Ben" displayName="Ben Hartsock" team="CAR" position="TE" height="6-4" weight="265" dob="0000-00-00" college="Ohio State" />
<Player playerId="651" active="0" jersey="44" lname="Haynos" fname="Joey" displayName="Joey Haynos" team="TEN" position="TE" height="6-8" weight="270" dob="1984-08-28" college="Maryland" />
<Player playerId="652" active="0" jersey="86" lname="Heap" fname="Todd" displayName="Todd Heap" team="ARI" position="TE" height="6-5" weight="252" dob="1980-03-16" college="Arizona State" />
<Player playerId="653" active="0" jersey="0" lname="Heiden" fname="Steve" displayName="Steve Heiden" team="CLE" position="TE" height="6-5" weight="270" dob="0000-00-00" college="South Dakota State" />
<Player playerId="654" active="0" jersey="89" lname="Heller" fname="Will" displayName="Will Heller" team="DET" position="TE" height="6-6" weight="275" dob="1981-02-28" college="Georgia Tech" />
<Player playerId="655" active="0" jersey="88" lname="Humphrey" fname="Tory" displayName="Tory Humphrey" team="OAK" position="TE" height="6-2" weight="257" dob="1983-01-20" college="Central Michigan" />
<Player playerId="656" active="0" jersey="86" lname="Jennings" fname="Brian" displayName="Brian Jennings" team="SF" position="TE" height="6-5" weight="242" dob="0000-00-00" college="Arizona State" />
<Player playerId="657" active="0" jersey="87" lname="Johnson" fname="Darcy" displayName="Darcy Johnson" team="LA" position="TE" height="6-5" weight="252" dob="0000-00-00" college="Central Florida" />
<Player playerId="658" active="0" jersey="0" lname="Kapanui" fname="Kolo" displayName="Kolo Kapanui" team="CIN" position="TE" height="6-3" weight="270" dob="0000-00-00" college="West Texas A&M" />
<Player playerId="659" active="1" jersey="81" lname="Keller" fname="Dustin" displayName="Dustin Keller" team="MIA" position="TE" height="6-2" weight="255" dob="0000-00-00" college="Purdue" />
<Player playerId="660" active="0" jersey="89" lname="Kelly" fname="Reggie" displayName="Reggie Kelly" team="ATL" position="TE" height="6-4" weight="257" dob="0000-00-00" college="Mississippi State" />
<Player playerId="661" active="1" jersey="87" lname="King" fname="Jeff" displayName="Jeff King" team="ARI" position="TE" height="6-3" weight="260" dob="0000-00-00" college="Virginia Tech" />
<Player playerId="662" active="0" jersey="40" lname="Kleinsasser" fname="Jimmy" displayName="Jimmy Kleinsasser" team="MIN" position="TE" height="6-3" weight="272" dob="0000-00-00" college="North Dakota" />
<Player playerId="663" active="0" jersey="87" lname="Klopfenstein" fname="Joe" displayName="Joe Klopfenstein" team="BUF" position="TE" height="6-5" weight="262" dob="0000-00-00" college="Colorado" />
<Player playerId="664" active="0" jersey="0" lname="Kuhn" fname="Scott" displayName="Scott Kuhn" team="BAL" position="TE" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="665" active="0" jersey="0" lname="Lawrie" fname="Nate" displayName="Nate Lawrie" team="SF" position="TE" height="6-6" weight="255" dob="1981-10-07" college="Yale" />
<Player playerId="666" active="0" jersey="82" lname="Leach" fname="Mike" displayName="Mike Leach" team="ARI" position="TE" height="6-2" weight="235" dob="1976-10-18" college="William & Mary" />
<Player playerId="667" active="0" jersey="86" lname="Lee" fname="Donald" displayName="Donald Lee" team="CIN" position="TE" height="6-4" weight="248" dob="1980-08-31" college="Mississippi State" />
<Player playerId="668" active="1" jersey="89" lname="Lewis" fname="Marcedes" displayName="Marcedes Lewis" team="JAC" position="TE" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="669" active="0" jersey="0" lname="Listorti" fname="Brad" displayName="Brad Listorti" team="NE" position="TE" height="6-4" weight="251" dob="0000-00-00" college="Massachusetts" />
<Player playerId="670" active="0" jersey="86" lname="Manumaleuna" fname="Brandon" displayName="Brandon Manumaleuna" team="CHI" position="TE" height="6-2" weight="295" dob="0000-00-00" college="Arizona" />
<Player playerId="671" active="0" jersey="80" lname="Martin" fname="David" displayName="David Martin" team="BUF" position="TE" height="6-4" weight="264" dob="0000-00-00" college="Tennessee" />
<Player playerId="672" active="0" jersey="82" lname="Matthews" fname="Michael" displayName="Michael Matthews" team="IND" position="TE" height="6-4" weight="270" dob="1983-10-09" college="Georgia Tech" />
<Player playerId="673" active="0" jersey="81" lname="McMichael" fname="Randy" displayName="Randy McMichael" team="SD" position="TE" height="6-3" weight="248" dob="1979-06-28" college="Georgia" />
<Player playerId="674" active="0" jersey="0" lname="Miller" fname="Billy" displayName="Billy Miller" team="NO" position="TE" height="6-3" weight="252" dob="0000-00-00" college="USC" />
<Player playerId="675" active="1" jersey="83" lname="Miller" fname="Heath" displayName="Heath Miller" team="PIT" position="TE" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="676" active="1" jersey="86" lname="Miller" fname="Zach" displayName="Zach Miller" team="SEA" position="TE" height="6-5" weight="255" dob="0000-00-00" college="Arizona State" />
<Player playerId="677" active="0" jersey="0" lname="Milner" fname="Martrez" displayName="Martrez Milner" team="NO" position="TE" height="6-4" weight="260" dob="0000-00-00" college="Georgia" />
<Player playerId="678" active="0" jersey="0" lname="Mines" fname="Fontel" displayName="Fontel Mines" team="CHI" position="TE" height="6-4" weight="244" dob="0000-00-00" college="Virginia" />
<Player playerId="679" active="0" jersey="0" lname="Mix" fname="Anthony" displayName="Anthony Mix" team="TB" position="TE" height="6-5" weight="243" dob="0000-00-00" college="Auburn" />
<Player playerId="680" active="1" jersey="82" lname="Mulligan" fname="Matthew" displayName="Matthew Mulligan" team="DET" position="TE" height="6-4" weight="267" dob="0000-00-00" college="Maine" />
<Player playerId="681" active="0" jersey="0" lname="Mustard" fname="Chad" displayName="Chad Mustard" team="DEN" position="TE" height="6-6" weight="277" dob="0000-00-00" college="North Dakota" />
<Player playerId="682" active="0" jersey="0" lname="Newton" fname="Joe" displayName="Joe Newton" team="SEA" position="TE" height="6-7" weight="258" dob="0000-00-00" college="Oregon State" />
<Player playerId="683" active="0" jersey="47" lname="Nordin" fname="Jake" displayName="Jake Nordin" team="DET" position="TE" height="6-3" weight="262" dob="0000-00-00" college="Northern Illinois" />
<Player playerId="684" active="1" jersey="88" lname="Olsen" fname="Greg" displayName="Greg Olsen" team="CAR" position="TE" height="6-5" weight="253" dob="0000-00-00" college="Miami" />
<Player playerId="685" active="0" jersey="0" lname="Ortega" fname="Buck" displayName="Buck Ortega" team="NO" position="TE" height="6-4" weight="250" dob="0000-00-00" college="Miami (Fla.)" />
<Player playerId="686" active="0" jersey="82" lname="Owens" fname="John" displayName="John Owens" team="OAK" position="TE" height="6-3" weight="255" dob="0000-00-00" college="Notre Dame" />
<Player playerId="687" active="0" jersey="89" lname="Patrick" fname="Ben" displayName="Ben Patrick" team="ARI" position="TE" height="6-3" weight="264" dob="0000-00-00" college="Delaware" />
<Player playerId="688" active="0" jersey="81" lname="Peelle" fname="Justin" displayName="Justin Peelle" team="SF" position="TE" height="6-4" weight="251" dob="1979-03-15" college="Oregon" />
<Player playerId="689" active="0" jersey="86" lname="Petrowski" fname="Jamie" displayName="Jamie Petrowski" team="CAR" position="TE" height="6-4" weight="262" dob="0000-00-00" college="Indiana State" />
<Player playerId="690" active="0" jersey="0" lname="Pociask" fname="Jason" displayName="Jason Pociask" team="DAL" position="TE" height="6-3" weight="259" dob="1983-02-09" college="Wisconsin" />
<Player playerId="691" active="0" jersey="0" lname="Pollard" fname="Marcus" displayName="Marcus Pollard" team="ATL" position="TE" height="6-3" weight="255" dob="0000-00-00" college="Bradley" />
<Player playerId="692" active="0" jersey="88" lname="Pope" fname="Leonard" displayName="Leonard Pope" team="CHI" position="TE" height="6-8" weight="264" dob="0000-00-00" college="Georgia" />
<Player playerId="693" active="0" jersey="0" lname="Putzier" fname="Jeb" displayName="Jeb Putzier" team="DEN" position="TE" height="6-4" weight="256" dob="0000-00-00" college="Boise State" />
<Player playerId="694" active="0" jersey="0" lname="Rader" fname="Jason" displayName="Jason Rader" team="ATL" position="TE" height="6-4" weight="263" dob="0000-00-00" college="Marshall" />
<Player playerId="695" active="0" jersey="47" lname="Robinson" fname="Gijon" displayName="Gijon Robinson" team="DET" position="TE" height="6-1" weight="255" dob="0000-00-00" college="Missouri Western State" />
<Player playerId="696" active="0" jersey="0" lname="Robinson" fname="Jeff" displayName="Jeff Robinson" team="SEA" position="TE" height="6-4" weight="250" dob="0000-00-00" college="Idaho" />
<Player playerId="697" active="1" jersey="88" lname="Rosario" fname="Dante" displayName="Dante Rosario" team="CHI" position="TE" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="698" active="0" jersey="84" lname="Royal" fname="Robert" displayName="Robert Royal" team="CLE" position="TE" height="6-4" weight="257" dob="0000-00-00" college="LSU" />
<Player playerId="699" active="0" jersey="85" lname="Rucker" fname="Martin" displayName="Martin Rucker" team="KC" position="TE" height="6-5" weight="251" dob="0000-00-00" college="Missouri" />
<Player playerId="700" active="0" jersey="86" lname="Ryan" fname="Sean" displayName="Sean Ryan" team="TEN" position="TE" height="6-5" weight="260" dob="0000-00-00" college="Boston College" />
<Player playerId="701" active="0" jersey="0" lname="Santi" fname="Tom" displayName="Tom Santi" team="IND" position="TE" height="6-3" weight="250" dob="0000-00-00" college="Virginia" />
<Player playerId="702" active="0" jersey="83" lname="Scaife" fname="Bo" displayName="Bo Scaife" team="CIN" position="TE" height="6-3" weight="249" dob="1981-01-06" college="Texas" />
<Player playerId="703" active="1" jersey="85" lname="Scheffler" fname="Tony" displayName="Tony Scheffler" team="DET" position="TE" height="6-5" weight="255" dob="0000-00-00" college="Western Michigan" />
<Player playerId="704" active="0" jersey="0" lname="Schobel" fname="Matt" displayName="Matt Schobel" team="PHI" position="TE" height="6-5" weight="247" dob="0000-00-00" college="Texas Christian" />
<Player playerId="705" active="0" jersey="83" lname="Schouman" fname="Derek" displayName="Derek Schouman" team="NO" position="TE" height="6-2" weight="223" dob="1985-03-11" college="Boise State" />
<Player playerId="706" active="0" jersey="45" lname="Sellers" fname="Mike" displayName="Mike Sellers" team="WAS" position="RB" height="6-3" weight="272" dob="0000-00-00" college="Walla Walla CC WA" />
<Player playerId="707" active="0" jersey="0" lname="Sherrod" fname="Dezmond" displayName="Dezmond Sherrod" team="HOU" position="TE" height="6-2" weight="250" dob="0000-00-00" college="Mississippi State" />
<Player playerId="708" active="0" jersey="0" lname="Sherry" fname="Matt" displayName="Matt Sherry" team="CIN" position="TE" height="6-4" weight="250" dob="0000-00-00" college="Villanova" />
<Player playerId="709" active="1" jersey="81" lname="Shiancoe" fname="Visanthe" displayName="Visanthe Shiancoe" team="BAL" position="TE" height="6-4" weight="250" dob="0000-00-00" college="Morgan State" />
<Player playerId="710" active="0" jersey="80" lname="Shockey" fname="Jeremy" displayName="Jeremy Shockey" team="CAR" position="TE" height="6-5" weight="251" dob="0000-00-00" college="Miami (Fla.)" />
<Player playerId="711" active="0" jersey="0" lname="Shor" fname="Alex" displayName="Alex Shor" team="ARI" position="TE" height="6-8" weight="255" dob="0000-00-00" college="Syracuse" />
<Player playerId="712" active="1" jersey="99" lname="Smith" fname="Alex" displayName="Alex Smith" team="WAS" position="TE" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="713" active="0" jersey="0" lname="Smith" fname="L.J." displayName="L.J. Smith" team="BAL" position="TE" height="6-3" weight="245" dob="0000-00-00" college="Rutgers" />
<Player playerId="714" active="0" jersey="0" lname="Smolko" fname="Isaac" displayName="Isaac Smolko" team="BAL" position="TE" height="6-5" weight="258" dob="0000-00-00" college="Penn State" />
<Player playerId="715" active="0" jersey="81" lname="Spach" fname="Stephen" displayName="Stephen Spach" team="LA" position="TE" height="6-4" weight="260" dob="0000-00-00" college="Fresno State" />
<Player playerId="716" active="1" jersey="89" lname="Spaeth" fname="Matt" displayName="Matt Spaeth" team="PIT" position="TE" height="6-7" weight="262" dob="0000-00-00" college="Minnesota" />
<Player playerId="717" active="0" jersey="0" lname="St. Louis" fname="Brad" displayName="Brad St. Louis" team="CIN" position="TE" height="6-3" weight="243" dob="0000-00-00" college="Missouri State" />
<Player playerId="718" active="1" jersey="88" lname="Stevens" fname="Craig" displayName="Craig Stevens" team="TEN" position="TE" height="6-3" weight="263" dob="0000-00-00" college="California" />
<Player playerId="719" active="0" jersey="86" lname="Stevens" fname="Jerramy" displayName="Jerramy Stevens" team="TB" position="TE" height="6-7" weight="260" dob="0000-00-00" college="Washington" />
<Player playerId="720" active="0" jersey="86" lname="Stewart" fname="Tony" displayName="Tony Stewart" team="OAK" position="TE" height="6-5" weight="260" dob="0000-00-00" college="Penn State" />
<Player playerId="721" active="0" jersey="0" lname="Strong" fname="Darrell" displayName="Darrell Strong" team="OAK" position="TE" height="6-5" weight="265" dob="0000-00-00" college="Pittsburgh" />
<Player playerId="722" active="0" jersey="88" lname="Stupar" fname="Jonathan" displayName="Jonathan Stupar" team="BAL" position="TE" height="6-3" weight="254" dob="1984-07-24" college="Virginia" />
<Player playerId="723" active="0" jersey="0" lname="Sypniewski" fname="Quinn" displayName="Quinn Sypniewski" team="BAL" position="TE" height="6-6" weight="270" dob="0000-00-00" college="Colorado" />
<Player playerId="724" active="1" jersey="83" lname="Tamme" fname="Jacob" displayName="Jacob Tamme" team="ATL" position="TE" height="6-3" weight="230" dob="0000-00-00" college="Kentucky" />
<Player playerId="725" active="0" jersey="0" lname="Tereshinski" fname="John" displayName="John Tereshinski" team="SEA" position="TE" height="6-3" weight="245" dob="0000-00-00" college="Wake Forest" />
<Player playerId="726" active="0" jersey="85" lname="Thomas" fname="David" displayName="David Thomas" team="NO" position="TE" height="6-3" weight="248" dob="1983-07-05" college="Texas" />
<Player playerId="727" active="0" jersey="0" lname="Tuman" fname="Jerame" displayName="Jerame Tuman" team="ARI" position="TE" height="6-4" weight="253" dob="0000-00-00" college="Michigan" />
<Player playerId="728" active="0" jersey="0" lname="Utecht" fname="Ben" displayName="Ben Utecht" team="CIN" position="TE" height="6-6" weight="245" dob="0000-00-00" college="Minnesota" />
<Player playerId="729" active="0" jersey="0" lname="Walker" fname="Aaron" displayName="Aaron Walker" team="CLE" position="TE" height="6-6" weight="260" dob="0000-00-00" college="Florida" />
<Player playerId="730" active="1" jersey="82" lname="Watson" fname="Benjamin" displayName="Benjamin Watson" team="BAL" position="TE" height="6-3" weight="255" dob="0000-00-00" college="Georgia" />
<Player playerId="731" active="0" jersey="0" lname="Wilcox" fname="Daniel" displayName="Daniel Wilcox" team="BAL" position="TE" height="6-1" weight="250" dob="0000-00-00" college="Appalachian State" />
<Player playerId="732" active="1" jersey="81" lname="Winslow" fname="Kellen" displayName="Kellen Winslow" team="NYJ" position="TE" height="6-4" weight="240" dob="0000-00-00" college="Miami (Fla.)" />
<Player playerId="733" active="1" jersey="82" lname="Witten" fname="Jason" displayName="Jason Witten" team="DAL" position="TE" height="6-6" weight="263" dob="0000-00-00" college="Tennessee" />
<Player playerId="734" active="0" jersey="0" lname="Wrighster" fname="George" displayName="George Wrighster" team="NYG" position="TE" height="6-3" weight="265" dob="0000-00-00" college="Oregon" />
<Player playerId="735" active="0" jersey="0" lname="Yoder" fname="Todd" displayName="Todd Yoder" team="WAS" position="TE" height="6-4" weight="251" dob="0000-00-00" college="Vanderbilt" />
<Player playerId="736" active="0" jersey="82" lname="Zelenka" fname="Joe" displayName="Joe Zelenka" team="ATL" position="TE" height="6-3" weight="260" dob="1976-03-09" college="Wake Forest" />
<Player playerId="737" active="0" jersey="89" lname="Zinger" fname="Keith" displayName="Keith Zinger" team="NYJ" position="TE" height="6-4" weight="258" dob="1984-10-09" college="LSU" />
<Player playerId="738" active="0" jersey="2" lname="Akers" fname="David" displayName="David Akers" team="DET" position="K" height="5-10" weight="200" dob="1974-12-09" college="Louisville" />
<Player playerId="739" active="1" jersey="1" lname="Barth" fname="Connor" displayName="Connor Barth" team="TB" position="K" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="740" active="1" jersey="2" lname="Bironas" fname="Rob" displayName="Rob Bironas" team="TEN" position="K" height="6-0" weight="208" dob="0000-00-00" college="Georgia Southern" />
<Player playerId="741" active="1" jersey="3" lname="Brown" fname="Josh" displayName="Josh Brown" team="NYG" position="K" height="6-0" weight="202" dob="0000-00-00" college="Nebraska" />
<Player playerId="742" active="0" jersey="2" lname="Brown" fname="Kris" displayName="Kris Brown" team="DAL" position="K" height="5-11" weight="215" dob="0000-00-00" college="Nebraska" />
<Player playerId="743" active="1" jersey="3" lname="Bryant" fname="Matt" displayName="Matt Bryant" team="ATL" position="K" height="5-9" weight="203" dob="0000-00-00" college="Baylor" />
<Player playerId="744" active="0" jersey="3" lname="Carney" fname="John" displayName="John Carney" team="NO" position="K" height="5-11" weight="185" dob="0000-00-00" college="Notre Dame" />
<Player playerId="745" active="1" jersey="2" lname="Carpenter" fname="Dan" displayName="Dan Carpenter" team="BUF" position="K" height="6-2" weight="228" dob="0000-00-00" college="Montana" />
<Player playerId="746" active="0" jersey="2" lname="Coutu" fname="Brandon" displayName="Brandon Coutu" team="JAC" position="K" height="5-10" weight="195" dob="0000-00-00" college="Georgia" />
<Player playerId="747" active="1" jersey="2" lname="Crosby" fname="Mason" displayName="Mason Crosby" team="GB" position="K" height="6-1" weight="207" dob="0000-00-00" college="Colorado" />
<Player playerId="748" active="1" jersey="9" lname="Dawson" fname="Phil" displayName="Phil Dawson" team="SF" position="K" height="5-11" weight="200" dob="0000-00-00" college="Texas" />
<Player playerId="749" active="0" jersey="0" lname="Elam" fname="Jason" displayName="Jason Elam" team="ATL" position="K" height="5-11" weight="195" dob="0000-00-00" college="Hawaii" />
<Player playerId="750" active="1" jersey="0" lname="Feely" fname="Jay" displayName="Jay Feely" team="CHI" position="K" height="5-10" weight="208" dob="0000-00-00" college="Michigan" />
<Player playerId="751" active="1" jersey="2" lname="Folk" fname="Nick" displayName="Nick Folk" team="NYJ" position="K" height="6-1" weight="222" dob="0000-00-00" college="Arizona" />
<Player playerId="752" active="1" jersey="3" lname="Gostkowski" fname="Stephen" displayName="Stephen Gostkowski" team="NE" position="K" height="6-1" weight="215" dob="0000-00-00" college="Memphis" />
<Player playerId="753" active="1" jersey="9" lname="Gould" fname="Robbie" displayName="Robbie Gould" team="CHI" position="K" height="6-0" weight="185" dob="0000-00-00" college="Penn State" />
<Player playerId="754" active="1" jersey="3" lname="Graham" fname="Shayne" displayName="Shayne Graham" team="ATL" position="K" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="755" active="0" jersey="0" lname="Gramatica" fname="Martin" displayName="Martin Gramatica" team="NO" position="K" height="5-8" weight="170" dob="0000-00-00" college="Kansas State" />
<Player playerId="756" active="0" jersey="4" lname="Hanson" fname="Jason" displayName="Jason Hanson" team="DET" position="K" height="6-0" weight="190" dob="1970-06-17" college="Washington State" />
<Player playerId="757" active="1" jersey="0" lname="Hartley" fname="Garrett" displayName="Garrett Hartley" team="PIT" position="K" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="758" active="1" jersey="4" lname="Hauschka" fname="Steven" displayName="Steven Hauschka" team="SEA" position="K" height="6-4" weight="210" dob="0000-00-00" college="NC State" />
<Player playerId="759" active="1" jersey="11" lname="Janikowski" fname="Sebastian" displayName="Sebastian Janikowski" team="OAK" position="K" height="6-1" weight="265" dob="0000-00-00" college="Florida State" />
<Player playerId="760" active="0" jersey="10" lname="Kaeding" fname="Nate" displayName="Nate Kaeding" team="MIA" position="K" height="6-0" weight="187" dob="0000-00-00" college="Iowa" />
<Player playerId="762" active="0" jersey="4" lname="Lindell" fname="Rian" displayName="Rian Lindell" team="TB" position="K" height="6-3" weight="227" dob="0000-00-00" college="Washington State" />
<Player playerId="763" active="0" jersey="8" lname="Lloyd" fname="Rhys" displayName="Rhys Lloyd" team="NYG" position="K" height="5-11" weight="231" dob="1982-06-05" college="Minnesota" />
<Player playerId="764" active="0" jersey="0" lname="Longwell" fname="Ryan" displayName="Ryan Longwell" team="SEA" position="K" height="6-0" weight="200" dob="0000-00-00" college="California" />
<Player playerId="765" active="0" jersey="10" lname="Mare" fname="Olindo" displayName="Olindo Mare" team="CHI" position="K" height="5-11" weight="185" dob="0000-00-00" college="Syracuse" />
<Player playerId="766" active="0" jersey="0" lname="Mehlhaff" fname="Taylor" displayName="Taylor Mehlhaff" team="MIN" position="K" height="5-10" weight="184" dob="0000-00-00" college="Wisconsin" />
<Player playerId="767" active="0" jersey="6" lname="Nedney" fname="Joe" displayName="Joe Nedney" team="SF" position="K" height="6-5" weight="220" dob="0000-00-00" college="San Jose State" />
<Player playerId="768" active="1" jersey="2" lname="Nugent" fname="Mike" displayName="Mike Nugent" team="CIN" position="K" height="5-10" weight="190" dob="0000-00-00" college="Ohio State" />
<Player playerId="769" active="1" jersey="5" lname="Prater" fname="Matt" displayName="Matt Prater" team="DET" position="K" height="5-10" weight="211" dob="0000-00-00" college="UCF" />
<Player playerId="771" active="0" jersey="3" lname="Rayner" fname="Dave" displayName="Dave Rayner" team="BUF" position="K" height="6-2" weight="215" dob="0000-00-00" college="Michigan State" />
<Player playerId="772" active="0" jersey="3" lname="Reed" fname="Jeff" displayName="Jeff Reed" team="SEA" position="K" height="5-11" weight="225" dob="1979-04-09" college="North Carolina" />
<Player playerId="773" active="1" jersey="0" lname="Scobee" fname="Josh" displayName="Josh Scobee" team="NO" position="K" height="6-1" weight="200" dob="0000-00-00" college="Louisiana Tech" />
<Player playerId="774" active="0" jersey="0" lname="Stover" fname="Matt" displayName="Matt Stover" team="IND" position="K" height="5-11" weight="180" dob="0000-00-00" college="Louisiana Tech" />
<Player playerId="775" active="1" jersey="6" lname="Suisham" fname="Shaun" displayName="Shaun Suisham" team="PIT" position="K" height="6-0" weight="200" dob="0000-00-00" college="Bowling Green" />
<Player playerId="776" active="0" jersey="1" lname="Tynes" fname="Lawrence" displayName="Lawrence Tynes" team="TB" position="K" height="6-1" weight="194" dob="0000-00-00" college="Troy" />
<Player playerId="777" active="1" jersey="4" lname="Vinatieri" fname="Adam" displayName="Adam Vinatieri" team="IND" position="K" height="6-0" weight="206" dob="0000-00-00" college="South Dakota State" />
<Player playerId="778" active="0" jersey="9" lname="Weatherford" fname="Steven" displayName="Steven Weatherford" team="JAC" position="K" height="6-3" weight="215" dob="0000-00-00" college="Illinois" />
<Player playerId="779" active="0" jersey="0" lname="Davenport" fname="Najeh" displayName="Najeh Davenport" team="IND" position="RB" height="6-1" weight="247" dob="0000-00-00" college="Miami (Fla.)" />
<Player playerId="780" active="0" jersey="0" lname="Pope" fname="P.J." displayName="P.J. Pope" team="DEN" position="RB" height="5-9" weight="205" dob="0000-00-00" college="Bowling Green State" />
<Player playerId="781" active="0" jersey="0" lname="Ball" fname="Reggie" displayName="Reggie Ball" team="DET" position="WR" height="5-11" weight="195" dob="0000-00-00" college="Georgia Tech" />
<Player playerId="784" active="0" jersey="0" lname="Bomar" fname="Rhett" displayName="Rhett Bomar" team="OAK" position="QB" height="6-2" weight="225" dob="0000-00-00" college="Sam Houston State" />
<Player playerId="785" active="0" jersey="5" lname="Brandstater" fname="Tom" displayName="Tom Brandstater" team="LA" position="QB" height="6-5" weight="222" dob="0000-00-00" college="Fresno State" />
<Player playerId="786" active="1" jersey="10" lname="Daniel" fname="Chase" displayName="Chase Daniel" team="PHI" position="QB" height="6-0" weight="225" dob="0000-00-00" college="Missouri" />
<Player playerId="787" active="0" jersey="8" lname="Davis" fname="Nate" displayName="Nate Davis" team="IND" position="QB" height="6-1" weight="226" dob="1987-05-05" college="Ball State" />
<Player playerId="788" active="1" jersey="5" lname="Freeman" fname="Josh" displayName="Josh Freeman" team="MIA" position="QB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="789" active="0" jersey="3" lname="McGee" fname="Stephen" displayName="Stephen McGee" team="HOU" position="QB" height="6-3" weight="227" dob="0000-00-00" college="Texas A&M" />
<Player playerId="790" active="0" jersey="9" lname="Null" fname="Keith" displayName="Keith Null" team="CAR" position="QB" height="6-4" weight="219" dob="0000-00-00" college="West Texas A&M" />
<Player playerId="791" active="1" jersey="17" lname="Painter" fname="Curtis" displayName="Curtis Painter" team="NYG" position="QB" height="6-4" weight="230" dob="0000-00-00" college="Purdue" />
<Player playerId="792" active="1" jersey="6" lname="Sanchez" fname="Mark" displayName="Mark Sanchez" team="DEN" position="QB" height="6-2" weight="225" dob="0000-00-00" college="USC" />
<Player playerId="793" active="1" jersey="9" lname="Stafford" fname="Matthew" displayName="Matthew Stafford" team="DET" position="QB" height="6-3" weight="226" dob="0000-00-00" college="Georgia" />
<Player playerId="794" active="0" jersey="0" lname="Teel" fname="Mike" displayName="Mike Teel" team="CHI" position="QB" height="6-3" weight="230" dob="0000-00-00" college="Rutgers" />
<Player playerId="795" active="0" jersey="5" lname="White" fname="Pat" displayName="Pat White" team="WAS" position="QB" height="6-0" weight="190" dob="0000-00-00" college="West Virginia" />
<Player playerId="796" active="0" jersey="33" lname="Brown" fname="Aaron" displayName="Aaron Brown" team="CIN" position="RB" height="6-1" weight="200" dob="1985-10-10" college="Texas Christian" />
<Player playerId="797" active="0" jersey="33" lname="Brown" fname="Andre" displayName="Andre Brown" team="HOU" position="RB" height="6-0" weight="227" dob="1986-12-15" college="North Carolina State" />
<Player playerId="798" active="1" jersey="34" lname="Brown" fname="Donald" displayName="Donald Brown" team="NE" position="RB" height="5-10" weight="207" dob="0000-00-00" college="Connecticut" />
<Player playerId="799" active="0" jersey="29" lname="Coffee" fname="Glen" displayName="Glen Coffee" team="SF" position="RB" height="6-0" weight="209" dob="0000-00-00" college="Alabama" />
<Player playerId="800" active="0" jersey="24" lname="Davis" fname="James" displayName="James Davis" team="WAS" position="RB" height="5-11" weight="218" dob="1986-01-01" college="Clemson" />
<Player playerId="801" active="1" jersey="43" lname="Fiammetta" fname="Tony" displayName="Tony Fiammetta" team="CHI" position="RB" height="6-0" weight="250" dob="1986-08-22" college="Syracuse" />
<Player playerId="802" active="1" jersey="23" lname="Goodson" fname="Mike" displayName="Mike Goodson" team="NYJ" position="RB" height="6-0" weight="210" dob="0000-00-00" college="Texas A&M" />
<Player playerId="803" active="1" jersey="23" lname="Greene" fname="Shonn" displayName="Shonn Greene" team="TEN" position="RB" height="5-11" weight="233" dob="1985-08-21" college="Iowa" />
<Player playerId="804" active="0" jersey="0" lname="Haynes" fname="Verron" displayName="Verron Haynes" team="ATL" position="RB" height="5-9" weight="222" dob="0000-00-00" college="Georgia" />
<Player playerId="805" active="1" jersey="23" lname="Jennings" fname="Rashad" displayName="Rashad Jennings" team="NYG" position="RB" height="6-1" weight="231" dob="0000-00-00" college="Liberty" />
<Player playerId="806" active="0" jersey="27" lname="Johnson" fname="Gartrell" displayName="Gartrell Johnson" team="ATL" position="RB" height="5-10" weight="219" dob="1986-06-21" college="Colorado State" />
<Player playerId="807" active="0" jersey="0" lname="Johnson" fname="Jeremi" displayName="Jeremi Johnson" team="CIN" position="RB" height="5-11" weight="275" dob="0000-00-00" college="Western Kentucky" />
<Player playerId="808" active="0" jersey="45" lname="Johnson" fname="Quinn" displayName="Quinn Johnson" team="TEN" position="RB" height="6-1" weight="263" dob="1986-09-30" college="LSU" />
<Player playerId="809" active="0" jersey="0" lname="Kreider" fname="Dan" displayName="Dan Kreider" team="ARI" position="RB" height="5-11" weight="250" dob="0000-00-00" college="New Hampshire" />
<Player playerId="810" active="1" jersey="25" lname="McCoy" fname="LeSean" displayName="LeSean McCoy" team="BUF" position="RB" height="5-11" weight="208" dob="0000-00-00" college="Pittsburgh" />
<Player playerId="811" active="0" jersey="0" lname="Moore" fname="Kestahn" displayName="Kestahn Moore" team="TEN" position="RB" height="5-10" weight="214" dob="1987-04-13" college="Florida" />
<Player playerId="812" active="0" jersey="28" lname="Moreno" fname="Knowshon" displayName="Knowshon Moreno" team="MIA" position="RB" height="5-11" weight="218" dob="1987-07-16" college="Georgia" />
<Player playerId="813" active="1" jersey="47" lname="Ogbonnaya" fname="Chris" displayName="Chris Ogbonnaya" team="NYG" position="RB" height="6-0" weight="225" dob="1986-05-20" college="Texas" />
<Player playerId="814" active="1" jersey="30" lname="Peerman" fname="Cedric" displayName="Cedric Peerman" team="CIN" position="RB" height="5-10" weight="212" dob="0000-00-00" college="Virginia" />
<Player playerId="815" active="0" jersey="21" lname="Ringer" fname="Javon" displayName="Javon Ringer" team="TEN" position="RB" height="5-9" weight="213" dob="1987-02-02" college="Michigan State" />
<Player playerId="816" active="0" jersey="34" lname="Scott" fname="Bernard" displayName="Bernard Scott" team="BAL" position="RB" height="5-10" weight="195" dob="1984-02-10" college="Abilene Christian" />
<Player playerId="817" active="0" jersey="34" lname="Stephens-Howling" fname="LaRod" displayName="LaRod Stephens-Howling" team="PIT" position="RB" height="5-7" weight="185" dob="1987-04-26" college="Pittsburgh" />
<Player playerId="818" active="1" jersey="38" lname="Summers" fname="Frank" displayName="Frank Summers" team="BUF" position="RB" height="5-9" weight="248" dob="1985-09-06" college="Nevada-Las Vegas" />
<Player playerId="819" active="0" jersey="22" lname="Vakapuna" fname="Fui" displayName="Fui Vakapuna" team="NYJ" position="RB" height="6-0" weight="257" dob="0000-00-00" college="Brigham Young" />
<Player playerId="820" active="0" jersey="26" lname="Wells" fname="Beanie" displayName="Beanie Wells" team="ARI" position="RB" height="6-2" weight="229" dob="1988-08-07" college="Ohio State" />
<Player playerId="821" active="0" jersey="43" lname="Williams" fname="Eddie" displayName="Eddie Williams" team="WAS" position="RB" height="6-1" weight="249" dob="1987-08-22" college="Idaho" />
<Player playerId="822" active="0" jersey="30" lname="Williams" fname="Javarris" displayName="Javarris Williams" team="DAL" position="RB" height="5-10" weight="223" dob="1986-04-08" college="Tennessee State" />
<Player playerId="823" active="1" jersey="9" lname="Barden" fname="Ramses" displayName="Ramses Barden" team="JAC" position="WR" height="6-6" weight="224" dob="0000-00-00" college="Cal Poly-S.L.O." />
<Player playerId="824" active="0" jersey="0" lname="Bayes" fname="Shawn" displayName="Shawn Bayes" team="OAK" position="WR" height="5-10" weight="180" dob="1987-07-08" college="Kent State" />
<Player playerId="825" active="1" jersey="18" lname="Britt" fname="Kenny" displayName="Kenny Britt" team="LA" position="WR" height="6-3" weight="223" dob="0000-00-00" college="Rutgers" />
<Player playerId="826" active="0" jersey="84" lname="Brown" fname="Freddie" displayName="Freddie Brown" team="MIN" position="WR" height="6-4" weight="200" dob="0000-00-00" college="Utah" />
<Player playerId="827" active="0" jersey="3" lname="Butler" fname="Deon" displayName="Deon Butler" team="SD" position="WR" height="5-10" weight="182" dob="0000-00-00" college="Penn State" />
<Player playerId="828" active="0" jersey="0" lname="Byrd" fname="Demetrius" displayName="Demetrius Byrd" team="SD" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="829" active="0" jersey="6" lname="Collie" fname="Austin" displayName="Austin Collie" team="NE" position="WR" height="6-0" weight="204" dob="1985-11-11" college="Brigham Young" />
<Player playerId="830" active="1" jersey="15" lname="Crabtree" fname="Michael" displayName="Michael Crabtree" team="OAK" position="WR" height="6-1" weight="215" dob="0000-00-00" college="Texas Tech" />
<Player playerId="831" active="0" jersey="16" lname="Dillard" fname="Jarett" displayName="Jarett Dillard" team="ARI" position="WR" height="5-11" weight="190" dob="0000-00-00" college="Rice" />
<Player playerId="832" active="1" jersey="11" lname="Edelman" fname="Julian" displayName="Julian Edelman" team="NE" position="WR" height="5-10" weight="200" dob="0000-00-00" college="Kent State" />
<Player playerId="833" active="0" jersey="0" lname="Edison" fname="Dominique" displayName="Dominique Edison" team="DAL" position="WR" height="6-2" weight="201" dob="1986-07-16" college="Stephen F. Austin St." />
<Player playerId="834" active="0" jersey="0" lname="Foster" fname="Brooks" displayName="Brooks Foster" team="MIA" position="WR" height="6-1" weight="204" dob="1986-04-09" college="North Carolina" />
<Player playerId="835" active="0" jersey="0" lname="Gant" fname="Horace" displayName="Horace Gant" team="LA" position="WR" height="6-3" weight="214" dob="0000-00-00" college="St. Olaf" />
<Player playerId="836" active="1" jersey="13" lname="Gibson" fname="Brandon" displayName="Brandon Gibson" team="NE" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="837" active="0" jersey="0" lname="Grimes" fname="David" displayName="David Grimes" team="KC" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="838" active="0" jersey="0" lname="Halman" fname="John" displayName="John Halman" team="WAS" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="839" active="1" jersey="83" lname="Hartline" fname="Brian" displayName="Brian Hartline" team="CLE" position="WR" height="6-2" weight="200" dob="0000-00-00" college="Ohio State" />
<Player playerId="840" active="0" jersey="18" lname="Harvin" fname="Percy" displayName="Percy Harvin" team="BUF" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="841" active="1" jersey="88" lname="Heyward-Bey" fname="Darrius" displayName="Darrius Heyward-Bey" team="PIT" position="WR" height="6-2" weight="210" dob="0000-00-00" college="Maryland" />
<Player playerId="842" active="0" jersey="19" lname="Iglesias" fname="Juaquin" displayName="Juaquin Iglesias" team="HOU" position="WR" height="6-0" weight="205" dob="1987-08-22" college="Oklahoma" />
<Player playerId="843" active="0" jersey="15" lname="Johnson" fname="Manuel" displayName="Manuel Johnson" team="DAL" position="WR" height="5-11" weight="200" dob="1986-10-14" college="Oklahoma" />
<Player playerId="844" active="0" jersey="0" lname="Kinder" fname="Derek" displayName="Derek Kinder" team="CHI" position="WR" height="6-1" weight="202" dob="0000-00-00" college="Pittsburgh" />
<Player playerId="845" active="0" jersey="13" lname="Knox" fname="Johnny" displayName="Johnny Knox" team="CHI" position="WR" height="6-0" weight="185" dob="1986-11-03" college="Abilene Christian" />
<Player playerId="846" active="0" jersey="14" lname="Lawrence" fname="Quinten" displayName="Quinten Lawrence" team="KC" position="WR" height="6-0" weight="184" dob="1984-09-21" college="McNeese State" />
<Player playerId="847" active="1" jersey="19" lname="Maclin" fname="Jeremy" displayName="Jeremy Maclin" team="KC" position="WR" height="6-0" weight="198" dob="0000-00-00" college="Missouri" />
<Player playerId="848" active="0" jersey="13" lname="Massaquoi" fname="Mohamed" displayName="Mohamed Massaquoi" team="NYJ" position="WR" height="6-2" weight="207" dob="0000-00-00" college="Georgia" />
<Player playerId="849" active="0" jersey="11" lname="McKinley" fname="Kenny" displayName="Kenny McKinley" team="DEN" position="WR" height="6-0" weight="183" dob="0000-00-00" college="South Carolina" />
<Player playerId="850" active="0" jersey="16" lname="Miller" fname="Nick" displayName="Nick Miller" team="PHI" position="WR" height="5-9" weight="180" dob="0000-00-00" college="Southern Utah" />
<Player playerId="851" active="0" jersey="19" lname="Mitchell" fname="Marko" displayName="Marko Mitchell" team="MIN" position="WR" height="6-4" weight="218" dob="0000-00-00" college="Nevada-Reno" />
<Player playerId="852" active="1" jersey="18" lname="Murphy" fname="Louis" displayName="Louis Murphy" team="TB" position="WR" height="6-2" weight="200" dob="0000-00-00" college="Florida" />
<Player playerId="853" active="1" jersey="14" lname="Nicks" fname="Hakeem" displayName="Hakeem Nicks" team="NYG" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="854" active="1" jersey="17" lname="Robiskie" fname="Brian" displayName="Brian Robiskie" team="TEN" position="WR" height="6-4" weight="212" dob="0000-00-00" college="Ohio State" />
<Player playerId="855" active="0" jersey="0" lname="Shelton" fname="Travis" displayName="Travis Shelton" team="DEN" position="WR" height="5-11" weight="185" dob="0000-00-00" college="Temple" />
<Player playerId="856" active="0" jersey="18" lname="Stroughter" fname="Sammie" displayName="Sammie Stroughter" team="TB" position="WR" height="5-10" weight="189" dob="1986-01-03" college="Oregon State" />
<Player playerId="857" active="0" jersey="0" lname="Swift" fname="Nate" displayName="Nate Swift" team="JAC" position="WR" height="6-2" weight="195" dob="0000-00-00" college="Nebraska" />
<Player playerId="858" active="1" jersey="19" lname="Tate" fname="Brandon" displayName="Brandon Tate" team="CIN" position="WR" height="6-1" weight="195" dob="0000-00-00" college="North Carolina" />
<Player playerId="859" active="0" jersey="0" lname="Taylor" fname="Lucas" displayName="Lucas Taylor" team="DEN" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="860" active="1" jersey="89" lname="Thomas" fname="Mike" displayName="Mike Thomas" team="HOU" position="WR" height="5-8" weight="198" dob="0000-00-00" college="Arizona" />
<Player playerId="861" active="0" jersey="88" lname="Turner" fname="Patrick" displayName="Patrick Turner" team="NYJ" position="WR" height="6-5" weight="220" dob="1987-05-19" college="USC" />
<Player playerId="862" active="1" jersey="11" lname="Underwood" fname="Tiquan" displayName="Tiquan Underwood" team="CAR" position="WR" height="6-1" weight="185" dob="0000-00-00" college="Rutgers" />
<Player playerId="863" active="1" jersey="11" lname="Wallace" fname="Mike" displayName="Mike Wallace" team="BAL" position="WR" height="6-0" weight="205" dob="0000-00-00" college="Ole Miss" />
<Player playerId="864" active="0" jersey="15" lname="Williams" fname="Derrick" displayName="Derrick Williams" team="PIT" position="WR" height="5-11" weight="197" dob="1986-07-06" college="Penn State" />
<Player playerId="865" active="0" jersey="0" lname="Williams" fname="Jaison" displayName="Jaison Williams" team="WAS" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="866" active="0" jersey="0" lname="Wright" fname="Rodney" displayName="Rodney Wright" team="SF" position="WR" height="5-9" weight="181" dob="0000-00-00" college="Fresno State" />
<Player playerId="867" active="0" jersey="0" lname="Agnone" fname="Robert" displayName="Robert Agnone" team="ATL" position="TE" height="6-6" weight="256" dob="0000-00-00" college="Delaware" />
<Player playerId="868" active="0" jersey="47" lname="Beckum" fname="Travis" displayName="Travis Beckum" team="NYG" position="TE" height="6-3" weight="234" dob="1987-01-24" college="Wisconsin" />
<Player playerId="869" active="0" jersey="0" lname="Branson" fname="Marquez" displayName="Marquez Branson" team="ATL" position="TE" height="6-3" weight="248" dob="1987-02-14" college="Central Arkansas" />
<Player playerId="870" active="1" jersey="80" lname="Casey" fname="James" displayName="James Casey" team="DEN" position="TE" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="871" active="1" jersey="85" lname="Coffman" fname="Chase" displayName="Chase Coffman" team="SEA" position="TE" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="872" active="1" jersey="0" lname="Cook" fname="Jared" displayName="Jared Cook" team="GB" position="TE" height="6-5" weight="254" dob="0000-00-00" college="South Carolina" />
<Player playerId="873" active="0" jersey="80" lname="Drew" fname="Davon" displayName="Davon Drew" team="BAL" position="TE" height="6-4" weight="260" dob="1985-12-09" college="East Carolina" />
<Player playerId="874" active="0" jersey="0" lname="Frischknecht" fname="Devin" displayName="Devin Frischknecht" team="GB" position="TE" height="6-3" weight="258" dob="0000-00-00" college="Washington State" />
<Player playerId="875" active="0" jersey="87" lname="Gronkowski" fname="Dan" displayName="Dan Gronkowski" team="CLE" position="TE" height="6-5" weight="255" dob="0000-00-00" college="Maryland" />
<Player playerId="876" active="0" jersey="87" lname="Hill" fname="Anthony" displayName="Anthony Hill" team="PHI" position="TE" height="6-6" weight="277" dob="1985-01-02" college="North Carolina State" />
<Player playerId="877" active="0" jersey="82" lname="Ingram" fname="Cornelius" displayName="Cornelius Ingram" team="DEN" position="TE" height="6-4" weight="250" dob="1985-06-10" college="Florida" />
<Player playerId="878" active="1" jersey="88" lname="Johnson" fname="David" displayName="David Johnson" team="SD" position="TE" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="879" active="0" jersey="60" lname="Louis" fname="Lance" displayName="Lance Louis" team="CHI" position="TE" height="6-3" weight="305" dob="1985-04-24" college="San Diego State" />
<Player playerId="880" active="1" jersey="86" lname="Miller" fname="Zach" displayName="Zach Miller" team="CHI" position="TE" height="6-5" weight="240" dob="0000-00-00" college="Nebraska-Omaha" />
<Player playerId="881" active="1" jersey="86" lname="Morrah" fname="Cameron" displayName="Cameron Morrah" team="DEN" position="TE" height="6-3" weight="251" dob="0000-00-00" college="California" />
<Player playerId="882" active="1" jersey="82" lname="Myers" fname="Brandon" displayName="Brandon Myers" team="TB" position="TE" height="6-3" weight="256" dob="0000-00-00" college="Iowa" />
<Player playerId="883" active="0" jersey="0" lname="Nalbone" fname="John" displayName="John Nalbone" team="SEA" position="TE" height="6-4" weight="255" dob="0000-00-00" college="Monmouth (N.J.)" />
<Player playerId="884" active="0" jersey="89" lname="Nelson" fname="Shawn" displayName="Shawn Nelson" team="BUF" position="TE" height="6-5" weight="240" dob="1985-10-05" college="Southern Mississippi" />
<Player playerId="885" active="0" jersey="82" lname="O'Connell" fname="Jake" displayName="Jake O'Connell" team="DEN" position="TE" height="6-3" weight="250" dob="0000-00-00" college="Miami (Ohio)" />
<Player playerId="886" active="0" jersey="0" lname="O'Neill" fname="Chris" displayName="Chris O'Neill" team="OAK" position="TE" height="6-3" weight="250" dob="0000-00-00" college="Boise State" />
<Player playerId="887" active="1" jersey="87" lname="Pascoe" fname="Bear" displayName="Bear Pascoe" team="CHI" position="TE" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="888" active="1" jersey="87" lname="Pettigrew" fname="Brandon" displayName="Brandon Pettigrew" team="DET" position="TE" height="6-5" weight="278" dob="0000-00-00" college="Oklahoma State" />
<Player playerId="889" active="1" jersey="83" lname="Phillips" fname="John" displayName="John Phillips" team="SD" position="TE" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="890" active="1" jersey="85" lname="Quinn" fname="Richard" displayName="Richard Quinn" team="NO" position="TE" height="6-4" weight="264" dob="0000-00-00" college="North Carolina" />
<Player playerId="891" active="0" jersey="19" lname="Buehler" fname="David" displayName="David Buehler" team="NYG" position="K" height="6-2" weight="230" dob="0000-00-00" college="USC" />
<Player playerId="892" active="0" jersey="0" lname="Czech" fname="Piotr" displayName="Piotr Czech" team="PIT" position="K" height="6-5" weight="210" dob="0000-00-00" college="Wagner" />
<Player playerId="893" active="1" jersey="4" lname="Succop" fname="Ryan" displayName="Ryan Succop" team="TEN" position="K" height="6-2" weight="218" dob="0000-00-00" college="South Carolina" />
<Player playerId="894" active="0" jersey="12" lname="Cantwell" fname="Hunter" displayName="Hunter Cantwell" team="BAL" position="QB" height="6-4" weight="236" dob="1985-12-30" college="Louisville" />
<Player playerId="895" active="0" jersey="11" lname="Carpenter" fname="Rudy" displayName="Rudy Carpenter" team="DAL" position="QB" height="6-2" weight="215" dob="1986-04-15" college="Arizona State" />
<Player playerId="896" active="0" jersey="0" lname="Cowan" fname="Patrick" displayName="Patrick Cowan" team="NO" position="QB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="897" active="0" jersey="0" lname="Crane" fname="Chris" displayName="Chris Crane" team="IND" position="QB" height="6-4" weight="236" dob="0000-00-00" college="Boston College" />
<Player playerId="898" active="0" jersey="0" lname="DiMichele" fname="Adam" displayName="Adam DiMichele" team="PHI" position="QB" height="6-1" weight="202" dob="0000-00-00" college="Temple" />
<Player playerId="899" active="0" jersey="0" lname="Farris" fname="Billy" displayName="Billy Farris" team="CIN" position="QB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="900" active="0" jersey="0" lname="Glennon" fname="Sean" displayName="Sean Glennon" team="MIN" position="QB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="901" active="1" jersey="0" lname="Hoyer" fname="Brian" displayName="Brian Hoyer" team="CHI" position="QB" height="6-2" weight="215" dob="0000-00-00" college="Michigan State" />
<Player playerId="902" active="0" jersey="0" lname="McCabe" fname="Kevin" displayName="Kevin McCabe" team="PIT" position="QB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="903" active="0" jersey="0" lname="Mortensen" fname="Alex" displayName="Alex Mortensen" team="TEN" position="QB" height="6-1" weight="222" dob="0000-00-00" college="Arkansas" />
<Player playerId="904" active="0" jersey="0" lname="Pizzotti" fname="Chris" displayName="Chris Pizzotti" team="GB" position="QB" height="6-5" weight="225" dob="0000-00-00" college="Harvard" />
<Player playerId="905" active="0" jersey="0" lname="Reilly" fname="Mike" displayName="Mike Reilly" team="SEA" position="QB" height="6-3" weight="212" dob="0000-00-00" college="Central Washington" />
<Player playerId="906" active="0" jersey="0" lname="Southwick" fname="Danny" displayName="Danny Southwick" team="OAK" position="QB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="907" active="0" jersey="0" lname="Willy" fname="Drew" displayName="Drew Willy" team="SD" position="QB" height="6-3" weight="217" dob="1986-11-13" college="Buffalo" />
<Player playerId="908" active="0" jersey="4" lname="Parker Wilson" fname="John" displayName="John Parker Wilson" team="PIT" position="QB" height="6-2" weight="215" dob="0000-00-00" college="Alabama" />
<Player playerId="909" active="0" jersey="24" lname="Bell" fname="Kahlil" displayName="Kahlil Bell" team="NYJ" position="RB" height="5-11" weight="219" dob="0000-00-00" college="UCLA" />
<Player playerId="910" active="0" jersey="0" lname="Bell" fname="Kyle" displayName="Kyle Bell" team="JAC" position="RB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="911" active="0" jersey="38" lname="Bolen" fname="Brock" displayName="Brock Bolen" team="CLE" position="RB" height="6-0" weight="232" dob="0000-00-00" college="Louisville" />
<Player playerId="912" active="0" jersey="30" lname="Brinkley" fname="Curtis" displayName="Curtis Brinkley" team="CHI" position="RB" height="5-9" weight="208" dob="0000-00-00" college="Syracuse" />
<Player playerId="913" active="0" jersey="32" lname="Broughton" fname="Nehemiah" displayName="Nehemiah Broughton" team="ARI" position="RB" height="5-11" weight="255" dob="0000-00-00" college="The Citadel" />
<Player playerId="914" active="0" jersey="0" lname="Cuff" fname="Omar" displayName="Omar Cuff" team="NE" position="RB" height="5-10" weight="195" dob="0000-00-00" college="Delaware" />
<Player playerId="915" active="0" jersey="36" lname="Donaldson" fname="Herb" displayName="Herb Donaldson" team="TEN" position="RB" height="5-11" weight="221" dob="1985-12-13" college="Western Illinois" />
<Player playerId="916" active="0" jersey="44" lname="Ferguson" fname="Rodney" displayName="Rodney Ferguson" team="BUF" position="RB" height="6-0" weight="234" dob="0000-00-00" college="New Mexico" />
<Player playerId="917" active="0" jersey="23" lname="Foster" fname="Arian" displayName="Arian Foster" team="HOU" position="RB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="918" active="0" jersey="32" lname="Hill" fname="P.J." displayName="P.J. Hill" team="NO" position="RB" height="5-10" weight="218" dob="0000-00-00" college="Wisconsin" />
<Player playerId="919" active="0" jersey="32" lname="Huggins" fname="Kareem" displayName="Kareem Huggins" team="TB" position="RB" height="5-9" weight="198" dob="0000-00-00" college="Hofstra" />
<Player playerId="920" active="0" jersey="0" lname="Johnson" fname="Ian" displayName="Ian Johnson" team="SF" position="RB" height="5-11" weight="212" dob="1986-10-10" college="Boise State" />
<Player playerId="921" active="0" jersey="37" lname="Johnson" fname="Jeremiah" displayName="Jeremiah Johnson" team="DEN" position="RB" height="5-9" weight="210" dob="0000-00-00" college="Oregon" />
<Player playerId="922" active="0" jersey="48" lname="Johnson" fname="Jerome" displayName="Jerome Johnson" team="ARI" position="RB" height="6-1" weight="258" dob="0000-00-00" college="Nevada-Reno" />
<Player playerId="923" active="0" jersey="0" lname="Kimble" fname="Anthony" displayName="Anthony Kimble" team="NYJ" position="RB" height="6-0" weight="215" dob="0000-00-00" college="Stanford" />
<Player playerId="924" active="0" jersey="0" lname="Kirtman" fname="David" displayName="David Kirtman" team="SEA" position="RB" height="6-0" weight="238" dob="0000-00-00" college="USC" />
<Player playerId="925" active="0" jersey="0" lname="Lattimore" fname="Keon" displayName="Keon Lattimore" team="SF" position="RB" height="5-11" weight="222" dob="0000-00-00" college="Maryland" />
<Player playerId="926" active="0" jersey="0" lname="Lee" fname="Jamall" displayName="Jamall Lee" team="CAR" position="RB" height="6-1" weight="225" dob="0000-00-00" college="Bishop" />
<Player playerId="927" active="0" jersey="0" lname="Lucky" fname="Marlon" displayName="Marlon Lucky" team="CIN" position="RB" height="5-11" weight="218" dob="0000-00-00" college="Nebraska" />
<Player playerId="928" active="0" jersey="0" lname="Manson" fname="Markus" displayName="Markus Manson" team="CAR" position="RB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="929" active="0" jersey="0" lname="McLendon" fname="Michael" displayName="Michael McLendon" team="JAC" position="RB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="930" active="0" jersey="0" lname="Mendenhall" fname="Walter" displayName="Walter Mendenhall" team="CIN" position="RB" height="6-0" weight="227" dob="0000-00-00" college="Illinois State" />
<Player playerId="931" active="0" jersey="0" lname="Moore" fname="Devin" displayName="Devin Moore" team="DET" position="RB" height="5-9" weight="190" dob="0000-00-00" college="Wyoming" />
<Player playerId="932" active="0" jersey="36" lname="Pressley" fname="Chris" displayName="Chris Pressley" team="CIN" position="RB" height="5-11" weight="260" dob="1986-08-08" college="Wisconsin" />
<Player playerId="933" active="0" jersey="33" lname="Redman" fname="Isaac" displayName="Isaac Redman" team="PIT" position="RB" height="6-0" weight="230" dob="1984-11-10" college="Bowie State" />
<Player playerId="934" active="0" jersey="0" lname="Rentmeester" fname="Bill" displayName="Bill Rentmeester" team="SF" position="RB" height="6-0" weight="247" dob="0000-00-00" college="Wisconsin" />
<Player playerId="935" active="0" jersey="0" lname="Roehl" fname="Tyler" displayName="Tyler Roehl" team="SEA" position="RB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="936" active="1" jersey="30" lname="Sheets" fname="Kory" displayName="Kory Sheets" team="OAK" position="RB" height="5-11" weight="208" dob="1985-03-31" college="Purdue" />
<Player playerId="937" active="1" jersey="35" lname="Smith" fname="Antone" displayName="Antone Smith" team="CHI" position="RB" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="938" active="0" jersey="30" lname="Sutton" fname="Tyrell" displayName="Tyrell Sutton" team="SEA" position="RB" height="5-8" weight="213" dob="1986-12-19" college="Northwestern" />
<Player playerId="939" active="1" jersey="45" lname="Ta'ufo'ou" fname="Will" displayName="Will Ta'ufo'ou" team="JAC" position="RB" height="5-11" weight="247" dob="1986-06-19" college="California" />
<Player playerId="940" active="1" jersey="11" lname="Thigpen" fname="Marcus" displayName="Marcus Thigpen" team="BUF" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="941" active="1" jersey="30" lname="Vaughan" fname="Josh" displayName="Josh Vaughan" team="ATL" position="RB" height="6-0" weight="225" dob="1986-12-03" college="Richmond" />
<Player playerId="942" active="0" jersey="0" lname="Walker" fname="Darius" displayName="Darius Walker" team="DEN" position="RB" height="5-11" weight="205" dob="0000-00-00" college="Notre Dame" />
<Player playerId="943" active="0" jersey="0" lname="Barnes" fname="Tyree" displayName="Tyree Barnes" team="NE" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="944" active="0" jersey="0" lname="Beavers" fname="Larry" displayName="Larry Beavers" team="NO" position="WR" height="5-10" weight="186" dob="1985-10-07" college="Wesleyan" />
<Player playerId="945" active="0" jersey="0" lname="Bell" fname="Aubrey" displayName="Aubrey Bell" team="HOU" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="946" active="0" jersey="0" lname="Bergeron" fname="Troy" displayName="Troy Bergeron" team="DAL" position="WR" height="6-2" weight="195" dob="0000-00-00" college="Middle Tennessee State" />
<Player playerId="947" active="0" jersey="0" lname="Black" fname="Steven" displayName="Steven Black" team="PIT" position="WR" height="6-3" weight="213" dob="0000-00-00" college="Memphis" />
<Player playerId="948" active="0" jersey="0" lname="Boldin" fname="D.J." displayName="D.J. Boldin" team="DET" position="WR" height="5-11" weight="210" dob="0000-00-00" college="Wake Forest" />
<Player playerId="949" active="0" jersey="0" lname="Brown" fname="Justin" displayName="Justin Brown" team="ARI" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="950" active="0" jersey="0" lname="Byers" fname="Jarrett" displayName="Jarrett Byers" team="LA" position="WR" height="5-10" weight="191" dob="0000-00-00" college="Northeastern State (Okla.)" />
<Player playerId="951" active="0" jersey="0" lname="Carr" fname="Greg" displayName="Greg Carr" team="SD" position="WR" height="6-5" weight="217" dob="0000-00-00" college="Florida State" />
<Player playerId="952" active="0" jersey="0" lname="Carter" fname="Patrick" displayName="Patrick Carter" team="MIA" position="WR" height="6-3" weight="215" dob="1985-02-06" college="Louisville" />
<Player playerId="953" active="0" jersey="0" lname="Carter" fname="Tim" displayName="Tim Carter" team="LA" position="WR" height="6-0" weight="185" dob="0000-00-00" college="Auburn" />
<Player playerId="954" active="0" jersey="18" lname="Chery" fname="Jason" displayName="Jason Chery" team="GB" position="WR" height="5-10" weight="185" dob="0000-00-00" college="Louisiana-Lafayette" />
<Player playerId="955" active="0" jersey="0" lname="Childs" fname="Jeremy" displayName="Jeremy Childs" team="SD" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="956" active="0" jersey="11" lname="Collins" fname="Dobson" displayName="Dobson Collins" team="PHI" position="WR" height="6-2" weight="189" dob="0000-00-00" college="Gardner-Webb" />
<Player playerId="957" active="0" jersey="14" lname="Cosby" fname="Quan" displayName="Quan Cosby" team="IND" position="WR" height="5-9" weight="195" dob="1982-12-23" college="Texas" />
<Player playerId="958" active="0" jersey="17" lname="Davis" fname="Britt" displayName="Britt Davis" team="NE" position="WR" height="6-3" weight="215" dob="1986-04-23" college="Northern Illinois" />
<Player playerId="959" active="0" jersey="0" lname="Dupree" fname="Maurice" displayName="Maurice Dupree" team="JAC" position="WR" height="5-10" weight="168" dob="0000-00-00" college="Jacksonville State" />
<Player playerId="960" active="0" jersey="0" lname="Eloi" fname="Keith" displayName="Keith Eloi" team="WAS" position="WR" height="5-10" weight="190" dob="0000-00-00" college="Nebraska-Omaha" />
<Player playerId="961" active="0" jersey="0" lname="English" fname="Jason" displayName="Jason English" team="JAC" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="962" active="0" jersey="15" lname="Gant" fname="Ed" displayName="Ed Gant" team="TB" position="WR" height="6-3" weight="200" dob="1987-01-24" college="North Alabama" />
<Player playerId="963" active="0" jersey="0" lname="Garvin" fname="Michael Ray" displayName="Michael Ray Garvin" team="ARI" position="WR" height="5-8" weight="182" dob="0000-00-00" college="Florida State" />
<Player playerId="964" active="0" jersey="0" lname="Goodman" fname="Cedric" displayName="Cedric Goodman" team="PIT" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="965" active="0" jersey="13" lname="Grisham" fname="Tyler" displayName="Tyler Grisham" team="DEN" position="WR" height="5-11" weight="180" dob="1987-06-11" college="Clemson" />
<Player playerId="966" active="0" jersey="13" lname="Guice" fname="Dudley" displayName="Dudley Guice" team="IND" position="WR" height="6-3" weight="209" dob="0000-00-00" college="Northwestern State-Louisiana" />
<Player playerId="967" active="0" jersey="0" lname="Harris" fname="JaRon" displayName="JaRon Harris" team="GB" position="WR" height="6-0" weight="200" dob="0000-00-00" college="South Dakota State" />
<Player playerId="968" active="0" jersey="0" lname="Harris" fname="Kenneth" displayName="Kenneth Harris" team="DET" position="WR" height="6-3" weight="215" dob="0000-00-00" college="Georgia" />
<Player playerId="969" active="0" jersey="0" lname="Hawkins" fname="Julian" displayName="Julian Hawkins" team="DAL" position="WR" height="6-2" weight="215" dob="0000-00-00" college="Boise State" />
<Player playerId="970" active="0" jersey="19" lname="Heckendorf" fname="Kole" displayName="Kole Heckendorf" team="IND" position="WR" height="6-2" weight="191" dob="0000-00-00" college="North Dakota State" />
<Player playerId="971" active="0" jersey="0" lname="Jackson" fname="Amarri" displayName="Amarri Jackson" team="TB" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="972" active="0" jersey="0" lname="Johnson" fname="Taurus" displayName="Taurus Johnson" team="WAS" position="WR" height="6-1" weight="205" dob="0000-00-00" college="South Florida" />
<Player playerId="973" active="0" jersey="0" lname="Jones" fname="Khalil" displayName="Khalil Jones" team="GB" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="974" active="0" jersey="0" lname="Jones" fname="Michael" displayName="Michael Jones" team="ARI" position="WR" height="6-4" weight="212" dob="0000-00-00" college="Arizona State" />
<Player playerId="975" active="0" jersey="0" lname="Kelly" fname="Aaron" displayName="Aaron Kelly" team="ATL" position="WR" height="6-5" weight="203" dob="0000-00-00" college="Clemson" />
<Player playerId="976" active="0" jersey="0" lname="Marion" fname="Brennan" displayName="Brennan Marion" team="MIA" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="977" active="0" jersey="85" lname="Martin" fname="Charly" displayName="Charly Martin" team="JAC" position="WR" height="6-1" weight="212" dob="0000-00-00" college="West Texas A&M" />
<Player playerId="978" active="0" jersey="0" lname="Matthews" fname="John" displayName="John Matthews" team="SF" position="WR" height="6-0" weight="200" dob="0000-00-00" college="San Diego" />
<Player playerId="979" active="0" jersey="0" lname="McDermott" fname="Brett" displayName="Brett McDermott" team="IND" position="WR" height="6-0" weight="201" dob="0000-00-00" college="Holy Cross" />
<Player playerId="980" active="0" jersey="0" lname="Monk" fname="Marcus" displayName="Marcus Monk" team="CAR" position="WR" height="6-4" weight="212" dob="0000-00-00" college="Arkansas" />
<Player playerId="981" active="0" jersey="0" lname="Moore" fname="Nick" displayName="Nick Moore" team="LA" position="WR" height="6-2" weight="186" dob="0000-00-00" college="Toledo" />
<Player playerId="982" active="0" jersey="0" lname="Morales" fname="Shane" displayName="Shane Morales" team="ARI" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="983" active="0" jersey="0" lname="Morris" fname="Phillip" displayName="Phillip Morris" team="TEN" position="WR" height="6-3" weight="175" dob="0000-00-00" college="South Carolina State" />
<Player playerId="984" active="0" jersey="0" lname="Mougey" fname="Darren" displayName="Darren Mougey" team="ARI" position="WR" height="6-5" weight="219" dob="0000-00-00" college="San Diego State" />
<Player playerId="985" active="1" jersey="11" lname="Norwood" fname="Jordan" displayName="Jordan Norwood" team="DEN" position="WR" height="5-11" weight="180" dob="0000-00-00" college="Penn State" />
<Player playerId="986" active="0" jersey="83" lname="Nunn" fname="Terrence" displayName="Terrence Nunn" team="TB" position="WR" height="6-0" weight="195" dob="0000-00-00" college="Nebraska" />
<Player playerId="987" active="1" jersey="15" lname="Ogletree" fname="Kevin" displayName="Kevin Ogletree" team="NYG" position="WR" height="6-1" weight="195" dob="1987-08-05" college="Virginia" />
<Player playerId="988" active="0" jersey="0" lname="Ortiz" fname="Robert" displayName="Robert Ortiz" team="NE" position="WR" height="6-1" weight="188" dob="0000-00-00" college="San Diego State" />
<Player playerId="989" active="1" jersey="89" lname="Orton" fname="Greg" displayName="Greg Orton" team="NE" position="WR" height="6-3" weight="199" dob="0000-00-00" college="Purdue" />
<Player playerId="990" active="0" jersey="0" lname="Parker" fname="Samie" displayName="Samie Parker" team="OAK" position="WR" height="5-11" weight="185" dob="0000-00-00" college="Oregon" />
<Player playerId="991" active="0" jersey="0" lname="Perretta" fname="Vinny" displayName="Vinny Perretta" team="MIN" position="WR" height="5-9" weight="186" dob="0000-00-00" college="Boise State" />
<Player playerId="992" active="0" jersey="0" lname="Peterman" fname="Eric" displayName="Eric Peterman" team="CHI" position="WR" height="6-1" weight="202" dob="0000-00-00" college="Northwestern" />
<Player playerId="993" active="0" jersey="0" lname="Peterson" fname="Todd" displayName="Todd Peterson" team="JAC" position="WR" height="6-4" weight="215" dob="0000-00-00" college="Nebraska" />
<Player playerId="994" active="0" jersey="0" lname="Richmond" fname="David" displayName="David Richmond" team="CIN" position="WR" height="6-2" weight="192" dob="0000-00-00" college="San Jose State" />
<Player playerId="995" active="0" jersey="19" lname="Riley" fname="Eron" displayName="Eron Riley" team="NYJ" position="WR" height="6-3" weight="207" dob="1987-08-05" college="Duke" />
<Player playerId="996" active="0" jersey="0" lname="Robinson" fname="Brandon" displayName="Brandon Robinson" team="PHI" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="997" active="0" jersey="0" lname="Saunders" fname="Tommy" displayName="Tommy Saunders" team="DET" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="998" active="0" jersey="0" lname="Shelton" fname="Trent" displayName="Trent Shelton" team="WAS" position="WR" height="6-0" weight="202" dob="0000-00-00" college="Baylor" />
<Player playerId="999" active="0" jersey="0" lname="Simmons" fname="Jamarko" displayName="Jamarko Simmons" team="GB" position="WR" height="" weight="" dob="0000-00-00" college="" />
<Player playerId="1000" active="0" jersey="0" lname="Simon" fname="Matt" displayName="Matt Simon" team="NO" position="WR" height="6-1" weight="199" dob="0000-00-00" college="Northern Illinois" />
<Player playerId="1001" active="0" jersey="0" lname="Smith" fname="Rodgeriqus" displayName="Rodgeriqus Smith" team="SD" position="WR" height="6-0" weight="200" dob="0000-00-00" college="Auburn" />
<Player playerId="1002" active="0" jersey="41" lname="Ventrone" fname="Raymond" displayName="Raymond Ventrone" team="NE" position="WR" height="5-10" weight="200" dob="1982-10-21" college="Villanova" />
<Player playerId="1003" active="0" jersey="0" lname="White" fname="Shun" displayName="Shun White" team="NE" position="WR" height="5-8" weight="195" dob="0000-00-00" college="Navy" />