-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathalderman_contributions.csv
We can't make this file beautiful and searchable because it's too large.
5576 lines (5576 loc) · 790 KB
/
alderman_contributions.csv
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
"","CONTRIBUTION_ID","PERIOD_START","PERIOD_END","CONTRIBUTION_DATE","RECIPIENT","AMOUNT","LOBBYIST_ID","LOBBYIST_FIRST_NAME","LOBBYIST_LAST_NAME","CREATED_DATE","CONTRIBUTION_DATE3","recipient_surname"
"1",125,"01/01/2012","06/30/2012","06/05/2012","Alderman Will Burns","$500.00",8061,"David","Dring","08/08/2012",2012-06-05,"Burns"
"2",147,"01/01/2012","06/30/2012","02/18/2012","40th Ward Organization","$100.00",6922,"Robert","Gamrath","08/10/2012",2012-02-18,NA
"3",181,"01/01/2012","06/30/2012","04/26/2012","Alderman Toni Foulkes","$1000.00",5858,"Thomas","Livingston","08/14/2012",2012-04-26,"Foulkes"
"4",187,"01/01/2012","06/30/2012","04/24/2012","Citizens for Tunney","$500.00",6039,"Michael","Lufrano","08/14/2012",2012-04-24,"Tunney"
"5",295,"01/01/2012","06/30/2012","06/29/2012","Citizens for Alderman Reilly","$200.00",8482,"Daniel","Shomon","08/22/2012",2012-06-29,"Reilly"
"6",294,"01/01/2012","06/30/2012","06/13/2012","Friends of Will Burns","$300.00",8482,"Daniel","Shomon","08/22/2012",2012-06-13,"Burns"
"7",342,"01/01/2012","06/30/2012","03/01/2012","Alderman Patrick J. O'Connor","$1500.00",7001,"Meredith","O'Connor","08/23/2012",2012-03-01,"O'Connor"
"8",422,"01/01/2012","06/30/2012","02/21/2012","Friends of Walter Burnett Jr.","$150.00",8621,"Joseph","Pilewski","08/28/2012",2012-02-21,"Burnett"
"9",354,"01/01/2012","06/30/2012","06/26/2012","Citizens for Tim Cullerton","$1000.00",6116,"Michael","Paulos","08/23/2012",2012-06-26,"Cullerton"
"10",353,"01/01/2012","06/30/2012","06/26/2012","Neighbors for Harry Osterman","$1500.00",6116,"Michael","Paulos","08/23/2012",2012-06-26,"Osterman"
"11",356,"01/01/2012","06/30/2012","05/24/2012","Leslie Hairston, Alderman","$150.00",5728,"Lewis","Powell","08/23/2012",2012-05-24,"Hairston"
"12",302,"01/01/2012","06/30/2012","06/01/2012","Friends of Will Burns","$250.00",6063,"Judith","Roettig","08/22/2012",2012-06-01,"Burns"
"13",322,"01/01/2012","06/30/2012","03/02/2012","Alderman Proco Joe Moreno","$250.00",7771,"COURTNEY","NOTTAGE","08/23/2012",2012-03-02,"Moreno"
"14",321,"01/01/2012","06/30/2012","02/07/2012","Alderman Richard Mell","$300.00",7771,"COURTNEY","NOTTAGE","08/23/2012",2012-02-07,"Mell"
"15",289,"01/01/2012","06/30/2012","02/23/2012","Friends of Proco Joe Moreno","$250.00",8225,"Jerome","Schain","08/22/2012",2012-02-23,"Moreno"
"16",383,"01/01/2012","06/30/2012","06/11/2012","33rd Ward Regular Democratic Organization","$1000.00",8581,"John","Kelly, Jr.","08/27/2012",2012-06-11,NA
"17",546,"01/01/2012","06/30/2012","02/04/2012","Alderman Joe Moreno","$250.00",8750,"John","Dunn","08/30/2012",2012-02-04,"Moreno"
"18",661,"01/01/2012","06/30/2012","06/28/2012","Alderman Tim Cullerton","$250.00",9001,"William","Smith","09/14/2012",2012-06-28,"Cullerton"
"19",627,"01/01/2012","06/30/2012","06/13/2012","Citizens for Tim Cullerton","$250.00",7827,"Marcus","Nunes","09/07/2012",2012-06-13,"Cullerton"
"20",721,"01/01/2012","06/30/2012","05/09/2012","Friends of Leslie A Hairston","$150.00",9143,"Joseph","Gattuso","09/25/2012",2012-05-09,"Hairston"
"21",702,"01/01/2012","06/30/2012","05/09/2012","Friends of Leslie A Hairston","$150.00",9062,"Joseph","Gattuso","09/19/2012",2012-05-09,"Hairston"
"22",482,"01/01/2012","06/30/2012","05/01/2012","Friends of Will Burns","$100.00",5717,"Joseph","McDermott","08/29/2012",2012-05-01,"Burns"
"23",582,"01/01/2012","06/30/2012","05/31/2012","Will Burns","$300.00",8845,"Elvin","Charity","09/05/2012",2012-05-31,"Burns"
"24",571,"01/01/2012","06/30/2012","06/12/2012","The Burnham Committee","$1500.00",8801,"John","Kelly, Jr.","09/04/2012",2012-06-12,NA
"25",628,"01/01/2012","06/30/2012","06/27/2012","Friends of Proco Joe Moreno","$500.00",8904,"Joseph","Gattuso","09/07/2012",2012-06-27,"Moreno"
"26",525,"01/01/2012","06/30/2012","05/01/2012","19th Ward Democratic Organization","$125.00",5891,"Elizabeth","Lively","08/29/2012",2012-05-01,NA
"27",522,"01/01/2012","06/30/2012","04/27/2012","Citizens for Munoz","$150.00",5891,"Elizabeth","Lively","08/29/2012",2012-04-27,"Munoz"
"28",513,"01/01/2012","06/30/2012","02/23/2012","Friends to Elect Toni Foulkes","$150.00",5891,"Elizabeth","Lively","08/29/2012",2012-02-23,"Foulkes"
"29",623,"01/01/2012","06/30/2012","06/18/2012","Neighbors for Harry Osterman","$500.00",8889,"Jerry","Mickelson","09/06/2012",2012-06-18,"Osterman"
"30",622,"01/01/2012","06/30/2012","02/23/2012","Friends of Walter Burnett Jr.","$500.00",8889,"Jerry","Mickelson","09/06/2012",2012-02-23,"Burnett"
"31",767,"01/01/2012","06/30/2012","05/30/2012","Will Burns, Friends of","$1000.00",9300,"Lawrence","White","09/27/2012",2012-05-30,"Burns"
"32",886,"07/01/2012","09/30/2012","09/25/2012","Sandi Jackson","$500.00",5982,"Adrienne","Alexander","10/05/2012",2012-09-25,"Jackson"
"33",883,"07/01/2012","09/30/2012","09/25/2012","Sandi Jackson","$500.00",5982,"Adrienne","Alexander","10/05/2012",2012-09-25,"Jackson"
"34",812,"01/01/2012","06/30/2012","06/29/2012","Citizens for Alderman Reilly","$1000.00",9353,"John","Kelly, Jr.","10/01/2012",2012-06-29,"Reilly"
"35",810,"01/01/2012","06/30/2012","06/12/2012","The Burnham Committee","$1500.00",9353,"John","Kelly, Jr.","10/01/2012",2012-06-12,NA
"36",824,"01/01/2012","06/30/2012","04/07/2012","Citizens for Patrick O'Connor","$100.00",9382,"Michael","Lufrano","10/03/2012",2012-04-07,"O'Connor"
"37",1073,"07/01/2012","09/30/2012","07/29/2012","Friends of Mary O'Connor","$150.00",7759,"Mary","Minaghan","10/15/2012",2012-07-29,"O'Connor"
"38",841,"07/01/2012","09/30/2012","09/28/2012","Friends of Mary O'Connor","$115.00",6063,"Judith","Roettig","10/04/2012",2012-09-28,"O'Connor"
"39",922,"07/01/2012","09/30/2012","09/13/2012","Alderman James Cappleman","$250.00",7771,"COURTNEY","NOTTAGE","10/09/2012",2012-09-13,"Cappleman"
"40",1042,"01/01/2012","06/30/2012","06/05/2012","Alderman Richard Munoz","$250.00",9582,"MICHAEL","KASPER","10/15/2012",2012-06-05,"Munoz"
"41",1054,"07/01/2012","09/30/2012","08/17/2012","Citizens for Pat Dowell","$100.00",5891,"Elizabeth","Lively","10/15/2012",2012-08-17,"Dowell"
"42",1047,"07/01/2012","09/30/2012","07/23/2012","Citizens for Joe Moore","$125.00",5891,"Elizabeth","Lively","10/15/2012",2012-07-23,"Moore"
"43",1157,"07/01/2012","09/30/2012","07/26/2012","Danny Solis","$500.00",8750,"John","Dunn","10/19/2012",2012-07-26,"Solis"
"44",1182,"07/01/2012","09/30/2012","07/02/2012","Forty Third Ward Democrats","$500.00",5762,"William","Griffin","10/22/2012",2012-07-02,NA
"45",1167,"07/01/2012","09/30/2012","10/01/2012","Friends of Leslie A Hairston","$450.00",7751,"Peter","Cassel","10/21/2012",2012-10-01,"Hairston"
"46",1290,"07/01/2012","09/30/2012","08/30/2012","Citizens for Pat Dowell","$250.00",5716,"Stacy","Davis Gates","11/01/2012",2012-08-30,"Dowell"
"47",1128,"07/01/2012","09/30/2012","09/13/2012","Alderman Ariel Reboyras","$1500.00",6116,"Michael","Paulos","10/18/2012",2012-09-13,"Reboyras"
"48",1165,"01/01/2012","06/30/2012","06/13/2012","Citizens for Tim Cullerton","$250.00",9721,"Marcus","Nunes","10/20/2012",2012-06-13,"Cullerton"
"49",1821,"10/01/2012","12/31/2012","10/22/2012","none","$0.00",9209,"Jean-Francois","Decaux","01/15/2013",2012-10-22,NA
"50",1822,"10/01/2012","12/31/2012","12/13/2012","Carrie Austin","$500.00",8182,"Darryl","Denham","01/15/2013",2012-12-13,"Austin"
"51",1447,"07/01/2012","09/30/2012","08/30/2012","Citizens for Deborah Graham","$500.00",10101,"Stacy","Davis Gates","12/13/2012",2012-08-30,"Graham"
"52",1701,"10/01/2012","12/31/2012","10/25/2012","Alderman John Arena","$100.00",6006,"William","Hood","01/09/2013",2012-10-25,"Arena"
"53",1511,"01/01/2012","06/30/2012","06/05/2012","Alderman Tom Tunney","$250.00",10282,"COURTNEY","NOTTAGE","12/21/2012",2012-06-05,"Tunney"
"54",1942,"10/01/2012","12/31/2012","11/07/2012","23rd Ward Regular Democratic Party Organization","$500.00",5762,"William","Griffin","01/18/2013",2012-11-07,NA
"55",1503,"01/01/2012","06/30/2012","06/05/2012","Alderman Will Burns","$500.00",10281,"MICHAEL","KASPER","12/21/2012",2012-06-05,"Burns"
"56",1401,"07/01/2012","09/30/2012","08/29/2012","Danny Solis for Alderman Committee","$100.00",10064,"Terrance","Diamond","12/11/2012",2012-08-29,"Solis"
"57",1405,"07/01/2012","09/30/2012","09/19/2012","14th Ward Democratic Organization","$500.00",10071,"Jeanette","Sublett","12/11/2012",2012-09-19,NA
"58",1423,"07/01/2012","09/30/2012","09/13/2012","Alderman Carrie Austin","$500.00",10081,"MICHAEL","KASPER","12/12/2012",2012-09-13,"Austin"
"59",1422,"07/01/2012","09/30/2012","09/13/2012","Alderman Walter Burnett, Jr.","$300.00",10081,"MICHAEL","KASPER","12/12/2012",2012-09-13,"Burnett"
"60",1421,"07/01/2012","09/30/2012","09/13/2012","Alderman James Cappleman","$250.00",10081,"MICHAEL","KASPER","12/12/2012",2012-09-13,"Cappleman"
"61",1803,"10/01/2012","12/31/2012","10/16/2012","Citizens for Ervin","$250.00",5891,"Elizabeth","Lively","01/14/2013",2012-10-16,"Ervin"
"62",2086,"10/01/2012","12/31/2012","10/05/2012","Citizens for Patrick J O'Connore","$500.00",8124,"Stephen","Friedman","01/30/2013",2012-10-05,"O'Connor"
"63",2002,"10/01/2012","12/31/2012","10/10/2012","Citizens for Will Burns","$1000.00",11462,"Paul","Rosenfeld","01/28/2013",2012-10-10,"Burns"
"64",1981,"10/01/2012","12/31/2012","12/06/2012","Ald Bob Fioretti (for fundraiser","$500.00",9227,"Arnold","Harris","01/22/2013",2012-12-06,"Fioretti"
"65",2105,"10/01/2012","12/31/2012","10/10/2012","Rey Colon","$250.00",9910,"Jerome","Schain","01/31/2013",2012-10-10,NA
"66",2033,"10/01/2012","12/31/2012","12/21/2012","Alderman Carrie Austin","$500.00",5788,"John","Sterling","01/28/2013",2012-12-21,"Austin"
"67",2186,"10/01/2012","12/31/2012","11/28/2012","Citizens for Pat Dowell","$500.00",11806,"Stephen","Friedman","02/11/2013",2012-11-28,"Dowell"
"68",2452,"01/01/2013","03/31/2013","02/20/2013","11th Ward Democratic Party Campaign Committee","$600.00",11022,"Elizabeth","Lively","04/12/2013",2013-02-20,NA
"69",2447,"01/01/2013","03/31/2013","02/01/2013","Friends of Leslie Hairston","$150.00",11022,"Elizabeth","Lively","04/12/2013",2013-02-01,"Hairston"
"70",2550,"01/01/2013","03/31/2013","02/21/2013","Alderman Proco ""Joe"" Moreno","$300.00",11509,"MICHAEL","KASPER","04/19/2013",2013-02-21,"Moreno"
"71",2548,"01/01/2013","03/31/2013","02/21/2013","Alderman Jason Ervin","$300.00",11509,"MICHAEL","KASPER","04/19/2013",2013-02-21,"Ervin"
"72",2542,"01/01/2013","03/31/2013","02/25/2013","CITIZENS TO ELECT JOHN ARENA","$250.00",12773,"William","Banks","04/18/2013",2013-02-25,NA
"73",2541,"01/01/2013","03/31/2013","01/17/2013","George A. Cardenas","$750.00",11223,"Bill","McManus","04/18/2013",2013-01-17,"Cardenas"
"74",2610,"01/01/2013","03/31/2013","02/21/2013","Alderman Richard Mell","$300.00",12816,"MICHAEL","KASPER","04/22/2013",2013-02-21,"Mell"
"75",2628,"01/01/2013","03/31/2013","04/22/2013","none","$0.00",12801,"Kevin","Mendoza","04/22/2013",2013-04-22,NA
"76",2463,"01/01/2013","03/31/2013","01/17/2013","George Cardenas","$250.00",11176,"Daniel","Shomon","04/13/2013",2013-01-17,"Cardenas"
"77",2582,"01/01/2013","03/31/2013","01/31/2013","Beale for Congress","$250.00",11603,"Angelica","Marks","04/22/2013",2013-01-31,"Beale"
"78",2623,"01/01/2013","03/31/2013","02/21/2013","Alderman Proco Joe Moreno","$300.00",12818,"David","Dring","04/22/2013",2013-02-21,"Moreno"
"79",2505,"01/01/2013","03/31/2013","03/25/2013","FRIENDS OF MICHELLE HARRIS","$250.00",12729,"William","Banks","04/17/2013",2013-03-25,NA
"80",2365,"01/01/2013","03/31/2013","02/21/2013","Alderman Richard F. Mell","$300.00",11513,"David","Dring","04/09/2013",2013-02-21,"Mell"
"81",2522,"01/01/2013","03/31/2013","02/06/2013","Friends of Leslie A. Hairston","$150.00",11883,"Graham","Grady","04/18/2013",2013-02-06,"Hairston"
"82",3406,"04/01/2013","06/30/2013","05/31/2013","Preckwinkle for President","$500.00",13981,"Mara","Georges","07/08/2013",2013-05-31,"Preckwinkle"
"83",3466,"04/01/2013","06/30/2013","06/07/2013","11th Ward Democratic Party","$500.00",12985,"David","Dring","07/10/2013",2013-06-07,NA
"84",3463,"04/01/2013","06/30/2013","06/07/2013","Alderman Joe Moore","$250.00",12985,"David","Dring","07/10/2013",2013-06-07,"Moore"
"85",3462,"04/01/2013","06/30/2013","06/06/2013","Alderman Mike Zalewski","$500.00",12985,"David","Dring","07/10/2013",2013-06-06,"Zalewski"
"86",3461,"04/01/2013","06/30/2013","05/09/2013","Alderman Will Burns","$1000.00",12985,"David","Dring","07/10/2013",2013-05-09,"Burns"
"87",3253,"04/01/2013","06/30/2013","06/14/2013","Pat Dowell","$500.00",13863,"Elvin","Charity","07/01/2013",2013-06-14,"Dowell"
"88",3501,"04/01/2013","06/30/2013","06/24/2013","Friends for Proco Joe Moreno","$30.00",11022,"Elizabeth","Lively","07/11/2013",2013-06-24,"Moreno"
"89",3502,"04/01/2013","06/30/2013","05/17/2013","Citizens for Reilly","$100.00",12621,"Thomas","Wolf","07/11/2013",2013-05-17,"Reilly"
"90",2901,"01/01/2013","03/31/2013","02/21/2013","Alderman Jason Ervin","$300.00",13041,"MICHAEL","KASPER","05/06/2013",2013-02-21,"Ervin"
"91",3305,"04/01/2013","06/30/2013","05/31/2013","Preckwinkle for President","$500.00",13361,"Mara","Georges","07/03/2013",2013-05-31,"Preckwinkle"
"92",3515,"04/01/2013","06/30/2013","05/01/2013","Friends of Will Burns","$300.00",14043,"Graham","Grady","07/11/2013",2013-05-01,"Burns"
"93",2846,"01/01/2013","03/31/2013","01/16/2013","Alderman George Cardenas","$500.00",12983,"MICHAEL","KASPER","05/01/2013",2013-01-16,"Cardenas"
"94",2845,"01/01/2013","03/31/2013","03/12/2013","Alderman Michelle Harris","$500.00",12983,"MICHAEL","KASPER","05/01/2013",2013-03-12,"Harris"
"95",2842,"01/01/2013","03/31/2013","02/21/2013","Alderman Brendan Reilly","$500.00",12983,"MICHAEL","KASPER","05/01/2013",2013-02-21,"Reilly"
"96",2859,"01/01/2013","03/31/2013","02/21/2013","Alderman Jason Ervin","$300.00",12985,"David","Dring","05/01/2013",2013-02-21,"Ervin"
"97",2857,"01/01/2013","03/31/2013","02/21/2013","Alderman Richard F. Mell","$300.00",12985,"David","Dring","05/01/2013",2013-02-21,"Mell"
"98",2982,"01/01/2013","03/31/2013","02/25/2013","Anthony Beale for Congress","$25.00",13281,"Danielle","Cassel","05/20/2013",2013-02-25,"Beale"
"99",3381,"04/01/2013","06/30/2013","06/30/2013","n/a","$0.00",11275,"Steven","Ginsberg","07/06/2013",2013-06-30,NA
"100",2661,"01/01/2013","03/31/2013","02/08/2013","Citizens for Joe Moore","$1000.00",11344,"Arnold","Harris","04/23/2013",2013-02-08,"Moore"
"101",3592,"04/01/2013","06/30/2013","06/07/2013","Alderman Patrick J. O'Connor","$500.00",13041,"MICHAEL","KASPER","07/16/2013",2013-06-07,"O'Connor"
"102",3590,"04/01/2013","06/30/2013","06/07/2013","Alderman Joe Moore","$250.00",13041,"MICHAEL","KASPER","07/16/2013",2013-06-07,"Moore"
"103",3588,"04/01/2013","06/30/2013","05/09/2013","Alderman Will Burns","$1000.00",13041,"MICHAEL","KASPER","07/16/2013",2013-05-09,"Burns"
"104",3641,"04/01/2013","06/30/2013","04/26/2013","Alderman Will Burns","$1000.00",12181,"Terry","Teele","07/18/2013",2013-04-26,"Burns"
"105",3771,"04/01/2013","06/30/2013","05/06/2013","Friends of Will Burns","$500.00",10403,"Michael","Sutton","07/19/2013",2013-05-06,"Burns"
"106",3602,"04/01/2013","06/30/2013","06/15/2013","19th Ward Organization","$1000.00",11127,"Thomas","Livingston","07/17/2013",2013-06-15,NA
"107",3666,"04/01/2013","06/30/2013","04/17/2013","Friends of Ameya Pawar","$500.00",14307,"Jerome","Schain","07/18/2013",2013-04-17,"Pawar"
"108",3888,"01/01/2013","03/31/2013","01/17/2013","Friends of George Cardenas","$500.00",14442,"Rolando","Acosta","07/29/2013",2013-01-17,"Cardenas"
"109",3924,"01/01/2013","03/31/2013","02/26/2013","State Senator Toi Hutchinson","$250.00",14464,"Bridget","O'Keefe","07/30/2013",2013-02-26,NA
"110",3541,"04/01/2013","06/30/2013","06/27/2013","Alderman Fioretti Event","$250.00",12163,"Mitchell","Feldman","07/15/2013",2013-06-27,"Fioretti"
"111",3728,"01/01/2013","03/31/2013","03/12/2013","Alderman Michelle Harris","$500.00",14322,"COURTNEY","NOTTAGE","07/19/2013",2013-03-12,"Harris"
"112",3681,"04/01/2013","06/30/2013","04/18/2013","Citizens for O'Connor","$100.00",13261,"Michael","Lufrano","07/19/2013",2013-04-18,"O'Connor"
"113",3862,"04/01/2013","06/30/2013","05/29/2013","Friends of Will Burns","$500.00",11822,"Rolando","Acosta","07/26/2013",2013-05-29,"Burns"
"114",3561,"04/01/2013","06/30/2013","06/19/2013","Friends of Kwame Raoul","$250.00",12864,"Gyata","Kimmons","07/15/2013",2013-06-19,NA
"115",3705,"04/01/2013","06/30/2013","06/07/2013","11th Ward Democratic Party","$500.00",14321,"MICHAEL","KASPER","07/19/2013",2013-06-07,NA
"116",3702,"04/01/2013","06/30/2013","05/09/2013","Alderman Will Burns","$1000.00",14321,"MICHAEL","KASPER","07/19/2013",2013-05-09,"Burns"
"117",3767,"04/01/2013","06/30/2013","05/10/2013","Deb Graham","$250.00",13362,"John","Dunn","07/19/2013",2013-05-10,"Graham"
"118",4025,"04/01/2013","06/30/2013","06/04/2013","Citizens for Cappleman","$250.00",14861,"Graham","Grady","08/20/2013",2013-06-04,"Cappleman"
"119",3807,"04/01/2013","06/30/2013","04/15/2013","Friends of Proco Joe Moreno","$1500.00",11090,"Michael","Paulos","07/22/2013",2013-04-15,"Moreno"
"120",3821,"04/01/2013","06/30/2013","04/11/2013","Friends of Michelle Harris","$1000.00",11390,"Yafawn","Smith","07/23/2013",2013-04-11,"Harris"
"121",3890,"04/01/2013","06/30/2013","05/29/2013","Friends of Will Burns","$500.00",14443,"Rolando","Acosta","07/29/2013",2013-05-29,"Burns"
"122",3904,"01/01/2013","03/31/2013","02/25/2013","Citizens for Joe Moore","$250.00",14444,"Rolando","Acosta","07/29/2013",2013-02-25,"Moore"
"123",3914,"04/01/2013","06/30/2013","05/04/2013","Citizens for Munoz","$250.00",14446,"John","George","07/29/2013",2013-05-04,"Munoz"
"124",3918,"04/01/2013","06/30/2013","05/04/2013","Friends of Leslie Hairston","$250.00",14447,"John","George","07/29/2013",2013-05-04,"Hairston"
"125",3916,"04/01/2013","06/30/2013","05/04/2013","Citizens for Munoz","$250.00",14447,"John","George","07/29/2013",2013-05-04,"Munoz"
"126",4303,"04/01/2013","06/30/2013","05/28/2013","4th Ward Alderman Will Burns","$250.00",15382,"Mara","Georges","09/30/2013",2013-05-28,"Burns"
"127",4339,"01/01/2013","03/31/2013","02/14/2013","citizens for austin","$200.00",15406,"William","Filan","10/08/2013",2013-02-14,NA
"128",4420,"07/01/2013","09/30/2013","09/20/2013","Friends of Leslie A. Hairston","$150.00",11022,"Elizabeth","Lively","10/15/2013",2013-09-20,"Hairston"
"129",4419,"07/01/2013","09/30/2013","09/18/2013","Citizens for Cappleman","$100.00",11022,"Elizabeth","Lively","10/15/2013",2013-09-18,"Cappleman"
"130",4046,"01/01/2013","03/31/2013","03/25/2013","FRIENDS OF MICHELLE HARRIS","$250.00",14942,"William","Banks","08/27/2013",2013-03-25,NA
"131",4237,"04/01/2013","06/30/2013","06/06/2013","Alderman Mike Zalewski","$500.00",15305,"MICHAEL","KASPER","09/24/2013",2013-06-06,"Zalewski"
"132",4236,"04/01/2013","06/30/2013","06/07/2013","Alderman Michele Smith","$250.00",15305,"MICHAEL","KASPER","09/24/2013",2013-06-07,"Smith"
"133",4244,"01/01/2013","03/31/2013","03/27/2013","25th Ward Regular Democratic Organization","$500.00",15305,"MICHAEL","KASPER","09/24/2013",2013-03-27,NA
"134",4243,"01/01/2013","03/31/2013","02/21/2013","Alderman Richard Mell","$300.00",15305,"MICHAEL","KASPER","09/24/2013",2013-02-21,"Mell"
"135",4264,"04/01/2013","06/30/2013","06/07/2013","11th Ward Democratic Party","$500.00",15307,"David","Dring","09/24/2013",2013-06-07,NA
"136",4251,"01/01/2013","03/31/2013","02/21/2013","Alderman Jason Ervin","$300.00",15306,"COURTNEY","NOTTAGE","09/24/2013",2013-02-21,"Ervin"
"137",4245,"01/01/2013","03/31/2013","03/12/2013","Alderman Michelle Harris","$500.00",15306,"COURTNEY","NOTTAGE","09/24/2013",2013-03-12,"Harris"
"138",4267,"01/01/2013","03/31/2013","03/12/2013","Alderman Michelle A. Harris","$500.00",15307,"David","Dring","09/24/2013",2013-03-12,"Harris"
"139",4288,"01/01/2013","03/31/2013","02/26/2013","State Senator Toi Hutchinson","$250.00",15322,"Bridget","O'Keefe","09/25/2013",2013-02-26,NA
"140",4367,"04/01/2013","06/30/2013","06/04/2013","Alderman Will Burns","$150.00",15428,"Danielle","Cassel","10/11/2013",2013-06-04,"Burns"
"141",4366,"04/01/2013","06/30/2013","04/11/2013","Alderman Rod Sawyer","$150.00",15428,"Danielle","Cassel","10/11/2013",2013-04-11,"Sawyer"
"142",4105,"01/01/2013","03/31/2013","02/14/2013","CITIZENS FOR JOE MOORE","$250.00",15083,"William","Banks","09/05/2013",2013-02-14,NA
"143",4145,"01/01/2013","03/31/2013","03/27/2013","25th Ward Regular Democratic Organization","$500.00",15221,"MICHAEL","KASPER","09/16/2013",2013-03-27,NA
"144",4153,"04/01/2013","06/30/2013","05/09/2013","Alderman Will Burns","$1000.00",15221,"MICHAEL","KASPER","09/16/2013",2013-05-09,"Burns"
"145",4149,"04/01/2013","06/30/2013","06/07/2013","Alderman Walter Burnett","$500.00",15221,"MICHAEL","KASPER","09/16/2013",2013-06-07,"Burnett"
"146",4180,"01/01/2013","03/31/2013","02/21/2013","Alderman Brendan Reilly","$500.00",15223,"David","Dring","09/16/2013",2013-02-21,"Reilly"
"147",4081,"07/01/2013","09/30/2013","08/30/2013","N/a","$0.00",11642,"Charlotte","Knight-Marshall","08/30/2013",2013-08-30,NA
"148",4402,"01/01/2013","03/31/2013","03/25/2013","25th Ward Regular Democratic Organization (celebrating 17 years of service by Alderman Solis)","$150.00",15461,"Danielle","Cassel","10/15/2013",2013-03-25,"Solis"
"149",4529,"01/01/2013","03/31/2013","03/21/2013","Friends of Proco Joe Moreno","$250.00",15506,"Jerome","Schain","10/21/2013",2013-03-21,"Moreno"
"150",4533,"04/01/2013","06/30/2013","04/17/2013","Citizens for O'Connor","$100.00",15511,"Katriina","McGuire","10/21/2013",2013-04-17,"O'Connor"
"151",4534,"07/01/2013","09/30/2013","09/13/2013","Friends of Margaret Laurino","$200.00",13948,"Betsy","Sales","10/21/2013",2013-09-13,"Laurino"
"152",4571,"01/01/2013","03/31/2013","02/26/2013","State Senator Toi Hutchinson","$250.00",15525,"Bridget","O'Keefe","10/22/2013",2013-02-26,NA
"153",4442,"04/01/2013","06/30/2013","05/01/2013","Walter Burnett","$150.00",15469,"Bridget","O'Keefe","10/17/2013",2013-05-01,"Burnett"
"154",4606,"07/01/2013","09/30/2013","09/19/2013","Citizens for Patrick O'Connor","$500.00",15541,"John","George","10/23/2013",2013-09-19,"O'Connor"
"155",4609,"07/01/2013","09/30/2013","09/19/2013","23rd Ward Regular Democratic Organization","$500.00",15542,"John","George","10/23/2013",2013-09-19,NA
"156",4706,"04/01/2013","06/30/2013","05/16/2013","the Burnham Committee Legal Leaders Breakfast","$1500.00",15967,"Mara","Georges","11/25/2013",2013-05-16,NA
"157",4765,"04/01/2013","06/30/2013","05/09/2013","Alderman Will Burns","$1000.00",16021,"MICHAEL","KASPER","12/05/2013",2013-05-09,"Burns"
"158",4781,"04/01/2013","06/30/2013","06/21/2013","The New 37th Ward Democratic Organization","$125.00",16022,"Graham","Grady","12/05/2013",2013-06-21,NA
"159",4466,"04/01/2013","06/30/2013","06/24/2013","John Pope","$1000.00",15483,"Marcus","Nunes","10/18/2013",2013-06-24,"Pope"
"160",4465,"04/01/2013","06/30/2013","04/17/2013","Walter Burnett","$250.00",15483,"Marcus","Nunes","10/18/2013",2013-04-17,"Burnett"
"161",4468,"01/01/2013","03/31/2013","03/21/2013","John Arena","$250.00",15483,"Marcus","Nunes","10/18/2013",2013-03-21,"Arena"
"162",4523,"07/01/2013","09/30/2013","09/19/2013","25th Ward Regular Democratic Organization","$500.00",14444,"Rolando","Acosta","10/21/2013",2013-09-19,NA
"163",4561,"07/01/2013","09/30/2013","09/24/2013","Friends of Nicholas Sposato","$250.00",15522,"Michael","Paulos","10/22/2013",2013-09-24,"Sposato"
"164",4565,"04/01/2013","06/30/2013","06/25/2013","Citizens for Tunney","$500.00",15522,"Michael","Paulos","10/22/2013",2013-06-25,"Tunney"
"165",4682,"04/01/2013","06/30/2013","06/03/2013","Citizens for Reboyras","$300.00",15901,"Graham","Grady","11/14/2013",2013-06-03,"Reboyras"
"166",4686,"01/01/2013","03/31/2013","02/06/2013","Friends of Leslie A. Hairston","$150.00",15901,"Graham","Grady","11/14/2013",2013-02-06,"Hairston"
"167",5289,"10/01/2013","12/31/2013","12/05/2013","Friends of Bob Fioretti","$500.00",15465,"John","Kelly, Jr.","01/17/2014",2013-12-05,"Fioretti"
"168",5051,"10/01/2013","12/31/2013","12/18/2013","Alderman Mary O'Connor","$500.00",15307,"David","Dring","01/07/2014",2013-12-18,"O'Connor"
"169",5025,"10/01/2013","12/31/2013","10/28/2013","Friends of Mary O'Connor","$100.00",13501,"Elizabeth","Coolidge","01/06/2014",2013-10-28,"O'Connor"
"170",4861,"04/01/2013","06/30/2013","05/01/2013","Walter Burnett","$150.00",16201,"Bridget","O'Keefe","12/18/2013",2013-05-01,"Burnett"
"171",4969,"10/01/2013","12/31/2013","12/04/2013","Friends to Elect Toni Foulkes","$1500.00",11390,"Yafawn","Smith","12/30/2013",2013-12-04,"Foulkes"
"172",5083,"10/01/2013","12/31/2013","12/01/2013","FRIENDS FOR MARY O'CONNOR","$1500.00",14124,"John","Doerrer","01/09/2014",2013-12-01,NA
"173",5161,"10/01/2013","12/31/2013","01/01/2014","none","$0.00",11711,"Eric","Locke","01/13/2014",2014-01-01,NA
"174",5301,"10/01/2013","12/31/2013","10/08/2013","Citizens for Joe Moore","$500.00",10403,"Michael","Sutton","01/18/2014",2013-10-08,"Moore"
"175",4944,"01/01/2013","03/31/2013","02/25/2013","Anthony Beale for Congress","$25.00",16327,"Danielle","Cassel","12/23/2013",2013-02-25,"Beale"
"176",5461,"10/01/2013","12/31/2013","10/04/2013","Friends of Mary O'Connor","$1000.00",15430,"Paul","Rosenfeld","01/23/2014",2013-10-04,"O'Connor"
"177",4922,"04/01/2013","06/30/2013","04/17/2013","Friends of Ameya Pawar","$500.00",16285,"Jerome","Schain","12/20/2013",2013-04-17,"Pawar"
"178",5062,"10/01/2013","12/31/2013","11/14/2013","Alderman Bob Fioretti","$300.00",16021,"MICHAEL","KASPER","01/08/2014",2013-11-14,"Fioretti"
"179",5063,"10/01/2013","12/31/2013","12/17/2013","Alderman Debra Silverstein","$500.00",16021,"MICHAEL","KASPER","01/08/2014",2013-12-17,"Silverstein"
"180",5111,"10/01/2013","12/31/2013","10/29/2013","Citizens for Senator Munoz","$150.00",14361,"Kate","Tragesser","01/10/2014",2013-10-29,"Munoz"
"181",5108,"10/01/2013","12/31/2013","12/11/2013","Citzens for Alderman Pope","$150.00",14361,"Kate","Tragesser","01/10/2014",2013-12-11,"Pope"
"182",5563,"10/01/2013","12/31/2013","10/14/2013","Citizens for O'Connore","$125.00",15407,"William","Filan","02/03/2014",2013-10-14,"O'Connor"
"183",5410,"10/01/2013","12/31/2013","10/01/2013","Friends of Ray Suarez","$1500.00",11481,"Lisa","Ouzounion","01/21/2014",2013-10-01,"Suarez"
"184",5409,"10/01/2013","12/31/2013","10/01/2013","Citizens for Patrick J. O'Connor","$1500.00",11481,"Lisa","Ouzounion","01/21/2014",2013-10-01,"O'Connor"
"185",5405,"10/01/2013","12/31/2013","09/01/2013","Citizens for Maldonado","$1500.00",11481,"Lisa","Ouzounion","01/21/2014",2013-09-01,"Maldonado"
"186",5281,"10/01/2013","12/31/2013","10/31/2013","37th Ward Democratic Organization","$250.00",12766,"Dean","Maragos","01/17/2014",2013-10-31,NA
"187",5706,"01/01/2014","03/31/2014","03/14/2014","Friends of Michele Smith","$1500.00",16645,"Jerry","Mickelson","04/01/2014",2014-03-14,"Smith"
"188",5703,"01/01/2014","03/31/2014","01/27/2014","Citizens for Bridget Gainer","$250.00",16645,"Jerry","Mickelson","04/01/2014",2014-01-27,NA
"189",5462,"10/01/2013","12/31/2013","10/16/2013","Pat Dowell","$1000.00",12806,"David","Doig","01/23/2014",2013-10-16,"Dowell"
"190",5918,"01/01/2014","03/31/2014","01/15/2014","Ed Burke","$500.00",17784,"Daniel","Shomon","04/15/2014",2014-01-15,"Burke"
"191",6046,"01/01/2014","03/31/2014","03/26/2014","Hopkins for Chicago (Brian Hopikins - candidate)","$500.00",17395,"Arnold","Harris","04/21/2014",2014-03-26,"Hopkins"
"192",5985,"01/01/2014","03/31/2014","03/27/2014","Friends of George A Cardenas","$200.00",17266,"Sam","Toia","04/17/2014",2014-03-27,"Cardenas"
"193",5984,"01/01/2014","03/31/2014","03/31/2014","25th Ward Regular Democratic Organization","$150.00",17266,"Sam","Toia","04/17/2014",2014-03-31,NA
"194",5901,"01/01/2014","03/31/2014","02/13/2014","Alderman James Cappleman","$250.00",18443,"David","Dring","04/15/2014",2014-02-13,"Cappleman"
"195",6042,"01/01/2014","03/31/2014","02/13/2014","Josina Morita","$250.00",16961,"William","Daley","04/21/2014",2014-02-13,NA
"196",5826,"01/01/2014","03/31/2014","03/12/2014","Alderman Danny Solis","$500.00",18442,"COURTNEY","NOTTAGE","04/11/2014",2014-03-12,"Solis"
"197",5825,"01/01/2014","03/31/2014","03/12/2014","Alderman Tim Cullerton","$250.00",18442,"COURTNEY","NOTTAGE","04/11/2014",2014-03-12,"Cullerton"
"198",5822,"01/01/2014","03/31/2014","02/13/2014","Alderman Margaret Laurino","$250.00",18442,"COURTNEY","NOTTAGE","04/11/2014",2014-02-13,"Laurino"
"199",5894,"01/01/2014","03/31/2014","01/15/2014","Friends of Edward M. Burke","$500.00",18724,"John","Corrigan","04/14/2014",2014-01-15,"Burke"
"200",6056,"01/01/2014","03/31/2014","03/05/2014","Friends of Ed Burke","$1500.00",17276,"Jason","Lunderman","04/21/2014",2014-03-05,"Burke"
"201",5845,"01/01/2014","03/31/2014","02/17/2014","Citiizens for Ervin","$250.00",16780,"Elizabeth","Lively","04/11/2014",2014-02-17,"Ervin"
"202",5887,"01/01/2014","03/31/2014","02/18/2014","Friends of Alderman Fioretti","$250.00",18421,"Dean","Maragos","04/14/2014",2014-02-18,"Fioretti"
"203",5913,"01/01/2014","03/31/2014","03/12/2014","Alderman Danny Solis","$500.00",18441,"MICHAEL","KASPER","04/15/2014",2014-03-12,"Solis"
"204",5912,"01/01/2014","03/31/2014","03/12/2014","Alderman Tim Cullerton","$250.00",18441,"MICHAEL","KASPER","04/15/2014",2014-03-12,"Cullerton"
"205",6010,"01/01/2014","03/31/2014","03/06/2014","Ald. Leslie Hairston","$250.00",18482,"John","George","04/18/2014",2014-03-06,"Hairston"
"206",6013,"01/01/2014","03/31/2014","03/06/2014","Ald. Bob Fioretti","$500.00",18825,"John","George","04/18/2014",2014-03-06,"Fioretti"
"207",5781,"01/01/2014","03/31/2014","01/01/2014","n/a","$0.00",16381,"Steven","Ginsberg","04/10/2014",2014-01-01,NA
"208",6302,"01/01/2014","03/31/2014","02/23/2014","Citizens for Tim Cullerton","$250.00",19621,"Marcus","Nunes","06/20/2014",2014-02-23,"Cullerton"
"209",6423,"04/01/2014","06/30/2014","04/28/2014","CITIZENS FOR AUSTIN","$1000.00",16587,"John","Doerrer","07/03/2014",2014-04-28,NA
"210",6661,"04/01/2014","06/30/2014","05/07/2014","Citizens for Alderman Austin","$100.00",17218,"Kate","Tragesser","07/18/2014",2014-05-07,"Austin"
"211",6202,"01/01/2014","03/31/2014","03/20/2014","Friends of Michele Smith","$500.00",19144,"Michael","Alexander","05/07/2014",2014-03-20,"Smith"
"212",6285,"01/01/2014","03/31/2014","03/06/2014","Ald. Bob Fioretti","$500.00",19481,"John","George","06/11/2014",2014-03-06,"Fioretti"
"213",6284,"01/01/2014","03/31/2014","02/18/2014","Citizens for Tim Cullerton","$250.00",19481,"John","George","06/11/2014",2014-02-18,"Cullerton"
"214",6181,"01/01/2014","03/31/2014","03/14/2014","Citizens for Cullerton","$150.00",19101,"William","Smith","05/06/2014",2014-03-14,"Cullerton"
"215",6592,"04/01/2014","06/30/2014","06/13/2014","Citizens for Ervin","$75.00",16780,"Elizabeth","Lively","07/15/2014",2014-06-13,"Ervin"
"216",6588,"04/01/2014","06/30/2014","05/20/2014","Committee to Elect Howard B. Brookins, Jr.","$100.00",16780,"Elizabeth","Lively","07/15/2014",2014-05-20,"Brookins"
"217",6342,"01/01/2014","03/31/2014","03/12/2014","11th Ward Democratic Party","$500.00",19701,"MICHAEL","KASPER","06/26/2014",2014-03-12,NA
"218",6452,"04/01/2014","06/30/2014","06/07/2014","Alderman Patrick O'Connor","$175.00",18421,"Dean","Maragos","07/07/2014",2014-06-07,"O'Connor"
"219",6445,"04/01/2014","06/30/2014","04/08/2014","11th Ward Democratic Party Campaign Committee","$150.00",18421,"Dean","Maragos","07/07/2014",2014-04-08,NA
"220",9423,"01/01/2015","03/31/2015","02/12/2015","Friends of Tom Tunney","$250.00",24542,"Bridget","O'Keefe","04/27/2015",2015-02-12,"Tunney"
"221",9630,"01/01/2015","03/31/2015","02/18/2015","Friends of Ameya Pawar","$500.00",24682,"Gery","Chico","05/07/2015",2015-02-18,"Pawar"
"222",7845,"04/01/2014","06/30/2014","06/04/2014","Alderman Harry Osterman","$300.00",21642,"COURTNEY","NOTTAGE","10/30/2014",2014-06-04,"Osterman"
"223",7851,"07/01/2014","09/30/2014","09/05/2014","Alderman Patrick J. O'Connor","$200.00",21642,"COURTNEY","NOTTAGE","10/30/2014",2014-09-05,"O'Connor"
"224",9238,"01/01/2015","03/31/2015","03/26/2015","John Cappleman","$500.00",22739,"Michael","Abramson","04/20/2015",2015-03-26,"Cappleman"
"225",9344,"01/01/2015","03/31/2015","03/22/2015","Friends of Alyx Pattison","$250.00",22915,"David","Narefsky","04/21/2015",2015-03-22,NA
"226",9581,"01/01/2015","03/31/2015","01/02/2015","Citizens for Pat Dowell","$300.00",22546,"Elvin","Charity","05/04/2015",2015-01-02,"Dowell"
"227",9802,"01/01/2015","03/31/2015","03/27/2015","Friend of Patrick Thompson","$1000.00",25302,"Gery","Chico","06/09/2015",2015-03-27,"Thompson"
"228",9801,"01/01/2015","03/31/2015","01/22/2015","Citizens for Alderman Ricardo Munoz","$500.00",25302,"Gery","Chico","06/09/2015",2015-01-22,"Munoz"
"229",9800,"01/01/2015","03/31/2015","02/11/2015","Citizens for Danny Solis","$500.00",25302,"Gery","Chico","06/09/2015",2015-02-11,"Solis"
"230",9722,"01/01/2015","03/31/2015","01/21/2015","Friends of Michele Harris","$250.00",25141,"Graham","Grady","06/03/2015",2015-01-21,"Harris"
"231",7708,"07/01/2014","09/30/2014","07/02/2014","John Pope","$500.00",21501,"Gery","Chico","10/24/2014",2014-07-02,"Pope"
"232",7382,"04/01/2014","06/30/2014","04/14/2014","Alderman Carrie Austin","$100.00",21301,"Sylvia","Michas","10/16/2014",2014-04-14,"Austin"
"233",7703,"04/01/2014","06/30/2014","06/30/2014","Burnham Committee","$1500.00",21501,"Gery","Chico","10/24/2014",2014-06-30,NA
"234",7834,"01/01/2014","03/31/2014","03/12/2014","Alderman Danny Solis","$500.00",21641,"MICHAEL","KASPER","10/30/2014",2014-03-12,"Solis"
"235",7833,"01/01/2014","03/31/2014","03/12/2014","Alderman Michelle A. Harris","$500.00",21641,"MICHAEL","KASPER","10/30/2014",2014-03-12,"Harris"
"236",7857,"01/01/2014","03/31/2014","03/12/2014","Alderman Michelle A. Harris","$500.00",21643,"David","Dring","10/30/2014",2014-03-12,"Harris"
"237",7864,"04/01/2014","06/30/2014","06/04/2014","Alderman Will Burns","$1000.00",21643,"David","Dring","10/30/2014",2014-06-04,"Burns"
"238",7866,"07/01/2014","09/30/2014","07/16/2014","Alderman Tom Tonney","$500.00",21643,"David","Dring","10/30/2014",2014-07-16,NA
"239",7123,"07/01/2014","09/30/2014","09/04/2014","Alderman Mary O'Connor","$150.00",17523,"Joseph","Pilewski","09/30/2014",2014-09-04,"O'Connor"
"240",8602,"01/01/2015","03/31/2015","02/13/2015","Citizens for Deborah Graham","$250.00",23981,"Paul","Williams","04/03/2015",2015-02-13,"Graham"
"241",8302,"10/01/2014","12/31/2014","12/08/2014","Friends of Margaret Laurino","$250.00",20261,"Mary","Minaghan dba MKM Services","01/18/2015",2014-12-08,"Laurino"
"242",9392,"01/01/2015","03/31/2015","01/30/2015","Citizens for Joe Moreno","$500.00",22844,"Thomas","Murphy","04/23/2015",2015-01-30,"Moreno"
"243",9384,"01/01/2015","03/31/2015","02/06/2015","Citizens for Joe Moreno","$500.00",22844,"Thomas","Murphy","04/23/2015",2015-02-06,"Moreno"
"244",7205,"07/01/2014","09/30/2014","09/15/2014","Citizens for Deborah L. Graham","$250.00",16645,"Jerry","Mickelson","10/07/2014",2014-09-15,"Graham"
"245",7204,"07/01/2014","09/30/2014","08/12/2014","Neighbors for Harry Osterman","$300.00",16645,"Jerry","Mickelson","10/07/2014",2014-08-12,"Osterman"
"246",7669,"07/01/2014","09/30/2014","08/14/2014","Ald. Debra Silverman","$250.00",21485,"John","George","10/23/2014",2014-08-14,NA
"247",7682,"04/01/2014","06/30/2014","06/03/2014","Citizens for Joe Moore","$500.00",21485,"John","George","10/23/2014",2014-06-03,"Moore"
"248",9181,"01/01/2015","03/31/2015","01/14/2015","Friends of Rey Colon","$500.00",22788,"Rolando","Acosta","04/20/2015",2015-01-14,NA
"249",7010,"04/01/2014","06/30/2014","04/16/2014","Alderman Mary O'Connor","$200.00",20683,"David","Dring","09/09/2014",2014-04-16,"O'Connor"
"250",7166,"04/01/2014","06/30/2014","06/30/2014","Burnham Committee","$1500.00",21061,"Gery","Chico","10/03/2014",2014-06-30,NA
"251",6773,"01/01/2014","03/31/2014","03/06/2014","Ald. Leslie Hairston","$250.00",20183,"John","George","07/22/2014",2014-03-06,"Hairston"
"252",6768,"01/01/2014","03/31/2014","01/23/2014","Friends of Ald. Reilly","$1000.00",20183,"John","George","07/22/2014",2014-01-23,"Reilly"
"253",8481,"01/01/2015","03/31/2015","02/12/2015","Alderman Beale","$1000.00",22925,"Eric","Dams","03/31/2015",2015-02-12,"Beale"
"254",8763,"01/01/2015","03/31/2015","02/12/2015","Friends of Patrick D Thompson","$50.00",22448,"Beniamino","Capellupo","04/10/2015",2015-02-12,"Thompson"
"255",6850,"04/01/2014","06/30/2014","06/04/2014","Alderman Ameya Pawar","$300.00",20246,"COURTNEY","NOTTAGE","07/24/2014",2014-06-04,"Pawar"
"256",8104,"10/01/2014","12/31/2014","09/18/2014","Citizens for Deborah Graham","$250.00",18894,"Paul","Williams","01/05/2015",2014-09-18,"Graham"
"257",8117,"10/01/2014","12/31/2014","10/07/2014","8TH WARD REGULAR DEM ORG","$500.00",19861,"John","Doerrer","01/06/2015",2014-10-07,NA
"258",8114,"10/01/2014","12/31/2014","12/08/2014","KURT SUMMERS FOR TREASURER","$1000.00",19861,"John","Doerrer","01/06/2015",2014-12-08,NA
"259",8666,"01/01/2015","03/31/2015","03/18/2015","Citizens to Elect Emma Mitts","$200.00",22495,"James","Watson","04/07/2015",2015-03-18,"Mitts"
"260",8663,"01/01/2015","03/31/2015","02/17/2015","Citizens for Joe Moore","$500.00",22495,"James","Watson","04/07/2015",2015-02-17,"Moore"
"261",7221,"07/01/2014","09/30/2014","08/12/2014","Alderman Proco Joe Moreno (In-Kind Contribution)","$1210.70",20683,"David","Dring","10/08/2014",2014-08-12,"Moreno"
"262",8112,"10/01/2014","12/31/2014","10/17/2014","Citizens for Anthony Beale","$250.00",22376,"Paul","Williams","01/06/2015",2014-10-17,"Beale"
"263",8107,"04/01/2014","06/30/2014","06/19/2014","Friends of Roderick Sawyer","$250.00",22376,"Paul","Williams","01/06/2015",2014-06-19,"Sawyer"
"264",8186,"04/01/2014","06/30/2014","04/14/2014","Citizens for Carrie Austin","$500.00",22486,"John","George","01/12/2015",2014-04-14,"Austin"
"265",8184,"04/01/2014","06/30/2014","06/09/2014","19th Ward Democratic Organization","$250.00",22486,"John","George","01/12/2015",2014-06-09,NA
"266",8190,"07/01/2014","09/30/2014","09/30/2014","Friends of Matt O'Shea","$250.00",22486,"John","George","01/12/2015",2014-09-30,"O'Shea"
"267",6816,"07/01/2013","09/30/2013","09/10/2013","Citizens for Reilly (Alderman Brendan Reilly)","$250.00",20205,"Donna","Pugh","07/23/2014",2013-09-10,"Reilly"
"268",8271,"10/01/2014","12/31/2014","12/01/2014","Alderman JoAnn Thompson","$500.00",17471,"David","Doig","01/15/2015",2014-12-01,"Thompson"
"269",7442,"07/01/2014","09/30/2014","09/12/2014","Mary O'Connor","$125.00",17784,"Daniel","Shomon","10/17/2014",2014-09-12,"O'Connor"
"270",8130,"10/01/2014","12/31/2014","01/06/2015","N/A","$0.00",16553,"Morgan","Bassey","01/06/2015",2015-01-06,NA
"271",8441,"10/01/2014","12/31/2014","09/30/2014","Friends of Gilbert Villegas","$480.25",17038,"Jorge","Perez","01/29/2015",2014-09-30,"Villegas"
"272",6806,"01/01/2014","03/31/2014","01/23/2014","Friends of Ald. Reilly","$1000.00",20201,"John","George","07/23/2014",2014-01-23,"Reilly"
"273",6857,"04/01/2014","06/30/2014","06/04/2014","Alderman Will Burns","$1000.00",20247,"David","Dring","07/24/2014",2014-06-04,"Burns"
"274",6855,"04/01/2014","06/30/2014","06/04/2014","Alderman Ameya Pawar","$300.00",20247,"David","Dring","07/24/2014",2014-06-04,"Pawar"
"275",6854,"04/01/2014","06/30/2014","04/16/2014","Alderman Mary O'Connor","$200.00",20247,"David","Dring","07/24/2014",2014-04-16,"O'Connor"
"276",8232,"10/01/2014","12/31/2014","10/23/2014","Alderman Edward M. Burke","$1500.00",21642,"COURTNEY","NOTTAGE","01/12/2015",2014-10-23,"Burke"
"277",8350,"10/01/2014","12/31/2014","10/09/2014","Alderman Will Burns","$50.00",21961,"Danielle","Cassel","01/20/2015",2014-10-09,"Burns"
"278",9042,"01/01/2015","03/31/2015","03/26/2015","Preckwinkle for President","$750.00",22387,"Dennis","O'Sullivan","04/17/2015",2015-03-26,"Preckwinkle"
"279",9034,"01/01/2015","03/31/2015","03/10/2015","Silvestri for County Commissioner","$250.00",22387,"Dennis","O'Sullivan","04/17/2015",2015-03-10,NA
"280",9032,"01/01/2015","03/31/2015","03/25/2015","Friends of M. Frank Avila","$150.00",22387,"Dennis","O'Sullivan","04/17/2015",2015-03-25,NA
"281",9249,"01/01/2015","03/31/2015","02/10/2015","Citizens to Elect Deborah Graham","$300.00",23002,"Brendan","Shiller","04/20/2015",2015-02-10,"Graham"
"282",9248,"01/01/2015","03/31/2015","02/10/2015","Alderman Scott Wahuespack","$100.00",23002,"Brendan","Shiller","04/20/2015",2015-02-10,"Scott"
"283",8887,"01/01/2015","03/31/2015","02/12/2015","Alderman James Cappleman","$250.00",23621,"MICHAEL","KASPER","04/14/2015",2015-02-12,"Cappleman"
"284",6882,"04/01/2014","06/30/2014","05/08/2014","Citizens for Carrie Austin","$1000.00",20261,"Mary","Minaghan dba MKM Services","07/25/2014",2014-05-08,"Austin"
"285",8196,"01/01/2014","03/31/2014","03/31/2014","Ald. Solis","$1000.00",22487,"John","George","01/12/2015",2014-03-31,"Solis"
"286",8210,"04/01/2014","06/30/2014","04/24/2014","Friends of Mike Zalewski","$500.00",22487,"John","George","01/12/2015",2014-04-24,"Zalewski"
"287",8215,"07/01/2014","09/30/2014","09/30/2014","Friends of Dick Durbin","$500.00",22487,"John","George","01/12/2015",2014-09-30,NA
"288",8212,"07/01/2014","09/30/2014","09/30/2014","Friends of Matt O'Shea","$250.00",22487,"John","George","01/12/2015",2014-09-30,"O'Shea"
"289",8895,"01/01/2015","03/31/2015","02/12/2015","Citizens for Tunney","$392.16",24181,"Jerome","Schain","04/14/2015",2015-02-12,"Tunney"
"290",9194,"01/01/2015","03/31/2015","03/19/2015","Citizens to Re-elect John Pope","$250.00",24361,"John","George","04/20/2015",2015-03-19,"Pope"
"291",9192,"01/01/2015","03/31/2015","03/13/2015","Hopkins for Chicago","$250.00",24361,"John","George","04/20/2015",2015-03-13,"Hopkins"
"292",9186,"01/01/2015","03/31/2015","01/30/2015","Citizens to Elect Emma Mitts","$250.00",24361,"John","George","04/20/2015",2015-01-30,"Mitts"
"293",9184,"01/01/2015","03/31/2015","01/30/2015","Citizens to Elect Deborah Graham","$250.00",24361,"John","George","04/20/2015",2015-01-30,"Graham"
"294",8925,"01/01/2015","03/31/2015","02/17/2015","Citizens for Bass","$75.00",22330,"Donovan","Pepper","04/16/2015",2015-02-17,NA
"295",9096,"01/01/2015","03/31/2015","02/11/2015","Friends of Raul Reyes","$200.00",23361,"Kate","Tragesser","04/17/2015",2015-02-11,NA
"296",9093,"01/01/2015","03/31/2015","02/09/2015","Jason C. Ervin","$100.00",23361,"Kate","Tragesser","04/17/2015",2015-02-09,"Ervin"
"297",9183,"01/01/2015","03/31/2015","02/13/2015","Emma Mitts","$150.00",22912,"Lewis","Powell","04/20/2015",2015-02-13,"Mitts"
"298",9200,"01/01/2015","03/31/2015","03/03/2015","Citizens for Jason Ervin","$500.00",22775,"Michael","Ezgur","04/20/2015",2015-03-03,"Ervin"
"299",9218,"01/01/2015","03/31/2015","03/30/2015","Friends for Mary O'Connor","$250.00",22809,"Mark","Fary","04/20/2015",2015-03-30,"O'Connor"
"300",9206,"01/01/2015","03/31/2015","03/19/2015","Preckwingle for President","$500.00",24425,"John","George","04/20/2015",2015-03-19,NA
"301",9318,"01/01/2015","03/31/2015","01/15/2015","Ald. Matt O'Shea","$250.00",22787,"John","Dunn","04/20/2015",2015-01-15,"O'Shea"
"302",9315,"01/01/2015","03/31/2015","01/15/2015","Ald. Pat Dowell","$250.00",22787,"John","Dunn","04/20/2015",2015-01-15,"Dowell"
"303",9312,"01/01/2015","03/31/2015","01/26/2015","Ald. Natashia Holmes","$250.00",22787,"John","Dunn","04/20/2015",2015-01-26,"Holmes"
"304",9311,"01/01/2015","03/31/2015","01/26/2015","Ald. Jason Ervin","$250.00",22787,"John","Dunn","04/20/2015",2015-01-26,"Ervin"
"305",9256,"01/01/2015","03/31/2015","01/28/2015","Friends of Cornell Wilson","$150.00",22836,"Jason","Lunderman","04/20/2015",2015-01-28,NA
"306",9664,"01/01/2015","03/31/2015","01/29/2015","Friends of JoAnn Thompson","$500.00",24743,"Michael","Sutton","05/08/2015",2015-01-29,"Thompson"
"307",8388,"07/01/2014","09/30/2014","09/26/2014","Friends of Ald. Zalewski","$500.00",22982,"John","George","01/26/2015",2014-09-26,"Zalewski"
"308",8628,"01/01/2015","03/31/2015","02/12/2015","Alderman Margaret Laurino","$500.00",23622,"COURTNEY","NOTTAGE","04/06/2015",2015-02-12,"Laurino"
"309",8625,"01/01/2015","03/31/2015","01/27/2015","Alderman Joe Moore","$250.00",23622,"COURTNEY","NOTTAGE","04/06/2015",2015-01-27,"Moore"
"310",6667,"04/01/2014","06/30/2014","06/03/2014","Alderman Joe Moreno","$50.00",16789,"Jeff","Riley","07/18/2014",2014-06-03,"Moreno"
"311",9425,"01/01/2015","03/31/2015","01/14/2015","Friends of Walter Burnett","$250.00",24543,"Bridget","O'Keefe","04/27/2015",2015-01-14,"Burnett"
"312",9622,"01/01/2015","03/31/2015","03/24/2015","John Arena","$200.00",24681,"Marcus","Nunes","05/07/2015",2015-03-24,"Arena"
"313",7561,"04/01/2014","06/30/2014","05/07/2014","Citizens for Alderman Austin","$100.00",21462,"Kate","Tragesser","10/22/2014",2014-05-07,"Austin"
"314",8353,"10/01/2014","12/31/2014","12/11/2014","KB47","$500.00",16831,"Michael","Sutton","01/20/2015",2014-12-11,NA
"315",8351,"10/01/2014","12/31/2014","10/09/2014","8th Ward Regular Democrataic Organization","$200.00",16831,"Michael","Sutton","01/20/2015",2014-10-09,NA
"316",7762,"01/01/2014","03/31/2014","02/13/2014","Alderman Patrick J. O'Connor","$500.00",21562,"COURTNEY","NOTTAGE","10/27/2014",2014-02-13,"O'Connor"
"317",7767,"04/01/2014","06/30/2014","06/04/2014","Alderman Ameya Pawar","$300.00",21562,"COURTNEY","NOTTAGE","10/27/2014",2014-06-04,"Pawar"
"318",8729,"01/01/2015","03/31/2015","02/12/2015","Alderman Danny Solis","$500.00",23623,"David","Dring","04/09/2015",2015-02-12,"Solis"
"319",8726,"01/01/2015","03/31/2015","01/27/2015","Alderman Patrick J. O'Connor","$1000.00",23623,"David","Dring","04/09/2015",2015-01-27,"O'Connor"
"320",8725,"01/01/2015","03/31/2015","01/27/2015","Alderman Joe Moore","$250.00",23623,"David","Dring","04/09/2015",2015-01-27,"Moore"
"321",8722,"01/01/2015","03/31/2015","01/20/2015","Alderman Deborah Graham","$500.00",23623,"David","Dring","04/09/2015",2015-01-20,"Graham"
"322",7234,"07/01/2014","09/30/2014","08/28/2014","CITIZENS FOR BEALE","$500.00",19861,"John","Doerrer","10/08/2014",2014-08-28,NA
"323",7233,"07/01/2014","09/30/2014","08/28/2014","CITIZENS FOR GRAHAM","$500.00",19861,"John","Doerrer","10/08/2014",2014-08-28,NA
"324",7228,"07/01/2014","09/30/2014","07/11/2014","FRIENDS OF HARSTON","$250.00",19861,"John","Doerrer","10/08/2014",2014-07-11,NA
"325",6756,"04/01/2014","06/30/2014","05/08/2014","Citizens for Carrie Austin","$1500.00",19281,"YaFawn","Smith","07/21/2014",2014-05-08,"Austin"
"326",9255,"01/01/2015","03/31/2015","02/17/2015","Candidate for Alderman Belinda Cadiz","$50.00",22785,"Michael","Laube","04/20/2015",2015-02-17,NA
"327",9252,"01/01/2015","03/31/2015","02/17/2015","Alderman James Cappleman","$150.00",22785,"Michael","Laube","04/20/2015",2015-02-17,"Cappleman"
"328",7568,"07/01/2014","09/30/2014","09/26/2014","Friends of Ald. Zalewski","$500.00",21442,"John","George","10/22/2014",2014-09-26,"Zalewski"
"329",8345,"10/01/2014","12/31/2014","11/11/2014","Citizens for Alderman Joe Moreno","$500.00",21384,"Thomas","Murphy","01/20/2015",2014-11-11,"Moreno"
"330",9117,"01/01/2015","03/31/2015","02/18/2015","Friends of Mike Zalewski","$250.00",24344,"Gery","Chico","04/17/2015",2015-02-18,"Zalewski"
"331",9120,"01/01/2015","03/31/2015","03/12/2015","Friends of Edward M. Burke","$1500.00",23083,"Jeffrey","Glass","04/17/2015",2015-03-12,"Burke"
"332",9270,"01/01/2015","03/31/2015","01/20/2015","Alderman Jason Ervin","$500.00",24442,"MICHAEL","KASPER","04/20/2015",2015-01-20,"Ervin"
"333",9269,"01/01/2015","03/31/2015","01/27/2015","Alderman Joe Moore","$250.00",24442,"MICHAEL","KASPER","04/20/2015",2015-01-27,"Moore"
"334",9266,"01/01/2015","03/31/2015","02/12/2015","Alderman James Cappleman","$250.00",24442,"MICHAEL","KASPER","04/20/2015",2015-02-12,"Cappleman"
"335",9282,"01/01/2015","03/31/2015","01/20/2015","Alderman Will Burns","$500.00",24443,"COURTNEY","NOTTAGE","04/20/2015",2015-01-20,"Burns"
"336",9280,"01/01/2015","03/31/2015","01/27/2015","Alderman Joe Moore","$250.00",24443,"COURTNEY","NOTTAGE","04/20/2015",2015-01-27,"Moore"
"337",9279,"01/01/2015","03/31/2015","02/12/2015","Alderman Danny Solis","$500.00",24443,"COURTNEY","NOTTAGE","04/20/2015",2015-02-12,"Solis"
"338",9277,"01/01/2015","03/31/2015","02/12/2015","Alderman Emma Mitts","$300.00",24443,"COURTNEY","NOTTAGE","04/20/2015",2015-02-12,"Mitts"
"339",9275,"01/01/2015","03/31/2015","02/12/2015","Alderman Michelle A. Harris","$500.00",24443,"COURTNEY","NOTTAGE","04/20/2015",2015-02-12,"Harris"
"340",6656,"04/01/2014","06/30/2014","06/04/2014","Alderman Will Burns","$1000.00",19704,"David","Dring","07/17/2014",2014-06-04,"Burns"
"341",7271,"07/01/2014","09/30/2014","09/05/2014","Alderman Walter Burnett","$500.00",20681,"MICHAEL","KASPER","10/13/2014",2014-09-05,"Burnett"
"342",7543,"01/01/2014","03/31/2014","03/28/2014","25th Ward Regular Democratic Organization","$800.00",21444,"Jerome","Schain","10/21/2014",2014-03-28,NA
"343",8001,"07/01/2014","09/30/2014","09/26/2014","Alderman James Caqppelman","$100.00",22221,"Mark","Lenz","12/18/2014",2014-09-26,NA
"344",9402,"01/01/2015","03/31/2015","02/09/2015","Jason C. Ervin","$100.00",24521,"Kate","Tragesser","04/24/2015",2015-02-09,"Ervin"
"345",6673,"04/01/2014","06/30/2014","06/03/2014","Joe Moreno","$300.00",18325,"Paul","Rosenfeld","07/18/2014",2014-06-03,"Moreno"
"346",6721,"04/01/2014","06/30/2014","06/01/2014","Aldrman Will Burns","$500.00",17471,"David","Doig","07/21/2014",2014-06-01,"Burns"
"347",6742,"04/01/2014","06/30/2014","06/24/2014","Citizens for Fred Crespo","$150.00",17038,"Jorge","Perez","07/21/2014",2014-06-24,NA
"348",7585,"04/01/2014","06/30/2014","06/14/2014","Citizens for Alderman Reilly","$1500.00",21481,"John","George","10/23/2014",2014-06-14,"Reilly"
"349",7583,"04/01/2014","06/30/2014","06/03/2014","Citizens for Joe Moore","$500.00",21481,"John","George","10/23/2014",2014-06-03,"Moore"
"350",7582,"04/01/2014","06/30/2014","06/09/2014","19th Ward Democratic Organization","$250.00",21481,"John","George","10/23/2014",2014-06-09,NA
"351",7495,"07/01/2014","09/30/2014","08/05/2014","Ald Michael Zalewski","$500.00",20064,"John","Dunn","10/20/2014",2014-08-05,"Zalewski"
"352",6990,"04/01/2014","06/30/2014","06/04/2014","Alderman Will Burns","$1000.00",20681,"MICHAEL","KASPER","09/09/2014",2014-06-04,"Burns"
"353",6988,"04/01/2014","06/30/2014","06/04/2014","Alderman Harry Osterman","$300.00",20681,"MICHAEL","KASPER","09/09/2014",2014-06-04,"Osterman"
"354",7416,"04/01/2014","06/30/2014","04/29/2014","Hopkins for Chicago","$500.00",21325,"John","George","10/17/2014",2014-04-29,"Hopkins"
"355",7572,"07/01/2014","09/30/2014","09/15/2014","Neighbors For Rey Colon","$500.00",21464,"Michael","Ezgur","10/22/2014",2014-09-15,NA
"356",7539,"07/01/2014","09/30/2014","09/01/2014","Citizens for Deborah Graham","$500.00",21384,"Thomas","Murphy","10/21/2014",2014-09-01,"Graham"
"357",7528,"01/01/2014","03/31/2014","02/10/2014","Friends of Margaret Laurino","$250.00",21442,"John","George","10/21/2014",2014-02-10,"Laurino"
"358",8152,"10/01/2014","12/31/2014","10/23/2014","Alderman Margaret Laurino","$250.00",21643,"David","Dring","01/12/2015",2014-10-23,"Laurino"
"359",8144,"10/01/2014","12/31/2014","09/17/2014","Villegas for 36 Ward","$250.00",22473,"Beth","Doria","01/10/2015",2014-09-17,"Villegas"
"360",8264,"07/01/2014","09/30/2014","07/25/2014","Susan Mendoza","$100.00",22586,"Graham","Grady","01/14/2015",2014-07-25,"Mendoza"
"361",8267,"01/01/2014","03/31/2014","02/24/2014","New 37th Ward Democratic Organization (Alderman Emma Mitts)","$500.00",22586,"Graham","Grady","01/14/2015",2014-02-24,"Mitts"
"362",6669,"04/01/2014","06/30/2014","06/06/2014","Friends for Proco Joe Moreno","$250.00",17266,"Sam","Toia","07/18/2014",2014-06-06,"Moreno"
"363",7727,"04/01/2014","06/30/2014","06/02/2014","Ray Suarez","$500.00",21541,"Gery","Chico","10/24/2014",2014-06-02,"Suarez"
"364",8250,"10/01/2014","12/31/2014","10/23/2014","Alderman Margaret Laurino","$250.00",21641,"MICHAEL","KASPER","01/13/2015",2014-10-23,"Laurino"
"365",8313,"07/01/2014","09/30/2014","09/10/2014","Citizens for Danny Solis","$500.00",22774,"Michael","Ezgur","01/19/2015",2014-09-10,"Solis"
"366",8261,"10/01/2014","12/31/2014","09/24/2014","Hopkins For Chicago","$500.00",18721,"William","Griffin","01/14/2015",2014-09-24,"Hopkins"
"367",7304,"07/01/2014","09/30/2014","09/22/2014","Alderman Deb Mell","$300.00",20682,"COURTNEY","NOTTAGE","10/14/2014",2014-09-22,"Mell"
"368",8402,"01/01/2014","03/31/2014","02/19/2014","Ald. Michelle A Harris","$500.00",22983,"John","George","01/26/2015",2014-02-19,"Harris"
"369",8398,"01/01/2014","03/31/2014","03/06/2014","Ald. Bob Fioretti","$500.00",22983,"John","George","01/26/2015",2014-03-06,"Fioretti"
"370",8408,"04/01/2014","06/30/2014","06/09/2014","19th Ward Democratic Organization","$250.00",22983,"John","George","01/26/2015",2014-06-09,NA
"371",8405,"04/01/2014","06/30/2014","04/14/2014","Citizens for Carrie Austin","$500.00",22983,"John","George","01/26/2015",2014-04-14,"Austin"
"372",8414,"07/01/2014","09/30/2014","09/30/2014","Friends of Matt O'Shea","$250.00",22983,"John","George","01/26/2015",2014-09-30,"O'Shea"
"373",8409,"07/01/2014","09/30/2014","09/26/2014","Friends of Ald. Zalewski","$500.00",22983,"John","George","01/26/2015",2014-09-26,"Zalewski"
"374",8551,"01/01/2015","03/31/2015","03/30/2015","Citizens for James Cappleman","$250.00",22431,"Paul","Rosenfeld","04/01/2015",2015-03-30,"Cappleman"
"375",8550,"01/01/2015","03/31/2015","03/27/2015","Citizens for Raymond Lopez","$1000.00",22431,"Paul","Rosenfeld","04/01/2015",2015-03-27,"Lopez"
"376",6614,"01/01/2014","03/31/2014","03/14/2014","Ald. Margaret Laurino","$250.00",20064,"John","Dunn","07/16/2014",2014-03-14,"Laurino"
"377",6613,"01/01/2014","03/31/2014","01/17/2014","Ald. Ed Burke","$500.00",20064,"John","Dunn","07/16/2014",2014-01-17,"Burke"
"378",6827,"01/01/2014","03/31/2014","03/12/2014","Alderman Michelle A. Harris","$500.00",20244,"MICHAEL","KASPER","07/24/2014",2014-03-12,"Harris"
"379",6826,"01/01/2014","03/31/2014","03/12/2014","Alderman Danny Solis","$500.00",20244,"MICHAEL","KASPER","07/24/2014",2014-03-12,"Solis"
"380",6821,"01/01/2014","03/31/2014","02/13/2014","Alderman James Cappleman","$250.00",20244,"MICHAEL","KASPER","07/24/2014",2014-02-13,"Cappleman"
"381",6866,"04/01/2014","06/30/2014","06/04/2014","Alderman Ameya Pawar","$300.00",20249,"COURTNEY","NOTTAGE","07/24/2014",2014-06-04,"Pawar"
"382",6875,"01/01/2014","03/31/2014","02/13/2014","Alderman James Cappleman","$250.00",20249,"COURTNEY","NOTTAGE","07/24/2014",2014-02-13,"Cappleman"
"383",6874,"01/01/2014","03/31/2014","02/13/2014","Alderman Patrick J. O'Connor","$500.00",20249,"COURTNEY","NOTTAGE","07/24/2014",2014-02-13,"O'Connor"
"384",6873,"01/01/2014","03/31/2014","02/13/2014","Alderman Margaret Laurino","$250.00",20249,"COURTNEY","NOTTAGE","07/24/2014",2014-02-13,"Laurino"
"385",7779,"01/01/2014","03/31/2014","03/12/2014","Alderman Michelle A. Harris","$500.00",21563,"David","Dring","10/27/2014",2014-03-12,"Harris"
"386",7789,"07/01/2014","09/30/2014","07/17/2014","Alderman Leslie Hairston","$300.00",21563,"David","Dring","10/27/2014",2014-07-17,"Hairston"
"387",7787,"07/01/2014","09/30/2014","09/22/2014","Alderman Deb Mell","$300.00",21563,"David","Dring","10/27/2014",2014-09-22,"Mell"
"388",8317,"10/01/2014","12/31/2014","10/21/2014","Alderman Ameya Pewar","$250.00",17209,"Michael","Laube","01/19/2015",2014-10-21,NA
"389",8757,"01/01/2015","03/31/2015","02/05/2015","CITIZENS FOR POPE","$750.00",22378,"John","Doerrer","04/10/2015",2015-02-05,NA
"390",8742,"01/01/2015","03/31/2015","01/27/2015","CITIZENS FOR MITTS","$1500.00",22378,"John","Doerrer","04/10/2015",2015-01-27,NA
"391",8831,"01/01/2015","03/31/2015","03/31/2015","Citizens to Re-Elect John Pope (Ald) (General Campaign Contribution)","$500.00",22952,"Arnold","Harris","04/14/2015",2015-03-31,"Pope"
"392",8830,"01/01/2015","03/31/2015","03/31/2015","Committee to Elect Howard B Brookins Jr (Ald) (General Campaign Contribution)","$500.00",22952,"Arnold","Harris","04/14/2015",2015-03-31,"Brookins"
"393",8829,"01/01/2015","03/31/2015","03/31/2015","Hopkins for Chicago (Ald) (General Campaign Contribution)","$500.00",22952,"Arnold","Harris","04/14/2015",2015-03-31,"Hopkins"
"394",130,"01/01/2012","06/30/2012","05/12/2012","Citizens for O'Connor","$100.00",7096,"Terrance","Diamond","08/09/2012",2012-05-12,"O'Connor"
"395",148,"01/01/2012","06/30/2012","03/14/2012","Friends of Alderman Reilly","$1000.00",6922,"Robert","Gamrath","08/10/2012",2012-03-14,"Reilly"
"396",183,"01/01/2012","06/30/2012","03/28/2012","Friends of JoAnne Thompson","$1250.00",5858,"Thomas","Livingston","08/14/2012",2012-03-28,"Thompson"
"397",186,"01/01/2012","06/30/2012","04/07/2012","Citizens for Patrick O'Connor","$100.00",6039,"Michael","Lufrano","08/14/2012",2012-04-07,"O'Connor"
"398",143,"01/01/2012","06/30/2012","06/10/2012","43rd Ward Democrats","$500.00",5762,"William","Griffin","08/10/2012",2012-06-10,NA
"399",202,"01/01/2012","06/30/2012","06/05/2012","25th Ward Regular Democratic Party","$125.00",5973,"Stewart","Mills","08/14/2012",2012-06-05,NA
"400",264,"01/01/2012","06/30/2012","03/19/2012","Alderman Ricardo Munoz","$450.00",6101,"Lawrence","Suffredin","08/21/2012",2012-03-19,"Munoz"
"401",281,"01/01/2012","06/30/2012","02/23/2012","5th Ward Democratic Organization","$1000.00",7063,"Yafawn","Smith","08/22/2012",2012-02-23,NA
"402",305,"01/01/2012","06/30/2012","05/01/2012","Will Burns","$250.00",6089,"Mary","Richardson-Lowry","08/22/2012",2012-05-01,"Burns"
"403",446,"01/01/2012","06/30/2012","06/05/2012","Alderman Tom Tunney","$250.00",8301,"MICHAEL","KASPER","08/28/2012",2012-06-05,"Tunney"
"404",445,"01/01/2012","06/30/2012","06/05/2012","Alderman Richard Munoz","$250.00",8301,"MICHAEL","KASPER","08/28/2012",2012-06-05,"Munoz"
"405",444,"01/01/2012","06/30/2012","06/05/2012","Alderman Patrick O'Connor","$500.00",8301,"MICHAEL","KASPER","08/28/2012",2012-06-05,"O'Connor"
"406",307,"01/01/2012","06/30/2012","06/20/2012","Alderman Brendan Reilly","$100.00",7107,"Jeff","Riley","08/22/2012",2012-06-20,"Reilly"
"407",298,"01/01/2012","06/30/2012","02/21/2012","Citizens for Cappleman","$500.00",6063,"Judith","Roettig","08/22/2012",2012-02-21,"Cappleman"
"408",362,"01/01/2012","06/30/2012","04/12/2012","Citizens for Patrick O'Connor","$100.00",6034,"Joseph","Pilewski","08/24/2012",2012-04-12,"O'Connor"
"409",426,"01/01/2012","06/30/2012","05/09/2012","Friends of Leslie A Hairston","$150.00",8321,"Joseph","Gattuso","08/28/2012",2012-05-09,"Hairston"
"410",547,"01/01/2012","06/30/2012","04/06/2012","Burnham Committee","$1500.00",8750,"John","Dunn","08/30/2012",2012-04-06,NA
"411",621,"01/01/2012","06/30/2012","05/12/2012","Citizens for O'Connor","$100.00",8885,"Terrance","Diamond","09/06/2012",2012-05-12,"O'Connor"
"412",722,"01/01/2012","06/30/2012","06/27/2012","Friends of Proco Joe Moreno","$500.00",9143,"Joseph","Gattuso","09/25/2012",2012-06-27,"Moreno"
"413",569,"01/01/2012","06/30/2012","06/21/2012","Friends of Proco Joe Moreno","$500.00",8800,"John","Kelly, Jr.","09/04/2012",2012-06-21,"Moreno"
"414",519,"01/01/2012","06/30/2012","04/04/2012","Friends of George Cardenas","$500.00",5891,"Elizabeth","Lively","08/29/2012",2012-04-04,"Cardenas"
"415",508,"01/01/2012","06/30/2012","02/14/2012","Citizens for Ervin","$150.00",5891,"Elizabeth","Lively","08/29/2012",2012-02-14,"Ervin"
"416",503,"01/01/2012","06/30/2012","01/17/2012","Citizens for Patrick J O'Connor","$250.00",5891,"Elizabeth","Lively","08/29/2012",2012-01-17,"O'Connor"
"417",565,"01/01/2012","06/30/2012","06/14/2012","The Burnham Committee","$100.00",8797,"Deborah","Faktor","09/04/2012",2012-06-14,NA
"418",763,"01/01/2012","06/30/2012","02/24/2012","Friends of Matt O'Shea","$1000.00",9247,"Thomas","Livingston","09/27/2012",2012-02-24,"O'Shea"
"419",1001,"07/01/2012","09/30/2012","08/08/2012","25th Ward Regular Democratic Organization","$100.00",5845,"Steven","Friedland","10/12/2012",2012-08-08,NA
"420",823,"01/01/2012","06/30/2012","05/30/2012","Friends of Will Burns","$150.00",9382,"Michael","Lufrano","10/03/2012",2012-05-30,"Burns"
"421",1067,"07/01/2012","09/30/2012","08/15/2012","Citizens to Elect Anthony Beale","$1500.00",8796,"Michael","Sutton","10/15/2012",2012-08-15,"Beale"
"422",1325,"07/01/2012","09/30/2012","08/14/2012","Friends of Walter Burnett, Jr.","$150.00",9948,"Graham","Grady","11/08/2012",2012-08-14,"Burnett"
"423",982,"07/01/2012","09/30/2012","08/06/2012","Citizens for John Arena","$150.00",9324,"Joseph","Gattuso","10/11/2012",2012-08-06,"Arena"
"424",1055,"07/01/2012","09/30/2012","08/17/2012","Friends of Ray Suarez","$125.00",5891,"Elizabeth","Lively","10/15/2012",2012-08-17,"Suarez"
"425",1053,"07/01/2012","09/30/2012","08/17/2012","Citizens for Maldonado","$500.00",5891,"Elizabeth","Lively","10/15/2012",2012-08-17,"Maldonado"
"426",1052,"07/01/2012","09/30/2012","08/10/2012","Friends of Walter Burnett","$150.00",5891,"Elizabeth","Lively","10/15/2012",2012-08-10,"Burnett"
"427",1168,"07/01/2012","09/30/2012","10/19/2012","Commissioner Jesus Garcia","$50.00",8961,"Brendan","Shiller","10/21/2012",2012-10-19,NA
"428",1301,"01/01/2012","06/30/2012","06/28/2012","Alderman Tim Cullerton","$250.00",9922,"William","Smith","11/05/2012",2012-06-28,"Cullerton"
"429",1382,"10/01/2012","12/31/2012","10/05/2012","23 Ward Regular Democratic Organization","$250.00",6114,"Marina","Faz-Huppert","11/21/2012",2012-10-05,NA
"430",1183,"07/01/2012","09/30/2012","08/14/2012","Friends of Walter Burnett, Jr.","$150.00",9762,"Graham","Grady","10/22/2012",2012-08-14,"Burnett"
"431",1152,"07/01/2012","09/30/2012","07/17/2012","Friends for Carrie Austin","$500.00",7061,"Betsy","Sales","10/19/2012",2012-07-17,"Austin"
"432",1185,"01/01/2012","06/30/2012","01/27/2012","Citizens for Debra Silverstein","$500.00",9763,"Thomas","Murphy","10/22/2012",2012-01-27,"Silverstein"
"433",1187,"07/01/2012","09/30/2012","09/19/2012","14th Ward Democratic Organization","$500.00",7165,"Jeanette","Sublett","10/22/2012",2012-09-19,NA
"434",1561,"10/01/2012","12/31/2012","12/31/2012","None","$0.00",9195,"Thomas","Chapman","01/02/2013",2012-12-31,NA
"435",1604,"10/01/2012","12/31/2012","12/04/2012","Friends of Edward Burke","$150.00",9948,"Graham","Grady","01/07/2013",2012-12-04,"Burke"
"436",1661,"10/01/2012","12/31/2012","12/10/2012","Debra Silverstein","$250.00",10281,"MICHAEL","KASPER","01/09/2013",2012-12-10,"Silverstein"
"437",1951,"10/01/2012","12/31/2012","11/01/2012","Friends of Edward M. Burke","$1000.00",9651,"Douglas","McFarlan","01/18/2013",2012-11-01,"Burke"
"438",1506,"01/01/2012","06/30/2012","02/07/2012","Alderman Richard Mell","$300.00",10281,"MICHAEL","KASPER","12/21/2012",2012-02-07,"Mell"
"439",1508,"07/01/2012","09/30/2012","09/13/2012","Alderman Walter Burnett, Jr.","$300.00",10281,"MICHAEL","KASPER","12/21/2012",2012-09-13,"Burnett"
"440",1507,"07/01/2012","09/30/2012","09/13/2012","Alderman James Cappleman","$250.00",10281,"MICHAEL","KASPER","12/21/2012",2012-09-13,"Cappleman"
"441",1910,"10/01/2012","12/31/2012","12/04/2012","Alderman Ed Burke","$500.00",9247,"Thomas","Livingston","01/17/2013",2012-12-04,"Burke"
"442",1402,"01/01/2012","06/30/2012","05/12/2012","Citizens for O'Connor","$100.00",10064,"Terrance","Diamond","12/11/2012",2012-05-12,"O'Connor"
"443",1404,"01/01/2012","06/30/2012","02/21/2012","Friends of Walter Burnett Jr.","$750.00",10071,"Jeanette","Sublett","12/11/2012",2012-02-21,"Burnett"
"444",1646,"10/01/2012","12/31/2012","11/02/2012","Friends of Ed Burke","$200.00",8797,"Deborah","Faktor","01/08/2013",2012-11-02,"Burke"
"445",1924,"10/01/2012","12/31/2012","10/24/2012","Friends of Edward M. Burke","$500.00",11140,"Charles","Bernardini","01/17/2013",2012-10-24,"Burke"
"446",1427,"01/01/2012","06/30/2012","06/05/2012","Alderman Richard Munoz","$250.00",10081,"MICHAEL","KASPER","12/12/2012",2012-06-05,"Munoz"
"447",1426,"01/01/2012","06/30/2012","06/05/2012","Alderman Will Burns","$500.00",10081,"MICHAEL","KASPER","12/12/2012",2012-06-05,"Burns"
"448",1963,"10/01/2012","12/31/2012","01/21/2013","No Gifts or Donations Given","$0.00",5761,"Steven","Ginsberg","01/21/2013",2013-01-21,NA
"449",2084,"10/01/2012","12/31/2012","08/21/2012","Friends of Walter Burnett","$450.00",8124,"Stephen","Friedman","01/30/2013",2012-08-21,"Burnett"
"450",2082,"10/01/2012","12/31/2012","07/27/2012","Citizens for Patrick J O'Connor","$300.00",8124,"Stephen","Friedman","01/30/2013",2012-07-27,"O'Connor"
"451",2162,"10/01/2012","12/31/2012","10/25/2012","Ald. Ray Suarez","$500.00",5684,"Terry","Gabinski","02/04/2013",2012-10-25,"Suarez"
"452",2161,"10/01/2012","12/31/2012","10/23/2012","Friends of Patrick OConnor","$500.00",5684,"Terry","Gabinski","02/04/2013",2012-10-23,NA
"453",2262,"01/01/2013","03/31/2013","02/08/2013","citizens for beal","$250.00",11920,"William","Filan","03/27/2013",2013-02-08,NA
"454",1990,"10/01/2012","12/31/2012","11/02/2012","Citizens for Carrie Austin","$1000.00",9946,"Yafawn","Smith","01/23/2013",2012-11-02,"Austin"
"455",2190,"10/01/2012","12/31/2012","10/05/2012","Friends of Edward M Burke","$1500.00",11806,"Stephen","Friedman","02/11/2013",2012-10-05,"Burke"
"456",2184,"10/01/2012","12/31/2012","07/27/2012","Citizens for Patrick J O'Connor","$300.00",11806,"Stephen","Friedman","02/11/2013",2012-07-27,"O'Connor"
"457",2242,"10/01/2012","12/31/2012","11/01/2012","Alderman Ed Burke NO personal contributions in 2012","$0.00",11933,"Charles","Parnell","02/28/2013",2012-11-01,"Burke"
"458",2283,"01/01/2013","03/31/2013","03/29/2013","Stewart","$0.00",10874,"Gary","Engle","04/01/2013",2013-03-29,NA
"459",2321,"01/01/2013","03/31/2013","02/15/2013","Anthony Beale for Congress","$250.00",11074,"Donald","Robinson","04/05/2013",2013-02-15,"Beale"
"460",2614,"01/01/2013","03/31/2013","01/16/2013","Alderman George Cardenas","$500.00",12817,"COURTNEY","NOTTAGE","04/22/2013",2013-01-16,"Cardenas"
"461",2405,"01/01/2013","03/31/2013","03/04/2013","Club 42 -- Alderman Brendan Reilly","$100.00",12621,"Thomas","Wolf","04/11/2013",2013-03-04,"Reilly"
"462",2504,"01/01/2013","03/31/2013","02/25/2013","CITIZENS TO ELECT JOHN ARENA","$250.00",12729,"William","Banks","04/17/2013",2013-02-25,NA
"463",2503,"01/01/2013","03/31/2013","02/14/2013","CITIZENS FOR JOE MOORE","$250.00",12729,"William","Banks","04/17/2013",2013-02-14,NA
"464",2559,"01/01/2013","03/31/2013","02/21/2013","Alderman Jason Ervin","$300.00",11511,"COURTNEY","NOTTAGE","04/19/2013",2013-02-21,"Ervin"
"465",2643,"01/01/2013","03/31/2013","02/01/2013","Alderman Toni Foulkes","$1000.00",11127,"Thomas","Livingston","04/22/2013",2013-02-01,"Foulkes"
"466",2481,"01/01/2013","03/31/2013","04/16/2013","Steven Ginsberg","$0.00",11275,"Steven","Ginsberg","04/16/2013",2013-04-16,NA
"467",2642,"01/01/2013","03/31/2013","04/01/2013","none","$0.00",11372,"Bernard","Parisot","04/22/2013",2013-04-01,NA
"468",3482,"01/01/2012","06/30/2012","02/09/2012","Friends of Forti","$150.00",11784,"Richard","Ingram","07/11/2013",2012-02-09,NA
"469",3500,"04/01/2013","06/30/2013","06/10/2013","Friends of George A. Cardenas","$500.00",11022,"Elizabeth","Lively","07/11/2013",2013-06-10,"Cardenas"
"470",3491,"04/01/2013","06/30/2013","04/26/2013","Friends of Will Burns","$150.00",11022,"Elizabeth","Lively","07/11/2013",2013-04-26,"Burns"
"471",2906,"01/01/2013","03/31/2013","02/21/2013","Alderman Brendan Reilly","$500.00",13041,"MICHAEL","KASPER","05/06/2013",2013-02-21,"Reilly"
"472",2903,"01/01/2013","03/31/2013","02/21/2013","Alderman Richard Mell","$300.00",13041,"MICHAEL","KASPER","05/06/2013",2013-02-21,"Mell"
"473",2902,"01/01/2013","03/31/2013","03/27/2013","25th Ward Regular Democratic Organization","$500.00",13041,"MICHAEL","KASPER","05/06/2013",2013-03-27,NA
"474",3001,"01/01/2013","03/31/2013","03/25/2013","FRIENDS TO ELECT TONI FAULKES","$250.00",13302,"William","Banks","05/21/2013",2013-03-25,NA
"475",3503,"04/01/2013","06/30/2013","05/06/2013","Friends of Will Burns","$300.00",13241,"John","Doerrer","07/11/2013",2013-05-06,"Burns"
"476",3512,"04/01/2013","06/30/2013","06/04/2013","Alderman Will Burns","$150.00",13781,"Danielle","Cassel","07/11/2013",2013-06-04,"Burns"
"477",3518,"04/01/2013","06/30/2013","06/21/2013","The New 37th Ward Democratic Organization","$125.00",14043,"Graham","Grady","07/11/2013",2013-06-21,NA
"478",3365,"04/01/2013","06/30/2013","03/27/2013","25th Ward Regular Democratic Organization","$500.00",10504,"Judith","Roettig","07/05/2013",2013-03-27,NA
"479",2761,"01/01/2013","03/31/2013","04/29/2013","none","$0.00",11711,"Eric","Locke","04/29/2013",2013-04-29,NA
"480",2850,"01/01/2013","03/31/2013","01/16/2013","Alderman George Cardenas","$500.00",12984,"COURTNEY","NOTTAGE","05/01/2013",2013-01-16,"Cardenas"
"481",2981,"01/01/2013","03/31/2013","03/25/2013","25th Ward Regular Democratic Organization (celebrating 17 years of service by Alderman Solis)","$150.00",13281,"Danielle","Cassel","05/20/2013",2013-03-25,"Solis"
"482",2703,"01/01/2013","03/31/2013","03/25/2013","25th Ward Regular Democratic Organization (celebrating 17 years of service by Alderman Solis)","$150.00",11730,"Danielle","Cassel","04/25/2013",2013-03-25,"Solis"
"483",2723,"01/01/2013","03/31/2013","02/25/2013","CITIZENS TO ELECT JOHN ARENA","$250.00",12901,"William","Banks","04/26/2013",2013-02-25,NA
"484",3101,"01/01/2013","03/31/2013","02/25/2013","CITIZENS TO ELECT JOHN ARENA","$250.00",13723,"William","Banks","06/17/2013",2013-02-25,NA
"485",3333,"04/01/2013","06/30/2013","04/01/2013","25th Ward Regular Democratic Organization","$1500.00",13947,"Mara","Georges","07/03/2013",2013-04-01,NA
"486",3735,"04/01/2013","06/30/2013","06/07/2013","Alderman Walter Burnett","$500.00",14323,"David","Dring","07/19/2013",2013-06-07,"Burnett"
"487",3732,"04/01/2013","06/30/2013","06/07/2013","Alderman Michele Smith","$250.00",14323,"David","Dring","07/19/2013",2013-06-07,"Smith"
"488",3731,"04/01/2013","06/30/2013","06/07/2013","11th Ward Democratic Party","$500.00",14323,"David","Dring","07/19/2013",2013-06-07,NA
"489",3729,"04/01/2013","06/30/2013","06/07/2013","Alderman Joe Moore","$250.00",14323,"David","Dring","07/19/2013",2013-06-07,"Moore"
"490",3742,"01/01/2013","03/31/2013","02/21/2013","Alderman Jason Ervin","$300.00",14323,"David","Dring","07/19/2013",2013-02-21,"Ervin"
"491",3737,"01/01/2013","03/31/2013","02/21/2013","Alderman Richard F. Mell","$300.00",14323,"David","Dring","07/19/2013",2013-02-21,"Mell"
"492",3884,"04/01/2013","06/30/2013","05/14/2013","Citizens for Munoz","$250.00",14442,"Rolando","Acosta","07/29/2013",2013-05-14,"Munoz"
"493",3882,"04/01/2013","06/30/2013","04/01/2013","25th Ward Reg. Dem. Org.","$500.00",14442,"Rolando","Acosta","07/29/2013",2013-04-01,NA
"494",3889,"01/01/2013","03/31/2013","03/21/2013","Friends of Proco Joe Moreno","$500.00",14442,"Rolando","Acosta","07/29/2013",2013-03-21,"Moreno"
"495",3886,"01/01/2013","03/31/2013","02/25/2013","Citizens for Joe Moore","$250.00",14442,"Rolando","Acosta","07/29/2013",2013-02-25,"Moore"
"496",3582,"04/01/2013","06/30/2013","06/06/2013","Alderman Mike Zalewski","$500.00",12984,"COURTNEY","NOTTAGE","07/16/2013",2013-06-06,"Zalewski"
"497",3581,"04/01/2013","06/30/2013","05/09/2013","Alderman Will Burns","$1000.00",12984,"COURTNEY","NOTTAGE","07/16/2013",2013-05-09,"Burns"
"498",3715,"04/01/2013","06/30/2013","06/06/2013","Alderman Mike Zalewski","$500.00",14322,"COURTNEY","NOTTAGE","07/19/2013",2013-06-06,"Zalewski"
"499",3726,"01/01/2013","03/31/2013","01/16/2013","Alderman George Cardenas","$500.00",14322,"COURTNEY","NOTTAGE","07/19/2013",2013-01-16,"Cardenas"
"500",3841,"04/01/2013","06/30/2013","05/07/2013","Alderman Jason C. Ervin","$139.00",14361,"Kate","Tragesser","07/24/2013",2013-05-07,"Ervin"
"501",3984,"01/01/2013","03/31/2013","03/25/2013","FRIENDS TO ELECT TONI FAULKES","$250.00",14723,"William","Banks","08/09/2013",2013-03-25,NA
"502",3983,"01/01/2013","03/31/2013","03/25/2013","FRIENDS OF MICHELLE HARRIS","$250.00",14723,"William","Banks","08/09/2013",2013-03-25,NA
"503",3982,"01/01/2013","03/31/2013","02/14/2013","CITIZENS FOR JOE MOORE","$250.00",14723,"William","Banks","08/09/2013",2013-02-14,NA
"504",3706,"04/01/2013","06/30/2013","06/07/2013","Alderman Walter Burnett","$500.00",14321,"MICHAEL","KASPER","07/19/2013",2013-06-07,"Burnett"
"505",3714,"01/01/2013","03/31/2013","01/16/2013","Alderman George Cardenas","$500.00",14321,"MICHAEL","KASPER","07/19/2013",2013-01-16,"Cardenas"
"506",3713,"01/01/2013","03/31/2013","02/21/2013","Alderman Richard Mell","$300.00",14321,"MICHAEL","KASPER","07/19/2013",2013-02-21,"Mell"
"507",4023,"04/01/2013","06/30/2013","05/01/2013","Friends of Leslie A. Hairston","$250.00",14861,"Graham","Grady","08/20/2013",2013-05-01,"Hairston"
"508",3822,"04/01/2013","06/30/2013","05/08/2013","Friends of Leslie Hairston","$1000.00",11390,"Yafawn","Smith","07/23/2013",2013-05-08,"Hairston"
"509",3891,"04/01/2013","06/30/2013","05/14/2013","Citizens for Munoz","$250.00",14443,"Rolando","Acosta","07/29/2013",2013-05-14,"Munoz"
"510",13042,"01/01/2016","03/31/2016","03/31/2016","none","$0.00",30055,"Jeff","Rock","04/04/2016",2016-03-31,NA
"511",3899,"04/01/2013","06/30/2013","05/29/2013","Friends of Will Burns","$500.00",14444,"Rolando","Acosta","07/29/2013",2013-05-29,"Burns"
"512",3920,"04/01/2013","06/30/2013","05/29/2013","33rd Ward Regular Democratic Organization","$300.00",14447,"John","George","07/29/2013",2013-05-29,NA
"513",4421,"07/01/2013","09/30/2013","09/24/2013","Eighth Ward Regular Democratic Organization","$200.00",11022,"Elizabeth","Lively","10/15/2013",2013-09-24,NA
"514",4239,"01/01/2013","03/31/2013","02/21/2013","Alderman Jason Ervin","$300.00",15305,"MICHAEL","KASPER","09/24/2013",2013-02-21,"Ervin"
"515",4253,"04/01/2013","06/30/2013","05/09/2013","Alderman Will Burns","$1000.00",15306,"COURTNEY","NOTTAGE","09/24/2013",2013-05-09,"Burns"
"516",4261,"04/01/2013","06/30/2013","06/07/2013","Alderman Patrick J. O'Connor","$500.00",15307,"David","Dring","09/24/2013",2013-06-07,"O'Connor"
"517",4249,"01/01/2013","03/31/2013","02/21/2013","Alderman Richard Mell","$300.00",15306,"COURTNEY","NOTTAGE","09/24/2013",2013-02-21,"Mell"
"518",4248,"01/01/2013","03/31/2013","02/21/2013","Alderman Brendan Reilly","$500.00",15306,"COURTNEY","NOTTAGE","09/24/2013",2013-02-21,"Reilly"
"519",4246,"01/01/2013","03/31/2013","02/21/2013","Alderman Proco ""Joe"" Moreno","$300.00",15306,"COURTNEY","NOTTAGE","09/24/2013",2013-02-21,"Moreno"
"520",4270,"01/01/2013","03/31/2013","02/21/2013","Alderman Proco Joe Moreno","$300.00",15307,"David","Dring","09/24/2013",2013-02-21,"Moreno"
"521",4364,"07/01/2013","09/30/2013","09/05/2013","Alderman Ricardo Munoz","$250.00",15307,"David","Dring","10/09/2013",2013-09-05,"Munoz"
"522",4343,"07/01/2013","09/30/2013","08/13/2013","Ald Cardenas (Gold Hole S...)","$150.00",15406,"William","Filan","10/08/2013",2013-08-13,"Cardenas"
"523",4345,"01/01/2013","03/31/2013","02/14/2013","citizens for austin","$200.00",15407,"William","Filan","10/08/2013",2013-02-14,NA
"524",4104,"01/01/2013","03/31/2013","03/25/2013","FRIENDS TO ELECT TONI FAULKES","$250.00",15083,"William","Banks","09/05/2013",2013-03-25,NA
"525",4102,"01/01/2013","03/31/2013","03/25/2013","FRIENDS OF MICHELLE HARRIS","$250.00",15083,"William","Banks","09/05/2013",2013-03-25,NA
"526",4151,"04/01/2013","06/30/2013","06/07/2013","11th Ward Democratic Party","$500.00",15221,"MICHAEL","KASPER","09/16/2013",2013-06-07,NA
"527",4169,"04/01/2013","06/30/2013","06/06/2013","Alderman Mike Zalewski","$500.00",15223,"David","Dring","09/16/2013",2013-06-06,"Zalewski"
"528",5141,"10/01/2013","12/31/2013","10/03/2013","44th Ward Democratic Organization","$500.00",12183,"Jerry","Mickelson","01/12/2014",2013-10-03,NA
"529",4337,"07/01/2013","09/30/2013","09/19/2013","Friends of Carrie Austin","$1000.00",10504,"Judith","Roettig","10/07/2013",2013-09-19,"Austin"
"530",4365,"07/01/2013","09/30/2013","09/30/2013","N/A","$0.00",11710,"Morgan","Bassey","10/09/2013",2013-09-30,NA
"531",4403,"04/01/2013","06/30/2013","06/04/2013","Alderman Will Burns","$150.00",15461,"Danielle","Cassel","10/15/2013",2013-06-04,"Burns"
"532",4462,"07/01/2013","09/30/2013","09/17/2013","Alderman Joe Moore","$250.00",14742,"Gery","Chico","10/18/2013",2013-09-17,"Moore"
"533",4541,"07/01/2012","09/30/2012","07/25/2013","Friends of JoAnn Thompson","$650.00",11390,"Yafawn","Smith","10/21/2013",2013-07-25,"Thompson"
"534",4641,"04/01/2013","06/30/2013","04/12/2013","Citizens for O'Connore","$100.00",15783,"Joseph","Pilewski","11/07/2013",2013-04-12,"O'Connor"
"535",4701,"04/01/2013","06/30/2013","04/01/2013","25th Ward Regular Democratic Organization","$1500.00",15967,"Mara","Georges","11/25/2013",2013-04-01,NA
"536",4767,"04/01/2013","06/30/2013","06/07/2013","Alderman Patrick J. O'Connor","$500.00",16021,"MICHAEL","KASPER","12/05/2013",2013-06-07,"O'Connor"
"537",4764,"04/01/2013","06/30/2013","06/06/2013","Alderman Mike Zalewski","$500.00",16021,"MICHAEL","KASPER","12/05/2013",2013-06-06,"Zalewski"
"538",4773,"01/01/2013","03/31/2013","02/21/2013","Alderman Brendan Reilly","$500.00",16021,"MICHAEL","KASPER","12/05/2013",2013-02-21,"Reilly"
"539",4467,"04/01/2013","06/30/2013","03/22/2013","John Arena","$250.00",15483,"Marcus","Nunes","10/18/2013",2013-03-22,"Arena"
"540",4564,"04/01/2013","06/30/2013","05/07/2013","Citizens to Elect Deborah Graham","$500.00",15522,"Michael","Paulos","10/22/2013",2013-05-07,"Graham"
"541",4663,"01/01/2013","03/31/2013","02/14/2013","CITIZENS FOR JOE MOORE","$250.00",15823,"William","Banks","11/08/2013",2013-02-14,NA
"542",4685,"04/01/2013","06/30/2013","06/04/2013","Citizens for Cappleman","$250.00",15901,"Graham","Grady","11/14/2013",2013-06-04,"Cappleman"
"543",4681,"04/01/2013","06/30/2013","06/21/2013","The New 37th Ward Democratic Organization","$125.00",15901,"Graham","Grady","11/14/2013",2013-06-21,NA
"544",5048,"10/01/2013","12/31/2013","11/14/2013","Alderman Bob Fioretti","$300.00",15307,"David","Dring","01/07/2014",2013-11-14,"Fioretti"
"545",4862,"01/01/2013","03/31/2013","02/26/2013","State Senator Toi Hutchinson","$250.00",16201,"Bridget","O'Keefe","12/18/2013",2013-02-26,NA
"546",4965,"10/01/2013","12/31/2013","10/04/2013","Friends of Matt O'Shea","$500.00",11390,"Yafawn","Smith","12/30/2013",2013-10-04,"O'Shea"
"547",4962,"10/01/2013","12/31/2013","12/12/2013","Citizens to Elect Willie B. Cochran","$1000.00",11390,"Yafawn","Smith","12/30/2013",2013-12-12,"Cochran"
"548",5302,"10/01/2013","12/31/2013","11/14/2013","Friends of Natashia Holmes","$250.00",10403,"Michael","Sutton","01/18/2014",2013-11-14,"Holmes"
"549",4844,"01/01/2013","03/31/2013","02/25/2013","Anthony Beale for Congress","$25.00",16181,"Danielle","Cassel","12/17/2013",2013-02-25,"Beale"
"550",5001,"10/01/2013","12/31/2013","12/27/2013","Friends of Carrie Austin","$250.00",11855,"John","Corrigan","01/04/2014",2013-12-27,"Austin"
"551",4945,"04/01/2013","06/30/2013","04/11/2013","Alderman Rod Sawyer","$150.00",16327,"Danielle","Cassel","12/23/2013",2013-04-11,"Sawyer"
"552",5294,"10/01/2013","12/31/2013","10/24/2013","Citizens for Roberto Maldanado","$500.00",14742,"Gery","Chico","01/17/2014",2013-10-24,NA
"553",5041,"10/01/2013","12/31/2013","10/10/2013","Alderman Carrie Austin","$500.00",15306,"COURTNEY","NOTTAGE","01/07/2014",2013-10-10,"Austin"
"554",5297,"10/01/2013","12/31/2013","11/18/2013","Patrick Daley Thompson Campaign Committee","$250.00",12982,"James","Houlihan","01/17/2014",2013-11-18,"Thompson"
"555",5296,"10/01/2013","12/31/2013","12/05/2013","Friends of Bob Fioretti","$500.00",12982,"James","Houlihan","01/17/2014",2013-12-05,"Fioretti"
"556",4888,"01/01/2013","03/31/2013","02/06/2013","Friends of Leslie A. Hairston","$150.00",16251,"Graham","Grady","12/19/2013",2013-02-06,"Hairston"
"557",4885,"04/01/2013","06/30/2013","05/01/2013","Friends of Leslie A. Hairston","$250.00",16251,"Graham","Grady","12/19/2013",2013-05-01,"Hairston"
"558",4942,"04/01/2013","06/30/2013","05/01/2013","Walter Burnett","$150.00",16324,"Bridget","O'Keefe","12/23/2013",2013-05-01,"Burnett"
"559",5181,"10/01/2013","12/31/2013","11/06/2013","23rd Ward Democratic Party","$500.00",14101,"William","Griffin","01/13/2014",2013-11-06,NA
"560",5121,"10/01/2012","12/31/2012","01/01/2014","none","$0.00",11275,"Steven","Ginsberg","01/11/2014",2014-01-01,NA
"561",5286,"10/01/2013","12/31/2013","12/12/2013","Alderman Ed Burke","$1500.00",12181,"Terry","Teele","01/17/2014",2013-12-12,"Burke"
"562",5548,"04/01/2013","06/30/2013","05/27/2013","19th Ward Democratic Organization","$250.00",17484,"John","George","01/30/2014",2013-05-27,NA
"563",5412,"10/01/2013","12/31/2013","11/01/2013","Citizens for Cappleman","$1500.00",11481,"Lisa","Ouzounion","01/21/2014",2013-11-01,"Cappleman"
"564",5411,"10/01/2013","12/31/2013","10/01/2013","Citizens for Reboyras","$1500.00",11481,"Lisa","Ouzounion","01/21/2014",2013-10-01,"Reboyras"
"565",5424,"10/01/2013","12/31/2013","09/01/2013","Citizens for Maldonado","$1500.00",17280,"Lisa","Ouzounion","01/21/2014",2013-09-01,"Maldonado"
"566",5417,"10/01/2013","12/31/2013","11/01/2013","Citizens for Mell","$1500.00",17280,"Lisa","Ouzounion","01/21/2014",2013-11-01,"Mell"
"567",5442,"01/01/2013","03/31/2013","04/16/2013","Steven Ginsberg","$0.00",17328,"Steven","Ginsberg","01/22/2014",2013-04-16,NA
"568",5501,"10/01/2013","12/31/2013","10/14/2013","Friends of Jaime Andrade","$250.00",11583,"Jorge","Perez","01/28/2014",2013-10-14,NA
"569",5383,"10/01/2013","12/31/2013","12/13/2013","Citizens for Alderman Debra Silverstein","$150.00",15405,"Thomas","Murphy","01/20/2014",2013-12-13,"Silverstein"
"570",5382,"10/01/2013","12/31/2013","11/18/2013","Citizens for Alderman John Pope","$500.00",15405,"Thomas","Murphy","01/20/2014",2013-11-18,"Pope"
"571",5288,"10/01/2013","12/31/2013","11/14/2013","FRIENDS OF ED BURKE","$150.00",12785,"Catherine","O'Malley","01/17/2014",2013-11-14,NA
"572",5398,"04/01/2013","06/30/2013","05/10/2013","Deb Graham","$250.00",17240,"John","Dunn","01/20/2014",2013-05-10,"Graham"
"573",5704,"01/01/2014","03/31/2014","02/13/2014","Friends for Walter Burnett, Jr.","$500.00",16645,"Jerry","Mickelson","04/01/2014",2014-02-13,"Burnett"
"574",5884,"01/01/2014","03/31/2014","02/24/2014","New 37th Ward Democratic Organization (Alderman Emma Mitts)","$500.00",18401,"Graham","Grady","04/14/2014",2014-02-24,"Mitts"
"575",5906,"01/01/2014","03/31/2014","03/12/2014","Alderman Danny Solis","$500.00",18443,"David","Dring","04/15/2014",2014-03-12,"Solis"
"576",6052,"01/01/2014","03/31/2014","03/07/2014","Citizens to Elect Emma Mitts","$1500.00",17276,"Jason","Lunderman","04/21/2014",2014-03-07,"Mitts"
"577",5852,"01/01/2014","03/31/2014","03/14/2014","Neighbors for Harry Osterman","$100.00",16780,"Elizabeth","Lively","04/11/2014",2014-03-14,"Osterman"
"578",5850,"01/01/2014","03/31/2014","03/03/2014","Friends of George Cardenas","$500.00",16780,"Elizabeth","Lively","04/11/2014",2014-03-03,"Cardenas"
"579",5848,"01/01/2014","03/31/2014","02/24/2014","Friends of Michelle A. Harris","$250.00",16780,"Elizabeth","Lively","04/11/2014",2014-02-24,"Harris"
"580",5847,"01/01/2014","03/31/2014","02/24/2014","Citizens for Tim Cullerton","$125.00",16780,"Elizabeth","Lively","04/11/2014",2014-02-24,"Cullerton"
"581",5861,"01/01/2014","03/31/2014","01/15/2014","Friends of Edward M. Burke","$500.00",16461,"John","Corrigan","04/14/2014",2014-01-15,"Burke"
"582",5917,"01/01/2014","03/31/2014","02/12/2014","Andy Beshar for Attorney General","$125.00",14361,"Kate","Tragesser","04/15/2014",2014-02-12,NA
"583",5916,"01/01/2014","03/31/2014","02/27/2014","Citizens for Burnett","$150.00",14361,"Kate","Tragesser","04/15/2014",2014-02-27,"Burnett"
"584",6019,"01/01/2014","03/31/2014","02/10/2014","Friends of Margaret Laurino","$250.00",18825,"John","George","04/18/2014",2014-02-10,"Laurino"
"585",6018,"01/01/2014","03/31/2014","01/23/2014","Citizens to elect Deborah L Graham","$500.00",18825,"John","George","04/18/2014",2014-01-23,"Graham"
"586",6015,"01/01/2014","03/31/2014","03/06/2014","Ald. Leslie Hairston","$250.00",18825,"John","George","04/18/2014",2014-03-06,"Hairston"
"587",6050,"01/01/2014","03/31/2014","03/27/2014","Friends of George Cardenas","$250.00",17038,"Jorge","Perez","04/21/2014",2014-03-27,"Cardenas"
"588",6059,"01/01/2014","03/31/2014","03/11/2014","Friends of Leslie Hairston","$400.00",18894,"Paul","Williams","04/21/2014",2014-03-11,"Hairston"
"589",6367,"01/01/2014","03/31/2014","03/12/2014","Alderman Michelle A. Harris","$500.00",19704,"David","Dring","06/26/2014",2014-03-12,"Harris"
"590",6289,"01/01/2014","03/31/2014","02/19/2014","Ald. Michelle A Harris","$500.00",19481,"John","George","06/11/2014",2014-02-19,"Harris"
"591",6329,"01/01/2014","03/31/2014","03/06/2014","Ald. Bob Fioretti","$500.00",19643,"John","George","06/23/2014",2014-03-06,"Fioretti"
"592",6323,"01/01/2014","03/31/2014","01/24/2014","Citizens for O'Connor","$100.00",19643,"John","George","06/23/2014",2014-01-24,"O'Connor"
"593",6321,"01/01/2014","03/31/2014","02/10/2014","Friends of Margaret Laurino","$250.00",19643,"John","George","06/23/2014",2014-02-10,"Laurino"
"594",6429,"04/01/2014","06/30/2014","04/28/2014","FRIENDS OF WILL BURNS","$300.00",19861,"John","Doerrer","07/03/2014",2014-04-28,NA
"595",6361,"01/01/2014","03/31/2014","03/12/2014","Alderman Danny Solis","$500.00",19703,"COURTNEY","NOTTAGE","06/26/2014",2014-03-12,"Solis"
"596",6359,"01/01/2014","03/31/2014","02/13/2014","Alderman Patrick J. O'Connor","$500.00",19703,"COURTNEY","NOTTAGE","06/26/2014",2014-02-13,"O'Connor"
"597",6483,"04/01/2014","06/30/2014","06/30/2014","Susana Mendoza","$100.00",17784,"Daniel","Shomon","07/10/2014",2014-06-30,"Mendoza"
"598",6591,"04/01/2014","06/30/2014","06/13/2014","Citizens for Pat Dowell","$100.00",16780,"Elizabeth","Lively","07/15/2014",2014-06-13,"Dowell"
"599",6589,"04/01/2014","06/30/2014","06/13/2014","Citizens for Reilly","$1500.00",16780,"Elizabeth","Lively","07/15/2014",2014-06-13,"Reilly"
"600",6344,"01/01/2014","03/31/2014","03/12/2014","Alderman Danny Solis","$500.00",19701,"MICHAEL","KASPER","06/26/2014",2014-03-12,"Solis"
"601",6443,"04/01/2014","06/30/2014","05/23/2014","Citizens for Brendan Reilly","$250.00",16562,"Thomas","Wolf","07/07/2014",2014-05-23,"Reilly"
"602",6450,"04/01/2014","06/30/2014","06/10/2014","Friends of Bob Fioretti","$150.00",18421,"Dean","Maragos","07/07/2014",2014-06-10,"Fioretti"
"603",6501,"04/01/2014","06/30/2014","07/11/2014","None","$0.00",17181,"John","Suzuki","07/11/2014",2014-07-11,NA
"604",9421,"01/01/2015","03/31/2015","01/13/2015","Friends of Michelle Smith","$100.00",24542,"Bridget","O'Keefe","04/27/2015",2015-01-13,"Smith"
"605",9446,"01/01/2015","03/31/2015","01/01/2015","Alderman Lona Lane","$1000.00",23041,"Thomas","Livingston","04/29/2015",2015-01-01,"Lane"
"606",9509,"01/01/2015","03/31/2015","01/14/2015","Citizens for Anthony Beale","$1000.00",22904,"James","Troutman","05/01/2015",2015-01-14,"Beale"
"607",7848,"04/01/2014","06/30/2014","04/16/2014","Alderman Mary O'Connor","$200.00",21642,"COURTNEY","NOTTAGE","10/30/2014",2014-04-16,"O'Connor"
"608",9237,"01/01/2015","03/31/2015","02/05/2015","John Arena","$500.00",22739,"Michael","Abramson","04/20/2015",2015-02-05,"Arena"
"609",9522,"01/01/2015","03/31/2015","01/29/2015","Friends of Carrie Austin 34th Ward Committeeman","$1500.00",24601,"Terry","Teele","05/01/2015",2015-01-29,"Austin"
"610",9546,"01/01/2015","03/31/2015","01/28/2015","Friends of Margaret Laurino","$1500.00",24602,"Terry","Teele","05/01/2015",2015-01-28,"Laurino"
"611",9794,"01/01/2015","03/31/2015","01/23/2015","Citizens for Michael Scott Jr.","$500.00",25302,"Gery","Chico","06/09/2015",2015-01-23,"Scott"
"612",9725,"01/01/2015","03/31/2015","01/09/2015","Friends of Leslie Hairstron","$250.00",25141,"Graham","Grady","06/03/2015",2015-01-09,NA
"613",9721,"01/01/2015","03/31/2015","01/21/2015","Citizens to Elect Emma Mitts","$250.00",25141,"Graham","Grady","06/03/2015",2015-01-21,"Mitts"
"614",7709,"07/01/2014","09/30/2014","08/27/2014","Walter Burnett","$500.00",21501,"Gery","Chico","10/24/2014",2014-08-27,"Burnett"
"615",7704,"04/01/2014","06/30/2014","06/02/2014","Ray Suarez","$500.00",21501,"Gery","Chico","10/24/2014",2014-06-02,"Suarez"
"616",7835,"01/01/2014","03/31/2014","03/12/2014","11th Ward Democratic Party","$500.00",21641,"MICHAEL","KASPER","10/30/2014",2014-03-12,NA
"617",7832,"01/01/2014","03/31/2014","02/13/2014","Alderman Patrick J. O'Connor","$500.00",21641,"MICHAEL","KASPER","10/30/2014",2014-02-13,"O'Connor"
"618",7863,"04/01/2014","06/30/2014","06/04/2014","Alderman Harry Osterman","$300.00",21643,"David","Dring","10/30/2014",2014-06-04,"Osterman"
"619",6922,"01/01/2014","03/31/2014","03/06/2014","Ald. Leslie Hairston","$250.00",20481,"John","George","08/18/2014",2014-03-06,"Hairston"
"620",6931,"04/01/2014","06/30/2014","04/24/2014","Friends of Mike Zalewski","$500.00",20481,"John","George","08/18/2014",2014-04-24,"Zalewski"
"621",8304,"10/01/2014","12/31/2014","12/15/2014","Citizens for Cappleman","$500.00",20261,"Mary","Minaghan dba MKM Services","01/18/2015",2014-12-15,"Cappleman"
"622",8299,"10/01/2014","12/31/2014","11/17/2014","Citizens for Ervin","$250.00",20261,"Mary","Minaghan dba MKM Services","01/18/2015",2014-11-17,"Ervin"
"623",9386,"01/01/2015","03/31/2015","01/16/2015","Citizens for Alderman Will Burns","$150.00",22844,"Thomas","Murphy","04/23/2015",2015-01-16,"Burns"
"624",9383,"01/01/2015","03/31/2015","01/29/2015","Friends of Raymond Lopez","$250.00",22844,"Thomas","Murphy","04/23/2015",2015-01-29,"Lopez"
"625",8332,"07/01/2014","09/30/2014","08/19/2014","Friends of Bob Fioretti","$150.00",22818,"Daniel","Finkel","01/20/2015",2014-08-19,"Fioretti"
"626",8501,"01/01/2015","03/31/2015","01/22/2015","William D. Burns","$75.00",23065,"Danielle","Cassel","03/31/2015",2015-01-22,"Burns"
"627",7677,"01/01/2014","03/31/2014","02/18/2014","Citizens for Tim Cullerton","$250.00",21485,"John","George","10/23/2014",2014-02-18,"Cullerton"
"628",7680,"04/01/2014","06/30/2014","04/29/2014","Hopkins for Chicago","$500.00",21485,"John","George","10/23/2014",2014-04-29,"Hopkins"
"629",7008,"01/01/2014","03/31/2014","02/13/2014","Alderman James Cappleman","$250.00",20683,"David","Dring","09/09/2014",2014-02-13,"Cappleman"
"630",7006,"01/01/2014","03/31/2014","03/12/2014","11th Ward Democratic Party","$500.00",20683,"David","Dring","09/09/2014",2014-03-12,NA
"631",7004,"01/01/2014","03/31/2014","03/12/2014","Alderman Danny Solis","$500.00",20683,"David","Dring","09/09/2014",2014-03-12,"Solis"
"632",7003,"01/01/2014","03/31/2014","03/12/2014","Alderman Tim Cullerton","$250.00",20683,"David","Dring","09/09/2014",2014-03-12,"Cullerton"
"633",7143,"07/01/2014","09/30/2014","08/21/2014","The Burnham Committee","$250.00",20824,"Kate","Tragesser","10/01/2014",2014-08-21,NA
"634",8327,"10/01/2014","12/31/2014","09/25/2014","Friends of Nick Sposato","$150.00",16789,"Jeff","Riley","01/20/2015",2014-09-25,"Sposato"
"635",8125,"10/01/2014","12/31/2014","10/21/2014","Friends of Twelve PAC","$500.00",16780,"Elizabeth","Lively","01/06/2015",2014-10-21,NA
"636",8124,"10/01/2014","12/31/2014","10/21/2014","44th Ward Democratic Organization","$150.00",16780,"Elizabeth","Lively","01/06/2015",2014-10-21,NA
"637",6848,"01/01/2014","03/31/2014","03/12/2014","11th Ward Democratic Party","$500.00",20246,"COURTNEY","NOTTAGE","07/24/2014",2014-03-12,NA
"638",6852,"04/01/2014","06/30/2014","06/04/2014","Alderman Will Burns","$1000.00",20246,"COURTNEY","NOTTAGE","07/24/2014",2014-06-04,"Burns"
"639",6851,"04/01/2014","06/30/2014","06/04/2014","Alderman Harry Osterman","$300.00",20246,"COURTNEY","NOTTAGE","07/24/2014",2014-06-04,"Osterman"
"640",8120,"10/01/2014","12/31/2014","11/17/2014","FRIENDS OF M. O'CONNOR","$250.00",19861,"John","Doerrer","01/06/2015",2014-11-17,NA
"641",8115,"10/01/2014","12/31/2014","12/08/2014","CITIZENS FOR LAURINO","$1000.00",19861,"John","Doerrer","01/06/2015",2014-12-08,NA
"642",8668,"01/01/2015","03/31/2015","03/25/2015","Friends for Mary O''Connor","$250.00",22495,"James","Watson","04/07/2015",2015-03-25,NA
"643",8665,"01/01/2015","03/31/2015","02/04/2015","Friends of JoAnn Thompson","$500.00",22495,"James","Watson","04/07/2015",2015-02-04,"Thompson"
"644",8670,"01/01/2015","03/31/2015","03/15/2015","Citizens for Radogno","$100.00",23016,"Beth","Doria","04/07/2015",2015-03-15,NA
"645",8111,"10/01/2014","12/31/2014","09/18/2014","Citizens for Deborah Graham","$250.00",22376,"Paul","Williams","01/06/2015",2014-09-18,"Graham"
"646",8110,"10/01/2014","12/31/2014","10/21/2014","8th Ward Democrats","$200.00",22376,"Paul","Williams","01/06/2015",2014-10-21,NA
"647",8109,"10/01/2014","12/31/2014","11/17/2014","Citizens for Jason Ervin","$500.00",22376,"Paul","Williams","01/06/2015",2014-11-17,"Ervin"
"648",8181,"01/01/2014","03/31/2014","01/23/2014","Friends of Ald. Reilly","$1000.00",22486,"John","George","01/12/2015",2014-01-23,"Reilly"
"649",8651,"01/01/2015","03/31/2015","02/10/2015","Citizens For Tunney","$500.00",22978,"Jerry","Mickelson","04/06/2015",2015-02-10,"Tunney"
"650",8454,"07/01/2014","09/30/2014","08/01/2014","Alderman John Pope","$1000.00",23040,"Thomas","Livingston","01/29/2015",2014-08-01,"Pope"
"651",8784,"01/01/2015","03/31/2015","02/19/2015","Citizens to Elect Deborah Graham","$200.00",22489,"Robert","Molaro","04/10/2015",2015-02-19,"Graham"
"652",8783,"01/01/2015","03/31/2015","02/17/2015","Friends of Pat O'Connor","$300.00",22489,"Robert","Molaro","04/10/2015",2015-02-17,"O'Connor"
"653",7388,"07/01/2014","09/30/2014","09/17/2014","Friends of Alyx Pattison","$100.00",17268,"Andrew","Peters","10/16/2014",2014-09-17,NA
"654",8360,"10/01/2014","12/31/2014","12/22/2014","Friends of Edward M Burke","$250.00",17563,"David","Narefsky","01/22/2015",2014-12-22,"Burke"
"655",6809,"01/01/2014","03/31/2014","02/10/2014","Friends of Margaret Laurino","$250.00",20201,"John","George","07/23/2014",2014-02-10,"Laurino"
"656",6815,"04/01/2014","06/30/2014","06/14/2014","Citizens for Alderman Reilly","$1500.00",20201,"John","George","07/23/2014",2014-06-14,"Reilly"
"657",6812,"04/01/2014","06/30/2014","04/14/2014","Citizens for Carrie Austin","$500.00",20201,"John","George","07/23/2014",2014-04-14,"Austin"
"658",6861,"01/01/2014","03/31/2014","02/13/2014","Alderman Margaret Laurino","$250.00",20247,"David","Dring","07/24/2014",2014-02-13,"Laurino"
"659",8234,"10/01/2014","12/31/2014","10/14/2014","Alderman Will Burns","$500.00",21642,"COURTNEY","NOTTAGE","01/12/2015",2014-10-14,"Burns"
"660",8231,"10/01/2014","12/31/2014","10/23/2014","44th Ward Democratic Organization","$300.00",21642,"COURTNEY","NOTTAGE","01/12/2015",2014-10-23,NA
"661",8230,"10/01/2014","12/31/2014","10/23/2014","Eighth Ward Regular Democratic Organization","$300.00",21642,"COURTNEY","NOTTAGE","01/12/2015",2014-10-23,NA
"662",8287,"10/01/2014","12/31/2014","11/13/2014","Edward M. Burke","$500.00",21283,"Charles","Bernardini","01/16/2015",2014-11-13,"Burke"
"663",8685,"01/01/2015","03/31/2015","02/20/2015","Citizens for Deb Mell","$1500.00",24042,"Paul","Rosenfeld","04/08/2015",2015-02-20,"Mell"
"664",9043,"01/01/2015","03/31/2015","03/26/2015","Friends of Mary O'Connor","$500.00",22387,"Dennis","O'Sullivan","04/17/2015",2015-03-26,"O'Connor"
"665",9039,"01/01/2015","03/31/2015","03/12/2015","Friends of Nick Sauer","$100.00",22387,"Dennis","O'Sullivan","04/17/2015",2015-03-12,NA
"666",9025,"01/01/2015","03/31/2015","01/22/2015","Citizens for Carrie M. Austin","$400.00",22387,"Dennis","O'Sullivan","04/17/2015",2015-01-22,"Austin"
"667",9247,"01/01/2015","03/31/2015","02/10/2015","Rod Sawyer","$70.00",23002,"Brendan","Shiller","04/20/2015",2015-02-10,"Sawyer"
"668",8957,"01/01/2015","03/31/2015","01/02/2015","Friends to Elect Toni L. Foulkes","$1000.00",22821,"YaFawn","Smith","04/16/2015",2015-01-02,"Foulkes"
"669",8951,"01/01/2015","03/31/2015","02/02/2015","Friends of Will Burns","$1500.00",22821,"YaFawn","Smith","04/16/2015",2015-02-02,"Burns"
"670",8942,"01/01/2015","03/31/2015","01/22/2015","Friends of Michele Smith","$250.00",24301,"Donna","Pugh","04/16/2015",2015-01-22,"Smith"
"671",9197,"01/01/2015","03/31/2015","02/24/2015","Citizens to Elect Emma Mitts","$250.00",22855,"Pat","Doerr","04/20/2015",2015-02-24,"Mitts"
"672",8961,"01/01/2015","03/31/2015","02/10/2015","Friends of Mike Zalewski","$500.00",22580,"William","Griffin","04/16/2015",2015-02-10,"Zalewski"
"673",9085,"01/01/2015","03/31/2015","02/11/2015","Deborah Graham","$100.00",22716,"Daniel","Shomon","04/17/2015",2015-02-11,"Graham"
"674",9187,"01/01/2015","03/31/2015","01/30/2015","Citizens for Carrie Austin","$500.00",24361,"John","George","04/20/2015",2015-01-30,"Austin"
"675",9088,"01/01/2015","03/31/2015","03/24/2015","Joe Lomanto","$500.00",24343,"Marcus","Nunes","04/17/2015",2015-03-24,NA
"676",9087,"01/01/2015","03/31/2015","02/04/2015","Friends of Alderman John Pope","$500.00",24343,"Marcus","Nunes","04/17/2015",2015-02-04,"Pope"
"677",9210,"01/01/2015","03/31/2015","03/19/2015","Citizens to Re-elect John Pope","$250.00",24425,"John","George","04/20/2015",2015-03-19,"Pope"
"678",9205,"01/01/2015","03/31/2015","01/30/2015","Citizens to Elect John Arena","$250.00",24425,"John","George","04/20/2015",2015-01-30,"Arena"
"679",9203,"01/01/2015","03/31/2015","03/10/2015","Citizens for Reilly","$500.00",24425,"John","George","04/20/2015",2015-03-10,"Reilly"
"680",9306,"01/01/2015","03/31/2015","01/26/2015","Ald. Danny Solis","$1000.00",22787,"John","Dunn","04/20/2015",2015-01-26,"Solis"
"681",9300,"01/01/2015","03/31/2015","02/20/2015","Ald. Carrie Austin","$1000.00",22787,"John","Dunn","04/20/2015",2015-02-20,"Austin"
"682",9507,"01/01/2015","03/31/2015","02/25/2015","Citizens to re-elect John Pope for Committeeman","$500.00",24583,"Michael","Brown","05/01/2015",2015-02-25,"Pope"
"683",9504,"01/01/2015","03/31/2015","02/28/2015","Friends of Patrick D. Thompson","$1000.00",24583,"Michael","Brown","05/01/2015",2015-02-28,"Thompson"
"684",7263,"07/01/2014","09/30/2014","08/21/2014","The Burnham Committee","$250.00",21221,"Kate","Tragesser","10/13/2014",2014-08-21,NA
"685",9668,"01/01/2015","03/31/2015","02/13/2015","Citizens to Elect Emma Mitts","$1500.00",24743,"Michael","Sutton","05/08/2015",2015-02-13,"Mitts"
"686",8368,"10/01/2014","12/31/2014","11/18/2014","Friends of Roderick T Sawyer (Ald) (reception sponsor)","$250.00",17395,"Arnold","Harris","01/23/2015",2014-11-18,"Sawyer"
"687",8362,"10/01/2014","12/31/2014","10/03/2014","Friends of Will Burns (Ald) (fall event sponsor)","$250.00",17395,"Arnold","Harris","01/23/2015",2014-10-03,"Burns"
"688",8384,"04/01/2014","06/30/2014","04/24/2014","Friends of Mike Zalewski","$500.00",22982,"John","George","01/26/2015",2014-04-24,"Zalewski"
"689",8375,"01/01/2014","03/31/2014","02/18/2014","Citizens for Tim Cullerton","$250.00",22982,"John","George","01/26/2015",2014-02-18,"Cullerton"
"690",8390,"07/01/2014","09/30/2014","09/30/2014","Friends of Matt O'Shea","$250.00",22982,"John","George","01/26/2015",2014-09-30,"O'Shea"
"691",9428,"01/01/2015","03/31/2015","03/31/2015","Friends of Mary O'Connor","$500.00",24543,"Bridget","O'Keefe","04/27/2015",2015-03-31,"O'Connor"
"692",6610,"04/01/2014","06/30/2014","06/04/2014","Alderman Ameya Pawar","$300.00",19703,"COURTNEY","NOTTAGE","07/16/2014",2014-06-04,"Pawar"
"693",7238,"07/01/2014","09/30/2014","09/27/2014","37TH WARD DEMOCRATIC ORG","$500.00",19861,"John","Doerrer","10/08/2014",2014-09-27,NA
"694",7235,"07/01/2014","09/30/2014","08/28/2014","CITIZENS FOR SOLIS","$500.00",19861,"John","Doerrer","10/08/2014",2014-08-28,NA
"695",7450,"07/01/2014","09/30/2014","09/25/2014","Friends of Ameya Pawar","$500.00",20402,"James","Houlihan","10/17/2014",2014-09-25,"Pawar"
"696",8422,"07/01/2014","09/30/2014","08/14/2014","Alderman Mary O'Connor","$300.00",23004,"Bridget","O'Keefe","01/27/2015",2014-08-14,"O'Connor"
"697",7570,"07/01/2014","09/30/2014","09/30/2014","Friends of Dick Durbin","$500.00",21442,"John","George","10/22/2014",2014-09-30,NA
"698",7567,"07/01/2014","09/30/2014","08/20/2014","Ald. Mary O'Connor","$500.00",21442,"John","George","10/22/2014",2014-08-20,"O'Connor"
"699",9111,"01/01/2015","03/31/2015","02/18/2015","Friends of Ameya Pawar","$500.00",24344,"Gery","Chico","04/17/2015",2015-02-18,"Pawar"
"700",9121,"01/01/2015","03/31/2015","01/06/2015","Friends of Michele Smith","$200.00",22790,"Graham","Grady","04/17/2015",2015-01-06,"Smith"
"701",9125,"01/01/2015","03/31/2015","01/21/2015","Citizens to Elect Emma Mitts","$250.00",22790,"Graham","Grady","04/17/2015",2015-01-21,"Mitts"
"702",9122,"01/01/2015","03/31/2015","01/09/2015","Friends of Leslie Hairstron","$250.00",22790,"Graham","Grady","04/17/2015",2015-01-09,NA
"703",9276,"01/01/2015","03/31/2015","02/12/2015","Alderman George A. Cardenas","$500.00",24443,"COURTNEY","NOTTAGE","04/20/2015",2015-02-12,"Cardenas"
"704",9274,"01/01/2015","03/31/2015","01/27/2015","Alderman Patrick J. O'Connor","$1000.00",24443,"COURTNEY","NOTTAGE","04/20/2015",2015-01-27,"O'Connor"
"705",9294,"01/01/2015","03/31/2015","01/20/2015","Alderman Jason Ervin","$500.00",24444,"David","Dring","04/20/2015",2015-01-20,"Ervin"
"706",9292,"01/01/2015","03/31/2015","01/20/2015","Alderman Deborah Graham","$500.00",24444,"David","Dring","04/20/2015",2015-01-20,"Graham"
"707",9287,"01/01/2015","03/31/2015","01/27/2015","Alderman Joe Moore","$250.00",24444,"David","Dring","04/20/2015",2015-01-27,"Moore"
"708",6657,"04/01/2014","06/30/2014","06/04/2014","Alderman Harry Osterman","$300.00",19704,"David","Dring","07/17/2014",2014-06-04,"Osterman"
"709",9405,"01/01/2015","03/31/2015","02/11/2015","Friends of Raul Reyes","$200.00",24521,"Kate","Tragesser","04/24/2015",2015-02-11,NA
"710",7586,"04/01/2014","06/30/2014","04/29/2014","Hopkins for Chicago","$500.00",21481,"John","George","10/23/2014",2014-04-29,"Hopkins"
"711",7588,"01/01/2014","03/31/2014","01/23/2014","Citizens to elect Deborah L Graham","$500.00",21481,"John","George","10/23/2014",2014-01-23,"Graham"
"712",7598,"07/01/2014","09/30/2014","09/30/2014","Friends of Dick Durbin","$500.00",21481,"John","George","10/23/2014",2014-09-30,NA
"713",7432,"01/01/2014","03/31/2014","02/18/2014","Citizens for Tim Cullerton","$250.00",21328,"John","George","10/17/2014",2014-02-18,"Cullerton"
"714",7497,"07/01/2014","09/30/2014","08/15/2014","Friends of Bob Fioretti","$250.00",17222,"Daniel","Finkel","10/20/2014",2014-08-15,"Fioretti"
"715",7466,"07/01/2014","09/30/2014","09/10/2014","Citizens for Danny Solis","$500.00",17289,"Rolando","Acosta","10/20/2014",2014-09-10,"Solis"
"716",7493,"07/01/2014","09/30/2014","09/04/2014","Stephanie Neely","$500.00",20064,"John","Dunn","10/20/2014",2014-09-04,NA
"717",7487,"07/01/2014","09/30/2014","07/11/2014","Citizens for Reboyras","$1500.00",17276,"Jason","Lunderman","10/20/2014",2014-07-11,"Reboyras"
"718",7481,"07/01/2014","09/30/2014","09/18/2014","Citizens for Waguespack","$1500.00",17276,"Jason","Lunderman","10/20/2014",2014-09-18,"Waguespack"
"719",7513,"04/01/2014","06/30/2014","05/14/2014","25th Ward Regular Democratic Organization","$500.00",21401,"Rolando","Acosta","10/20/2014",2014-05-14,NA
"720",6993,"01/01/2014","03/31/2014","03/12/2014","Alderman Tim Cullerton","$250.00",20682,"COURTNEY","NOTTAGE","09/09/2014",2014-03-12,"Cullerton"
"721",7506,"07/01/2014","09/30/2014","08/14/2014","Friends of Leslie A. Hairston","$1500.00",19281,"YaFawn","Smith","10/20/2014",2014-08-14,"Hairston"
"722",7981,"07/01/2014","09/30/2014","09/10/2014","Alderman Solis","$100.00",21961,"Danielle","Cassel","11/25/2014",2014-09-10,"Solis"
"723",7537,"07/01/2014","09/30/2014","09/01/2014","Citizens for James Cappelman","$250.00",21384,"Thomas","Murphy","10/21/2014",2014-09-01,NA
"724",8145,"10/01/2014","12/31/2014","12/01/2014","Friends for Mary O'Connor","$500.00",22473,"Beth","Doria","01/10/2015",2014-12-01,"O'Connor"
"725",6670,"04/01/2014","06/30/2014","04/14/2014","11th Ward Democratic Party Campaign Committee","$500.00",17269,"Mary Kay","Bonoma","07/18/2014",2014-04-14,NA
"726",7507,"07/01/2014","09/30/2014","08/15/2014","Friends of Bob Fioretti","$250.00",21387,"Daniel","Finkel","10/20/2014",2014-08-15,"Fioretti"
"727",7510,"07/01/2014","09/30/2014","08/15/2014","Friends of Bob Fioretti","$250.00",21387,"Daniel","Finkel","10/20/2014",2014-08-15,"Fioretti"
"728",7726,"04/01/2014","06/30/2014","05/18/2014","Ricardo Munoz","$500.00",21541,"Gery","Chico","10/24/2014",2014-05-18,"Munoz"
"729",8061,"10/01/2014","12/31/2014","11/14/2014","Ald. George Cardenas","$100.00",17523,"Joseph","Pilewski","12/26/2014",2014-11-14,"Cardenas"
"730",8246,"10/01/2014","12/31/2014","10/23/2014","Alderman Patrick J. O'Connor","$500.00",21641,"MICHAEL","KASPER","01/13/2015",2014-10-23,"O'Connor"
"731",8348,"10/01/2014","12/31/2014","12/08/2014","Friends of Edward M Burke","$150.00",16816,"Pat","Doerr","01/20/2015",2014-12-08,"Burke"
"732",8311,"07/01/2014","09/30/2014","07/18/2014","Friends of Fioretti","$250.00",22774,"Michael","Ezgur","01/19/2015",2014-07-18,"Fioretti"
"733",7288,"07/01/2014","09/30/2014","08/05/2014","Citizens for Deborah L. Graham","$500.00",16780,"Elizabeth","Lively","10/14/2014",2014-08-05,"Graham"
"734",7286,"07/01/2014","09/30/2014","07/09/2014","14th Ward Regular Democratic Organization","$1500.00",16780,"Elizabeth","Lively","10/14/2014",2014-07-09,NA
"735",8259,"10/01/2014","12/31/2014","07/07/2014","Patrick Daley Thompson Campaign Committee","$250.00",18721,"William","Griffin","01/14/2015",2014-07-07,"Thompson"
"736",8274,"10/01/2014","12/31/2014","12/03/2014","Kurt Summers","$345.88",20384,"Marcus","Nunes","01/15/2015",2014-12-03,NA
"737",8415,"10/01/2014","12/31/2014","10/20/2014","Preckwinkle for President","$750.00",22983,"John","George","01/26/2015",2014-10-20,"Preckwinkle"
"738",8397,"01/01/2014","03/31/2014","03/31/2014","Ald. Solis","$1000.00",22983,"John","George","01/26/2015",2014-03-31,"Solis"
"739",8395,"01/01/2014","03/31/2014","02/10/2014","Friends of Margaret Laurino","$250.00",22983,"John","George","01/26/2015",2014-02-10,"Laurino"
"740",8446,"10/01/2014","12/31/2014","12/15/2014","Lorna Lane","$1000.00",17590,"Thomas","Livingston","01/29/2015",2014-12-15,"Lane"
"741",8444,"10/01/2014","12/31/2014","12/15/2014","14th Ward Organization","$1000.00",17590,"Thomas","Livingston","01/29/2015",2014-12-15,NA
"742",8542,"01/01/2015","03/31/2015","02/05/2015","Friends of Matt O'Shea","$500.00",22431,"Paul","Rosenfeld","04/01/2015",2015-02-05,"O'Shea"
"743",6612,"01/01/2014","03/31/2014","03/14/2014","Ald. Emma Mitts","$1000.00",20064,"John","Dunn","07/16/2014",2014-03-14,"Mitts"
"744",6828,"04/01/2014","06/30/2014","06/04/2014","Alderman Ameya Pawar","$300.00",20244,"MICHAEL","KASPER","07/24/2014",2014-06-04,"Pawar"
"745",7777,"01/01/2014","03/31/2014","02/13/2014","Alderman James Cappleman","$250.00",21563,"David","Dring","10/27/2014",2014-02-13,"Cappleman"
"746",8750,"01/01/2015","03/31/2015","02/05/2015","FRIENDS OF JOANN THOMPSON","$1000.00",22378,"John","Doerrer","04/10/2015",2015-02-05,NA
"747",8747,"01/01/2015","03/31/2015","01/27/2015","CITIZENS FOR LANE","$250.00",22378,"John","Doerrer","04/10/2015",2015-01-27,NA
"748",8745,"01/01/2015","03/31/2015","01/27/2015","HOPKINS FOR CHICAGO","$1000.00",22378,"John","Doerrer","04/10/2015",2015-01-27,NA
"749",8744,"01/01/2015","03/31/2015","01/27/2015","FRIENDS OF POPE","$500.00",22378,"John","Doerrer","04/10/2015",2015-01-27,NA
"750",124,"01/01/2012","06/30/2012","06/05/2012","Alderman Richard Munoz","$250.00",8061,"David","Dring","08/08/2012",2012-06-05,"Munoz"
"751",182,"01/01/2012","06/30/2012","02/24/2012","Friends of Matt O'Shea","$1000.00",5858,"Thomas","Livingston","08/14/2012",2012-02-24,"O'Shea"
"752",188,"01/01/2012","06/30/2012","05/30/2012","Friends of George A Cardenas","$250.00",6039,"Michael","Lufrano","08/14/2012",2012-05-30,"Cardenas"
"753",41,"01/01/2012","06/30/2012","04/01/2012","Citizens for Zalewski","$500.00",5746,"Michael","Abramson","08/03/2012",2012-04-01,"Zalewski"
"754",101,"01/01/2012","06/30/2012","02/04/2012","Alderman Joe Moreno","$250.00",5796,"Michael","Cassidy","08/07/2012",2012-02-04,"Moreno"
"755",21,"01/01/2012","06/30/2012","02/09/2012","Freinds of Forti","$150.00",5860,"Richard","Ingram","08/02/2012",2012-02-09,NA
"756",129,"01/01/2012","06/30/2012","06/05/2012","25th Ward Democratic Organization","$100.00",7041,"Vi","Daley","08/09/2012",2012-06-05,NA
"757",137,"01/01/2012","06/30/2012","04/27/2012","Ald Pat O'Connor","$100.00",8123,"William","Filan","08/09/2012",2012-04-27,"O'Connor"
"758",245,"01/01/2012","06/30/2012","02/08/2012","Alderman Brendan Reilly - Club 42","$250.00",5963,"Thomas","Wolf","08/21/2012",2012-02-08,"Reilly"
"759",285,"01/01/2012","06/30/2012","05/30/2012","Friends of Will Burns","$500.00",7063,"Yafawn","Smith","08/22/2012",2012-05-30,"Burns"
"760",351,"01/01/2012","06/30/2012","06/08/2012","33rd Ward Democratic Organization","$500.00",6116,"Michael","Paulos","08/23/2012",2012-06-08,NA
"761",350,"01/01/2012","06/30/2012","06/14/2012","Citizens for Waguespack","$500.00",6116,"Michael","Paulos","08/23/2012",2012-06-14,"Waguespack"
"762",401,"01/01/2012","06/30/2012","04/03/2012","23rd Ward Alderman Nichael Zalewski","$1500.00",5855,"Joseph","DiDomizio","08/27/2012",2012-04-03,"Zalewski"
"763",384,"01/01/2012","06/30/2012","06/29/2012","Citizens for Alderman Reilly","$1000.00",8581,"John","Kelly, Jr.","08/27/2012",2012-06-29,"Reilly"
"764",382,"01/01/2012","06/30/2012","06/12/2012","The Burnham Committee","$1500.00",8581,"John","Kelly, Jr.","08/27/2012",2012-06-12,NA
"765",544,"01/01/2012","06/30/2012","05/17/2012","Alderman James Cappleman","$75.00",8749,"Mark","Lenz","08/30/2012",2012-05-17,"Cappleman"
"766",642,"01/01/2012","06/30/2012","05/10/2012","Citizens for Reilly","$1500.00",8981,"Thomas","Murphy","09/13/2012",2012-05-10,"Reilly"
"767",561,"01/01/2012","06/30/2012","02/21/2012","Friends of Walter Burnett","$450.00",8786,"Kevin","Wolfberg","09/04/2012",2012-02-21,"Burnett"
"768",626,"01/01/2012","06/30/2012","04/13/2012","Citizens to Elect John Arena","$100.00",7827,"Marcus","Nunes","09/07/2012",2012-04-13,"Arena"
"769",762,"01/01/2012","06/30/2012","02/03/2012","Friends of Ed Burke","$1000.00",9222,"Dan","Gorske","09/27/2012",2012-02-03,"Burke"
"770",743,"01/01/2012","06/30/2012","02/01/2012","Friends of Mike Zalewski","$500.00",9163,"Paul","Rosenfeld","09/26/2012",2012-02-01,"Zalewski"
"771",745,"01/01/2012","06/30/2012","02/13/2012","Rick Munoz Campaign Committee","$500.00",9164,"Paul","Rosenfeld","09/26/2012",2012-02-13,"Munoz"
"772",570,"01/01/2012","06/30/2012","06/11/2012","33rd Ward Regular Democratic Organization","$1000.00",8801,"John","Kelly, Jr.","09/04/2012",2012-06-11,NA
"773",602,"01/01/2012","06/30/2012","02/15/2012","Toni Preckwinkle","$200.00",8866,"Ann","Moroney","09/05/2012",2012-02-15,"Preckwinkle"
"774",629,"01/01/2012","06/30/2012","05/09/2012","Friends of Leslie A Hairston","$150.00",8904,"Joseph","Gattuso","09/07/2012",2012-05-09,"Hairston"
"775",481,"01/01/2012","06/30/2012","02/15/2012","Toni Preckwinkle","$200.00",7706,"Ann","Moroney","08/29/2012",2012-02-15,"Preckwinkle"
"776",523,"01/01/2012","06/30/2012","05/01/2012","Citizens for Cappleman","$500.00",5891,"Elizabeth","Lively","08/29/2012",2012-05-01,"Cappleman"
"777",515,"01/01/2012","06/30/2012","02/24/2012","The Burnham Committee","$250.00",5891,"Elizabeth","Lively","08/29/2012",2012-02-24,NA
"778",510,"01/01/2012","06/30/2012","02/14/2012","Friends of Walter Burnett","$150.00",5891,"Elizabeth","Lively","08/29/2012",2012-02-14,"Burnett"
"779",504,"01/01/2012","06/30/2012","02/07/2012","Democratic Party of the 29th Ward","$150.00",5891,"Elizabeth","Lively","08/29/2012",2012-02-07,NA
"780",624,"01/01/2012","06/30/2012","06/07/2012","43rd Ward Democrats","$1000.00",8889,"Jerry","Mickelson","09/06/2012",2012-06-07,NA
"781",981,"07/01/2012","09/30/2012","08/14/2012","Friends of Walter Burnett, Jr.","$150.00",9541,"Graham","Grady","10/11/2012",2012-08-14,"Burnett"
"782",1062,"07/01/2012","09/30/2012","09/13/2012","Alderman James Cappleman","$250.00",9582,"MICHAEL","KASPER","10/15/2012",2012-09-13,"Cappleman"
"783",1363,"07/01/2012","09/30/2012","08/20/2012","Citizens for Cappleman","$150.00",9966,"Joseph","Gattuso","11/14/2012",2012-08-20,"Cappleman"
"784",1124,"07/01/2012","09/30/2012","09/27/2012","Seventh Ward Independent Political Organization","$500.00",6131,"John","Kohlhepp","10/18/2012",2012-09-27,NA
"785",903,"07/01/2012","09/30/2012","09/07/2012","44th Ward Democratic Organizatio","$500.00",8889,"Jerry","Mickelson","10/07/2012",2012-09-07,NA
"786",809,"01/01/2012","06/30/2012","03/14/2012","25th Ward Democratic Organization","$1500.00",9343,"Yafawn","Smith","10/01/2012",2012-03-14,NA
"787",807,"01/01/2012","06/30/2012","02/23/2012","5th Ward Democratic Organization","$1000.00",9343,"Yafawn","Smith","10/01/2012",2012-02-23,NA
"788",805,"01/01/2012","06/30/2012","06/07/2012","19th Ward Regular Democratic Organization","$1000.00",9343,"Yafawn","Smith","10/01/2012",2012-06-07,NA
"789",1309,"01/01/2012","06/30/2012","03/01/2012","Ald Ed Burke","$500.00",9941,"William","Filan","11/06/2012",2012-03-01,"Burke"
"790",962,"07/01/2012","09/30/2012","09/13/2012","Alderman James Cappleman","$250.00",8061,"David","Dring","10/10/2012",2012-09-13,"Cappleman"
"791",921,"07/01/2012","09/30/2012","09/13/2012","Alderman Carrie Austin","$500.00",7771,"COURTNEY","NOTTAGE","10/09/2012",2012-09-13,"Austin"
"792",1049,"07/01/2012","09/30/2012","07/30/2012","Friends of Leslie A. Hairston","$250.00",5891,"Elizabeth","Lively","10/15/2012",2012-07-30,"Hairston"
"793",1221,"07/01/2012","09/30/2012","07/10/2012","Ald. Moreno","$250.00",5973,"Stewart","Mills","10/24/2012",2012-07-10,"Moreno"
"794",1121,"07/01/2012","09/30/2012","08/21/2012","Citizens for Pat Dowell","$100.00",5846,"Charles","Bernardini","10/18/2012",2012-08-21,"Dowell"
"795",1202,"07/01/2012","09/30/2012","07/18/2012","Proco Joe Moreno","$250.00",9255,"Michael","McClain","10/23/2012",2012-07-18,"Moreno"
"796",1304,"01/01/2012","06/30/2012","03/22/2012","The Burnham Committee","$1500.00",9923,"Mario","Bohorquez","11/05/2012",2012-03-22,NA
"797",1144,"01/01/2012","06/30/2012","06/05/2012","Alderman Patrick O'Connor","$500.00",9704,"MICHAEL","KASPER","10/19/2012",2012-06-05,"O'Connor"
"798",1143,"01/01/2012","06/30/2012","03/02/2012","Alderman Proco Joe Moreno","$250.00",9704,"MICHAEL","KASPER","10/19/2012",2012-03-02,"Moreno"
"799",1241,"01/01/2012","06/30/2012","02/22/2012","Friends of Walter Burnett Jr.","$250.00",9883,"Bridget","O'Keefe","10/30/2012",2012-02-22,"Burnett"
"800",1101,"07/01/2012","09/30/2012","09/13/2012","Brendan Reilly","$150.00",8482,"Daniel","Shomon","10/18/2012",2012-09-13,"Reilly"
"801",1288,"07/01/2012","09/30/2012","08/30/2012","Friends of Michelle Harris","$500.00",5716,"Stacy","Davis Gates","11/01/2012",2012-08-30,"Harris"
"802",1286,"07/01/2012","09/30/2012","08/30/2012","Friends to Elect Toni Foulkes","$300.00",5716,"Stacy","Davis Gates","11/01/2012",2012-08-30,"Foulkes"
"803",1312,"01/01/2012","06/30/2012","04/27/2012","Ald Pat O'Connor","$100.00",9942,"William","Filan","11/06/2012",2012-04-27,"O'Connor"
"804",1164,"01/01/2012","06/30/2012","04/13/2012","Citizens to Elect John Arena","$100.00",9721,"Marcus","Nunes","10/20/2012",2012-04-13,"Arena"
"805",1344,"01/01/2012","06/30/2012","11/08/2012","0","$0.00",9959,"Helen","Shiller","11/09/2012",2012-11-08,NA
"806",1142,"07/01/2012","09/30/2012","08/08/2012","25th Ward Regular Democratic Organization","$100.00",9701,"Steven","Friedland","10/19/2012",2012-08-08,NA
"807",1242,"01/01/2012","06/30/2012","02/22/2012","Friends of Walter Burnett Jr.","$250.00",9885,"Bridget","O'Keefe","10/30/2012",2012-02-22,"Burnett"
"808",1292,"01/01/2012","06/30/2012","06/08/2012","Citizens for Mell","$750.00",9910,"Jerome","Schain","11/01/2012",2012-06-08,"Mell"
"809",1445,"01/01/2012","06/30/2012","05/25/2012","Citizens for Cappleman","$250.00",10101,"Stacy","Davis Gates","12/13/2012",2012-05-25,"Cappleman"
"810",1901,"10/01/2012","12/31/2012","12/11/2012","none","$0.00",9266,"Bernard","Parisot","01/17/2013",2012-12-11,NA
"811",1381,"07/01/2012","09/30/2012","08/08/2012","25th Ward Regular Democratic Organization","$100.00",9976,"Steven","Friedland","11/20/2012",2012-08-08,NA
"812",1510,"01/01/2012","06/30/2012","06/05/2012","Alderman Will Burns","$500.00",10282,"COURTNEY","NOTTAGE","12/21/2012",2012-06-05,"Burns"
"813",1645,"10/01/2012","12/31/2012","11/02/2012","Friends of Ed Burke","$200.00",8848,"Samuel","Polsky","01/08/2013",2012-11-02,"Burke"
"814",1862,"10/01/2012","12/31/2012","12/04/2012","Alderman Ed Burke","$250.00",5770,"David","Narefsky","01/16/2013",2012-12-04,"Burke"
"815",1946,"10/01/2012","12/31/2012","10/18/2012","CITIZENS FOR HOWARD BROOKINS JR.","$250.00",9104,"Paul","Williams","01/18/2013",2012-10-18,NA
"816",1908,"10/01/2012","12/31/2012","05/07/2012","Alderman Toni Foulkes","$1000.00",9247,"Thomas","Livingston","01/17/2013",2012-05-07,"Foulkes"
"817",1403,"01/01/2012","06/30/2012","06/04/2012","Friends of Will Burns","$750.00",10071,"Jeanette","Sublett","12/11/2012",2012-06-04,"Burns"
"818",1804,"10/01/2012","12/31/2012","10/16/2012","Friends of Edward M. Burke","$1500.00",5891,"Elizabeth","Lively","01/14/2013",2012-10-16,"Burke"
"819",2165,"10/01/2012","12/31/2012","12/19/2012","Ald Edward Burke","$1000.00",5684,"Terry","Gabinski","02/04/2013",2012-12-19,"Burke"
"820",2193,"10/01/2012","12/31/2012","11/27/2012","27th Ward Democrats","$500.00",11821,"Rolando","Acosta","02/13/2013",2012-11-27,NA
"821",1949,"10/01/2012","12/31/2012","11/26/2012","Friends of Ed Burke","$300.00",10071,"Jeanette","Sublett","01/18/2013",2012-11-26,"Burke"
"822",2141,"10/01/2012","12/31/2012","10/10/2012","Friends of Will Burns","$500.00",8889,"Jerry","Mickelson","02/03/2013",2012-10-10,"Burns"
"823",2221,"01/01/2012","06/30/2012","06/28/2012","Alderman Tim Cullerton","$250.00",11904,"William","Smith","02/26/2013",2012-06-28,"Cullerton"
"824",2199,"10/01/2012","12/31/2012","10/01/2012","Ald Joe Moore","$150.00",11828,"William","Filan","02/13/2013",2012-10-01,"Moore"
"825",1992,"10/01/2012","12/31/2012","10/30/2012","8th Ward Regular Democratic Organization","$500.00",9946,"Yafawn","Smith","01/23/2013",2012-10-30,NA
"826",1991,"10/01/2012","12/31/2012","12/13/2012","Friends of Carrie Austin","$500.00",9946,"Yafawn","Smith","01/23/2013",2012-12-13,"Austin"
"827",1989,"10/01/2012","12/31/2012","10/18/2012","Friends of JoAnn Thompson","$500.00",9946,"Yafawn","Smith","01/23/2013",2012-10-18,"Thompson"
"828",2043,"10/01/2012","12/31/2012","10/24/2012","Alderman Pat O'Connor - Ad Book","$1200.00",5690,"Lisa","Ouzounion","01/28/2013",2012-10-24,"O'Connor"
"829",2041,"10/01/2012","12/31/2012","12/04/2012","Alderman Ed Burke - Fundraiser","$1500.00",5690,"Lisa","Ouzounion","01/28/2013",2012-12-04,"Burke"
"830",2032,"10/01/2012","12/31/2012","12/11/2012","Friends of Ameya Pawar","$1500.00",6116,"Michael","Paulos","01/28/2013",2012-12-11,"Pawar"
"831",2023,"10/01/2012","12/31/2012","11/01/2012","28th Ward Democratic Organization","$1000.00",6116,"Michael","Paulos","01/28/2013",2012-11-01,NA
"832",1971,"10/01/2012","12/31/2012","01/22/2013","N/A","$0.00",9240,"Charlotte","Knight-Marshall","01/22/2013",2013-01-22,NA
"833",2185,"10/01/2012","12/31/2012","04/27/2012","Citizens for Patrick J. O'Connor","$100.00",11806,"Stephen","Friedman","02/11/2013",2012-04-27,"O'Connor"
"834",2456,"01/01/2013","03/31/2013","03/08/2013","2nd Ward Democratic Organization","$125.00",11022,"Elizabeth","Lively","04/12/2013",2013-03-08,NA
"835",2455,"01/01/2013","03/31/2013","03/08/2013","Friends to Elect Toni L. Foulkes","$100.00",11022,"Elizabeth","Lively","04/12/2013",2013-03-08,"Foulkes"
"836",2451,"01/01/2013","03/31/2013","02/15/2013","Neighbors for Harry Osterman","$96.00",11022,"Elizabeth","Lively","04/12/2013",2013-02-15,"Osterman"
"837",2551,"01/01/2013","03/31/2013","02/21/2013","Alderman Richard Mell","$300.00",11509,"MICHAEL","KASPER","04/19/2013",2013-02-21,"Mell"
"838",2547,"01/01/2013","03/31/2013","01/16/2013","Alderman George Cardenas","$500.00",11509,"MICHAEL","KASPER","04/19/2013",2013-01-16,"Cardenas"
"839",2604,"01/01/2013","03/31/2013","03/27/2013","25th Ward Regular Democratic Organization","$500.00",11822,"Rolando","Acosta","04/22/2013",2013-03-27,NA
"840",2602,"01/01/2013","03/31/2013","01/27/2013","2nd Ward Democratic Organization","$500.00",11822,"Rolando","Acosta","04/22/2013",2013-01-27,NA
"841",2613,"01/01/2013","03/31/2013","02/21/2013","Alderman Proco ""Joe"" Moreno","$300.00",12816,"MICHAEL","KASPER","04/22/2013",2013-02-21,"Moreno"
"842",2608,"01/01/2013","03/31/2013","02/21/2013","Alderman Jason Ervin","$300.00",12816,"MICHAEL","KASPER","04/22/2013",2013-02-21,"Ervin"
"843",2615,"01/01/2013","03/31/2013","02/21/2013","Alderman Richard Mell","$300.00",12817,"COURTNEY","NOTTAGE","04/22/2013",2013-02-21,"Mell"
"844",2507,"01/01/2013","03/31/2013","01/16/2013","Alderman George Cardenas","$300.00",11908,"Mark","Fary","04/17/2013",2013-01-16,"Cardenas"
"845",2627,"01/01/2013","03/31/2013","02/21/2013","Alderman Brendan Reilly","$500.00",12818,"David","Dring","04/22/2013",2013-02-21,"Reilly"
"846",2625,"01/01/2013","03/31/2013","02/21/2013","Alderman Jason Ervin","$300.00",12818,"David","Dring","04/22/2013",2013-02-21,"Ervin"
"847",2621,"01/01/2013","03/31/2013","02/21/2013","Alderman Richard F. Mell","$300.00",12818,"David","Dring","04/22/2013",2013-02-21,"Mell"
"848",2629,"01/01/2013","03/31/2013","01/25/2013","Friends of George Cardenas","$500.00",11463,"Paul","Rosenfeld","04/22/2013",2013-01-25,"Cardenas"
"849",2641,"01/01/2013","03/31/2013","01/31/2013","Beale for Congress","$2500.00",12806,"David","Doig","04/22/2013",2013-01-31,"Beale"
"850",2364,"01/01/2013","03/31/2013","02/21/2013","Alderman Proco Joe Moreno","$300.00",11513,"David","Dring","04/09/2013",2013-02-21,"Moreno"
"851",2361,"01/01/2013","03/31/2013","01/16/2013","Alderman George Cardenas","$500.00",11513,"David","Dring","04/09/2013",2013-01-16,"Cardenas"
"852",2362,"01/01/2013","03/31/2013","02/21/2013","Alderman Brendan Reilly","$500.00",11513,"David","Dring","04/09/2013",2013-02-21,"Reilly"
"853",2403,"01/01/2013","03/31/2013","02/21/2013","Friends of Alderman Beale for Congress","$150.00",11004,"Norma","Reyes","04/11/2013",2013-02-21,"Beale"
"854",3467,"04/01/2013","06/30/2013","06/07/2013","Alderman Michele Smith","$250.00",12985,"David","Dring","07/10/2013",2013-06-07,"Smith"
"855",3464,"04/01/2013","06/30/2013","06/07/2013","Alderman Walter Burnett","$500.00",12985,"David","Dring","07/10/2013",2013-06-07,"Burnett"
"856",3183,"01/01/2013","03/31/2013","03/25/2013","FRIENDS OF MICHELLE HARRIS","$250.00",13788,"William","Banks","06/26/2013",2013-03-25,NA
"857",3488,"04/01/2013","06/30/2013","04/18/2013","Citizens for O'Connor","$250.00",11022,"Elizabeth","Lively","07/11/2013",2013-04-18,"O'Connor"
"858",2907,"01/01/2013","03/31/2013","03/12/2013","Alderman Michelle Harris","$500.00",13041,"MICHAEL","KASPER","05/06/2013",2013-03-12,"Harris"
"859",3042,"01/01/2013","03/31/2013","02/25/2013","Ald. Jason Ervin","$250.00",13362,"John","Dunn","05/24/2013",2013-02-25,"Ervin"
"860",3303,"04/01/2013","06/30/2013","05/16/2013","the Burnham Committee Legal Leaders Breakfast","$1500.00",13361,"Mara","Georges","07/03/2013",2013-05-16,NA
"861",3517,"04/01/2013","06/30/2013","06/04/2013","Citizens for Cappleman","$250.00",14043,"Graham","Grady","07/11/2013",2013-06-04,"Cappleman"
"862",3486,"04/01/2013","06/30/2013","06/06/2013","19th Ward Organization","$75.00",12766,"Dean","Maragos","07/11/2013",2013-06-06,NA
"863",2702,"01/01/2013","03/31/2013","03/11/2013","Chicago for Rahm Emanuel","$500.00",10403,"Michael","Sutton","04/25/2013",2013-03-11,"Emanuel"
"864",2847,"01/01/2013","03/31/2013","02/21/2013","Alderman Proco ""Joe"" Moreno","$300.00",12983,"MICHAEL","KASPER","05/01/2013",2013-02-21,"Moreno"
"865",2852,"01/01/2013","03/31/2013","02/21/2013","Alderman Proco ""Joe"" Moreno","$300.00",12984,"COURTNEY","NOTTAGE","05/01/2013",2013-02-21,"Moreno"
"866",3262,"04/01/2013","06/30/2013","05/08/2013","Friends of Will Burns","$500.00",12183,"Jerry","Mickelson","07/01/2013",2013-05-08,"Burns"
"867",2921,"01/01/2013","03/31/2013","01/18/2013","Alderman Patrick O'Connor","$250.00",13127,"Jeanette","Sublett","05/08/2013",2013-01-18,"O'Connor"
"868",3102,"01/01/2013","03/31/2013","02/14/2013","CITIZENS FOR JOE MOORE","$250.00",13723,"William","Banks","06/17/2013",2013-02-14,NA
"869",3021,"01/01/2013","03/31/2013","01/15/2013","Ald. George Cardenas","$250.00",13321,"John","Dunn","05/21/2013",2013-01-15,"Cardenas"
"870",3335,"04/01/2013","06/30/2013","05/28/2013","4th Ward Alderman Will Burns","$250.00",13947,"Mara","Georges","07/03/2013",2013-05-28,"Burns"
"871",3334,"04/01/2013","06/30/2013","05/16/2013","the Burnham Committee Legal Leaders Breakfast","$1500.00",13947,"Mara","Georges","07/03/2013",2013-05-16,NA
"872",3909,"04/01/2013","06/30/2013","05/04/2013","Friends of Leslie Hairston","$250.00",14445,"John","George","07/29/2013",2013-05-04,"Hairston"
"873",3723,"01/01/2013","03/31/2013","02/21/2013","Alderman Brendan Reilly","$500.00",14322,"COURTNEY","NOTTAGE","07/19/2013",2013-02-21,"Reilly"
"874",3722,"01/01/2013","03/31/2013","02/21/2013","Alderman Jason Ervin","$300.00",14322,"COURTNEY","NOTTAGE","07/19/2013",2013-02-21,"Ervin"
"875",3941,"04/01/2013","06/30/2013","04/17/2013","Citizens for O'Connor","$100.00",14561,"Katriina","McGuire","08/01/2013",2013-04-17,"O'Connor"
"876",3801,"04/01/2013","06/30/2013","05/22/2013","Mariyana T Spryopoulos","$100.00",11583,"Jorge","Perez","07/22/2013",2013-05-22,NA
"877",3810,"04/01/2013","06/30/2013","06/25/2013","43rd Ward Democrats","$1000.00",11090,"Michael","Paulos","07/22/2013",2013-06-25,NA
"878",3808,"04/01/2013","06/30/2013","05/07/2013","Citizens to Elect Deborah Graham","$500.00",11090,"Michael","Paulos","07/22/2013",2013-05-07,"Graham"
"879",3806,"04/01/2013","06/30/2013","04/17/2013","Friends of Walter Burnett","$450.00",11090,"Michael","Paulos","07/22/2013",2013-04-17,"Burnett"
"880",3823,"04/01/2013","06/30/2013","05/29/2013","Friends of Will Burns","$1500.00",11390,"Yafawn","Smith","07/23/2013",2013-05-29,"Burns"
"881",3912,"04/01/2013","06/30/2013","05/27/2013","19th Ward Democratic Organization","$250.00",14446,"John","George","07/29/2013",2013-05-27,NA
"882",3922,"04/01/2013","06/30/2013","05/01/2013","Walter Burnett","$150.00",14463,"Bridget","O'Keefe","07/30/2013",2013-05-01,"Burnett"
"883",4241,"01/01/2013","03/31/2013","02/21/2013","Alderman Proco ""Joe"" Moreno","$300.00",15305,"MICHAEL","KASPER","09/24/2013",2013-02-21,"Moreno"
"884",4258,"04/01/2013","06/30/2013","06/07/2013","11th Ward Democratic Party","$500.00",15306,"COURTNEY","NOTTAGE","09/24/2013",2013-06-07,NA
"885",4257,"04/01/2013","06/30/2013","06/06/2013","Alderman Mike Zalewski","$500.00",15306,"COURTNEY","NOTTAGE","09/24/2013",2013-06-06,"Zalewski"
"886",4255,"04/01/2013","06/30/2013","06/07/2013","Alderman Walter Burnett","$500.00",15306,"COURTNEY","NOTTAGE","09/24/2013",2013-06-07,"Burnett"
"887",4254,"04/01/2013","06/30/2013","06/07/2013","Alderman Patrick J. O'Connor","$500.00",15306,"COURTNEY","NOTTAGE","09/24/2013",2013-06-07,"O'Connor"
"888",4263,"04/01/2013","06/30/2013","06/07/2013","Alderman Joe Moore","$250.00",15307,"David","Dring","09/24/2013",2013-06-07,"Moore"
"889",4262,"04/01/2013","06/30/2013","06/07/2013","Alderman Michele Smith","$250.00",15307,"David","Dring","09/24/2013",2013-06-07,"Smith"
"890",4272,"01/01/2013","03/31/2013","02/21/2013","Alderman Brendan Reilly","$500.00",15307,"David","Dring","09/24/2013",2013-02-21,"Reilly"
"891",4266,"01/01/2013","03/31/2013","02/21/2013","Alderman Richard F. Mell","$300.00",15307,"David","Dring","09/24/2013",2013-02-21,"Mell"
"892",4184,"04/01/2013","06/30/2013","05/01/2013","Walter Burnett","$150.00",15224,"Bridget","O'Keefe","09/16/2013",2013-05-01,"Burnett"
"893",4321,"04/01/2013","06/30/2013","05/16/2013","the Burnham Committee Legal Leaders Breakfast","$1500.00",15386,"Mara","Georges","10/01/2013",2013-05-16,NA
"894",4320,"04/01/2013","06/30/2013","05/28/2013","4th Ward Alderman Will Burns","$250.00",15386,"Mara","Georges","10/01/2013",2013-05-28,"Burns"
"895",4338,"01/01/2013","03/31/2013","03/14/2013","Citizens for Alderman Arena","$150.00",15405,"Thomas","Murphy","10/07/2013",2013-03-14,"Arena"
"896",4284,"04/01/2013","06/30/2013","04/01/2013","25th Ward Regular Democratic Organization","$1500.00",15321,"Mara","Georges","09/25/2013",2013-04-01,NA
"897",4328,"07/01/2013","09/30/2013","09/28/2013","Citzens for O'Connor","$500.00",14124,"John","Doerrer","10/03/2013",2013-09-28,"O'Connor"
"898",4324,"07/01/2013","09/30/2013","07/01/2013","Citizens for Cardenas","$1500.00",14124,"John","Doerrer","10/03/2013",2013-07-01,"Cardenas"
"899",4106,"04/01/2013","06/30/2013","04/17/2013","Friends of Ameya Pawar","$500.00",15084,"Jerome","Schain","09/05/2013",2013-04-17,"Pawar"
"900",4148,"04/01/2013","06/30/2013","06/07/2013","Alderman Patrick J. O'Connor","$500.00",15221,"MICHAEL","KASPER","09/16/2013",2013-06-07,"O'Connor"
"901",4176,"01/01/2013","03/31/2013","03/12/2013","Alderman Michelle A. Harris","$500.00",15223,"David","Dring","09/16/2013",2013-03-12,"Harris"
"902",5146,"10/01/2013","12/31/2013","12/13/2013","Neighbors for Harry Osterman","$500.00",12183,"Jerry","Mickelson","01/12/2014",2013-12-13,"Osterman"
"903",5144,"10/01/2013","12/31/2013","12/06/2013","Citizens to Elect John Arena","$500.00",12183,"Jerry","Mickelson","01/12/2014",2013-12-06,"Arena"
"904",5142,"10/01/2013","12/31/2013","11/22/2013","Friends of Bob Fioretti","$500.00",12183,"Jerry","Mickelson","01/12/2014",2013-11-22,"Fioretti"
"905",4374,"07/01/2013","09/30/2013","09/10/2013","Alderman Brendan Reilly","$500.00",12766,"Dean","Maragos","10/11/2013",2013-09-10,"Reilly"
"906",4371,"07/01/2013","09/30/2013","06/22/2013","45th Ward Democratic Organization","$100.00",12766,"Dean","Maragos","10/11/2013",2013-06-22,NA
"907",4370,"07/01/2013","09/30/2013","06/20/2013","37th Ward Democratic Organization","$750.00",12766,"Dean","Maragos","10/11/2013",2013-06-20,NA
"908",4405,"07/01/2013","09/30/2013","08/15/2013","Friends of George A. Cardenas","$300.00",11908,"Mark","Fary","10/15/2013",2013-08-15,"Cardenas"
"909",4570,"04/01/2013","06/30/2013","05/01/2013","Walter Burnett","$150.00",15525,"Bridget","O'Keefe","10/22/2013",2013-05-01,"Burnett"
"910",4573,"04/01/2013","06/30/2013","05/01/2013","Walter Burnett","$150.00",15526,"Bridget","O'Keefe","10/22/2013",2013-05-01,"Burnett"
"911",4539,"07/01/2012","09/30/2012","07/25/2013","Citizens for Chandler","$500.00",11390,"Yafawn","Smith","10/21/2013",2013-07-25,"Chandler"
"912",4441,"01/01/2013","03/31/2013","02/26/2013","State Senator Toi Hutchinson","$250.00",15469,"Bridget","O'Keefe","10/17/2013",2013-02-26,NA
"913",4576,"04/01/2013","06/30/2013","06/21/2013","The New 37th Ward Democratic Organization","$125.00",15535,"Graham","Grady","10/22/2013",2013-06-21,NA
"914",4444,"07/01/2013","09/30/2013","09/20/2013","Friends of Mary O'Connor","$250.00",11984,"Mary","Minaghan dba MKM Services","10/17/2013",2013-09-20,"O'Connor"
"915",4614,"04/01/2013","06/30/2013","05/04/2013","Friends of Leslie Hairston","$250.00",15542,"John","George","10/23/2013",2013-05-04,"Hairston"
"916",4612,"04/01/2013","06/30/2013","05/04/2013","40th Ward Regular Democratic Organization","$250.00",15542,"John","George","10/23/2013",2013-05-04,NA
"917",4702,"04/01/2013","06/30/2013","04/22/2013","2nd Ward Democratic Organization Jazz Showcase","$250.00",15967,"Mara","Georges","11/25/2013",2013-04-22,NA
"918",4771,"01/01/2013","03/31/2013","02/21/2013","Alderman Jason Ervin","$300.00",16021,"MICHAEL","KASPER","12/05/2013",2013-02-21,"Ervin"
"919",4778,"07/01/2013","09/30/2013","09/05/2013","Alderman Ricardo Munoz","$250.00",16021,"MICHAEL","KASPER","12/05/2013",2013-09-05,"Munoz"
"920",4780,"04/01/2013","06/30/2013","05/01/2013","Friends of Will Burns","$300.00",16022,"Graham","Grady","12/05/2013",2013-05-01,"Burns"
"921",4469,"01/01/2013","03/31/2013","02/21/2013","Tim Cullerton","$250.00",15483,"Marcus","Nunes","10/18/2013",2013-02-21,"Cullerton"
"922",4741,"04/01/2013","06/30/2013","06/20/2013","Citizens for Tunney","$300.00",16001,"Mara","Georges","12/04/2013",2013-06-20,"Tunney"
"923",5207,"10/01/2013","12/31/2013","11/13/2013","Friends of Bob Fioretti","$125.00",11022,"Elizabeth","Lively","01/14/2014",2013-11-13,"Fioretti"
"924",5102,"10/01/2013","12/31/2013","11/20/2013","Citizens for Jason Ervin","$500.00",11187,"Paul","Williams","01/10/2014",2013-11-20,"Ervin"
"925",4841,"04/01/2013","06/30/2013","04/11/2013","Alderman Rod Sawyer","$150.00",16181,"Danielle","Cassel","12/17/2013",2013-04-11,"Sawyer"
"926",5292,"10/01/2013","12/31/2013","10/24/2013","Friends of Ray Suarez","$250.00",14742,"Gery","Chico","01/17/2014",2013-10-24,"Suarez"
"927",5053,"10/01/2013","12/31/2013","10/28/2013","Democratic National Committee","$250.00",13127,"Jeanette","Sublett","01/07/2014",2013-10-28,NA
"928",5046,"10/01/2013","12/31/2013","12/18/2013","Alderman Anthony Beale","$500.00",15306,"COURTNEY","NOTTAGE","01/07/2014",2013-12-18,"Beale"
"929",5067,"10/01/2013","12/31/2013","11/27/2013","Friends of Ray Suarez","$250.00",16251,"Graham","Grady","01/08/2014",2013-11-27,"Suarez"
"930",5103,"10/01/2013","12/31/2013","11/18/2013","Citizens for Patrick O'Connor","$200.00",15085,"Jeffrey","Glass","01/10/2014",2013-11-18,"O'Connor"
"931",4883,"04/01/2013","06/30/2013","05/01/2013","Friends of Will Burns","$300.00",16251,"Graham","Grady","12/19/2013",2013-05-01,"Burns"
"932",4893,"04/01/2013","06/30/2013","04/01/2013","25th Ward Regular Democratic Organization","$1500.00",16252,"Mara","Georges","12/19/2013",2013-04-01,NA
"933",5055,"10/01/2013","12/31/2013","12/31/2013","N/A","$0.00",11710,"Morgan","Bassey","01/07/2014",2013-12-31,NA
"934",5104,"10/01/2013","12/31/2013","12/13/2013","Citizens for Brendan Reilly","$1500.00",11984,"Mary","Minaghan dba MKM Services","01/10/2014",2013-12-13,"Reilly"
"935",5109,"10/01/2013","12/31/2013","11/12/2013","Citizens for Representative Acevedo","$150.00",14361,"Kate","Tragesser","01/10/2014",2013-11-12,NA
"936",5285,"10/01/2013","12/31/2013","12/05/2013","Alderman Pat Dowell","$1500.00",12181,"Terry","Teele","01/17/2014",2013-12-05,"Dowell"
"937",5430,"10/01/2013","12/31/2013","10/02/2013","Friends of Proco Joe Moreno","$500.00",14444,"Rolando","Acosta","01/21/2014",2013-10-02,"Moreno"
"938",5541,"07/01/2013","09/30/2013","09/19/2013","Friends of Margaret Laurino","$250.00",17484,"John","George","01/30/2014",2013-09-19,"Laurino"
"939",5545,"04/01/2013","06/30/2013","05/04/2013","40th Ward Regular Democratic Organization","$250.00",17484,"John","George","01/30/2014",2013-05-04,NA
"940",5262,"10/01/2013","12/31/2013","11/15/2013","Alderman Will Burns","$50.00",15392,"Sylvia","Michas","01/16/2014",2013-11-15,"Burns"
"941",5268,"10/01/2013","12/31/2013","10/04/2013","Friends of Carrie Austin","$85.00",15502,"Charles","Bernardini","01/16/2014",2013-10-04,"Austin"
"942",5414,"10/01/2013","12/31/2013","11/01/2013","Citizens for Mell","$1500.00",11481,"Lisa","Ouzounion","01/21/2014",2013-11-01,"Mell"
"943",5406,"10/01/2013","12/31/2013","10/01/2013","44th Ward Democratic Organization","$1000.00",11481,"Lisa","Ouzounion","01/21/2014",2013-10-01,NA
"944",5427,"10/01/2013","12/31/2013","11/01/2013","Citizens for Waquespack","$1500.00",17280,"Lisa","Ouzounion","01/21/2014",2013-11-01,NA
"945",5504,"10/01/2013","12/31/2013","11/21/2013","Friends of George Cardenas","$250.00",11583,"Jorge","Perez","01/28/2014",2013-11-21,"Cardenas"
"946",5581,"10/01/2013","12/31/2013","10/28/2013","Alderman Mary O'Connor","$500.00",11565,"Eileen","Mitchell","02/04/2014",2013-10-28,"O'Connor"
"947",5385,"10/01/2013","12/31/2013","11/18/2013","Citizens for Waguespack","$50.00",11358,"Jonathan","Perman","01/20/2014",2013-11-18,"Waguespack"
"948",5322,"10/01/2013","12/31/2013","10/23/2013","Citizens for Patrick O'Connor","$500.00",11908,"Mark","Fary","01/19/2014",2013-10-23,"O'Connor"
"949",5400,"01/01/2013","03/31/2013","02/25/2013","Ald. Jason Ervin","$250.00",17240,"John","Dunn","01/20/2014",2013-02-25,"Ervin"
"950",5261,"10/01/2013","12/31/2013","10/31/2013","Alderman Brendan Reilly","$500.00",15471,"Elizabeth","Brunsvold","01/16/2014",2013-10-31,"Reilly"
"951",5919,"01/01/2014","03/31/2014","03/31/2014","Alderman Daniel Solis","$100.00",17229,"Sylvia","Michas","04/15/2014",2014-03-31,"Solis"
"952",6061,"01/01/2014","03/31/2014","03/10/2014","Friends of Leslie Hairston","$1500.00",16831,"Michael","Sutton","04/21/2014",2014-03-10,"Hairston"
"953",5902,"01/01/2014","03/31/2014","02/13/2014","Alderman Margaret Laurino","$250.00",18443,"David","Dring","04/15/2014",2014-02-13,"Laurino"
"954",5823,"01/01/2014","03/31/2014","02/13/2014","Alderman Patrick J. O'Connor","$500.00",18442,"COURTNEY","NOTTAGE","04/11/2014",2014-02-13,"O'Connor"
"955",5821,"01/01/2014","03/31/2014","02/13/2014","Alderman James Cappleman","$250.00",18442,"COURTNEY","NOTTAGE","04/11/2014",2014-02-13,"Cappleman"
"956",5846,"01/01/2014","03/31/2014","02/24/2014","The New 37th Ward Democratic Organization","$100.00",16780,"Elizabeth","Lively","04/11/2014",2014-02-24,NA
"957",5843,"01/01/2014","03/31/2014","02/12/2014","Friends to Elect Toni L. Foulkes","$200.00",16780,"Elizabeth","Lively","04/11/2014",2014-02-12,"Foulkes"
"958",5891,"01/01/2014","03/31/2014","03/06/2014","40th Ward Democratic Organization","$150.00",18421,"Dean","Maragos","04/14/2014",2014-03-06,NA
"959",5888,"01/01/2014","03/31/2014","02/27/2014","46th Ward Organization","$250.00",18421,"Dean","Maragos","04/14/2014",2014-02-27,NA
"960",5886,"01/01/2014","03/31/2014","01/20/2014","Citizens for Ald. Brandon Reilly","$500.00",18421,"Dean","Maragos","04/14/2014",2014-01-20,"Reilly"
"961",5885,"01/01/2014","03/31/2014","01/15/2014","Friends of Edward M. Burke","$500.00",18723,"John","Corrigan","04/14/2014",2014-01-15,"Burke"
"962",6363,"01/01/2014","03/31/2014","02/13/2014","Alderman Patrick J. O'Connor","$500.00",19704,"David","Dring","06/26/2014",2014-02-13,"O'Connor"
"963",6427,"04/01/2014","06/30/2014","05/28/2014","CITIZENS FOR JOE MOORE","$500.00",16587,"John","Doerrer","07/03/2014",2014-05-28,NA
"964",6426,"04/01/2014","06/30/2014","05/28/2014","CITIZENS FOR MITTS","$500.00",16587,"John","Doerrer","07/03/2014",2014-05-28,NA
"965",6425,"04/01/2014","06/30/2014","04/28/2014","FRIENDS OF MARY O'CONNOR","$500.00",16587,"John","Doerrer","07/03/2014",2014-04-28,NA
"966",6424,"04/01/2014","06/30/2014","04/28/2014","FRIENDS OF WILL BURNS","$300.00",16587,"John","Doerrer","07/03/2014",2014-04-28,NA
"967",6421,"04/01/2014","06/30/2014","04/28/2014","FRIENDS OF ZALEWSKI","$1000.00",16587,"John","Doerrer","07/03/2014",2014-04-28,NA
"968",6383,"04/01/2014","06/30/2014","06/09/2014","Deputy Chief Jerry Knapp","$0.00",17032,"Michele","Nelson","06/30/2014",2014-06-09,NA
"969",6328,"01/01/2014","03/31/2014","01/23/2014","Citizens to elect Deborah L Graham","$500.00",19643,"John","George","06/23/2014",2014-01-23,"Graham"
"970",6433,"04/01/2014","06/30/2014","04/28/2014","CITIZENS FOR AUSTIN","$1000.00",19861,"John","Doerrer","07/03/2014",2014-04-28,NA
"971",6356,"01/01/2014","03/31/2014","03/12/2014","Alderman Tim Cullerton","$250.00",19703,"COURTNEY","NOTTAGE","06/26/2014",2014-03-12,"Cullerton"
"972",6593,"04/01/2014","06/30/2014","06/16/2014","Friends of Ameya Pawar","$150.00",16780,"Elizabeth","Lively","07/15/2014",2014-06-16,"Pawar"
"973",6586,"04/01/2014","06/30/2014","05/20/2014","19th Ward Democratic Organization","$125.00",16780,"Elizabeth","Lively","07/15/2014",2014-05-20,NA
"974",6347,"01/01/2014","03/31/2014","02/13/2014","Alderman Margaret Laurino","$250.00",19701,"MICHAEL","KASPER","06/26/2014",2014-02-13,"Laurino"
"975",6346,"01/01/2014","03/31/2014","02/13/2014","Alderman James Cappleman","$250.00",19701,"MICHAEL","KASPER","06/26/2014",2014-02-13,"Cappleman"
"976",6345,"01/01/2014","03/31/2014","02/13/2014","Alderman Patrick J. O'Connor","$500.00",19701,"MICHAEL","KASPER","06/26/2014",2014-02-13,"O'Connor"
"977",6446,"04/01/2014","06/30/2014","05/08/2014","Friends of Howard Brookins","$250.00",18421,"Dean","Maragos","07/07/2014",2014-05-08,"Brookins"
"978",6464,"04/01/2014","06/30/2014","04/15/2014","Citizens for Cardenas","$150.00",17769,"William","Filan","07/08/2014",2014-04-15,"Cardenas"
"979",6463,"04/01/2014","06/30/2014","05/02/2014","40th Ward Hole Sponsor/ Ald. O'Connor","$100.00",17769,"William","Filan","07/08/2014",2014-05-02,"O'Connor"
"980",6682,"04/01/2014","06/30/2014","04/23/2014","Citizens for Carrie Austin","$1500.00",16831,"Michael","Sutton","07/19/2014",2014-04-23,"Austin"
"981",6681,"04/01/2014","06/30/2014","04/23/2014","Friends of Will Burns","$500.00",16831,"Michael","Sutton","07/19/2014",2014-04-23,"Burns"
"982",9424,"01/01/2015","03/31/2015","03/31/2015","Friends of Mary O'Connor","$500.00",24542,"Bridget","O'Keefe","04/27/2015",2015-03-31,"O'Connor"
"983",9443,"01/01/2015","03/31/2015","01/01/2015","Alderman Beale","$500.00",23041,"Thomas","Livingston","04/29/2015",2015-01-01,"Beale"
"984",9442,"01/01/2015","03/31/2015","03/01/2015","Alderman Deborah Graham","$1000.00",23041,"Thomas","Livingston","04/29/2015",2015-03-01,"Graham"
"985",9633,"01/01/2015","03/31/2015","03/06/2015","Friends of Alderman Ed Burke","$1500.00",24682,"Gery","Chico","05/07/2015",2015-03-06,"Burke"
"986",9629,"01/01/2015","03/31/2015","02/18/2015","Friends ofCarrie Austin","$250.00",24682,"Gery","Chico","05/07/2015",2015-02-18,"Austin"
"987",9627,"01/01/2015","03/31/2015","02/18/2015","Friends of Mike Zalewski","$250.00",24682,"Gery","Chico","05/07/2015",2015-02-18,"Zalewski"
"988",7839,"01/01/2014","03/31/2014","02/13/2014","Alderman Margaret Laurino","$250.00",21642,"COURTNEY","NOTTAGE","10/30/2014",2014-02-13,"Laurino"
"989",7849,"07/01/2014","09/30/2014","07/17/2014","Alderman Leslie Hairston","$300.00",21642,"COURTNEY","NOTTAGE","10/30/2014",2014-07-17,"Hairston"
"990",9241,"01/01/2015","03/31/2015","03/24/2015","Citizens for Reilly","$50.00",22947,"Bridget","Dougherty","04/20/2015",2015-03-24,"Reilly"
"991",9242,"01/01/2015","03/31/2015","01/12/2015","Alderman Will Burns","$250.00",24427,"Kathleen","Duncan","04/20/2015",2015-01-12,"Burns"
"992",9348,"01/01/2015","03/31/2015","03/31/2015","Citizens to Elect Deborah Graham","$250.00",22374,"Joseph","Pilewski","04/21/2015",2015-03-31,"Graham"
"993",9582,"01/01/2015","03/31/2015","01/20/2015","Caroline Vickrey","$250.00",22546,"Elvin","Charity","05/04/2015",2015-01-20,NA
"994",9797,"01/01/2015","03/31/2015","02/18/2015","Friends of Ameya Pawar","$500.00",25302,"Gery","Chico","06/09/2015",2015-02-18,"Pawar"
"995",9795,"01/01/2015","03/31/2015","02/18/2015","Citizens for Deborah Graham","$250.00",25302,"Gery","Chico","06/09/2015",2015-02-18,"Graham"
"996",9792,"01/01/2015","03/31/2015","02/11/2015","Friends of Raul Reyes","$250.00",25302,"Gery","Chico","06/09/2015",2015-02-11,NA
"997",9787,"01/01/2015","03/31/2015","02/13/2015","Friends of Alderman George Cardenas","$250.00",25302,"Gery","Chico","06/09/2015",2015-02-13,"Cardenas"
"998",7706,"07/01/2014","09/30/2014","08/19/2014","Roberto Maldonado","$500.00",21501,"Gery","Chico","10/24/2014",2014-08-19,"Maldonado"
"999",7822,"04/01/2014","06/30/2014","06/04/2014","Alderman Ameya Pawar","$300.00",21641,"MICHAEL","KASPER","10/30/2014",2014-06-04,"Pawar"