-
Notifications
You must be signed in to change notification settings - Fork 0
/
old rowfile
executable file
·6000 lines (6000 loc) · 236 KB
/
old rowfile
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
d_james_rowland_19871218_1000141646.txt
d_timothy_penny_19870128_1000004209.txt
d_richard_gephardt_19870429_1000030911.txt
d_samuel_stratton_19880224_1000152490.txt
d_mario_biaggi_19870713_1000071351.txt
d_daniel_glickman_19880512_1000184453.txt
d_gillespie_montgomery_19881003_1000257395.txt
d_thomas_foley_19871007_1000105151.txt
d_walter_fauntroy_19880930_1000255937.txt
d_barney_frank_19871021_1000113367.txt
d_gerald_sikorski_19880811_1000235496.txt
d_barney_frank_19881021_1000274760.txt
d_les_aucoin_19870512_1000037769.txt
d_dale_kildee_19880809_1000232842.txt
d_willie_hefner_19880518_1000189035.txt
d_donald_pease_19871029_1000119297.txt
d_nicholas_mavroules_19871007_1000105222.txt
d_mario_biaggi_19880127_1000145641.txt
d_douglas_walgren_19870608_1000050296.txt
d_william_hughes_19870310_1000012182.txt
d_barbara_boxer_19880929_1000252587.txt
d_daniel_akaka_19881005_1000259708.txt
d_ron_de_lugo_19870504_1000032347.txt
d_nicholas_mavroules_19881005_1000260629.txt
d_gillespie_montgomery_19881006_1000262160.txt
d_robert_matsui_19870807_1000085980.txt
d_alan_wheat_19870728_1000079478.txt
d_james_oberstar_19880908_1000239273.txt
d_leon_panetta_19870512_1000037256.txt
d_james_wright_19870317_1000013915.txt
d_mary_oakar_19880928_1000252118.txt
d_donald_pease_19871029_1000119476.txt
d_byron_dorgan_19870402_1000021087.txt
d_tony_hall_19870225_1000009451.txt
d_gillespie_montgomery_19870409_1000024902.txt
d_marilyn_lloyd_19880728_1000225497.txt
d_norman_dicks_19871211_1000137126.txt
d_joseph_early_19870805_1000084078.txt
d_george_miller_19871216_1000140983.txt
d_william_alexander_19880224_1000152498.txt
d_charles_mcmillen_19870121_1000003334.txt
d_howard_wolpe_19881012_1000266559.txt
d_jamie_whitten_19880811_1000236780.txt
d_james_scheuer_19870604_1000049655.txt
d_thomas_downey_19871216_1000141012.txt
d_butler_derrick_19870729_1000079641.txt
d_james_scheuer_19871120_1000129974.txt
d_dennis_eckart_19870225_1000009481.txt
d_james_rowland_19881004_1000258481.txt
d_jonas_frost_19870408_1000023592.txt
d_dennis_eckart_19881021_1000275495.txt
d_edward_boland_19870615_1000054341.txt
d_gillespie_montgomery_19880907_1000237969.txt
d_william_tauzin_19870331_1000019277.txt
d_ben_campbell_19881003_1000257169.txt
d_edward_markey_19880607_1000198765.txt
d_kweisi_mfume_19880609_1000200152.txt
d_norman_dicks_19870729_1000079585.txt
d_patricia_schroeder_19881020_1000273201.txt
d_patricia_schroeder_19870629_1000063771.txt
d_mary_oakar_19880322_1000162501.txt
d_peter_defazio_19881006_1000261947.txt
d_albert_espy_19871216_1000140949.txt
d_albert_bustamante_19870326_1000017590.txt
d_romano_mazzoli_19880201_1000146375.txt
d_edward_boland_19881005_1000260478.txt
d_henry_gonzalez_19880324_1000163614.txt
d_john_dingell_19880630_1000212686.txt
d_les_aucoin_19880127_1000144985.txt
d_lee_hamilton_19880517_1000188800.txt
d_robert_torricelli_19870602_1000047717.txt
d_albert_bustamante_19880421_1000174527.txt
d_william_richardson_19871027_1000116075.txt
d_william_hughes_19880916_1000244278.txt
d_joseph_brennan_19870519_1000040812.txt
d_john_lafalce_19880714_1000220538.txt
d_daniel_rostenkowski_19870610_1000050918.txt
d_lawrence_smith_19870917_1000090569.txt
d_jamie_whitten_19880616_1000203917.txt
d_robert_kastenmeier_19880809_1000232886.txt
d_julian_dixon_19870626_1000061661.txt
d_julian_dixon_19880628_1000210477.txt
d_matthew_martinez_19870617_1000056791.txt
d_kweisi_mfume_19870729_1000079914.txt
d_daniel_glickman_19870713_1000071548.txt
d_mervyn_dymally_19880204_1000148952.txt
d_david_bonior_19870708_1000068948.txt
d_gerry_studds_19870708_1000068685.txt
d_henry_gonzalez_19880209_1000149024.txt
d_victor_fazio_19881019_1000271646.txt
d_james_pickle_19880203_1000148116.txt
d_louise_slaughter_19870729_1000079902.txt
d_major_owens_19870630_1000065597.txt
d_walter_jones_19880706_1000212846.txt
d_harold_ford_19871215_1000140465.txt
d_michael_lowry_19880413_1000169842.txt
d_glenn_anderson_19871202_1000132020.txt
d_robert_roe_19881019_1000271682.txt
d_ike_skelton_19870311_1000013110.txt
d_james_slattery_19880616_1000204064.txt
d_jack_brooks_19880630_1000212561.txt
d_james_pickle_19880328_1000165418.txt
d_henry_gonzalez_19870611_1000051882.txt
d_byron_dorgan_19870427_1000029715.txt
d_john_moakley_19881005_1000260593.txt
d_peter_kostmayer_19871118_1000128501.txt
d_joseph_brennan_19880518_1000189141.txt
d_charles_rangel_19880202_1000147186.txt
d_donald_pease_19880204_1000148362.txt
d_edward_feighan_19880916_1000244374.txt
d_jamie_whitten_19870713_1000071805.txt
d_albert_bustamante_19880420_1000173285.txt
d_dale_kildee_19880419_1000172531.txt
d_henry_gonzalez_19880209_1000149032.txt
d_sander_levin_19880203_1000148021.txt
d_david_bonior_19870311_1000012816.txt
d_henry_waxman_19880929_1000253189.txt
d_bruce_morrison_19870625_1000060791.txt
d_fortney_stark_19870602_1000047819.txt
d_thomas_foglietta_19871208_1000134297.txt
d_nick_rahall_19880421_1000174331.txt
d_anthony_coelho_19870921_1000092269.txt
d_norman_mineta_19870203_1000005870.txt
d_joseph_gaydos_19871215_1000140637.txt
d_ron_de_lugo_19880413_1000170075.txt
d_henry_gonzalez_19870622_1000058625.txt
d_charles_bennett_19870323_1000016447.txt
d_george_darden_19870507_1000035513.txt
d_norman_mineta_19870709_1000069082.txt
d_bruce_vento_19880419_1000172227.txt
d_julian_dixon_19870917_1000090443.txt
d_daniel_glickman_19880603_1000197863.txt
d_james_wright_19871119_1000129756.txt
d_robert_wise_19871109_1000123366.txt
d_leon_panetta_19880908_1000238739.txt
d_george_miller_19871013_1000108344.txt
d_joseph_brennan_19880419_1000172590.txt
d_gerry_studds_19871013_1000108576.txt
d_gary_ackerman_19870723_1000077346.txt
d_stephen_solarz_19880907_1000237876.txt
d_john_murtha_19880907_1000237635.txt
d_gillespie_montgomery_19870918_1000092161.txt
d_major_owens_19870916_1000089802.txt
d_daniel_rostenkowski_19880810_1000234131.txt
d_samuel_stratton_19870917_1000090440.txt
d_charles_bennett_19880712_1000217635.txt
d_morris_udall_19881003_1000257440.txt
d_william_hughes_19880510_1000182551.txt
d_jamie_whitten_19871203_1000133008.txt
d_leslie_aspin_19880505_1000181139.txt
d_ben_campbell_19881003_1000257135.txt
d_louis_stokes_19880303_1000155889.txt
d_nick_rahall_19870714_1000072377.txt
d_leon_panetta_19881021_1000275031.txt
d_louis_stokes_19880503_1000180161.txt
d_louis_stokes_19870310_1000012118.txt
d_george_miller_19880727_1000224025.txt
d_julian_dixon_19881021_1000275946.txt
d_james_rowland_19881006_1000261407.txt
d_andrew_jacobs_19871104_1000121811.txt
d_peter_rodino_19880315_1000158068.txt
d_douglas_bosco_19880920_1000245420.txt
d_henry_gonzalez_19880916_1000244477.txt
d_leon_panetta_19870921_1000092376.txt
d_glenn_anderson_19871028_1000118315.txt
d_mario_biaggi_19870303_1000010186.txt
d_sander_levin_19870408_1000023581.txt
d_walter_fauntroy_19880317_1000160847.txt
d_ron_de_lugo_19871215_1000140592.txt
d_james_traficant_19880804_1000229863.txt
d_byron_dorgan_19881013_1000268024.txt
d_edward_boland_19870127_1000003986.txt
d_mervyn_dymally_19870511_1000036879.txt
d_william_alexander_19880907_1000237588.txt
d_barney_frank_19880711_1000215719.txt
d_charles_hayes_19870915_1000088534.txt
d_kenneth_mackay_19870423_1000028031.txt
d_barbara_kennelly_19880915_1000243447.txt
d_robert_matsui_19881006_1000261444.txt
d_nick_rahall_19870805_1000083958.txt
d_david_bonior_19870311_1000012824.txt
d_william_edwards_19881019_1000271832.txt
d_james_traficant_19870803_1000081960.txt
d_jamie_whitten_19870923_1000094051.txt
d_cardiss_collins_19881019_1000271621.txt
d_michael_andrews_19880608_1000199667.txt
d_thomas_carper_19870629_1000063694.txt
d_nick_rahall_19870624_1000059674.txt
d_george_miller_19870623_1000059143.txt
d_terry_bruce_19880727_1000224088.txt
d_william_ford_19870311_1000013076.txt
d_richard_lehman_19880727_1000224266.txt
d_frank_annunzio_19880216_1000149219.txt
d_dante_fascell_19871020_1000112959.txt
d_william_ford_19870407_1000022700.txt
d_barney_frank_19880303_1000155823.txt
d_stephen_solarz_19871117_1000127011.txt
d_john_williams_19880323_1000163218.txt
d_douglas_owens_19880608_1000199778.txt
d_richard_gephardt_19880809_1000233068.txt
d_samuel_stratton_19870427_1000029624.txt
d_jack_brooks_19880314_1000157565.txt
d_john_conyers_19880518_1000189115.txt
d_michael_andrews_19871216_1000141030.txt
d_james_wright_19870917_1000090537.txt
d_thomas_luken_19881012_1000266651.txt
d_mervyn_dymally_19870721_1000075770.txt
d_leslie_aspin_19880930_1000255530.txt
d_kenneth_gray_19880909_1000240636.txt
d_marilyn_lloyd_19870507_1000035188.txt
d_frank_annunzio_19871028_1000118121.txt
d_william_ford_19881012_1000266567.txt
d_mario_biaggi_19870722_1000076846.txt
d_charles_schumer_19880324_1000163597.txt
d_richard_durbin_19880519_1000190673.txt
d_thomas_foley_19880526_1000194824.txt
d_david_obey_19871109_1000123672.txt
d_albert_bustamante_19870427_1000029530.txt
d_norman_dicks_19880504_1000180312.txt
d_donald_pease_19880512_1000184382.txt
d_gary_ackerman_19880928_1000251909.txt
d_william_lipinski_19870325_1000017064.txt
d_barbara_kennelly_19871203_1000132976.txt
d_joseph_brennan_19880811_1000236460.txt
d_stephen_solarz_19880429_1000178892.txt
d_mervyn_dymally_19880927_1000250433.txt
d_gary_ackerman_19880928_1000251829.txt
d_howard_wolpe_19880622_1000207538.txt
d_john_lewis_19880608_1000199780.txt
d_david_obey_19880712_1000217724.txt
d_daniel_glickman_19871005_1000103011.txt
d_barbara_boxer_19870728_1000079493.txt
d_james_olin_19870616_1000056346.txt
d_fortney_stark_19880714_1000220517.txt
d_meldon_levine_19881021_1000274653.txt
d_robert_roe_19880609_1000199932.txt
d_william_alexander_19870520_1000041441.txt
d_donald_pease_19871215_1000140546.txt
d_douglas_walgren_19870622_1000058551.txt
d_tom_lantos_19870929_1000097855.txt
d_james_slattery_19880523_1000191746.txt
d_george_miller_19871221_1000143123.txt
d_anthony_coelho_19870203_1000006504.txt
d_bruce_vento_19880913_1000241625.txt
d_george_hochbrueckner_19880526_1000194944.txt
d_michael_lowry_19880328_1000164879.txt
d_gillespie_montgomery_19880125_1000144554.txt
d_anthony_beilenson_19880926_1000248732.txt
d_david_obey_19880203_1000147555.txt
d_major_owens_19870916_1000089506.txt
d_steny_hoyer_19870527_1000045208.txt
d_david_mccurdy_19870423_1000028159.txt
d_marcy_kaptur_19880711_1000215602.txt
d_anthony_beilenson_19870107_1000001355.txt
d_gus_yatron_19870728_1000079266.txt
d_corinne_boggs_19880622_1000207411.txt
d_bruce_morrison_19870610_1000051174.txt
d_norman_mineta_19871005_1000103014.txt
d_walter_jones_19881020_1000273442.txt
d_william_hughes_19870721_1000075639.txt
d_daniel_mica_19870304_1000010785.txt
d_ronald_dellums_19880504_1000180426.txt
d_bruce_morrison_19880629_1000212331.txt
d_henry_gonzalez_19871029_1000119293.txt
d_william_richardson_19880920_1000245361.txt
d_don_bonker_19870331_1000019413.txt
d_elizabeth_patterson_19881004_1000257927.txt
d_james_oberstar_19870806_1000084906.txt
d_dante_fascell_19881021_1000275815.txt
d_ronald_dellums_19870512_1000037311.txt
d_edward_boland_19870615_1000054331.txt
d_michael_synar_19870615_1000055266.txt
d_richard_ray_19880303_1000156041.txt
d_ike_skelton_19870506_1000033692.txt
d_dennis_hertel_19870512_1000037589.txt
d_nick_rahall_19870428_1000030453.txt
d_george_crockett_19870728_1000079225.txt
d_sam_gibbons_19880915_1000243501.txt
d_philip_sharp_19880503_1000179694.txt
d_mario_biaggi_19870528_1000046415.txt
d_michael_lowry_19880421_1000174522.txt
d_william_hughes_19880908_1000239572.txt
d_william_clay_19871029_1000119487.txt
d_theodore_weiss_19880803_1000229154.txt
d_edward_boland_19880427_1000176968.txt
d_john_spratt_19880511_1000183814.txt
d_bruce_vento_19871218_1000142062.txt
d_bruce_vento_19880413_1000169932.txt
d_robert_kastenmeier_19880712_1000217733.txt
d_james_traficant_19870714_1000072020.txt
d_james_traficant_19870304_1000010876.txt
d_norman_mineta_19880428_1000177539.txt
d_don_bonker_19870527_1000045144.txt
d_charles_stenholm_19871203_1000132938.txt
d_bruce_vento_19871005_1000102917.txt
d_mervyn_dymally_19871210_1000135327.txt
d_beverly_byron_19870518_1000040002.txt
d_james_florio_19870430_1000031614.txt
d_bruce_vento_19880524_1000192929.txt
d_daniel_mica_19870618_1000057839.txt
d_charles_schumer_19870401_1000020820.txt
d_elizabeth_patterson_19880517_1000188860.txt
d_mervyn_dymally_19880315_1000158183.txt
d_john_lafalce_19880706_1000212831.txt
d_william_coyne_19880330_1000167349.txt
d_edolphus_towns_19870921_1000092399.txt
d_ben_erdreich_19870325_1000016929.txt
d_jonas_frost_19871028_1000118071.txt
d_patricia_schroeder_19880726_1000222148.txt
d_howard_berman_19880524_1000193033.txt
d_mervyn_dymally_19870923_1000094125.txt
d_thomas_carper_19871029_1000119200.txt
d_cardiss_collins_19880811_1000235588.txt
d_john_conyers_19880811_1000236565.txt
d_david_bonior_19871109_1000123684.txt
d_beverly_byron_19870219_1000008569.txt
d_butler_derrick_19871029_1000119166.txt
d_william_hughes_19880913_1000241671.txt
d_daniel_rostenkowski_19880331_1000167584.txt
d_david_mccurdy_19871006_1000104047.txt
d_meldon_levine_19880421_1000174441.txt
d_don_bonker_19871218_1000142120.txt
d_david_mccurdy_19880714_1000220409.txt
d_ron_wyden_19870303_1000010143.txt
d_earl_hutto_19880928_1000252037.txt
d_james_scheuer_19881019_1000271538.txt
d_meldon_levine_19880303_1000155932.txt
d_lawrence_smith_19880727_1000223823.txt
d_don_bonker_19871221_1000143112.txt
d_daniel_glickman_19870317_1000014030.txt
d_meldon_levine_19880803_1000229156.txt
d_h._lancaster_19870916_1000089724.txt
d_meldon_levine_19880310_1000157384.txt
d_tony_hall_19870709_1000069041.txt
d_david_bonior_19881013_1000268017.txt
d_henry_waxman_19880726_1000222308.txt
d_nick_rahall_19880629_1000211723.txt
d_francis_mccloskey_19870317_1000013968.txt
d_mario_biaggi_19870409_1000024911.txt
d_dante_fascell_19881005_1000260088.txt
d_robert_garcia_19870615_1000055136.txt
d_joseph_kennedy_19881005_1000260598.txt
d_james_scheuer_19881007_1000262265.txt
d_fernand_st._germain_19870428_1000030346.txt
d_william_ford_19880510_1000182748.txt
d_bruce_vento_19880811_1000236564.txt
d_david_obey_19870423_1000028584.txt
d_william_clay_19880503_1000179564.txt
d_edward_markey_19880428_1000177422.txt
d_paul_kanjorski_19880317_1000160844.txt
d_william_ford_19870528_1000046504.txt
d_julian_dixon_19880628_1000210718.txt
d_glenn_anderson_19880517_1000188447.txt
d_gillespie_montgomery_19870427_1000029555.txt
d_henry_waxman_19870722_1000076859.txt
d_harold_ford_19880930_1000255574.txt
d_edgar_jenkins_19880602_1000197546.txt
d_daniel_rostenkowski_19880804_1000229816.txt
d_howard_berman_19870428_1000030275.txt
d_les_aucoin_19880322_1000162354.txt
d_dennis_eckart_19880726_1000222311.txt
d_fernand_st._germain_19870629_1000063661.txt
d_charles_rangel_19880908_1000239309.txt
d_edward_boland_19881005_1000260638.txt
d_edward_markey_19870429_1000031341.txt
d_gary_ackerman_19880928_1000252128.txt
d_glenn_english_19880907_1000237490.txt
d_tom_lantos_19881013_1000268220.txt
d_douglas_walgren_19880303_1000156233.txt
d_beverly_byron_19881012_1000266438.txt
d_james_bilbray_19870722_1000076944.txt
d_thomas_downey_19880923_1000247672.txt
d_william_richardson_19880518_1000189085.txt
d_meldon_levine_19880322_1000162402.txt
d_mary_oakar_19880927_1000250277.txt
d_thomas_downey_19880502_1000179249.txt
d_ronald_dellums_19870513_1000038894.txt
d_charles_stenholm_19880927_1000249784.txt
d_james_traficant_19870916_1000089820.txt
d_jim_bates_19870507_1000035194.txt
d_george_miller_19880412_1000168537.txt
d_frank_guarini_19880713_1000217974.txt
d_james_traficant_19870630_1000064859.txt
d_william_clay_19881019_1000272279.txt
d_timothy_penny_19880419_1000172570.txt
d_thomas_downey_19870728_1000079420.txt
d_bruce_vento_19870610_1000051233.txt
d_charles_hayes_19880217_1000150015.txt
d_victor_fazio_19880517_1000188683.txt
d_lawrence_smith_19880803_1000229152.txt
d_don_bonker_19880512_1000184264.txt
d_james_rowland_19870402_1000021039.txt
d_anthony_coelho_19880510_1000182385.txt
d_gus_yatron_19870225_1000009547.txt
d_william_edwards_19880414_1000170238.txt
d_lawrence_smith_19871021_1000113772.txt
d_theodore_weiss_19871104_1000121431.txt
d_daniel_glickman_19880503_1000179495.txt
d_james_traficant_19871214_1000139818.txt
d_james_wright_19871029_1000119227.txt
d_nicholas_mavroules_19880502_1000179217.txt
d_theodore_weiss_19870615_1000054244.txt
d_george_miller_19880808_1000231915.txt
d_charles_schumer_19871021_1000113247.txt
d_james_traficant_19880602_1000197651.txt
d_gerald_kleczka_19880216_1000149410.txt
d_fernand_st._germain_19880609_1000200151.txt
d_steny_hoyer_19880614_1000202015.txt
d_jack_brooks_19870519_1000040634.txt
d_benjamin_cardin_19880622_1000207583.txt
d_gerry_studds_19880203_1000147982.txt
d_robert_roe_19870604_1000049569.txt
d_william_coyne_19881003_1000257699.txt
d_edward_roybal_19870311_1000013078.txt
d_james_slattery_19880913_1000241590.txt
d_don_bonker_19870427_1000029538.txt
d_ike_skelton_19880630_1000212684.txt
d_robert_clement_19880125_1000144536.txt
d_james_grant_19870428_1000030138.txt
d_douglas_walgren_19880524_1000192791.txt
d_augustus_hawkins_19881006_1000261299.txt
d_stephen_solarz_19880930_1000256132.txt
d_barney_frank_19880714_1000220279.txt
d_daniel_glickman_19880923_1000247726.txt
d_bruce_vento_19880808_1000231846.txt
d_harley_staggers_19870630_1000065458.txt
d_james_scheuer_19871202_1000132079.txt
d_richard_stallings_19880728_1000225639.txt
d_leon_panetta_19871117_1000126975.txt
d_william_nichols_19870708_1000068870.txt
d_douglas_owens_19870129_1000004702.txt
d_thomas_downey_19870804_1000082613.txt
d_william_hughes_19880908_1000239487.txt
d_james_traficant_19880512_1000184372.txt
d_donald_pease_19880930_1000255600.txt
d_nick_rahall_19871007_1000104918.txt
d_tony_hall_19870325_1000017021.txt
d_bruce_vento_19880908_1000238789.txt
d_fernand_st._germain_19880913_1000241425.txt
d_corinne_boggs_19870108_1000001449.txt
d_albert_bustamante_19880525_1000193253.txt
d_glenn_anderson_19880922_1000246554.txt
d_john_dingell_19880809_1000232955.txt
d_william_lipinski_19871015_1000111548.txt
d_lee_hamilton_19871222_1000144337.txt
d_allan_swift_19871203_1000133316.txt
d_ronald_coleman_19870715_1000073301.txt
d_john_lafalce_19881019_1000271670.txt
d_benjamin_cardin_19871021_1000113499.txt
d_william_hughes_19880908_1000239512.txt
d_edward_markey_19880419_1000172437.txt
d_george_crockett_19870618_1000057651.txt
d_dante_fascell_19871020_1000112999.txt
d_edward_boland_19880622_1000207665.txt
d_richard_gephardt_19880524_1000192937.txt
d_gus_savage_19870723_1000077455.txt
d_william_edwards_19880915_1000243349.txt
d_robert_garcia_19870428_1000030352.txt
d_louis_stokes_19881021_1000275899.txt
d_marcy_kaptur_19870729_1000079712.txt
d_peter_defazio_19870427_1000029550.txt
d_romano_mazzoli_19881013_1000267867.txt
d_david_bonior_19880316_1000159699.txt
d_william_tauzin_19880329_1000166214.txt
d_james_traficant_19870723_1000077674.txt
d_william_nichols_19881005_1000260320.txt
d_esteban_torres_19880808_1000231737.txt
d_chester_atkins_19880907_1000237420.txt
d_robert_matsui_19880503_1000180171.txt
d_butler_derrick_19880203_1000148064.txt
d_william_hughes_19881021_1000274957.txt
d_william_edwards_19880803_1000228957.txt
d_nick_rahall_19880613_1000201351.txt
d_bruce_vento_19870505_1000033219.txt
d_harold_volkmer_19870330_1000018759.txt
d_albert_bustamante_19870723_1000077375.txt
d_byron_dorgan_19880525_1000193370.txt
d_don_bonker_19870429_1000031092.txt
d_leslie_aspin_19880610_1000200806.txt
d_matthew_mchugh_19870423_1000029201.txt
d_george_miller_19880622_1000207478.txt
d_theodore_weiss_19871028_1000118336.txt
d_edward_feighan_19870721_1000075613.txt
d_james_clarke_19870407_1000022639.txt
d_meldon_levine_19880616_1000204206.txt
d_richard_durbin_19870409_1000024725.txt
d_barney_frank_19871021_1000113573.txt
d_john_dingell_19881021_1000275742.txt
d_william_gray_19880526_1000194886.txt
d_charles_mcmillen_19881006_1000261615.txt
d_julian_dixon_19870805_1000083821.txt
d_nick_rahall_19870121_1000003237.txt
d_george_leland_19870507_1000035196.txt
d_louise_slaughter_19880916_1000244085.txt
d_morris_udall_19870519_1000040705.txt
d_edward_feighan_19870602_1000048363.txt
d_lewis_payne_19880621_1000206416.txt
d_benjamin_cardin_19870408_1000023495.txt
d_george_miller_19870520_1000041557.txt
d_howard_wolpe_19870408_1000023765.txt
d_john_spratt_19870513_1000038773.txt
d_carroll_hubbard_19880714_1000220059.txt
d_leslie_aspin_19880428_1000177458.txt
d_glenn_english_19871006_1000104562.txt
d_william_ford_19870723_1000077440.txt
d_william_clay_19880929_1000253312.txt
d_gillespie_montgomery_19880908_1000239485.txt
d_barbara_boxer_19880203_1000147616.txt
d_jim_moody_19880317_1000160828.txt
d_theodore_weiss_19880707_1000213876.txt
d_lawrence_smith_19870210_1000008071.txt
d_james_pickle_19880614_1000201736.txt
d_meldon_levine_19881013_1000267865.txt
d_royden_dyson_19870721_1000075636.txt
d_walter_jones_19870803_1000082069.txt
d_edward_boland_19870615_1000054249.txt
d_charles_bennett_19870728_1000079106.txt
d_james_traficant_19870708_1000068817.txt
d_robert_matsui_19880926_1000248879.txt
d_james_pickle_19870310_1000012300.txt
d_thomas_manton_19870422_1000027265.txt
d_frank_annunzio_19880603_1000198207.txt
d_james_wright_19870430_1000031868.txt
d_richard_lehman_19870917_1000090438.txt
d_daniel_mica_19870331_1000019294.txt
d_byron_dorgan_19880616_1000203887.txt
d_steny_hoyer_19880707_1000213873.txt
d_timothy_penny_19870624_1000059481.txt
d_joseph_brennan_19880916_1000244087.txt
d_thomas_downey_19880930_1000255636.txt
d_edward_roybal_19870715_1000073293.txt
d_daniel_rostenkowski_19870518_1000040345.txt
d_albert_bustamante_19870305_1000011138.txt
d_nancy_pelosi_19880803_1000229105.txt
d_albert_bustamante_19870722_1000076899.txt
d_john_lafalce_19880421_1000174270.txt
d_james_oberstar_19880421_1000174296.txt
d_les_aucoin_19870507_1000035326.txt
d_james_slattery_19880629_1000211852.txt
d_john_spratt_19880504_1000180598.txt
d_william_richardson_19880728_1000225537.txt
d_peter_rodino_19880426_1000175791.txt
d_brian_donnelly_19871117_1000127395.txt
d_theodore_weiss_19880622_1000207691.txt
d_william_richardson_19880317_1000160070.txt
d_edward_feighan_19880809_1000233349.txt
d_william_gray_19871020_1000113036.txt
d_mervyn_dymally_19871117_1000127780.txt
d_les_aucoin_19870518_1000039851.txt
d_william_gray_19880608_1000199728.txt
d_john_conyers_19880322_1000162419.txt
d_norman_mineta_19871219_1000142882.txt
d_norman_mineta_19871001_1000101045.txt
d_samuel_stratton_19870508_1000036028.txt
d_earl_hutto_19870128_1000004288.txt
d_mario_biaggi_19870608_1000050357.txt
d_peter_visclosky_19870930_1000099615.txt
d_dennis_eckart_19881005_1000259694.txt
d_les_aucoin_19880811_1000236477.txt
d_marilyn_lloyd_19880726_1000222125.txt
d_meldon_levine_19870401_1000020627.txt
d_ike_skelton_19871006_1000104130.txt
d_robert_tallon_19880421_1000174333.txt
d_gerald_kleczka_19870325_1000017066.txt
d_james_slattery_19871006_1000104258.txt
d_bruce_vento_19870310_1000012235.txt
d_thomas_foley_19871215_1000140494.txt
d_edward_markey_19881019_1000271938.txt
d_mario_biaggi_19870319_1000015599.txt
d_donald_pease_19880707_1000213817.txt
d_george_leland_19870108_1000001659.txt
d_walter_jones_19880926_1000248642.txt
d_james_hayes_19880810_1000233955.txt
d_augustus_hawkins_19880322_1000162217.txt
d_robert_garcia_19880810_1000234310.txt
d_mervyn_dymally_19870518_1000040004.txt
d_joseph_brennan_19880505_1000181184.txt
d_les_aucoin_19880526_1000194754.txt
d_tony_hall_19880217_1000150039.txt
d_thomas_downey_19880602_1000197564.txt
d_john_moakley_19871208_1000134289.txt
d_william_hughes_19880908_1000239503.txt
d_norman_mineta_19880907_1000237555.txt
d_robert_kastenmeier_19880629_1000211765.txt
d_michael_andrews_19870310_1000012314.txt
d_david_bonior_19870615_1000055349.txt
d_eligio_de_la_garza_19870921_1000092484.txt
d_bruce_vento_19880920_1000245757.txt
d_robert_roe_19881003_1000257060.txt
d_john_spratt_19870518_1000039952.txt
d_james_leath_19880321_1000161222.txt
d_theodore_weiss_19880922_1000246908.txt
d_itimous_valentine_19880609_1000199945.txt
d_james_slattery_19870409_1000024875.txt
d_paul_kanjorski_19870803_1000082167.txt
d_frank_annunzio_19880322_1000162317.txt
d_thomas_foglietta_19871120_1000129905.txt
d_william_clay_19880504_1000180268.txt
d_robert_kastenmeier_19881003_1000256857.txt
d_sam_gejdenson_19881019_1000272019.txt
d_morris_udall_19881019_1000271595.txt
d_henry_waxman_19871015_1000110289.txt
d_william_chappell_19880621_1000206486.txt
d_harold_ford_19880512_1000184181.txt
d_frank_annunzio_19880224_1000152492.txt
d_dante_fascell_19881004_1000258621.txt
d_douglas_bosco_19880914_1000242447.txt
d_charles_schumer_19880616_1000203971.txt
d_james_pickle_19880907_1000237947.txt
d_john_conyers_19871202_1000132172.txt
d_joseph_brennan_19871104_1000121432.txt
d_daniel_mica_19871215_1000140363.txt
d_richard_gephardt_19870519_1000040837.txt
d_frank_annunzio_19871202_1000132369.txt
d_george_darden_19871104_1000121353.txt
d_john_williams_19871104_1000121805.txt
d_george_brown_19870617_1000056828.txt
d_robert_mrazek_19870805_1000084269.txt
d_william_alexander_19870610_1000051058.txt
d_marilyn_lloyd_19880920_1000245647.txt
d_george_crockett_19871221_1000143811.txt
d_morris_udall_19880926_1000248405.txt
d_thomas_foley_19880526_1000194930.txt
d_john_spratt_19880420_1000173657.txt
d_nick_rahall_19880503_1000179689.txt
d_ron_wyden_19881004_1000258804.txt
d_joseph_brennan_19880315_1000158050.txt
d_john_conyers_19870401_1000020971.txt
d_norman_dicks_19870714_1000072242.txt
d_robert_garcia_19880804_1000229868.txt
d_michael_synar_19870729_1000079835.txt
d_bruce_vento_19880726_1000222348.txt
d_bernard_dwyer_19870804_1000083134.txt
d_les_aucoin_19880505_1000181146.txt
d_kweisi_mfume_19870505_1000033086.txt
d_sam_gejdenson_19871209_1000134840.txt
d_victor_fazio_19880519_1000190726.txt
d_dale_kildee_19870806_1000085090.txt
d_leslie_aspin_19870715_1000073150.txt
d_leon_panetta_19880726_1000222194.txt
d_glenn_anderson_19880622_1000207699.txt
d_mervyn_dymally_19880926_1000248865.txt
d_charles_mcmillen_19870429_1000031097.txt
d_john_williams_19870520_1000041922.txt
d_jamie_whitten_19880517_1000188470.txt
d_eligio_de_la_garza_19870226_1000009703.txt
d_james_pickle_19880517_1000188505.txt
d_albert_espy_19871028_1000118191.txt
d_gary_ackerman_19871013_1000108364.txt
d_floyd_flake_19870528_1000046319.txt
d_marcy_kaptur_19870513_1000038648.txt
d_peter_rodino_19880808_1000231685.txt
d_timothy_penny_19870224_1000009124.txt
d_thomas_sawyer_19880803_1000229148.txt
d_robert_garcia_19870806_1000084598.txt
d_martin_russo_19870224_1000009210.txt
d_gerald_kleczka_19880915_1000243451.txt
d_james_slattery_19870520_1000041775.txt
d_daniel_glickman_19870713_1000071541.txt
d_david_mccurdy_19870709_1000069061.txt
d_eligio_de_la_garza_19870630_1000064916.txt
d_ralph_hall_19870618_1000057627.txt
d_peter_rodino_19881003_1000256884.txt
d_howard_berman_19880808_1000231652.txt
d_bruce_vento_19871013_1000108463.txt
d_james_scheuer_19880602_1000197646.txt
d_norman_mineta_19870713_1000071817.txt
d_philip_sharp_19870729_1000079741.txt
d_william_hughes_19880926_1000249142.txt
d_richard_durbin_19880810_1000234129.txt
d_james_traficant_19870428_1000030136.txt
d_henry_gonzalez_19870622_1000058634.txt
d_nick_rahall_19870309_1000011874.txt
d_frederick_boucher_19880321_1000161206.txt
d_nicholas_mavroules_19870311_1000013074.txt
d_edward_markey_19870804_1000082932.txt
d_robert_garcia_19870803_1000082049.txt
d_sam_gibbons_19870430_1000031703.txt
d_barbara_kennelly_19870324_1000016672.txt
d_tony_hall_19880714_1000220076.txt
d_cardiss_collins_19870311_1000012916.txt
d_anthony_coelho_19881003_1000257161.txt
d_ed_jones_19870409_1000024946.txt
d_edward_roybal_19880922_1000246884.txt
d_lee_hamilton_19870615_1000055248.txt
d_beverly_byron_19880503_1000180139.txt
d_james_traficant_19880706_1000212908.txt
d_jim_bates_19870312_1000013353.txt
d_william_edwards_19880329_1000165926.txt
d_charles_schumer_19880713_1000218107.txt
d_bruce_vento_19881012_1000266849.txt
d_charles_mcmillen_19881005_1000259607.txt
d_sander_levin_19880329_1000166285.txt
d_albert_bustamante_19880608_1000199556.txt
d_frederick_boucher_19870521_1000043119.txt
d_james_bilbray_19880913_1000241882.txt
d_eligio_de_la_garza_19870428_1000030396.txt
d_dante_fascell_19870915_1000088601.txt
d_romano_mazzoli_19880914_1000242470.txt
d_james_slattery_19870618_1000058157.txt
d_edward_feighan_19880915_1000243336.txt
d_barton_gordon_19870727_1000078681.txt
d_michael_synar_19870624_1000059636.txt
d_richard_lehman_19881020_1000273304.txt
d_douglas_walgren_19880920_1000245625.txt
d_robert_roe_19870325_1000017063.txt
d_itimous_valentine_19880504_1000180288.txt
d_charles_hayes_19870916_1000089800.txt
d_jamie_whitten_19870715_1000073349.txt
d_morris_udall_19870729_1000079697.txt
d_david_mccurdy_19870602_1000047704.txt
d_james_traficant_19870107_1000001077.txt
d_barney_frank_19870225_1000009430.txt
d_thomas_foley_19881005_1000259780.txt
d_gillespie_montgomery_19881012_1000266881.txt
d_ron_de_lugo_19880714_1000220532.txt
d_robert_mrazek_19880217_1000150128.txt
d_matthew_martinez_19880615_1000203401.txt
d_anthony_beilenson_19881006_1000261445.txt
d_dante_fascell_19880714_1000220237.txt
d_jack_brooks_19871104_1000121365.txt
d_norman_dicks_19870507_1000035441.txt
d_joseph_kennedy_19880803_1000229268.txt
d_marilyn_lloyd_19870512_1000037582.txt
d_john_lewis_19870331_1000019274.txt
d_steny_hoyer_19880428_1000177133.txt
d_henry_nowak_19880317_1000160119.txt
d_glenn_anderson_19880517_1000188409.txt
d_john_dingell_19880726_1000222328.txt
d_byron_dorgan_19880706_1000212833.txt
d_joseph_gaydos_19871015_1000110385.txt
d_sam_gibbons_19880713_1000218214.txt
d_cardiss_collins_19870511_1000036934.txt
d_edward_boland_19880809_1000233044.txt
d_james_florio_19880601_1000197319.txt
d_leon_panetta_19870923_1000094151.txt
d_david_mccurdy_19870507_1000035455.txt
d_benjamin_cardin_19880328_1000164827.txt
d_david_nagle_19880510_1000182459.txt
d_james_wright_19880923_1000247342.txt
d_dante_fascell_19880524_1000192862.txt
d_mervyn_dymally_19871021_1000113245.txt
d_frank_annunzio_19870921_1000092605.txt
d_edolphus_towns_19870728_1000079471.txt
d_william_ford_19880608_1000199818.txt
d_sidney_yates_19880811_1000236334.txt
d_james_oberstar_19870708_1000068898.txt
d_norman_mineta_19880802_1000227474.txt
d_james_pickle_19870615_1000055035.txt
d_patricia_schroeder_19870202_1000005420.txt
d_carroll_hubbard_19880512_1000184224.txt
d_kenneth_gray_19880602_1000197544.txt
d_charles_schumer_19871109_1000123544.txt
d_peter_defazio_19870513_1000038908.txt
d_howard_wolpe_19880811_1000236395.txt
d_william_edwards_19880616_1000204222.txt
d_samuel_stratton_19870408_1000023806.txt
d_henry_waxman_19870722_1000077034.txt
d_esteban_torres_19870423_1000029204.txt
d_david_obey_19880421_1000174256.txt
d_barney_frank_19871021_1000113701.txt
d_howard_berman_19880419_1000172298.txt
d_bruce_morrison_19870610_1000051208.txt
d_dennis_eckart_19880517_1000188870.txt
d_nancy_pelosi_19880217_1000150026.txt
d_victor_fazio_19880616_1000203980.txt
d_frank_annunzio_19880125_1000144647.txt
d_jonas_frost_19870505_1000032949.txt
d_morris_udall_19871013_1000108643.txt
d_james_oberstar_19870429_1000030985.txt
d_dennis_eckart_19870603_1000048642.txt
d_byron_dorgan_19871130_1000130617.txt
d_edward_feighan_19881006_1000261891.txt
d_peter_kostmayer_19870611_1000052308.txt
d_stephen_solarz_19870615_1000053224.txt
d_james_pickle_19871215_1000140574.txt
d_marcy_kaptur_19880329_1000165956.txt
d_joseph_gaydos_19870910_1000087735.txt
d_itimous_valentine_19880316_1000159463.txt
d_philip_sharp_19880503_1000179669.txt
d_james_olin_19870430_1000031844.txt
d_anthony_coelho_19880920_1000245605.txt
d_david_nagle_19871218_1000141591.txt
d_charles_stenholm_19871027_1000115927.txt
d_byron_dorgan_19870310_1000012200.txt
d_gus_savage_19871028_1000118197.txt
d_walter_jones_19870602_1000047862.txt
d_peter_rodino_19880217_1000149919.txt
d_dennis_hertel_19880505_1000180965.txt
d_beverly_byron_19870527_1000045224.txt
d_william_lipinski_19871202_1000132367.txt
d_jonas_frost_19870204_1000006698.txt
d_carl_perkins_19880323_1000163204.txt
d_harold_ford_19870224_1000009135.txt
d_philip_sharp_19880802_1000227272.txt
d_henry_waxman_19880922_1000246739.txt
d_carroll_hubbard_19880907_1000237928.txt
d_thomas_luken_19870722_1000076789.txt
d_douglas_walgren_19870604_1000049527.txt
d_anthony_coelho_19880726_1000222293.txt
d_barbara_boxer_19880616_1000203883.txt
d_henry_waxman_19880726_1000222295.txt
d_nicholas_mavroules_19870624_1000059380.txt
d_michael_synar_19870922_1000093785.txt
d_joseph_gaydos_19880510_1000182744.txt
d_leslie_aspin_19880511_1000183897.txt
d_earl_hutto_19870708_1000068517.txt
d_itimous_valentine_19880503_1000179546.txt
d_austin_murphy_19880726_1000222352.txt
d_lane_evans_19871117_1000126781.txt
d_george_miller_19881003_1000257139.txt
d_mario_biaggi_19870528_1000046494.txt
d_richard_gephardt_19880728_1000225496.txt
d_barney_frank_19880808_1000231649.txt
d_barney_frank_19870325_1000016984.txt
d_elizabeth_patterson_19881004_1000258473.txt
d_richard_lehman_19870929_1000097871.txt
d_h._lancaster_19880217_1000150011.txt
d_robert_tallon_19871208_1000134163.txt
d_bruce_vento_19870508_1000036368.txt
d_henry_gonzalez_19870305_1000011417.txt
d_major_owens_19880420_1000173646.txt
d_robert_kastenmeier_19880801_1000226745.txt
d_william_ford_19870803_1000082023.txt
d_edward_markey_19870805_1000084231.txt
d_edward_feighan_19871210_1000135729.txt
d_dante_fascell_19880512_1000184240.txt
d_robert_wise_19880811_1000236462.txt
d_frank_annunzio_19881021_1000275100.txt
d_nick_rahall_19880629_1000211850.txt
d_charles_stenholm_19870518_1000039793.txt
d_mary_oakar_19870527_1000045085.txt
d_ron_de_lugo_19880907_1000237515.txt
d_cardiss_collins_19880810_1000234125.txt
d_frank_annunzio_19880216_1000149340.txt
d_daniel_rostenkowski_19880707_1000213519.txt
d_dennis_eckart_19870729_1000079711.txt
d_morris_udall_19871218_1000141992.txt
d_eligio_de_la_garza_19880418_1000171495.txt
d_don_bonker_19871117_1000127563.txt
d_barbara_boxer_19880428_1000177304.txt
d_james_hayes_19871117_1000127604.txt
d_david_mccurdy_19870715_1000073152.txt
d_douglas_owens_19880217_1000149973.txt
d_allan_swift_19871203_1000133095.txt
d_dale_kildee_19880727_1000223764.txt
d_charles_mcmillen_19870915_1000088723.txt
d_gus_yatron_19880224_1000152456.txt
d_charles_rangel_19880421_1000174514.txt
d_norman_mineta_19870428_1000030483.txt
d_edward_feighan_19870616_1000055752.txt
d_edward_roybal_19870528_1000046589.txt
d_james_howard_19870608_1000050370.txt
d_gerald_kleczka_19880803_1000228953.txt
d_michael_lowry_19881003_1000257331.txt
d_theodore_weiss_19871103_1000120611.txt
d_john_moakley_19870520_1000041829.txt
d_steny_hoyer_19880525_1000193247.txt
d_frank_annunzio_19880418_1000171490.txt
d_nick_rahall_19871117_1000126906.txt
d_bruce_vento_19870608_1000050311.txt
d_louise_slaughter_19871117_1000126837.txt
d_tim_johnson_19880316_1000159144.txt
d_leslie_aspin_19870519_1000040660.txt
d_howard_wolpe_19870428_1000030279.txt
d_leon_panetta_19870127_1000003999.txt
d_sam_gejdenson_19880803_1000229366.txt
d_jack_brooks_19880524_1000193078.txt
d_william_alexander_19871116_1000126132.txt
d_james_scheuer_19880309_1000157269.txt
d_george_hochbrueckner_19881019_1000272141.txt
d_howard_wolpe_19871109_1000123316.txt
d_don_bonker_19870427_1000029644.txt
d_albert_espy_19870305_1000011132.txt
d_lawrence_smith_19880510_1000182439.txt
d_matthew_mchugh_19881004_1000258268.txt
d_anthony_coelho_19880412_1000168631.txt
d_mario_biaggi_19870129_1000004709.txt
d_byron_dorgan_19870602_1000047741.txt
d_terry_bruce_19870807_1000085827.txt
d_thomas_downey_19871109_1000123121.txt
d_john_conyers_19870701_1000067047.txt
d_henry_waxman_19880711_1000215671.txt
d_anthony_beilenson_19880929_1000252817.txt
d_robert_borski_19871001_1000101197.txt
d_mario_biaggi_19871116_1000126161.txt
d_henry_gonzalez_19870709_1000069294.txt
d_peter_rodino_19870804_1000083129.txt
d_john_lafalce_19870807_1000086066.txt
d_gerry_studds_19880524_1000192818.txt
d_carroll_hubbard_19880728_1000225476.txt
d_david_obey_19880620_1000205783.txt
d_marilyn_lloyd_19870512_1000037886.txt
d_robert_garcia_19880927_1000250548.txt
d_william_clay_19870423_1000029226.txt
d_joseph_gaydos_19870407_1000022621.txt
d_douglas_walgren_19880216_1000149240.txt
d_chester_atkins_19880330_1000167280.txt
d_itimous_valentine_19881004_1000258467.txt
d_druie_barnard_19870505_1000033152.txt
d_jack_brooks_19880330_1000167125.txt
d_james_jontz_19870318_1000014970.txt
d_david_obey_19880929_1000252883.txt
d_joseph_brennan_19880428_1000177448.txt
d_henry_waxman_19880302_1000154806.txt
d_alan_wheat_19870909_1000087465.txt
d_bruce_vento_19880202_1000146744.txt
d_stephen_solarz_19880808_1000232044.txt
d_george_leland_19880620_1000205872.txt
d_bruce_vento_19871027_1000116047.txt
d_byron_dorgan_19880928_1000251291.txt
d_william_alexander_19871013_1000108360.txt
d_charles_dowdy_19880727_1000223982.txt
d_meldon_levine_19880608_1000199644.txt
d_william_nichols_19880714_1000220175.txt
d_richard_lehman_19870505_1000033161.txt
d_nick_rahall_19870108_1000001600.txt
d_paul_kanjorski_19871028_1000118137.txt
d_peter_defazio_19880203_1000147894.txt
d_byron_dorgan_19871117_1000127418.txt
d_dante_fascell_19871202_1000131922.txt
d_john_moakley_19880216_1000149345.txt
d_james_olin_19880322_1000162306.txt
d_william_hughes_19870917_1000090447.txt
d_elizabeth_patterson_19870916_1000089678.txt
d_james_florio_19870127_1000003976.txt
d_fernand_st._germain_19871218_1000142244.txt
d_albert_bustamante_19870616_1000056326.txt
d_willie_hefner_19880621_1000206501.txt
d_paul_kanjorski_19880419_1000172628.txt
d_ron_de_lugo_19881006_1000261476.txt
d_tom_lantos_19880512_1000184285.txt
d_mervyn_dymally_19880802_1000227418.txt
d_donald_pease_19870428_1000030176.txt
d_kenneth_mackay_19871001_1000101148.txt
d_barney_frank_19880609_1000200093.txt
d_leon_panetta_19870930_1000099609.txt
d_thomas_foley_19870507_1000035163.txt
d_major_owens_19880302_1000154802.txt
d_william_lipinski_19880804_1000229985.txt
d_douglas_bosco_19881004_1000258669.txt
d_leslie_aspin_19870427_1000029627.txt
d_peter_rodino_19880809_1000233391.txt
d_marilyn_lloyd_19880809_1000233237.txt
d_ronald_dellums_19870915_1000088752.txt
d_h._lancaster_19871214_1000139988.txt
d_paul_kanjorski_19880629_1000211687.txt
d_peter_defazio_19881021_1000274744.txt
d_charles_stenholm_19870305_1000011391.txt
d_william_clay_19871117_1000126860.txt
d_edward_markey_19870430_1000031617.txt
d_marilyn_lloyd_19880811_1000236576.txt
d_les_aucoin_19870615_1000054423.txt
d_ronald_coleman_19870520_1000041795.txt
d_thomas_manton_19870610_1000051481.txt
d_james_florio_19881003_1000256678.txt
d_milton_carr_19880628_1000210956.txt
d_gerry_studds_19870519_1000040858.txt
d_richard_durbin_19870915_1000088553.txt
d_steny_hoyer_19880726_1000222511.txt
d_thomas_foley_19880512_1000184171.txt
d_edward_feighan_19871027_1000115851.txt
d_william_lehman_19870121_1000003160.txt
d_norman_dicks_19870511_1000036591.txt
d_daniel_mica_19880429_1000178668.txt
d_william_lipinski_19880216_1000149357.txt
d_robert_kastenmeier_19880203_1000148104.txt
d_charles_schumer_19871119_1000129267.txt
d_major_owens_19880930_1000255626.txt
d_tom_lantos_19881005_1000260569.txt
d_frank_annunzio_19870915_1000088728.txt
d_bill_nelson_19870203_1000005844.txt
d_victor_fazio_19880412_1000168637.txt
d_john_conyers_19871202_1000132383.txt
d_james_traficant_19870513_1000038820.txt
d_sander_levin_19880810_1000233826.txt
d_robert_tallon_19871218_1000142209.txt
d_james_oberstar_19870311_1000013071.txt
d_ike_skelton_19880429_1000178761.txt
d_frank_annunzio_19880218_1000150242.txt
d_marilyn_lloyd_19880803_1000229162.txt
d_thomas_foglietta_19880505_1000181148.txt
d_thomas_foley_19870204_1000006649.txt
d_george_miller_19880810_1000234341.txt
d_dale_kildee_19870127_1000004022.txt
d_robert_wise_19870721_1000075701.txt
d_charles_rangel_19880315_1000158070.txt
d_william_hughes_19881019_1000272127.txt
d_stephen_solarz_19870618_1000057903.txt
d_mary_oakar_19880621_1000206566.txt
d_louise_slaughter_19880630_1000212689.txt
d_sam_gejdenson_19880923_1000247943.txt
d_michael_synar_19870604_1000049576.txt
d_douglas_bosco_19880629_1000211851.txt
d_howard_wolpe_19870512_1000037410.txt
d_theodore_weiss_19880217_1000150052.txt
d_george_darden_19870701_1000066625.txt
d_howard_berman_19880518_1000189124.txt
d_allan_swift_19871110_1000124438.txt
d_george_brown_19871109_1000123119.txt