-
Notifications
You must be signed in to change notification settings - Fork 0
/
out.sql
1152 lines (1152 loc) · 321 KB
/
out.sql
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
insert into donations (donor, donee, amount, donation_date,
donation_date_precision, donation_date_basis, cause_area, url,
donor_cause_area_url, notes, affected_countries, affected_states,
affected_cities, affected_regions) values
('Barr Foundation','A Far Cry',150000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Barrington Stage Company',262500,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Chinatown Neighborhood Center',112500,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Modern Orchestra Project',150000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Schools Fund',500000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Boston School Finder 2.0.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Cape Ann Museum',187500,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Ceres',1050000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To mobilize businesses and investors in support of clean energy.',NULL,NULL,NULL,NULL)
,('Barr Foundation','City Year',450000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support City Year BostonÛªs Whole School Whole Child program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Community Access to the Arts',150000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Community Art Center',150000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Community Music School of Springfield',187500,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Community Partners',225000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support for its Fund the People program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Company One',112500,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Conservation Law Foundation',2400000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To inform climate policies and practices in the region.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Design Museum Boston',112500,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Double Edge Theatre Productions',150000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Eliot School Trustees',150000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Featherstone Center for the Arts',112500,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Fitchburg Art Museum',150000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr-Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Funders'' Network for Smart Growth and Livable Communities',160000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the PLACES fellowship, including programming, engagement, and communications.',NULL,NULL,NULL,NULL)
,('Barr Foundation','GreenRoots',440000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support community organizing in East Boston for waterfront and public space improvements.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Hartford Public Schools',150000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To deepen understanding of high school studentsÛª experiences in order to develop strategic plans that address student needs and promote postsecondary success.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Innovation Network for Communities',175000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Green Ribbon Commission''s climate adaptation finance forum and research on legal barriers and solutions to climate resilience planning.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Mahaiwe Performing Arts Center',225000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Malden Public Schools',150000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To deepen understanding of high school studentsÛª experiences in order to develop strategic plans that address student needs and promote postsecondary success.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Manchester School District',150000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To deepen understanding of high school studentsÛª experiences in order to develop strategic plans that address student needs and promote postsecondary success.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Advocates for Children',400000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support general operations.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Department of Transportation',900000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To create an MBTA Bus Transit Speed and Reliability Program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Merrimack Repertory Theatre',225000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Metropolitan Area Planning Council',400000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To create a climate resilience mini-grant program',NULL,NULL,NULL,NULL)
,('Barr Foundation','Metropolitan Area Planning Council',2000000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To develop a long-range regional plan for the MAPC region.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Metropolitan Area Planning Council',450000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To improve transit planning in Allston using development scenario analyses.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New Bedford Museum and Art Center',75000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New Bedford Symphony Orchestra Association',150000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New Classrooms Innovation Partners',500000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support implementation of Teach to One: Math (TTO), advocacy, and research.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New Dance Complex',112500,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Norman Rockwell Museum at Stockbridge',300000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Now and There',112500,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Payomet Performing Arts Charitable Trust',150000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Portland Public Schools',150000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To deepen understanding of high school studentsÛª experiences in order to develop strategic plans that address student needs and promote postsecondary success.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Provincetown Art Association',187500,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Raw Art Works',225000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Social Innovation Forum',180000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Speak Easy Stage',187500,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Technical Development Corporation',645500,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To design and implement a learning agenda for the Barr-Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Massachusetts Institute for a New Commonwealth',1200000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To advance transit-oriented development in Gateway Cities.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Northampton Academy of Music',75000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Record Company',75000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Woodrow Wilson National Fellowship Foundation',500000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Woodrow Wilson AcademyÛªs final planning and launch of a new approach to teacher preparation.',NULL,NULL,NULL,NULL)
,('Barr Foundation','University of Massachusetts Foundation',550000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Greater Boston Research Advisory Group to produce up-to-date climate projections.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Worcester Art Museum',300000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Worcester Public Schools',150000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To deepen understanding of high school studentsÛª experiences in order to develop strategic plans that address student needs and promote postsecondary success.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Zeiterion Theatre',225000,'2018-09-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Klarman Massachusetts Arts Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Associated Grant Makers',50000,'2018-08-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Massachusetts Arts Funders Learning Group.',NULL,NULL,NULL,NULL)
,('Barr Foundation','College Bound Dorchester',75000,'2018-08-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the strategic transition to Boston Uncornered.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Commonwealth of Massachusetts Office of the Attorney General',210000,'2018-08-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support independent analysis of New England’s options for addressing electric reliability.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Harborlight Community Partners',15000,'2018-08-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a transit and equity learning track at the 2018 YIMBYtown Conference.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Innosight Institute',75000,'2018-08-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Innosight Institute, Inc.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Parents United',1000,'2018-08-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Massachusetts Parents United (MPU) 2nd Annual Convention.',NULL,NULL,NULL,NULL)
,('Barr Foundation','NECEC Institute',15000,'2018-08-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Horizon18 Conference in Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','PEAK Grantmaking',10000,'2018-08-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support PEAK Grantmaking''s 2019 conference.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Soledad O''Brien and Brad Raymond Foundation',30000,'2018-08-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the PowHERful Foundation Scholarship Fund.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Third Sector New England',10000,'2018-08-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Fiscal sponsor for Building Movement Project. To support 2018 Barr Foundation membership dues.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Triangle Strategic and Financial Advising for Not-for-Profits',200000,'2018-08-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Fiscal sponsor of Kreiva Academy Public Charter School. To support the launch of Kreiva Academy Public Charter School.',NULL,NULL,NULL,NULL)
,('Barr Foundation','African Community Education',80000,'2018-08-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Alliance of Gay & Lesbian Youth',100000,'2018-08-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the statewide Alliance of Gay and Lesbian Youth (AGLY) Network.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Catholic Charities of New Hampshire',100000,'2018-08-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Immigration Legal Services program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Catholic Social Services of Fall River',80000,'2018-08-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support its Immigration Law Education & Advocacy Project (ILEAP).',NULL,NULL,NULL,NULL)
,('Barr Foundation','Centro Comunitario de Trabajadores',60000,'2018-08-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Community Legal Aid',100000,'2018-08-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support its Central West Justice Center program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','East Boston Ecumenical Community Council',100000,'2018-08-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Justice at Work',80000,'2018-08-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','KIND',100000,'2018-08-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support New England activities.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Maine Immigration Advocacy Project',100000,'2018-08-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Maine Initiatives',100000,'2018-08-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Immigrant and Refugee Advocacy Coalition',80000,'2018-08-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support its Berkshire Immigrant Center program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Southeast Asian Coalition of Central Massachusetts',80000,'2018-08-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support its Civil Rights Program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Community Foundation for Greater New Haven',100000,'2018-08-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Immigration Strategic Funders Collaborative of Connecticut.',NULL,NULL,NULL,NULL)
,('Barr Foundation','College Bound Dorchester',75000,'2018-08-16','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the strategic transition to Boston Uncornered.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Home Energy Efficiency Team',150000,'2018-07-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide general operating support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Home Energy Efficiency Team',150000,'2018-07-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide general operating support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Environmental Education Society',7500,'2018-07-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','to support the Climate Adaptation Forum organized quarterly by the Environmental Business Council of New England and the University of Massachusetts Boston Ð Sustainable Solutions Lab.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Environmental Education Society',7500,'2018-07-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Climate Adaptation Forum organized quarterly by the Environmental Business Council of New England and the University of Massachusetts Boston – Sustainable Solutions Lab.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Parents United',1000,'2018-07-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Massachusetts Parents United (MPU) 2nd Annual Convention.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Lawyers Committee for Civil Rights Under Law of the Boston Bar Association',50000,'2018-07-09','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support services to reunite immigrant children with their parents.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Lawyers Committee for Civil Rights Under Law of the Boston Bar Association',50000,'2018-07-09','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support services to reunite immigrant children with their parents.',NULL,NULL,NULL,NULL)
,('Barr Foundation','National Domestic Workers Alliance',250000,'2018-07-09','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the End Family Separation Campaign.',NULL,NULL,NULL,NULL)
,('Barr Foundation','National Domestic Workers Alliance',250000,'2018-07-09','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the End Family Separation Campaign.',NULL,NULL,NULL,NULL)
,('Barr Foundation','NEO Philanthropy',200000,'2018-07-09','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Four Freedom Fund''s Rapid Response Fund.',NULL,NULL,NULL,NULL)
,('Barr Foundation','NEO Philanthropy',200000,'2018-07-09','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Four Freedom Fund''s Rapid Response Fund.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Alternatives for Community and Environment',225000,'2018-06-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide general operating and capacity-building support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Arts Boston',50000,'2018-06-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide additional support to complete marketing experiments and evaluate the first phase of the Audience Lab.',NULL,NULL,NULL,NULL)
,('Barr Foundation','BoardSource',175000,'2018-06-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support positive change in foundation board practices and composition through research, support resources, and peer-to-peer engagement.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Center for Collaborative Education Metro Boston',220000,'2018-06-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To finalize research on the high school characteristics and post-secondary success among Boston Public School graduates.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grantmakers for Education',7500,'2018-06-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','2018 Barr Foundation Membership Dues',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grantmakers in the Arts',23190,'2018-06-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support 2018 Barr Foundation Membership Dues.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Health Resources in Action',1000,'2018-06-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support CPLAN''s Champions Family Engagement Award Event.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Institute for Transportation and Development Policy',60000,'2018-06-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a Bus Rapid Transit learning trip to Mexico City for Boston''s business sector leaders.',NULL,NULL,NULL,NULL)
,('Barr Foundation','MASSCreative',100000,'2018-06-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support MASSCreativeÕs core functions as it undergoes strategic planning.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Metropolitan Area Planning Council',20000,'2018-06-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To increase the number of arts and planning leaders and stakeholders participating in a learning journey to King County, Washington.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Mystic River Watershed Association',115000,'2018-06-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To initiate a comprehensive strategy for regional climate resilience in the Mystic River Watershed.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Neighborhood Development Associates',200000,'2018-06-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Beyond WallsÕ 2018 Mural Festival.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New England Foundation for the Arts',200000,'2018-06-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To operationalize NEFA''s strategic plan.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Center for Collaborative Education Metro Boston',150000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','For the redesign of the school model for Next Wave/Full Circle, a school in Somerville Public Schools, as part of the second cohort of Engage New England: Doing High School Differently.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Center for Collaborative Education Metro Boston',100000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the development of a Personalized Learning School Design Toolkit.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Community Labor United',350000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support transit justice advocacy.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Enterprise Community Partners',1050000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the design of equitable, sustainable, and connected communities and the placement of a Rose Fellow.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Fall River Public Schools',150000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','For the redesign of the school model for Resiliency Preparatory Academy as part of the second cohort of Engage New England: Doing High School Differently.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Great Schools Partnership',200000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To continue supporting the development of competency-based learning in Melrose Public Schools.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Hartford Public Schools',150000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','For the design of a new program model in Hartford Public Schools as part of the second cohort of Engage New England: Doing High School Differently.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Holyoke Public Schools',1000000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the early launch and ongoing iteration of a new high school model.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Livable Streets Transportation Alliance of Boston',200000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To build an accountability framework for Go Boston 2030 implementation.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Budget and Policy Center',375000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core operating support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Charter Public School Association',1000000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support MCPSA''s general operations and new strategic plan.',NULL,NULL,NULL,NULL)
,('Barr Foundation','National Council of Nonprofits',225000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','OneGoal',500000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support OneGoal''s expansion in Massachusetts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Partnership Project',850000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support communications and organizing for climate action.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Phoenix Charter Academy Foundation',150000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','For the redesign of the school model for Phoenix Charter Academy Lawrence which will enroll students from the region as part of the second cohort of Engage New England: Doing High School Differently.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Roger Williams University',150000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','For the design of a new school model, University High School, which targets students from the region as part of the second cohort of Engage New England: Doing High School Differently.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The American Prospect',150000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support an article series on transportation, access, and greenhouse gas reduction.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Boston Private Industry Council',300000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support for its Boston Compact program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Education Trust',750000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To build a diverse equity coalition in Massachusetts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Massachusetts Institute for a New Commonwealth',450000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core operating support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Third Sector New England',75000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Greater Boston Chamber of Commerce''s City Awake program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Tides Center',250000,'2018-06-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Project Evident''s shared services model to build evaluation capacity in the nonprofit sector.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Applied Economics Clinic',200000,'2018-05-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support independent clean energy research and analysis in New England.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Associated Grant Makers',2500,'2018-05-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support 2018 Barr Foundation Membership Dues for Boston Education Funders.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Day and Evening Academy Foundation',300000,'2018-05-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support continued planning for a new program model in the Engage New England initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Fresh Energy',300000,'2018-05-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support energy reporting in New England.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Georgetown University',200000,'2018-05-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Teacher Mindset project.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Jobs for the Future',300000,'2018-05-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the refinement phase of the research to identify and examine high-performing high schools.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Advocates for Children',35000,'2018-05-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide continued general operating and capacity-building support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Climate Action Network',140000,'2018-05-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide general operating support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New England Grassroots Environment Fund',10000,'2018-05-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the 2018 RootSkills Conference.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New Venture Fund',250000,'2018-05-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To better understand parent mindsets in Massachusetts; partner with MA DESE on a school-based report card; and explore a programmatic expansion to serve high school parents.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Associated Grant Makers',400000,'2018-05-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Massachusetts Census Equity Fund.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Centro Presente',200000,'2018-05-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Leadership Conference Education Fund',200000,'2018-05-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','For education, policy, and communications activities to promote a fair and accurate 2020 Census.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Lenny Fund',300000,'2018-05-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide financial support and technical assistance to grassroots organizations addressing social and economic injustice.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Legal Assistance Corporation',200000,'2018-05-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Greater Boston Immigrant Defense Fund.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Voter Education Network',200000,'2018-05-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Census education and outreach.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Muslim Justice League',100000,'2018-05-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New Venture Fund',200000,'2018-05-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Census 2020 Project.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Proteus Fund',50000,'2018-05-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Security and Rights Collaborative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Third Sector New England',150000,'2018-05-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Center for Immigrant Organizing.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Communities Action Network',30000,'2018-05-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support diversity, equity, and inclusion planning and capacity building.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Capitol Region Education Council',750000,'2018-05-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the launch of Impact Academy as part of the Education ProgramÕs Engage New England: Doing High School Differently initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Phoenix Charter Academy Foundation',750000,'2018-05-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the launch of a redesigned Phoenix Charter Academy Chelsea as part of the Education ProgramÕs Engage New England: Doing High School Differently initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Sociedad Latina',50000,'2018-05-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support strategic planning.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Alliance for Business Leadership',230000,'2018-04-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To expand business leadership on mobility and Bus Rapid Transit.',NULL,NULL,NULL,NULL)
,('Barr Foundation','City of Boston',25000,'2018-04-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide additional support for scope expansion related to district resilience in South Boston/Fort Point.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Clean Energy States Alliance',150000,'2018-04-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support multi-state collaborative efforts to accelerate the deployment of offshore wind in the Northeast.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Equity Lab Charter Schools',200000,'2018-04-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support planning for Equity Lab Charter School in Lawrence, Massachusets.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Generation Teach',300000,'2018-04-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Summer Teaching Fellowship and Placement and Support for Alumni in New England.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Margarita Mu–iz Academy Foundation',160000,'2018-04-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a new Middle School Administrator and curriculum planning for Margarita Mu–iz Academy''s 7th and 8th grade expansion.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Newport Public Education Foundation',300000,'2018-04-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support instructional and school culture transformation at Rogers High School.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Hideo Sasaki Foundation',55000,'2018-04-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support strategic planning and workplan development for mobility and resilience.',NULL,NULL,NULL,NULL)
,('Barr Foundation','A Better City Initiative',90000,'2018-04-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support completion of the Rose Architectural Fellow''s work in the cohort''s final year.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Area Reggio Inspired Network',25000,'2018-04-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support "The Wonder of Learning Boston 2018" symposium hosted in Boston, MA from June to December 2018.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Charles River Conservancy',15000,'2018-04-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Charles River Conservancy''s Ribbon of Blue, Ribbon of Green Gala.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grantmakers for Effective Organizations',12000,'2018-04-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support 2018 Barr Foundation Membership Dues.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Hispanics in Philanthropy',10000,'2018-04-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Hispanics in Philanthropy''s 2018 Conference and Gala.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Department of Elementary and Secondary Education',75000,'2018-04-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support an expert resident in 2018-2019 to support the development of Massachusetts Department of Elementary and Secondary Education''s diversity and equity plans.',NULL,NULL,NULL,NULL)
,('Barr Foundation','National Wildlife Federation',240000,'2018-04-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support education, analysis and communications in support of offshore wind in the Northeast.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New England Grassroots Environment Fund',180000,'2018-04-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support grassroots engagement that promotes clean energy deployment in New England.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New Venture Fund',75000,'2018-04-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support research on parent perceptions in rural communities in New England.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Sponsor',5000,'2018-04-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Spring 2018 Conference Sponsorship for the New England Municipal Sustainability Network.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Massachusetts Institute for a New Commonwealth',282000,'2018-04-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To track public opinion on transportation leading up to the 2018 elections.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Lawyers Committee for Civil Rights Under Law of the Boston Bar Association',55000,'2018-04-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a website redesign in response to increasing demand for legal resources and information.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Enterprise Community Partners',75000,'2018-04-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To create a three-year strategy and workplan for the National Initiatives team.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Chelsea Public Schools',750000,'2018-03-29','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the launch of Chelsea Opportunity Academy as part of the Education ProgramÕs Engage New England: Doing High School Differently initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Maine School Administrative District # 60',750000,'2018-03-29','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the launch of a redesigned and expanded Multiple Pathways Program at Noble High School as part of the Education ProgramÕs Engage New England: Doing High School Differently initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Map Education',750000,'2018-03-29','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the launch of Map Academy as part of the Education ProgramÕs Engage New England: Doing High School Differently initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','A Better City Initiative',80000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support increasing Boston business engagement and leadership on clean energy.',NULL,NULL,NULL,NULL)
,('Barr Foundation','American Repertory Theater Company',900000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','As part of the ArtsAmplified initiative to support the commissioning and development of work that reasserts the theater as a vital public space, both at its two theaters in Harvard Square and throughout Greater Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Harbor Now',900000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Buck Institute for Education',200000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the "Scaling High-Quality, Project-Based Learning for Deeper Learning Impact" project in Manchester, New Hampshire School District.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Conservation Law Foundation',600000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support advocacy for a regional transportation agreement and to increase representation of equity-based groups in the Transportation for Massachusetts Coalition.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Conservation Law Foundation',1200000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support advocacy and communications efforts to achieve an accessible, equitable, and climate-resilient Boston waterfront.',NULL,NULL,NULL,NULL)
,('Barr Foundation','EDUCAUSE',700000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the planning and implementation of Mass Learning Excursions.',NULL,NULL,NULL,NULL)
,('Barr Foundation','EDUCAUSE',3500000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the implementation of Mass IDEAS to incubate innovative school models.',NULL,NULL,NULL,NULL)
,('Barr Foundation','EdVestors',525000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Boston Public School Arts Expansion Phase IV.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Georgetown University',600000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Supporting the Transportation and Climate Initiatives continuing leadership on policies that reduce greenhouse gas emissions across the northeast and mid-Atlantic.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Global Philanthropy Partnership',240000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Urban Sustainability Directors Network.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Global Philanthropy Partnership',400000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Carbon Neutral Cities Alliance project.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Huntington Theatre Company',900000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To evolve its business model, increase collaborative initiatives, and undertake community engagement research as part of the ArtsAmplified initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Independent Sector',250000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support for Independent Sectors work to advance the charitable sector.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Institute of Contemporary Art',900000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To increase collaboration and interdisciplinary artistic programming and to engage new audiences as part of the ArtsAmplified initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Isabella Stewart Gardner Museum',900000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To undertake a new co-curation model that emphasizes multidisciplinary collaboration as part of the ArtsAmplified initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','National Consumer Law Center',90000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To advance equitable clean energy solutions in the region.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New Hampshire Learning Initiative',400000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support college and career readiness and pathways in New Hampshire.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Peabody Essex Museum',900000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To develop an innovation and creativity framework, and to increase learning and leadership opportunities for staff as part of the ArtsAmplified initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Preparatory Foundation',400000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Boston Preparatory Charter Public Schools capital campaign to serve 300 more students.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Technical Development Corporation',1434500,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To co-design a cohort learning agenda, organize convenings, and provide coaching and grants for market research.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Theater Offensive',375000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the OUT in Your Neighborhood: Power and Agility five-year initiative as part of the ArtsAmplified initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Energy Foundation',3000000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To accelerate the transition to clean energy in the Northeast.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Marion Institute',600000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Bus Rapid Transit pilots and invest in local leadership.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Third Sector New England',225000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Building Movement Project''s Race to Lead research agenda.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Toxics Action Center',600000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To organize grassroots groups to inform the development of clean energy policies across New England.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Urban Age Institute',225000,'2018-03-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Meeting of the Minds, communications, and behavioral change research to advance mobility innovation in Massachusetts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Borealis Philanthropy',150000,'2018-02-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a funder collaborative to advance racial equity and inclusion in the nonprofit sector.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Environmental Grantmakers Association',15000,'2018-02-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','For 2018 Barr Foundation member support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Livable Streets Transportation Alliance of Boston',250000,'2018-02-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To accelerate Bus Rapid Transit and better bus service throughout Greater Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','National Public Education Support Fund',10000,'2018-02-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support 2018 Barr Foundation Membership Dues for the Education Funder Strategy Group.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Tides Center',7500,'2018-02-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support 2018 Barr Foundation Membership Dues for Emerging Practitioners in Philanthropy.',NULL,NULL,NULL,NULL)
,('Barr Foundation','University of Massachusetts Foundation',20000,'2018-02-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide targeted communications and outreach support for roll-out of climate resilience reports.',NULL,NULL,NULL,NULL)
,('Barr Foundation','WalkBoston',150000,'2018-02-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support WalkBoston''s walking and transit advocacy.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Civic Nation',10000,'2018-01-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Inaugural Reach Higher Salon Dinner.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Lenny Fund',95000,'2018-01-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support sustainability and transition planning and implementation.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Philanthropy Roundtable',1000,'2018-01-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support 2018 Barr Foundation Membership Dues.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Stand for Children Leadership Center',100000,'2018-01-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide an exit grant for general operating support for Stand Massachusetts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Technology Affinity Group',2000,'2018-01-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support 2018 Barr Foundation Membership Dues.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Boston Foundation',250000,'2018-01-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Massachusetts United for Puerto Rico Fund relocation services grantmaking and overall staffing.',NULL,NULL,NULL,NULL)
,('Barr Foundation','University of Wisconsin Foundation',16000,'2018-01-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support ten participants to attend All Transportation is Local workshop.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Asian American-Pacific Islanders in Philanthropy',10000,'2018-01-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support 2018 Barr Foundation Membership Dues.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Associated Grant Makers',21500,'2018-01-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support 2018 Barr Foundation Membership Dues.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Communication Network',15000,'2018-01-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support 2018 Barr Foundation Membership Dues.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Consultative Group on Biological Diversity',7500,'2018-01-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support 2018 Barr Foundation Membership Dues for the Climate and Energy Funders Group.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Council on Foundations',23500,'2018-01-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support 2018 Barr Foundation Membership Dues.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Hispanics in Philanthropy',15000,'2018-01-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support 2018 Barr Foundation Membership Dues.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Independent Sector',17500,'2018-01-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support 2018 Barr Foundation Membership Dues.',NULL,NULL,NULL,NULL)
,('Barr Foundation','National Committee for Responsive Philanthropy',15000,'2018-01-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support 2018 Barr Foundation Membership Dues.',NULL,NULL,NULL,NULL)
,('Barr Foundation','PEAK Grantmaking',5900,'2018-01-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support 2018 Barr Foundation Membership Dues.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Environment America Research and Policy Center',75000,'2017-12-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide general operating support for Environment Massachusetts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Alliance for Business Leadership',75000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To increase business leader engagement in support of action on clean energy in Massachusetts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Artists for Humanity',75000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To produce a multi-site "Our Waterfront" collaborative painting project and exhibit.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Chinatown Neighborhood Center',675000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Pao Arts Center on defining and building its long-term programmatic and operational capacity.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Harbor Now',75000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Fort Point Neighborhood Association''s efforts to create an alliance of waterfront residents to collectively address environmental, economic, and social issues related to living at the water''s edge.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Center for Effective Philanthropy',550000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support and to support a systems automation project.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Community Foundation of Southeastern Massachusetts',500000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','As part of the Creative Commonwealthto support the Arts, Culture, and Creativity: What''s Next? Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Community Foundation of Western Massachusetts',500000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Advancing Arts + Creativity in the Pioneer Valley and the Hilltowns Program, as part of the Creative Commonwealth.',NULL,NULL,NULL,NULL)
,('Barr Foundation','ConnectEd The California Center for College and Career',1100000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To continue increasing the capacity of Boston and Holyoke Public Schools to design high quality college and career pathways in underperforming high schools.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Emerson College',675000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To deliver ground-breaking, culturally-relevant new work; meaningfully engage Boston''s diverse audiences; clarify and communicate its vision and values; and build its fundraising capacity as part of the ArtsAmplified initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Essex County Community Foundation',500000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Creative County Initiative, as part of the Creative Commonwealth.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Greater Worcester Community Foundation',500000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Creative Arts Grant and Community Convening Initiative, as part of the Creative Commonwealth.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Jacob''s Pillow Dance Festival',1100000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To strengthen artistic and community engagement programs and develop plans to upgrade its main theater as part of the ArtsAmplified initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Museum of Contemporary Art Foundation',900000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To increase capacity to support new and innovative artists, projects, and partnerships, and enhance visitor experience as part of the ArtsAmplified initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Mystic River Watershed Association',100000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To build the capacity of The Friends of the East Boston Greenway and to better connect the Greenway to East Boston people and places.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Mystic River Watershed Association',85000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To create a North Charlestown waterfront inventory and vision plan.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New World Foundation',450000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support clean energy grassroots efforts in Massachusetts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','PRX',465000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To build organizational capacity to train podcast producers.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Regulatory Assistance Project',250000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To accelerate innovative clean energy policy in New England.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Rockefeller Philanthropy Advisors',2000000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To enable ArtPlace America to build a strong national field of creative placemaking and to strengthen practice and strategic partnerships in Massachusetts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Rose Fitzgerald Kennedy Greenway Conservancy',600000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To present innovative, artistically-bold public art on the Greenway that reimagines civic space in Boston, and fosters a deeper appreciation from audiences as part of the ArtsAmplified initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','San Francisco Chamber of Commerce Foundation',350000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To increase local chamber of commerce leadership in Massachusetts and Connecticut to advance clean energy policies.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The American City Coalition',100000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To engage Roxbury and North Dorchester residents in the social, recreational, educational, and economic opportunities throughout the Boston waterfront.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Berkshire Taconic Community Foundation',500000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To pilot the Berkshire Arts and Creativity Initiative, as part of the Creative Commonwealth, to increase access to the arts for Berkshire County residents.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Boston Foundation',650000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the next two rounds of Live Arts Boston to provide grants, artistic and professional development, and marketing supports to performing artists in Greater Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Boston Foundation',150000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Boston Opportunity Agenda.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Harborkeepers',95000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support coast community resiliency and environmental advocacy in East Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Trustees of Boston College',400000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support City Connects in Boston Public Schools.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Trustees of Boston University',2000000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capital and programming support for WBUR CitySpace.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Trustees of Reservations',2000000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To develop signature open space on the Boston waterfront.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Waltham Public Schools',300000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the planning and redesign of Waltham High School.',NULL,NULL,NULL,NULL)
,('Barr Foundation','World Music',600000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support strategic initiatives around artistic innovation, institutional visibility, audience building, and organizational capacity as part of the ArtsAmplified initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Yard',950000,'2017-12-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To continue its trajectory to become a year-round center for excellent dance programs by increasing its capacity and planning for mission-critical capital improvements as part of the ArtsAmplified initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','A Better City Initiative',75000,'2017-12-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support an organizational capacity assessment.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Emerson College',40000,'2017-12-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support transition planning and a staff re-structuring assessment for ArtsEmerson and HowlRound.',NULL,NULL,NULL,NULL)
,('Barr Foundation','United States Artists',75000,'2017-12-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To undertake a brand evaluation to increase United States Artists impact in the field.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Collaborative for Educational Services',200000,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the planning and redesign of Turners Falls High School.',NULL,NULL,NULL,NULL)
,('Barr Foundation','EDUCAUSE',45000,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To enhance the implementation of the MASS Learning Project.',NULL,NULL,NULL,NULL)
,('Barr Foundation','EDUCAUSE',300000,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the pre-implementation phase of the Massachusetts school incubator.',NULL,NULL,NULL,NULL)
,('Barr Foundation','EdVestors',250000,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Zeroing in on Math (ZioM) initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Environmental Grantmakers Association',80000,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the EGA Environmental Fellows Program and the placement of four fellows in Barr partner organizations.',NULL,NULL,NULL,NULL)
,('Barr Foundation','FSG',25000,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the development and use of materials to engage boards and trustees in learning and evaluation.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Funders'' Network for Smart Growth and Livable Communities',8900,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support 2017 Barr Foundation Membership Dues.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Hale Reservation',135000,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the planning of Intrepid Academy.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Inquilinos Boricuas en Accion',25000,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Let''s Build 50 event.',NULL,NULL,NULL,NULL)
,('Barr Foundation','LearnLaunch',250000,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide ongoing support for the MAPLE Consortium.',NULL,NULL,NULL,NULL)
,('Barr Foundation','LearnLaunch',7500,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the 2018 LearnLaunch Across Boundaries conference as a Gold sponsor.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Energy Consumers Alliance',100000,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To accelerate the deployment of clean energy in Massachusetts and Rhode Island.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Historical Society',3000,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support public programs on the history and future of open space preservation in Massachusetts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Metropolitan Area Planning Council',100000,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To plan for the development of MetroFuture''s successor.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New England Blacks in Philanthropy',1500,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support 2017 Barr Foundation Membership Dues.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Boston Foundation',27660,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide a one-time grant to support the Civic Leadership Fund.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Energy Foundation',260000,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To build a positive narrative on clean energy in the Northeast.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The National Association of State Energy Officials',50000,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Energy Futures Initiative''s data collection, analysis, and release of the third annual US Energy and Employment Report.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Third Sector New England',50000,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support for its Teacher Collaborative Project.',NULL,NULL,NULL,NULL)
,('Barr Foundation','University of Massachusetts',200000,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To continue to refine the Massachusetts Association of School Superintendents'' New Superintendents'' Induction Program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','USGBC Massachusetts Chapter',50000,'2017-11-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support analysis and education on the costs and benefits of green buildings.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Advanced Energy Economy Institute',10000,'2017-10-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support New England utility commissioners attending a national forum on grid modernization.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Berklee College of Music',300000,'2017-10-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support planning for the creation of the Music + Health Institute.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston After School & Beyond',200000,'2017-10-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support general operations and enhance the ACT Skills Framework.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Central Falls School District',300000,'2017-10-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the planning and design of Central Falls High School.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Community Foundation of Western Massachusetts',300000,'2017-10-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To design and deliver a 20-month knowledge-building program customized to the needs of the five community foundations in Barr''s Creative Commonwealth Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Conservation Law Foundation',200000,'2017-10-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support research, analysis, and advocacy on energy efficiency programs in New England.',NULL,NULL,NULL,NULL)
,('Barr Foundation','E4TheFuture',100000,'2017-10-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the development phase of a replicable community microgrid project in Worcester.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Rose Fitzgerald Kennedy Greenway Conservancy',125000,'2017-10-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To complete a five-year business plan.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Community Capital',50000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a process evaluation of the Working Cities Challenge''s sustainability intervention.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Educational Development Foundation',300000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the redesign process for TechBoston Academy as part of the Education Program''s regional project aimed at nurturing the development of high school models that leverage the wider learning ecosystem.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Center for Collaborative Education Metro Boston',300000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the redesign process for Somerville High School as part of the Education Program''s regional project aimed at nurturing the development of high school models that leverage the wider learning ecosystem.',NULL,NULL,NULL,NULL)
,('Barr Foundation','City of Providence',270000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To leverage clean energy to drive equitable economic development in Providence, Rhode Island.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Clean Water Fund',400000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support organizing and policy education to ensure that Massachusetts and Connecticut reach their clean energy goals.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Environmental League of Massachusetts',350000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide general operating support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Great Schools Partnership',860000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the redesign process for Blackstone Academy Charter School, Nokomis Regional High School, and North Country Union High School as part of the Education Program''s regional project aimed at nurturing the development of high school models that leverage the wider learning ecosystem.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Manchester Boys Club',300000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the redesign process for Manchester West High School in New Hampshire as part of the Education Program''s regional project aimed at nurturing the development of high school models that leverage the wider learning ecosystem.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Manchester Public Schools',300000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the redesign process for Manchester High School in Connecticut as part of the Education Program''s regional project aimed at nurturing the development of high school models that leverage the wider learning ecosystem.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Taxpayers Foundation',300000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support capacity building in technology and business development.',NULL,NULL,NULL,NULL)
,('Barr Foundation','National Arts Strategies',300000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To develop and pilot a nine-month Creative Community Fellows Program for New England.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Neighborhood House Charter School',500000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Neighborhood House Charter School high school expansion.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New Haven Ecology Project',300000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the redesign of Common Ground High School as part of the Education Program''s regional project aimed at nurturing the development of high school models that leverage the wider learning ecosystem.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Providence After School Alliance',300000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the redesign process for 360 High School and Juanita Sanchez Educational Complex as part of the Education Program''s regional project aimed at nurturing the development of high school models that leverage the wider learning ecosystem.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Smart Growth America',1100000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To inform transportation and smart growth policy at national, state, and local levels in order to build neighborhoods that are more economically, socially and environmentally sustainable.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Smart Growth America',500000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the State Smart Transportation Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','SRI International',3000000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To conduct the phase one evaluation of the Education Program_s Engage New England initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Strategies for Children',400000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support general operations.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Lawrence and Lillian Solomon Foundation',400000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a re-granting and technical assistance program for greenways and placemaking in Greater Boston',NULL,NULL,NULL,NULL)
,('Barr Foundation','Tides Foundation',450000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To produce short videos on climate change solutions in support of Years of Living Dangerously, a television and internet project dedicated to climate action.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Union of Concerned Scientists',600000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support analysis, outreach, and policy education on climate change impacts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Winooski School District',225000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the redesign process for Winooski Middle High School as part of the Education Program''s regional project aimed at nurturing the development of high school models that leverage the wider learning ecosystem.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Worcester Center for Performing Arts',750000,'2017-09-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To activate the Worcester Theatre District.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Arts Boston',75000,'2017-09-26','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To complete a comprehensive three-year strategic and financial plan.',NULL,NULL,NULL,NULL)
,('Barr Foundation','ClimateWorks Foundation',150000,'2017-09-26','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support new mobility learning, research, and convenings.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Forum of Regional Associations of Grantmakers',25000,'2017-09-26','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To sponsor the Forum''s 2018 national conference in Boston any tickets associated with this event will be donated back to the organization.',NULL,NULL,NULL,NULL)
,('Barr Foundation','GuideStar USA',125000,'2017-09-26','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Home Energy Efficiency Team',5000,'2017-09-26','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support HEET''s Seeking Solutions to Reduce Methane Emissions conference.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Environmental Education Society',2000,'2017-09-26','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the EBC & Sustainable Solutions Lab at UMass Boston Climate Adaptation Quarterly Forum.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Museum of Contemporary Art Foundation',300000,'2017-09-26','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To increase MASS MoCA''s Assets for Artists program''s capacity to respond to needs of artists by shoring up existing funding, expanding its services, and testing new revenue streams.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Merck Family Fund',200000,'2017-09-26','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support research and objective analysis to strengthen the Regional Greenhouse Gas Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Mid-Atlantic Network of Youth & Family Services',300000,'2017-09-26','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To facilitate a professional learning community, The Learning Agenda, for the Wider Learning Ecosystem grantees.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Marion Institute',300000,'2017-09-26','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support community engagement and technical analysis for Bus Rapid Transit pilots.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Third Sector New England',30000,'2017-09-26','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support analysis, documentation, and presentation of "Race to Lead: Massachusetts Nonprofits and the Racial Leadership Gap."',NULL,NULL,NULL,NULL)
,('Barr Foundation','Triangle Strategic and Financial Advising for Not-for-Profits',150000,'2017-09-26','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the planning and design of Kreiva Academy Public Charter School.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Vermont Energy Investment Corporation',30000,'2017-09-26','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a zero net energy modular home demonstration project and disseminating the results in Massachusetts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Irish International Immigrant Center',75000,'2017-09-25','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support legal and wellness services.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Trustees of Reservations',150000,'2017-09-25','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support strategic outreach and communications counsel for Trustees'' work on the Boston waterfront.',NULL,NULL,NULL,NULL)
,('Barr Foundation','GreenRoots',45000,'2017-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support community engagement in East Boston for waterfront and public realm improvements.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Chinatown Neighborhood Center',100000,'2017-09-12','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Fellowship Class of 2017.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Businesses United in Investing, Lending and Development',100000,'2017-09-12','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Fellowship Class of 2017.',NULL,NULL,NULL,NULL)
,('Barr Foundation','City of Boston',100000,'2017-09-12','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Fellowship Class of 2017.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Community Labor United',100000,'2017-09-12','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Fellowship Class of 2017.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Community Servings',100000,'2017-09-12','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Fellowship Class of 2017.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Epiphany School',100000,'2017-09-12','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Fellowship Class of 2017.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Louis D. Brown Peace Institute',100000,'2017-09-12','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Fellowship Class of 2017.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Margarita Muñiz Academy Foundation',100000,'2017-09-12','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Fellowship Class of 2017.',NULL,NULL,NULL,NULL)
,('Barr Foundation','MAS Boston Society',100000,'2017-09-12','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Fellowship Class of 2017.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Phoenix Charter Academy Foundation',100000,'2017-09-12','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Fellowship Class of 2017.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Silver Lining Mentoring',100000,'2017-09-12','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Fellowship Class of 2017.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Mass Mentoring Partnership',100000,'2017-09-12','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support participation in the Barr Fellowship Class of 2017.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Education Reform Now',1000,'2017-08-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide sponsorship support for the 2017 Massachusetts Parents United Convention on August 26, 2017.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Dudley Street Neighborhood Initiative',75000,'2017-08-18','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support strategic planning.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Clean Energy Group',25000,'2017-08-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide additional support for communications efforts related to energy storage deployment in Massachusetts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','PolicyLink',100000,'2017-08-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support its 2018 Equity Summit and the attendance of a Massachusetts delegation.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Massachusetts Institute for a New Commonwealth',100000,'2017-08-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To research local accountability policy and practice to support education innovation.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Third Sector New England',75000,'2017-08-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To conduct and evaluate the Emerging Consultants Training program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','University of Massachusetts Foundation',75000,'2017-08-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide technical assistance for the Sustainable Solutions Lab.',NULL,NULL,NULL,NULL)
,('Barr Foundation','A Better City Initiative',2500,'2017-08-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To sponsor the 2017 Norman B. Leventhal Excellence in City Building Awards.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Community Labor United',100000,'2017-08-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support transit justice advocacy.',NULL,NULL,NULL,NULL)
,('Barr Foundation','National Caucus of Environmental Legislators',15000,'2017-08-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the 2017 National Issues Forum.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Trust for Public Land',290000,'2017-08-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support green infrastructure in the Metro Mayors_ Coalition region.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Legal Assistance Corporation',200000,'2017-07-13','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Greater Boston collaborative fund in support of immigrant and refugee communities through legal assistance, community outreach, and network infrastructure.',NULL,NULL,NULL,NULL)
,('Barr Foundation','WGBH Educational Foundation',300000,'2017-06-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To expand investigative reporting capacity.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Association of Black Foundation Executives',10000,'2017-06-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Unity Summit in New Orleans on September 18-22, 2017.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Ceres',10000,'2017-06-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support An Evening with Ceres programming.',NULL,NULL,NULL,NULL)
,('Barr Foundation','EDUCAUSE',300000,'2017-06-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support MyWays development Phase II.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grantmakers for Education',7500,'2017-06-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Inquilinos Boricuas en Accion',25000,'2017-06-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Amplifying Latino Power and Impact (ALPI) Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Neighborhood Development Associates',200000,'2017-06-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the installation, marketing, and documentation of the 2017 [Beyond Walls] (www.beyond-walls.org) public art project in Lynn, and planning for 2018 and for strategic planning',NULL,NULL,NULL,NULL)
,('Barr Foundation','United Way of Central Massachusetts',50000,'2017-06-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Worcester Public Schools strategic planning efforts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Conservation Law Foundation',300000,'2017-06-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To advance waterfront advocacy efforts and to plan for a multi-year waterfront campaign.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Alternatives for Community and Environment',100000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Green Justice Coalition’s Boston and statewide clean energy efforts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Day and Evening Academy Foundation',150000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the refinement and expansion of the current school model as part of the Education Program''s Engage New England: doing high school differently initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Schools Fund',300000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the development and implementation of the Boston School Finder Family Information Tool.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Brooke School Foundation',500000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Brooke High School permanent facility.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Capitol Region Education Council',150000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the new school development of Personalized Success Academy as part of the Education Program''s Engage New England: doing high school differently initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Chelsea Public Schools',150000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the new school development of Chelsea Opportunity Academy as part of the Education Program''s Engage New England: doing high school differently initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Commonwealth of Massachusetts Department of Early Education and Care',150000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Department’s data capacity.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Community Labor United',400000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Green Justice Coalition’s Boston and statewide clean energy efforts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Domus Kids',150000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the redesign of Stamford Academy as part of the Education Program''s Engage New England: doing high school differently initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','EdNavigator',500000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the EdNavigator expansion to Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','English for New Bostonians',225000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the ESOL for Parents and Caregivers program and to support organizational capacity.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Environmental Defense Fund',400000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Alliance to Curb Climate Change in key Northeast states.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Generation Teach',100000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the 2017 Boston Summer Teaching Fellowships.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Holyoke Public Schools',600000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the continuation of Holyoke Public Schools’ high school redesign process.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Institute for Transportation and Development Policy',710000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To galvanize implementation of Bus Rapid Transit (BRT) in Massachusetts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Maine School Administrative District # 60',150000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the redesign and expansion of Noble High School''s Multiple Pathways Program as part of the Education Program''s Engage New England: doing high school differently initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Map Education',350000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the refinement and planning for the launch of Map Academy as part of the Education Program''s Engage New England: doing high school differently initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Neighbor to Neighbor Massachusetts Education Fund',200000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To strengthen grassroots organizing capacity to support the Green Justice Coalition’s statewide clean energy efforts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Partnership Project',550000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support communications and organizing for climate action.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Phoenix Charter Academy Foundation',150000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the refinement of the school model for Phoenix Charter Academy Chelsea as part of the Education Program''s Engage New England: doing high school differently initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Rennie Center for Education Research & Policy',300000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support an evidence-based education policy and research agenda for Massachusetts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Revere Public Schools',150000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the redesign of the school model for SeaCoast High School as part of the Education Program''s Engage New England: doing high school differently initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Rockefeller Philanthropy Advisors',750000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support for the Fund for Shared Insight.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Teachers College Columbia University',400000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Hechinger Report series “Pathways to the Middle Class,” journalism on secondary schools that promote college, career, and workforce readiness.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Nature Conservancy',400000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Alliance to Curb Climate Change in key Northeast states.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Tree Street Youth',150000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the design of a new school in Lewiston Public Schools as part of the Education Program''s Engage New England: doing high school differently initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Vote Solar',200000,'2017-06-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To sustain and expand New England’s solar leadership.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Associated Grant Makers',2500,'2017-05-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues for Boston Education Funders',NULL,NULL,NULL,NULL)
,('Barr Foundation','EDUCAUSE',300000,'2017-05-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the planning phase of the NGLX Massachusetts Incubator.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Equity Lab Charter Schools',100000,'2017-05-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Equity Lab Charter School_s Commonwealth charter school application process.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grantmakers in the Arts',25000,'2017-05-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Charter Public School Association',200000,'2017-05-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support general operations.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New England Foundation for the Arts',75000,'2017-05-22','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To develop a two- to three-year strategic plan.',NULL,NULL,NULL,NULL)
,('Barr Foundation','GreenRoots',300000,'2017-05-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support community organizing in East Boston for waterfront and public realm improvements.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Chelsea Collaborative',40000,'2017-05-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support its executive leadership transition.',NULL,NULL,NULL,NULL)
,('Barr Foundation','MAS Boston Society',75000,'2017-05-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support expanded civic engagement capacity at the Islamic Society of Boston Cultural Center.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Social Innovation Forum',30000,'2017-05-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a 2017–2018 social issue track and group training to support immigrant- and refugee-serving organizations.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Harbor Now',270000,'2017-04-25','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a comprehensive water transportation plan.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Community Foundation of Southeastern Massachusetts',35000,'2017-04-25','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','As part of the Creative Commonwealth initiative, To develop a plan that addresses the obstacles and opportunities to realizing a vibrant arts and culture environment in more communities and neighborhoods in New Bedford and Fall River.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Community Foundation of Western Massachusetts',35000,'2017-04-25','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To develop the Regional Arts and Creativity Initiative, with the goal of building a robust creative economy in the Pioneer Valley, as part of the Creative Commonwealth.',NULL,NULL,NULL,NULL)
,('Barr Foundation','ConnectEd The California Center for College and Career',300000,'2017-04-25','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To increase the capacity of Boston and Holyoke public schools to design high-quality college and career pathways in underperforming high schools.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Essex County Community Foundation',35000,'2017-04-25','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To undertake a planning process to broaden awareness of arts and creativity, design a grant and support program for arts organizations, and develop a fundraising plan, as part of the Creative Commonwealth.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Greater Worcester Community Foundation',34300,'2017-04-25','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To design a grant and technical assistance program to support effective ways of stimulating and supporting arts and creativity in Worcester, as part of the Creative Commonwealth.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Jobs for the Future',270000,'2017-04-25','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To plan for a study on successful high schools serving high-needs students.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New Teacher Project, Inc. d/b/a TNTP',300000,'2017-04-25','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the research and publication of TNTP’s next national report.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Regulatory Assistance Project',125000,'2017-04-25','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Rhode Island Power Sector Transformation Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Berkshire Taconic Community Foundation',35000,'2017-04-25','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To undertake a planning process, as part of the Creative Commonwealth, to determine priorities for its arts and creativity portfolio.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Center for Collaborative Education Metro Boston',300000,'2017-03-29','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the continued development and implementation of the Massachusetts Personalized Learning Network (MA PLN).',NULL,NULL,NULL,NULL)
,('Barr Foundation','EDUCAUSE',300000,'2017-03-29','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the MASS Learning Project.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grantmakers for Effective Organizations',12000,'2017-03-29','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Museum of Contemporary Art Foundation',150000,'2017-03-29','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To activate the flow of visitors between MASS MoCA and downtown through the North Adams Exchange (NAX), a series of installations and pop-ups concurrent with the opening of Building 6.',NULL,NULL,NULL,NULL)
,('Barr Foundation','National Council on Teacher Quality',50000,'2017-03-29','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support analysis and ratings of Massachusetts teacher preparation programs.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New England Grassroots Environment Fund',5000,'2017-03-29','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the RootSkills Training Series.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New England Women in Energy and the Environment',2500,'2017-03-29','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the New England Women in Energy and the Environment’s seventh annual awards gala in Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Newport Public Education Foundation',150000,'2017-03-29','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the high school redesign planning process at Rogers High School.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The American Prospect',150000,'2017-03-29','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support an article series on transportation, access, and greenhouse gas reduction.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Center for Investigative Reporting',300000,'2017-03-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Committee to Protect Journalists',200000,'2017-03-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support for activities in the United States.',NULL,NULL,NULL,NULL)
,('Barr Foundation','GLBTQ Legal Advocates & Defenders',225000,'2017-03-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Lawyers’ Committee for Civil Rights and Economic Justice',150000,'2017-03-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide legal protection and education for vulnerable communities and to build organizational capacity.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Immigrant and Refugee Advocacy Coalition',120000,'2017-03-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Law Reform Institute',180000,'2017-03-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New England First Amendment Coalition',45000,'2017-03-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Northeastern University',35000,'2017-03-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To conduct a research study on philanthropy and nonprofit news and journalism and dissemination activities, in partnership with the Shorenstein Center.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Political Asylum Immigration Representation Project',100000,'2017-03-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Pro Publica',400000,'2017-03-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Lenny Zakim Fund',225000,'2017-03-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide financial support and technical assistance to grassroots organizations addressing social and economic injustice.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Reporters Committee for Freedom of the Press',150000,'2017-03-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Trustees of Boston University',300000,'2017-03-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a new investigative reporting unit at WBUR.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Advanced Energy Economy Institute',220000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To align utility business and regulatory models with clean energy advancement.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Alternatives for Community and Environment',100000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To organize for improved transit and transit equity.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Collegiate Charter School Foundation',500000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the “Capacity to Lead” capital campaign.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Harbor Now',250000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To implement Climate Ready Boston recommendations for climate preparedness in Boston’s waterfront neighborhoods.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Harbor Now',400000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Citizens’ Housing and Planning Association',750000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the development of walkable urban places.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Clean Energy Group',300000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support energy storage deployment in Massachusetts and collaborative efforts in the region.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Conservation Law Foundation',4520000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Transportation for Massachusetts Coalition (T4MA)’s “Transportation for the 21st Century” campaign.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Innovation Network for Communities',1400000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Green Ribbon Commission, a convening of Boston''s business and civic leaders helping the City achieve its Climate Action Plan goals.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Institute for Nonprofit Practice',600000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To implement a multi-year growth plan.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Mothers Out Front',200000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To build a movement of mothers in the region working for clean energy and climate action.',NULL,NULL,NULL,NULL)
,('Barr Foundation','National Center for Civic Innovation',4000000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide technical assistance to three cohorts of Barr Foundation grantees as part of the Foundation’s Engage New England: Doing high school differently initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','NECEC Institute',450000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To expand clean energy in the region by informing policy and regulatory development and strategic communications.',NULL,NULL,NULL,NULL)
,('Barr Foundation','RAR-MA',200000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Raising A Reader in Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Springfield Empowerment Zone Partnership',600000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the redesign of the High School of Commerce.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Teach for America',200000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Energy Foundation',3000000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To accelerate the transition to clean energy in the U.S. Northeast.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Tides Center',250000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the launch of Project Evident, which will develop nonprofit capacity for evidence-gathering, evaluation, and learning.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Toxics Action Center',325000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To engage grassroots groups across New England to inform clean energy policies and programs.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Transcend',500000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To build and share actionable knowledge to inform innovative school models.',NULL,NULL,NULL,NULL)
,('Barr Foundation','WalkBoston',150000,'2017-03-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support local and national walking advocacy.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Emerson College',12000,'2017-03-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support ArtsEmerson’s conversations in conjunction with A Well-Ordered Nation live-streamed forums.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Environmental Grantmakers Association',10000,'2017-03-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues',NULL,NULL,NULL,NULL)
,('Barr Foundation','Sierra Club Foundation',150000,'2017-03-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To educate the public and policymakers about bold clean energy policies in Boston and Massachusetts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Aspen Institute',75000,'2017-03-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support to the Opportunity Youth Incentive Forum (OYIF) convening in May 2017.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Third Sector New England',100000,'2017-03-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support to Commonwealth Seminar and to build the Seminar’s fundraising capacity.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Tides Center',5000,'2017-03-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues for Emerging Practitioners in Philanthropy and support for the Boston Chapter',NULL,NULL,NULL,NULL)
,('Barr Foundation','LearnLaunch',7000,'2017-01-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the 2017 Across Boundaries conference in Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Montessori For All',300000,'2017-01-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Montessori For All’s consultancy practice and local stakeholder forum.',NULL,NULL,NULL,NULL)
,('Barr Foundation','National Public Education Support Fund',10000,'2017-01-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues for the Education Funder Strategy Group',NULL,NULL,NULL,NULL)
,('Barr Foundation','NECEC Institute',150000,'2017-01-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To conduct analysis of the economic benefits of renewable energy policies.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Norman B. Leventhal Map Center',25000,'2017-01-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To include Climate Ready Boston maps in the Regions and Seasons: Mapping Climate through History exhibit.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Philanthropy Roundtable',1000,'2017-01-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues',NULL,NULL,NULL,NULL)
,('Barr Foundation','Technology Affinity Group',2000,'2017-01-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues',NULL,NULL,NULL,NULL)
,('Barr Foundation','Asian American-Pacific Islanders in Philanthropy',10000,'2017-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues',NULL,NULL,NULL,NULL)
,('Barr Foundation','Associated Grant Makers',21500,'2017-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues',NULL,NULL,NULL,NULL)
,('Barr Foundation','Communication Network',5000,'2017-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues',NULL,NULL,NULL,NULL)
,('Barr Foundation','Consensus Building Institute',180000,'2017-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To plan, design, and execute a series of Commonwealth Conversations on sustainable mobility.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Consultative Group on Biological Diversity',7500,'2017-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues for the Climate and Energy Funders Group',NULL,NULL,NULL,NULL)
,('Barr Foundation','Council on Foundations',25000,'2017-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues',NULL,NULL,NULL,NULL)
,('Barr Foundation','EdVestors',50000,'2017-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To build capacity within the creative youth development field to better measure and communicate impact.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Environmental Defense Fund',300000,'2017-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To reform gas markets to ensure the efficient use of existing infrastructure.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grants Managers Network',5340,'2017-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues',NULL,NULL,NULL,NULL)
,('Barr Foundation','Hispanics in Philanthropy',15000,'2017-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues',NULL,NULL,NULL,NULL)
,('Barr Foundation','Independent Sector',15000,'2017-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues',NULL,NULL,NULL,NULL)
,('Barr Foundation','National Committee for Responsive Philanthropy',15000,'2017-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation member support',NULL,NULL,NULL,NULL)
,('Barr Foundation','New England Blacks in Philanthropy',75000,'2017-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To conduct the joint affinity group research project Giving Boston: Comparative Analysis of Minority and Women Philanthropic Giving.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Peabody Essex Museum',130000,'2017-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To investigate, apply, and evaluate strategies based in neuroscience to the design of art experiences.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Third Sector New England',10000,'2017-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues for the Early Childhood Funders Collaborative',NULL,NULL,NULL,NULL)
,('Barr Foundation','A Better City Initiative',535000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support transportation projects to improve customers’ mobility experiences.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Acadia Center',1200000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To advance clean energy policies in New England.',NULL,NULL,NULL,NULL)
,('Barr Foundation','American Antiquarian Society',1100000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Worcester Cultural Coalition’s fit-out and operation of the WOOteria, a new collaborative art space and black box theater.',NULL,NULL,NULL,NULL)
,('Barr Foundation','American Repertory Theater Company',325000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To advance artistic risk and to explore offsite and touring productions.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Arts Boston',600000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To launch the Audience Lab to test and share innovative ways to engage and retain more diverse arts audiences.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Better Future Project',140000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Celebrity Series of Boston',600000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To advance artistic risk, innovation, and community engagement, as part of the ArtsAmplified initiative, and to upgrade Celebrity Series’ website and patron management software.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Citizens’ Housing and Planning Association',100000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support for the Massachusetts Smart Growth Alliance.',NULL,NULL,NULL,NULL)
,('Barr Foundation','City of Boston',835000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support community-level resilience projects as part of Climate Ready Boston Phase II.',NULL,NULL,NULL,NULL)
,('Barr Foundation','College Bound Dorchester',200000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To conduct an external evaluation of the Core Influencer College Pathway Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Conservation Law Foundation',330000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To advance waterfront advocacy efforts and to plan for a multi-year waterfront campaign.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Conservation Law Foundation',1200000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support regional climate policy and practice.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Dudley Street Neighborhood Initiative',600000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To deepen creative placemaking work and to plan and implement an Arts Innovation District in Upham’s Corner.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Environment America Research and Policy Center',100000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To launch campaigns calling for ambitious clean energy goals and effective implementation of existing commitments in Massachusetts cities and towns.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Health Care Without Harm',550000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To launch the Massachusetts Health Care Climate Alliance to catalyze health care executive engagement in climate action.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Huntington Theatre Company',325000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support and to support the creation of a plan for the New Huntington complex.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Isabella Stewart Gardner Museum',325000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support and risk capital for experiments in visitor experience, audience diversification, new curatorial models, and multidisciplinary programs.',NULL,NULL,NULL,NULL)
,('Barr Foundation','LearnLaunch',200000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To launch the public-private Massachusetts Personalized Learning Edtech (MAPLE) Consortium.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Afterschool Partnership',125000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Business Alliance for Education',300000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support as the Alliance works to achieve excellence, opportunity, and innovation in education.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Communities Action Network',200000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To expand access to high-quality vocational technical education in Massachusetts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Development Finance Agency',1965000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To award grants for the planning, development, and build-out of arts-related collaborative work spaces.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Nonprofit Network',450000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Metropolitan Area Planning Council',1525000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To advance the role of the arts as a core municipal planning competency through education, project funding, advocacy, and policy development.',NULL,NULL,NULL,NULL)
,('Barr Foundation','National Academy Foundation',250000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To plan for Future Ready Venture implementation in New England.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Nurtury',100000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To build system capacity for growth and success.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Phoenix Charter Academy Foundation',300000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Phoenix Charter Academy Network’s school model redesign planning process.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Roca',300000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the direct-service delivery and expansion of Roca’s intervention model for high-risk young men in Boston as part of the Massachusetts Juvenile Justice Pay for Success Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Smart from the Start',400000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support as Smart from the Start works to provide family and school readiness programs aimed at preventing the achievement gap.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Social Innovation Forum',100000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To strengthen Social Innovation Forum’s marketplace approach to social impact in Greater Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Stichting European Climate Foundation',2000000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Pooled Fund for International Energy, for global efforts to champion clean energy choices.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Marion Institute',600000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support community engagement and technical analysis for Bus Rapid Transit (BRT) pilots in Greater Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Massachusetts Institute for a New Commonwealth',455000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To assess transit-oriented development potential in Gateway Cities.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Trustees of Boston College',450000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support City Connects in Boston Public Schools.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Trustees of Reservations',1200000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To conduct site analyses and outreach for Trustees'' work on the Boston waterfront.',NULL,NULL,NULL,NULL)
,('Barr Foundation','University of Massachusetts Foundation',360000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a coastal protection feasibility analysis, conducted by the UMass Boston Sustainable Solutions Lab.',NULL,NULL,NULL,NULL)
,('Barr Foundation','UP Education Network',300000,'2016-12-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To standardize pedagogy and curriculum across the UP network, including successful strategies to educate English language learners and students with disabilities.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Environmental Grantmakers Association',80000,'2016-11-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the EGA Environmental Fellowship Program and the placement of four fellows at Barr grantee organizations.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Hispanics in Philanthropy',25000,'2016-11-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support an executive leadership transition.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Home Energy Efficiency Team',125000,'2016-11-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To conduct research to identify super-emitter gas leaks and the chemicals in gas in Massachusetts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Mercy Corps',100000,'2016-11-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide emergency hurricane relief to smallholder farmers in rural Haiti.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New England Blacks in Philanthropy',1500,'2016-11-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues',NULL,NULL,NULL,NULL)
,('Barr Foundation','Northeast Energy Efficiency Partnerships',150000,'2016-11-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support research, analysis, and convening to develop pathways to strategic electrification in the Northeast.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Northeast States for Coordinated Air Use Management',150000,'2016-11-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To conduct an analysis of a greenhouse gas emissions reduction pathway for New England.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Nurtury',50000,'2016-11-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To develop a transition plan to sustain the Put Massachusetts Kids First Coalition.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Union of Concerned Scientists',250000,'2016-11-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support outreach on, and analysis of, climate impacts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Funders’ Network for Smart Growth and Livable Communities',8900,'2016-11-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues',NULL,NULL,NULL,NULL)
,('Barr Foundation','ClimateWorks Foundation',3000000,'2016-11-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a multi-funder partnership to accelerate the phase-out of hydrofluorocarbons (HFCs) while integrating energy efficiency.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston’s Higher Ground',100000,'2016-10-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Coalition of Schools Educating Boys of Color',5000,'2016-10-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a Northeast regional gathering, “Trauma in the Village,” co-hosted with the Collaborative Parent Leadership Action Network (CPLAN).',NULL,NULL,NULL,NULL)
,('Barr Foundation','E4TheFuture fka Conservation Services Group',25000,'2016-10-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To produce a national report on energy efficiency jobs.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Georgetown University',160000,'2016-10-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Transportation and Climate Initiative’s (TCI) communications planning.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Haley House',10000,'2016-10-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Haley House’s 50th anniversary celebration.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Jacob''s Pillow Dance Festival',100000,'2016-10-24','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To expand programs that engage local year-round residents, organizations, and businesses, and to plan and implement dance field convenings in 2017 and 2018.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Boston Foundation',2000000,'2016-10-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Martin''s Park Maintenance Fund.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Fund for Parks and Recreation in Boston',1000000,'2016-10-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To design and build Martin''s Park.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Ballet Theatre of Boston',30000,'2016-09-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To conduct stakeholder focus groups as part of a founder succession planning process.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Diploma Plus',1500,'2016-09-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Diploma Plus’s 20th Anniversary Gala.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grants Managers Network',25000,'2016-09-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Campaign for Excellence in Grants Management.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Handel and Haydn Society',30000,'2016-09-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To produce a five-year strategic plan.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Institute of Technology',50000,'2016-09-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To establish a “Boston Laboratory” initiative at the MIT Media Lab for cultural experimentation and intervention.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Museum of African American History',35000,'2016-09-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To conduct business planning for operations and programming and to prepare for the Museum’s 50th anniversary.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Boston Foundation',300000,'2016-09-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Success Boston, a citywide college completion initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','University of Massachusetts Foundation',2500,'2016-09-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the UMass Boston Center for Collaborative Leadership’s 2016 Online Training Series.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Arts Midwest',900000,'2016-09-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide training and technical assistance in communications and building public will strategies; strengthen the community engagement capacity of pilot organizations; and experiment with new messaging and activities as part of the Creating Connection initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Ceres',500000,'2016-09-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To mobilize and deploy networks of businesses and investors to support clean energy and climate action.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Complete College America',350000,'2016-09-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support improvements to postsecondary remediation in New England.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Conservation Law Foundation',450000,'2016-09-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Transportation for Massachusetts Coalition (T4MA)’s transportation advocacy and communication.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Emerson College',700000,'2016-09-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide HowlRound support for general operations, increased technology capabilities, marketing, convenings, and a case study.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Generations Incorporated',150000,'2016-09-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide matching funds for a federal Social Innovation Fund grant supporting program expansion in Boston Public Schools and an independent evaluation.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grantmakers for Effective Organizations',225000,'2016-09-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Independent Sector',300000,'2016-09-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support organizational development.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Charter Public School Association',100000,'2016-09-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To develop and launch a common application for Boston charter schools.',NULL,NULL,NULL,NULL)
,('Barr Foundation','North American Council for Online Learning, Ltd.',1500000,'2016-09-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support general operations and CompetencyWorks.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Smart Growth America',700000,'2016-09-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Transportation for America (T4A) in helping transportation agencies use data to inform decision-making for more sustainable and equitable policies.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Sprout',300000,'2016-09-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the pilot implementation and planning of Somerville STEAM Academy.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The MATCH School Foundation',2200000,'2016-09-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the implementation and evaluation of Match Beyond.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Silk Road Project',1000000,'2016-09-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To increase capacity for fundraising and engagement of global audiences, and to explore revenue-generating products and initiatives as part of the ArtsAmplified initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Trustees of Boston University',1000000,'2016-09-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To expand and diversify the content, personnel, and formats of WBUR’s The ARTery.',NULL,NULL,NULL,NULL)
,('Barr Foundation','uAspire',1000000,'2016-09-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support research and dissemination on college affordability topics to impact systems change.',NULL,NULL,NULL,NULL)
,('Barr Foundation','United States Artists',2080000,'2016-09-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support 18 USA Fellows from Massachusetts and New England, to support annual convenings, and to contribute to an operations endowment.',NULL,NULL,NULL,NULL)
,('Barr Foundation','University of Massachusetts Foundation',330000,'2016-09-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the UMass Boston McCormack Graduate School to carry out Phase II of Climate Ready Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','City of Boston',65000,'2016-08-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To act on Climate Ready Boston recommendations for priority flood mitigation in East Boston and Charlestown.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Health Care Without Harm',25000,'2016-08-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a workshop to strengthen healthcare’s role in anchoring community resilience.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Map Education',70000,'2016-08-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Map Academy’s Commonwealth charter school application process.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Institute of Technology',175000,'2016-08-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support HUBweek’s new director of Art and Creative Initiatives position and the planning and implementation of its arts, culture, and engagement initiatives.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Marion Institute',300000,'2016-08-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support community engagement for Phase I of a Bus Rapid Transit (BRT) pilot.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Third Sector New England',75000,'2016-08-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the City Awake Delegates program for next-generation civic discourse and leadership, a program of the Greater Boston Chamber of Commerce.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Third Sector New England',3000,'2016-08-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To produce “Valuing our Nonprofit Workforce,” a report and online searchable database on nonprofit compensation and practices in New England.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Trustees of Reservations',250000,'2016-08-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To extend the planning period for a Boston waterfront initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','A Better City Initiative',5000,'2016-08-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the 2016 Norman B. Leventhal Excellence in City Building Awards.',NULL,NULL,NULL,NULL)
,('Barr Foundation','African Community Economic Development Organization of New England',250000,'2016-08-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide general operating support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Brookings Institution',50000,'2016-08-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To address environmental sustainability and access to economic opportunity.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Center for Collaborative Education Metro Boston',180000,'2016-08-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To research the high school characteristics and post-secondary success among Boston Public School graduates.',NULL,NULL,NULL,NULL)
,('Barr Foundation','ClimateWorks Foundation',50000,'2016-08-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To develop a global study on new mobility services, electrification, and automation.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Holyoke Public Schools',300000,'2016-08-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Holyoke Public Schools’ phase II of high school redesign.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Innovation Network for Communities',75000,'2016-08-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide supplemental support for the European climate innovations study trip, hosted by the Boston Green Ribbon Commission, focused on carbon neutrality and long-term climate resilience.',NULL,NULL,NULL,NULL)
,('Barr Foundation','NECEC Institute',60000,'2016-08-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support strategic planning and an integrated business model blueprint development.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Conservation Law Foundation',70000,'2016-06-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To search for a new director of the Transportation for Massachusetts Coalition (T4MA).',NULL,NULL,NULL,NULL)
,('Barr Foundation','EDUCAUSE',200000,'2016-06-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the MyWays project development and dissemination.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grantmakers for Education',7500,'2016-06-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','Great Schools Partnership',150000,'2016-06-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the development of competency-based learning at Melrose Public Schools.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Rockefeller Philanthropy Advisors',100000,'2016-06-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Fund for Shared Insight’s efforts to increase foundation openness.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Boston Foundation',5000,'2016-06-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues for New England International Donors',NULL,NULL,NULL,NULL)
,('Barr Foundation','University of Massachusetts Donahue Institute',177000,'2016-06-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Massachusetts Association of School Supertintendents in refining the New Superintendents’ Induction Program to include a vision for personalized learning.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Boston Foundation',250000,'2016-06-13','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To partner in the Live Arts Boston (LAB) fund for new artistic work.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Children’s Museum',225000,'2016-06-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Museums, Libraries, and Community Organizations Statewide School Readiness Project.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Debate League',300000,'2016-06-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support general operations.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Redevelopment Authority',320000,'2016-06-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To commission an engineering study of coordinated smart utilities infrastructure in the South Boston Dorchester planning area.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Children’s Investment Fund',820000,'2016-06-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support general operations and an independent program evaluation.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Educators for Excellence',500000,'2016-06-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the launch of E4E’s Boston Chapter.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Gateway to College National Network',2440000,'2016-06-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To implement six new Gateway to College sites and to strengthen the existing six Massachusetts sites.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grub Street',675000,'2016-06-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To engage new, more diverse writing students and to develop new income streams as part of the ArtsAmplified initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','KIPP Massachusetts',500000,'2016-06-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the design and implementation of an improved high school experience.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Local Initiatives Support Corporation',250000,'2016-06-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Massachusetts Green Retrofit Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New Classrooms Innovation Partners',500000,'2016-06-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the expansion of “Teach to One: Math” to New England.',NULL,NULL,NULL,NULL)
,('Barr Foundation','OneGoal',500000,'2016-06-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support expansion in Massachusetts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Partnership Project',550000,'2016-06-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the 2016 Climate Action Campaign.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Teach Plus Incorporated',495000,'2016-06-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Massachusetts Statewide Teaching Policy Fellowship.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Lawrence and Lillian Solomon Foundation',300000,'2016-06-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To establish and direct a greenway grants and technical assistance program for the Greater Boston area.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Third Sector New England',120000,'2016-06-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support First Teacher’s growth, sustainability, and evaluation capacity.',NULL,NULL,NULL,NULL)
,('Barr Foundation','West End House',1000000,'2016-06-08','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To refurbish and expand art facilities and to build operating and facility reserves.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Associated Grantmakers of Massachusetts',2500,'2016-05-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues for Boston Education Funders',NULL,NULL,NULL,NULL)
,('Barr Foundation','Brooke School Foundation',300000,'2016-05-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support start-up operating costs at Brooke High School.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grantmakers in the Arts',25000,'2016-05-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues',NULL,NULL,NULL,NULL)
,('Barr Foundation','Margarita Muñiz Academy Foundation',150000,'2016-05-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To hire a director of strategic development and to conduct sustainability planning.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Advocates for Children',200000,'2016-05-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide general operating and capacity-building support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Neighborhood House Charter School',300000,'2016-05-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To plan for a high-quality expansion.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Third Sector New England',10000,'2016-05-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues for the Early Childhood Funders Collaborative',NULL,NULL,NULL,NULL)
,('Barr Foundation','United Way of Massachusetts Bay',1400000,'2016-05-05','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the design and implementation planning for high-quality universal pre-Kindergarten in Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Redevelopment Authority',210000,'2016-04-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To conduct the visioning and feasibility phase of a waterfront planning process as part of Imagine Boston 2030.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Center for Effective Philanthropy',50000,'2016-04-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support CEP’s 2017 conference in Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grantmakers in the Arts',150000,'2016-04-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support GIA’s national forums.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Relief Society of Tigray (REST)',100000,'2016-04-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide emergency seed to drought-affected households in the Bete Gebriel watershed and nearby communities in Ethiopia.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Massachusetts Institute for a New Commonwealth',150000,'2016-04-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the creation of a learning community to unlock opportunities in next-generation accountability for learners in small to midsize urban districts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','TransitCenter',25000,'2016-04-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To include the City of Cambridge in the National Association of City Transportation Officials (NACTO) 2016 Transit Program Accelerator.',NULL,NULL,NULL,NULL)
,('Barr Foundation','University of Wisconsin Foundation',60000,'2016-04-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the State Smart Transportation Initiative (SSTI) in developing a trip-making tool for detecting the accessibility in reaching destinations.',NULL,NULL,NULL,NULL)
,('Barr Foundation','World Music',30000,'2016-04-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To complete a five-year strategic planning process.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Dance Alliance',10000,'2016-03-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Wheels UP! New England Town Hall on Physically Integrated Dance in June 2016.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Generation Teach',100000,'2016-03-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the 2016 Boston summer teaching fellowships.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grantmakers for Effective Organizations',12000,'2016-03-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','Innovation Network for Communities',200000,'2016-03-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Boston Green Ribbon Commission 80X50 Initiative to advance the City of Boston''s deep de-carbonization goals.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Merck Family Fund',300000,'2016-03-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To conduct research and analysis to help strengthen the Regional Greenhouse Gas Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','University of Massachusetts Foundation',80000,'2016-03-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To produce a white paper on energy pathways in Massachusetts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Associated Grant Makers',300000,'2016-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support The Summer Fund program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','City of Boston',525000,'2016-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To close critical Hubway bike share gaps in transit-dependent neighborhoods.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Environmental Grantmakers Association',10000,'2016-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation member support',NULL,NULL,NULL,NULL)
,('Barr Foundation','Funders’ Network for Smart Growth and Livable Communities',400000,'2016-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To strengthen the philanthropic mission of the Funders’ Network.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Global Philanthropy Partnership',600000,'2016-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Carbon Neutral Cities Alliance.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Global Philanthropy Partnership',300000,'2016-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Urban Sustainability Directors Network.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Hispanics in Philanthropy',5000,'2016-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the HIP 2016 Leadership Convening.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Department of Transportation',300000,'2016-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To better analyze community patterns and to increase MassDOT’s outreach capacity.',NULL,NULL,NULL,NULL)
,('Barr Foundation','MASSCreative',385000,'2016-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To strengthen administrative systems, staffing, and capacity for external partnerships and advocacy campaigns.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Metropolitan Area Planning Council',4250000,'2016-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support mobility, clean energy, and climate resiliency planning within MAPC’s Greater Boston region.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New Hampshire Learning Initiative',550000,'2016-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support NH Vision 2.0.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Northeast Sustainable Energy Association',7800,'2016-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a Boston–Copenhagen learning exchange in June 2016 around ideas and best practices in climate-change mitigation and resiliency.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Sprout',150000,'2016-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the planning and development of the Somerville STEAM Academy.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Boston Private Industry Council',350000,'2016-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Boston Compact’s planning of a unified school enrollment system in Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Energy Foundation',3000000,'2016-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To accelerate clean energy in the U.S. Northeast.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Tides Center',5000,'2016-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues for Emerging Practitioners in Philanthropy and support for the Boston Chapter',NULL,NULL,NULL,NULL)
,('Barr Foundation','Urban Age Institute',305000,'2016-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Meeting of the Minds conferences and networking that will advance mobility innovation in Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Asian American-Pacific Islanders in Philanthropy',10000,'2016-02-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','Associated Grant Makers',21500,'2016-02-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Harbor Island Alliance',300000,'2016-02-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support first-year activities of a new entity, Boston Harbor Now, created by the merger of the Boston Harbor Island Alliance and The Boston Harbor Association.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Schools Fund',50000,'2016-02-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the development of Boston Public Schools’ three-year strategic plan.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Clean Energy Group',300000,'2016-02-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide technical assistance to Massachusetts communities developing resilient power projects and to educate policymakers on resilient power policy and program design.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Lift Up Africa',6000,'2016-02-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues for Big Bang Philanthropy',NULL,NULL,NULL,NULL)
,('Barr Foundation','Livable Streets Transportation Alliance of Boston',250000,'2016-02-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To organize and advocate for surface-level transportation improvements.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Nonprofit Network',200000,'2016-02-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support staffing and new policy engagement.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New England Foundation for the Arts',300000,'2016-02-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To produce the third installment in the Creative Economy Employment Report series.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Philanthropy Roundtable',1000,'2016-02-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','Technology Affinity Group',2000,'2016-02-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','Toxics Action Center',300000,'2016-02-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To organize campaigns that bring together community and faith-based groups across New England to inform clean energy policies.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Trustees of Reservations',250000,'2016-02-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To explore the feasibility of and conduct planning for a prospective Boston waterfront initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Advanced Energy Economy Institute',190000,'2016-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To develop a roadmap for a 21st-century electricity system in New England and Pennsylvania and to promote a robust Clean Power Plan in Pennsylvania.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Center for Collaborative Education Metro Boston',250000,'2016-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the launch of the Massachusetts Personalized Learning Network (MA PLN).',NULL,NULL,NULL,NULL)
,('Barr Foundation','Communication Network',5000,'2016-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','Consultative Group on Biological Diversity',7500,'2016-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues for the Climate and Energy Funders Group',NULL,NULL,NULL,NULL)
,('Barr Foundation','Council on Foundations',25000,'2016-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grants Managers Network',5340,'2016-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','Hispanics in Philanthropy',10000,'2016-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','Independent Sector',15000,'2016-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','National Committee for Responsive Philanthropy',10000,'2016-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','Northeast Sustainable Energy Association',13250,'2016-01-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a one-day workshop on lessons from Copenhagen and Stockholm decarbonizations strategies, to be held at the BuildingEnergy Boston Conference in March 2016.',NULL,NULL,NULL,NULL)
,('Barr Foundation','A Better City Initiative',325000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support an economic analysis on the impact of MBTA services on the Boston metro region and a feasibility study on a single-payment method for regional transit systems across the state.',NULL,NULL,NULL,NULL)
,('Barr Foundation','A Better City Initiative',185000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To hire a senior-level staff position to educate on energy issues.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Educational Development Foundation',800000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support National Association for the Education of Young Children (NAEYC) accreditation in Boston Public Schools'' early childhood programs.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Municipal Research Bureau',600000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To enhance staff and research capacity and to develop a business plan.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Carbon Roots International',100000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide general operating support to help fund and leverage financing for continued expansion.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Farm Africa Limited',100000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To implement coffee rejuvenation technology for coffee farmers'' work in Ethiopia that improves income and sustainability and that protects forestland.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Institute for Transportation and Development Policy',250000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To continue technical support and community outreach for Bus Rapid Transit (BRT) in Greater Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Jumpstart for Young Children',1200000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core operating support as Jumpstart works to build the language, literacy, and social-emotional skills of 6,000 economically disadvantaged children in Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Museum of Contemporary Art Foundation',500000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To promote artists, provide risk capital, and manage exhibition partnerships in a newly-expanded campus.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Medic Mobile',160000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support general operations and to provide advisory services and support around mobile technology to other nonprofit organizations.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Regulatory Assistance Project',240000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide technical assistance and training to New England regulators and policy-makers on policy and regulatory design and frameworks that accelerate clean-energy adoption.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Rockefeller Philanthropy Advisors',3000000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support creative placemaking grants, research, and field-building through ArtPlace America.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Rose Fitzgerald Kennedy Greenway Conservancy',300000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To enhance the public art program and to provide general operating support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','San Francisco Chamber of Commerce Foundation',350000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To enable the Chambers for Innovation and Clean Energy to educate local chambers of commerce in Connecticut and Massachusetts on clean-energy programs and policies.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Stand for Children Leadership Center',400000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core operating support for Stand for Children Massachusetts and its family engagement and organizing so that children have increased access to high-quality early and K-12 education.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Technical Development Corporation',600000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of technical assistance, training, and grants through the Barr-Klarman Arts Capacity Building Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Alliance for Business Leadership',100000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To educate and engage the progressive business community in energy and transportation issues.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Bridgespan Group',1000000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Leading for Impact–Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Tides Foundation',1000000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support The Years Project, LLC''s production of Season Two of Years of Living Dangerously, a television and internet project dedicated to finding solutions to climate change.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Yard',500000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To expand programming and plan for facilities upgrades to serve year-round residents and visitors.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Year Up',5000000,'2015-12-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the research and development of new models, the sharing of best practices, and the expansion of Year Up''s direct-service program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','A Far Cry',160000,'2015-11-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To increase staff size and to establish a risk and opportunities fund.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Americans for the Arts',125000,'2015-11-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Massachusetts’ participation in the Arts & Economic Prosperity V study.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Americans for the Arts',70000,'2015-11-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the 2016 Americans for the Arts Annual Convention in Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Community Capital',200000,'2015-11-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support its work with the Federal Reserve Bank of Boston as the Bank commissions independent evaluations and shares lessons learned on round two of its Massachusetts Working Cities Challenge.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Cultural Data Project',110000,'2015-11-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Massachusetts’ participation in the Cultural Data Project, to provide training, and to further improve the organization''s advocacy technology platform.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grants Managers Network',10000,'2015-11-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support GMN’s 2016 Annual Conference and to support the New England Regional Chapter.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Afterschool Partnership',125000,'2015-11-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support advocacy for out-of-school time initiatives.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New England Blacks in Philanthropy',1500,'2015-11-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','Roca',150000,'2015-11-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the direct-service delivery and expansion of Roca’s intervention model for high-risk young men in Boston as part of the Massachusetts Juvenile Justice Pay for Success Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Massachusetts Institute for a New Commonwealth',250000,'2015-11-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To conduct public-opinion surveys and engage key stakeholders about transportation issues statewide.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Urbano Project',60000,'2015-11-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative Youth Arts Mastery Cohort.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Arts Midwest',180000,'2015-10-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To plan and launch an initiative focused on building public will for the arts in Massachusetts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','EdVestors',20000,'2015-10-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Youth Arts Impact Network and to conduct national research on youth arts evaluation.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Funders’ Network for Smart Growth and Livable Communities',8900,'2015-10-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','Mothers2Mothers International',175000,'2015-10-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To continue capacity building and technical assistance for the Kenya Mentor Mother Program and to transition support for m2m-managed model sites.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Smart Growth America',150000,'2015-10-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support crowd-sourced planning and fiscal analysis for place-based social equity strategies in the Boston metro area.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Boston Foundation',150000,'2015-10-28','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Boston Opportunity Agenda.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Commonwealth of Massachusetts Office of the Attorney General',70000,'2015-10-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support an independent electric reliability analysis and modeling to take into account the retirement of the Pilgrim Nuclear Power Station.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston College Trustees',25000,'2015-09-25','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Boston College Law School Forum on Philanthropy and the Public Good.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Harbor Island Alliance',50000,'2015-09-25','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To explore a potential merger with The Boston Harbor Association.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Ideas in Action',5000,'2015-09-25','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the 2015 TEDxBeaconStreet Conference and Adventures.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Innovation Network for Communities',190000,'2015-09-25','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a European climate innovations study trip, hosted by the Boston Green Ribbon Commission, focused on carbon neutrality and long-term climate resilience.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Institute for Transportation and Development Policy',162000,'2015-09-25','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To organize and host two sustainable transit study tours to Mexico City.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Boston Foundation',50000,'2015-09-25','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the organizational review of the Massachusetts Department of Elementary & Secondary Education.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston After School & Beyond',2000000,'2015-09-16','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide operating support to strengthen the partnerships and deepen the knowledge base contributing to out-of-school-time program quality.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Harbor Association',140000,'2015-09-16','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To institutionalize climate preparedness and resilient design in Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','BRAC USA',85000,'2015-09-16','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To evaluate BRAC’s Barr-funded Empowerment and Livelihood for Adolescents program in Uganda.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Clean Water Fund',400000,'2015-09-16','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To implement outreach, organizing, and policy education to ensure Massachusetts reaches its greenhouse gas reduction goals.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Codman Square Neighborhood Development Corporation',100000,'2015-09-16','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To complete the Eco-Innovation District initiatives and pilots, including energy retrofits in existing neighborhood housing and local clean energy generation.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Conservation Law Foundation',950000,'2015-09-16','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Transportation for Massachusetts Coalition (T4MA)’s efforts to reform transportation.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Emerson College',200000,'2015-09-16','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support to ArtsEmerson in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Enterprise Community Partners',550000,'2015-09-16','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the design of equitable, sustainable, and connected communities that enable more low-income people to live near public transit.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Environmental League of Massachusetts',300000,'2015-09-16','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To coordinate the Global Warming Solutions Project network.',NULL,NULL,NULL,NULL)
,('Barr Foundation','FoProBiM',200000,'2015-09-16','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To mobilize and strengthen the capacity of targeted stakeholder groups in the Parc National des Trois Baies, in northeast Haiti, to actively participate in the management of the newly designated Marine Managed Area.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Global Footprint Network',300000,'2015-09-16','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To enhance the Sustainable Development Return on Investment tool and to provide general support for core sustainability research.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New Dance Complex',500000,'2015-09-16','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide operating support and to make capital improvements.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Oxfam-America',100000,'2015-09-16','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To further improve the organizational abilities of two farmers’ organizations to sustainably provide services to local farmers.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Social Work and Research Center',110000,'2015-09-16','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support to train women as solar engineers, enhance measurement and evaluation capabilities, and strengthen the organization''s network of affiliates.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Strategies for Children',400000,'2015-09-16','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide operating support as the organization works to ensure that Massachusetts children have access to high-quality early education and care that prepares them for success in school and life.',NULL,NULL,NULL,NULL)
,('Barr Foundation','United Way of Massachusetts Bay and Merrimack Valley',200000,'2015-09-16','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide operating support to Thrive in 5 as it pursues its current school-readiness agenda and simultaneously determines its path going forward.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Innovation Network for Communities',30000,'2015-09-10','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the redesign of the Boston Green Ribbon Commission website.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Interaction Institute for Social Change',150000,'2015-08-24','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support public engagement during phase II of the Go Boston 2030 mobility visioning process.',NULL,NULL,NULL,NULL)
,('Barr Foundation','National Academy Foundation',50000,'2015-08-24','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To conduct strategic planning for the Future Ready Venture Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Sociedad Latina',150000,'2015-08-24','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide operating support and funding for strategic and fund-development planning.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Boston Foundation',25000,'2015-08-24','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support The Boston Foundation Centennial Gala.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Third Sector New England',150000,'2015-08-24','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To subsidize executive and organizational transition services for Barr Foundation partners.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Advanced Energy Economy Institute',55000,'2015-07-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Best Practices Forum: High-Performance Electricity System.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Communities Action Network',5000,'2015-07-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Carry It On: Celebrating 30 years of Social and Economic Justice.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Voter Education Network',40000,'2015-07-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support community engagement as part of the Greater Boston Bus Rapid Transit (BRT) campaign.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Nuestra Comunidad Development Corporation',50000,'2015-07-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support community-level engagement in neighborhoods surrounding Dudley Square to ensure that Bus Rapid Transit (BRT) corridors, if built, are aligned with the communities’ priorities and expectations.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Nurtury',15000,'2015-07-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To complete the planning and feasibility study for a Boston Early Childhood Data Center, in partnership with Thrive in 5.',NULL,NULL,NULL,NULL)
,('Barr Foundation','PolicyLink',25000,'2015-07-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Equity Summit 2015: Boston PolicyLink Delegation.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Massachusetts Institute for a New Commonwealth',25000,'2015-07-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To collect data to better understand bus riders’ needs and current travel challenges and inform outreach efforts that can help dispel stereotypes of buses, bus riders, and Bus Rapid Transit (BRT).',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Fab Foundation',25000,'2015-07-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Boston Fab Festival.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Coalition of Schools Educating Boys of Color',10000,'2015-06-29','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the 2015 Gathering in Greater Boston, a regional conference to improve the academic achievement and affirmative development of boys and young men of color.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Commonwealth of Massachusetts Office of the Attorney General',300000,'2015-06-29','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To commission an independent analysis of New England’s energy resource options through 2030.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grantmakers for Education',7500,'2015-06-29','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Boston Foundation',5000,'2015-06-29','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues for New England International Donors',NULL,NULL,NULL,NULL)
,('Barr Foundation','Third Sector New England',70000,'2015-06-29','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support First Teacher’s capacity building as well as implementation of a full year of parent-to-parent programming to increase the school readiness of four-year-olds.',NULL,NULL,NULL,NULL)
,('Barr Foundation','YouthBuild USA',15000,'2015-06-29','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To sponsor a delegation of Boston Student Advisory Council members to participate in the COP21 U.N. climate change conference in Paris.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Artists for Humanity',100000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative Youth Arts Mastery Cohort.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Children’s Chorus',100000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative Youth Arts Mastery Cohort.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston City Singers',50000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative Youth Arts Mastery Cohort.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Youth Symphony Orchestras',100000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative Youth Arts Mastery Cohort.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Center for the Development of Teen Empowerment Programs',100000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To train high-risk youth to lead efforts to make their communities safer and stronger.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Ceres',400000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To encourage private companies, especially in the financial sector, to adopt business practices that help reduce climate change, and to inform public policy related to clean-energy investments.',NULL,NULL,NULL,NULL)
,('Barr Foundation','City Year',1000000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To increase the number of AmeriCorps members serving as full-time tutors, mentors, and role models in Boston Public Schools.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Community Music Center of Boston',100000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative Youth Arts Mastery Cohort.',NULL,NULL,NULL,NULL)
,('Barr Foundation','EdVestors',1100000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support phase III of the Boston Public School Arts Expansion Fund, continuing efforts to expand high-quality, weekly arts instruction to 100% of students up through grade 8 and developing strategies to meet the needs of high school students.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Environmental Defense Fund',650000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Alliance to Curb Climate Change, a partnership with The Nature Conservancy, with the goal of promoting bipartisan leadership on climate and energy policy in ten states, and to support Climate Corps Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Environmental Grantmakers Association',7500,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation member support',NULL,NULL,NULL,NULL)
,('Barr Foundation','Freedom House',100000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core operating and capacity-building support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','From the Top',75000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative Youth Arts Mastery Cohort.',NULL,NULL,NULL,NULL)
,('Barr Foundation','GuideStar USA',300000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To implement a new strategic plan, GuideStar 2020, an effort to build the information infrastructure for social change.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Hyde Square Task Force',100000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative Youth Arts Mastery Cohort.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Innovation Network for Communities',460000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support phase one of Climate Ready Boston, with the goal of developing a long-term strategy for the Boston metro area to prepare for the effects of climate change.',NULL,NULL,NULL,NULL)
,('Barr Foundation','KOMAZA',200000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To build and solidify capacity for information technology, monitoring, and evaluation, and for forest research and development.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Budget and Policy Center',375000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To produce research about the state budget, including assessments about the adequacy of funding for education, transportation, and the arts, and to engage in outreach and communications related to that research.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Mercy Corps',500000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To improve locally-led, natural resource management and sustainable agricultural initiatives in rural Haiti.',NULL,NULL,NULL,NULL)
,('Barr Foundation','OrigiNation',75000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative Youth Arts Mastery Cohort.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Partnership Project',550000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To coordinate the Climate Action Campaign to demonstrate to policy-makers and the media that Americans want their leaders to stand firmly on the side of public health and the environment.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Project STEP, Inc. Symphony Hall',60000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative Youth Arts Mastery Cohort.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Relief Society of Tigray (REST)',250000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To diversify farm and household food production and incomes while restoring the watershed and promoting the sustainable use of natural resources in Bete Gabriel, Hintalo Wajerat, Tigray, Ethiopia.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Sociedad Latina',75000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative Youth Arts Mastery Cohort.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Technical Development Corporation',375000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide oversight for the City of Boston''s cultural planning process, Boston Creates, and to support the City in managing the planning.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Theater Offensive',85000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative Youth Arts Mastery Cohort.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Boston Private Industry Council',300000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To coordinate the Boston Opportunity Youth Collaborative and implement a collective impact plan to build education and career pathways for opportunity youth in Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Massachusetts Institute for a New Commonwealth',450000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide core operating and capacity-building support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Nature Conservancy',400000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Alliance to Curb Climate Change, a partnership with the Environmental Defense Fund, with the goal of promoting bipartisan leadership on climate and energy policy in ten states.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Nature Conservancy',650000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To improve climate resiliency and access to high-quality information resources and planning tools for communities and stakeholders of Africa''s Lake Tanganyika, while also building the critical capacity of the Lake Tanganyika Authority.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Trust for Public Land',500000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To pilot the Climate-Smart Cities program in Boston and, later, the metro area, incorporating Boston-specific data into its modeling and online mapping tools to help inform future climate-preparedness planning.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Vote Solar',200000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To bring solar energy to scale by removing barriers to market participation in New England, with a focus on Massachusetts, Connecticut, and Vermont.',NULL,NULL,NULL,NULL)
,('Barr Foundation','West End House',85000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative Youth Arts Mastery Cohort.',NULL,NULL,NULL,NULL)
,('Barr Foundation','ZUMIX',100000,'2015-06-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative Youth Arts Mastery Cohort.',NULL,NULL,NULL,NULL)
,('Barr Foundation','A Better City Initiative',5000,'2015-05-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the 2015 Norman B. Leventhal Excellence in City Building Awards.',NULL,NULL,NULL,NULL)
,('Barr Foundation','A Better City Initiative',250000,'2015-05-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To create a public-realm plan to enhance public spaces that encourages greater use of public transit, biking, and walking throughout the City of Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','A Better City Initiative',20000,'2015-05-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To develop a mobile-source emissions calculator to generate data that will lead to a greater understanding about average fuel efficiencies and their related greenhouse gas emissions and that will serve as a performance indicator for Go Boston 2030.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Associated Grant Makers',2500,'2015-05-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues for Boston Education Funders',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Educational Development Foundation',100000,'2015-05-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support incoming Boston Public Schools superintendent Dr. Tommy Chang and a transition team in a listen-and-learn tour and in creating a 100-day-plan for the start of Dr. Chang''s tenure.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Communication Network',5000,'2015-05-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support The Communications Network''s 2015 Annual Conference.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grantmakers in the Arts',25000,'2015-05-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','Innovation Network for Communities',125000,'2015-05-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To launch and implement the Renewable Energy Leadership Prize, a $100,000 award to the nonprofit institution in Greater Boston that develops the most compelling strategy for large-scale renewable energy generation from either on-site or off-site sources.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Charles River Conservancy',75000,'2015-05-13','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To help complete The Lynch Family Skatepark.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Foundation Center',100000,'2015-04-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To redesign the Glasspockets transparency and accountability assessment and the benchmark visualization, as well as undertake communications efforts to promote transparency principles and further Glasspockets use.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Merck Family Fund',150000,'2015-04-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To conduct the Economic Benefits of Regional Greenhouse Gas Initiative research project.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Third Sector New England',5000,'2015-04-27','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues for the Early Childhood Funders Collaborative',NULL,NULL,NULL,NULL)
,('Barr Foundation','Rockefeller Philanthropy Advisors',30000,'2015-04-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To conduct phase two of the Theory of the Foundation initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Associated Grant Makers',2500,'2015-04-06','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation member support for the Boston Social Justice Funders Network',NULL,NULL,NULL,NULL)
,('Barr Foundation','AVANI Society',250000,'2015-04-06','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support operations and to increase organizational capacity to produce textiles, dyes, and other products in an economically efficient and sustainable manner in the Kumaon region of the Indian state Uttarakhand.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Children’s Museum',44000,'2015-04-06','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support organizational and professional development through the Barr Fellows program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','City Year',44000,'2015-04-06','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support organizational and professional development through the Barr Fellows program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Conservatory Lab Charter School Foundation',44000,'2015-04-06','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support organizational and professional development through the Barr Fellows program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Dorchester Youth Collaborative',44000,'2015-04-06','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support organizational and professional development through the Barr Fellows program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Family Independence Initiative',44000,'2015-04-06','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support organizational and professional development through the Barr Fellows program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grantmakers for Effective Organizations',10000,'2015-04-06','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','North Bennet Street School',44000,'2015-04-06','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support organizational and professional development through the Barr Fellows program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Nurtury',44000,'2015-04-06','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support organizational and professional development through the Barr Fellows program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The B.E.L.L. Foundation',44000,'2015-04-06','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support organizational and professional development through the Barr Fellows program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Thompson Island Outward Bound Education Center',44000,'2015-04-06','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support organizational and professional development through the Barr Fellows program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','uAspire',44000,'2015-04-06','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support organizational and professional development through the Barr Fellows program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','A Better City Initiative',420000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To implement the Challenge for Sustainability program, which encourages Boston businesses to invest in environmentally sustainable practices meant to reduce their carbon footprint.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Actors’ Shakespeare Project',150000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Ballet Theatre of Boston',250000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Center for the Arts',200000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Lyric Opera Company',200000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Redevelopment Authority',65000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To extend the EcoDistricts Energy Fellowship position for one year in order to complete research and pilot projects, communicate the outcomes, and devise strategies and actions to institutionalize the work.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Commonwealth Zoological Corporation',500000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To renovate the George Robert White Children’s Zoo in Franklin Park.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Community Labor United',600000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To build a strong community base of support for climate action through the Green Justice Coalition, engaging working-class communities of color in developing and implementing an energy vision and action plan.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Conservation International Foundation',350000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To implement Vital Signs at national scale in Kenya in order to provide near-real-time data and risk-management tools that guide sustainable agricultural and ensure healthy and resilient livelihoods, biodiversity, and ecosystems in the face of climate change.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Conservation Law Foundation',400000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Transportation for Massachusetts Coalition (T4MA)’s strategic planning process to clarify its goals and design strategies.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Environment Northeast d/b/a Acadia Center',180000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To conduct outreach, education, and engagement on EnergyVision, a framework that sets forth a pathway to creating an energy system that allows the Northeast region to achieve deep greenhouse gas reductions by 2050.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Global Philanthropy Partnership',300000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Carbon Neutral Cities Alliance in advancing the development and implementation of deep carbon-reduction strategies in twenty-five cities around the world in ways that improve quality of life, increase equity, and enhance preparedness for the effects of climate change.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Handel and Haydn Society',100000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Innovation Network for Communities',1160000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Green Ribbon Commission, a convening of Boston''s business and civic leaders helping the City achieve its Climate Action Plan goals.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Inquilinos Boricuas en Acción',150000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Living Goods',500000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide operating support and help Living Goods scale its work in Uganda.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Lyric Stage Company of Boston',100000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Madison Park Development Corporation',150000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Advocates for Children',100000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Boston School Reform Project, which aims to address persistent achievement gaps in Boston Public Schools.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Society for the Prevention of Cruelty to Animals',1500000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support financial assistance programs funded through the Angell Centennial Campaign.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Museum of African American History',200000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','NECEC Institute',300000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To engage in clean-energy policy analysis, education, and strategic communications in the New England region.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New World Foundation',400000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To select and award grants to community-based organizations that are active and effective members of the Green Justice Coalition.',NULL,NULL,NULL,NULL)
,('Barr Foundation','RARE',500000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To create a portfolio of climate-compatible development projects and use it to significantly expand funding for climate adaptation and mitigation work that also advances conservation.',NULL,NULL,NULL,NULL)
,('Barr Foundation','RAR-MA',200000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Raising A Reader expansion in high-need Boston neighborhoods, focusing on low-income families and English language learners.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Rennie Center for Education Research & Policy',130000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the continuation and expansion of the Condition of Education in the Commonwealth research project through printed materials, digital media, and convenings.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Root Capital',400000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To strengthen and expand Root Capital''s capacity to plan, implement, and measure its efforts to increase smallholder farmer resilience to climate change and related environmental shocks.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Smart Growth America',500000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support LOCUS’s efforts to increase low-emission, affordable, transit-oriented development projects by conducting research that identifies potential walkable urban neighborhoods (WalkUPS) and ideas to make them more appealing to developers.',NULL,NULL,NULL,NULL)
,('Barr Foundation','University of Massachusetts Foundation',450000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To develop a robust and innovative model for managing Indian East Himalayan forest ecosystem services and societal interactions in the face of global climate and economic change.',NULL,NULL,NULL,NULL)
,('Barr Foundation','University of Wisconsin Foundation',600000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the State Smart Transportation Initiative’s (SSTI) community of practice among change-oriented state departments of transportation (DOTs), produce research and educational materials to inform DOTs across the country, and provide technical assistance to the Massachusetts DOT.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Urban Age Institute',100000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Emerging Opportunities Project, which introduces global transportation innovation ideas that have the potential to be transformative in Boston and other cities as we aim to reduce greenhouse gas emissions.',NULL,NULL,NULL,NULL)
,('Barr Foundation','World Music, ',250000,'2015-03-02','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Asian American-Pacific Islanders in Philanthropy',1500,'2015-02-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation member support for the Boston Chapter',NULL,NULL,NULL,NULL)
,('Barr Foundation','Emerson College',25000,'2015-02-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Office of the Arts'' strategic planning process.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Independent Sector',75000,'2015-02-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To host a regional field meeting, “Threads Boston,” to explore trends facing the social sector and how to adapt to a changing environment.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Philanthropy Roundtable',1000,'2015-02-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','Tides Center',1500,'2015-02-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation member support for the Emerging Practitioners in Philanthropy Boston Chapter',NULL,NULL,NULL,NULL)
,('Barr Foundation','Associated Grant Makers',21500,'2015-01-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','Center for Collaborative Education Metro Boston',100000,'2015-01-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To develop and implement a communications strategy for the release of Phase II of Opportunity and Equity: Enrollment and Outcomes of Black and Latino Males in Boston Public Schools, in partnership with Brown University’s Annenberg Institute for School Reform, in order to educate policy-makers, school officials, and community members.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grantmakers for Effective Organizations',30000,'2015-01-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support GEO''s 2015 Learning Conference in Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Jobs for the Future',75000,'2015-01-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To educate the Massachusetts state government on strategies to pursue and secure federal funds that benefit low-income individuals and communities across the Commonwealth.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Lift Up Africa',6000,'2015-01-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues for Big Bang Philanthropy',NULL,NULL,NULL,NULL)
,('Barr Foundation','Partners in Health a Nonprofit Corporation',100000,'2015-01-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To devise solutions for maximizing solar energy production at University Hospital of Mirebalais, Haiti.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Population Council',35000,'2015-01-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To research key issues around reproductive health of young women and girls in India and provide evidence-based lessons for programs intended to advance their pregnancy- and contraception-related needs.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Technology Affinity Group',2000,'2015-01-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','Communication Network',5000,'2015-01-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','Consultative Group on Biological Diversity',7500,'2015-01-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues for the Climate and Energy Funders Group',NULL,NULL,NULL,NULL)
,('Barr Foundation','Grants Managers Network',5800,'2015-01-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','Hispanics in Philanthropy',10000,'2015-01-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','Independent Sector',15000,'2015-01-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','National Committee for Responsive Philanthropy',10000,'2015-01-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership',NULL,NULL,NULL,NULL)
,('Barr Foundation','African Wildlife Foundation',650000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To improve water management in Tanzania''s Southern Highlands in order to safeguard ecosystem services, increase food security, and enhance climate-change resilience.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Alternatives for Community and Environment',300000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To organize communities in and around Dudley Square, carry out organizational growth activities, and amplify the voices of Roxbury residents at key transportation-planning tables.',NULL,NULL,NULL,NULL)
,('Barr Foundation','American Repertory Theater',250000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Ballet Theatre of Boston',100000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the planning phase of an asset-mapping process for Greater Boston’s dance community.',NULL,NULL,NULL,NULL)
,('Barr Foundation','BBC Media Action',1000000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To replicate sustainable mobile-phone technology (mHealth) interventions that seek to increase the adoption of priority health behaviors by pregnant women and mothers of young children in India.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Ballet',250000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Chinatown Neighborhood Center',400000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To launch the Haitian Parent Engagement Project in Mattapan.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Chinatown Neighborhood Center',750000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the planning phase and build-out of a new community arts center as an anchor for Boston Chinatown''s revitalization efforts.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Harbor Association',100000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To continue work on climate-change preparedness, including hosting the Living with Water international design competition in Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Charles River Conservancy',60000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To educate the Massachusetts Department of Transportation (MassDOT) and promote a plan to ensure the successful design and implementation of two Charles River Pathways underpasses.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Conservation Law Foundation',250000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Transportation for Massachusetts Coalition (T4MA) to build a grasstops network of leaders in public health, social justice, and climate change who will enliven the conversation around the importance of public transportation and smart growth.',NULL,NULL,NULL,NULL)
,('Barr Foundation','D-tree International',600000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To expand and sustain D-tree’s Community Case Management work with community health workers in Malawi.',NULL,NULL,NULL,NULL)
,('Barr Foundation','EdVestors',450000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide operating support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Energy Consumers Alliance of New England, Inc. d/b/a Massachusetts Energy Consumers Alliance',125000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support clean-energy and energy-efficiency policy education and resources, and to pilot a project on the deployment of renewable thermal technology.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Four Corners Action Coalition',150000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a transit access and equity project that will increase the use and capacity of Boston''s Fairmont-Indigo line.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Four Corners Action Coalition',100000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support On the Move: The Greater Boston Transportation Justice Coalition''s Regional Transportation Equity Project, promoting transportation projects that benefit low-income riders and communities of color in Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Freedom From Hunger',500000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To improve the nutrition of marginalized, rural women and adolescent girls by working with 8,000 women’s self-help group members in Rajasthan, India.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Georgetown University',250000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To help the Georgetown Climate Center''s Transportation and Climate Initiative measure progress toward transportation-related greenhouse gas reduction targets and facilitate state-level discussions that support those targets.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Health Care Without Harm',590000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide technical assistance on greenhouse-gas reduction efforts in the Boston healthcare sector.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Huntington Theatre Company',250000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Institute of Contemporary Art',250000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Interaction Institute for Social Change',600000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To design and facilitate Go Boston 2030, the City of Boston’s mobility visioning process.',NULL,NULL,NULL,NULL)
,('Barr Foundation','International Development Enterprises (India)',1000000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the adoption of treadle pumps for more efficient and sustainable irrigation by smallholder farmers in Assam, India.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Isabella Stewart Gardner Museum',250000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide capacity-building support in the form of multi-year operating support, training, and technical assistance through the Barr-Klarman Arts Capacity Building Initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Business Alliance for Education',200000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To develop an action plan based on the findings in The New Opportunity to Lead report.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Immigrant and Refugee Advocacy Coalition',70000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support immigrant and refugee early education and care workforce research and development.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Institute of Technology',310000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To refine and integrate two platforms, CityScope and e-BRT, into a LEGOs-based public-engagement tool to advance Bus Rapid Transit (BRT) learning and conversation at the community level.',NULL,NULL,NULL,NULL)
,('Barr Foundation','MASSCreative',60000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support an operations planning process.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Mass Insight Education and Research Institute',500000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To launch the pilot “College Success Community” in East Boston and Charlestown, and to further refine the model.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Nonprofit Finance Fund',60000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide financial consulting to Chelsea Collaborative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Organizing and Leadership Training Center',120000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide operating support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','President and Fellows of Harvard College',5000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Harvard University Achievement Gap Initiative''s Leading Edge of Early Childhood Education: Linking Science to Policy for a New Generation of Pre-Kindergarten conference.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Root Cause Institute',35000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To research best practices in youth development programs for Black and Latino youth in Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Boston Private Industry Council',100000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To develop a formal "second chance" system that addresses the needs of disconnected Boston youth ages 16 to 24.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Center for Effective Philanthropy',500000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support core operations and leadership development activities for CEP’s senior team.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Massachusetts Institute for a New Commonwealth',75000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To conduct two surveys in the Dudley Square community to understand bus-rider needs and current challenges.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Transportation for America',200000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To harness learnings from state and local efforts to elevate Massachusetts as a national model for sustainable transportation.',NULL,NULL,NULL,NULL)
,('Barr Foundation','UP Education Network',300000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To restart a fourth Boston Public School.',NULL,NULL,NULL,NULL)
,('Barr Foundation','YouthBuild USA',50000,'2014-12-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To advance the Youth on Board youth organizing strategy in Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Ideas in Action',10000,'2014-10-16','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the 2014 TEDxBeaconStreet conference and adventures.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Community Labor United',14000,'2014-10-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To engage in an initial planning process to develop a long-term vision that positions concerns of low-income communities at the center of programs and initiatives designed to address climate change.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Enterprise Community Partners',20000,'2014-10-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the 2014 Bruner-Loeb Forum, Design for Equity, focusing on urban equity.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Mayor''s Office of New Bostonians',2500,'2014-10-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support We Are Boston 2014.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Population Foundation of India',2500,'2014-10-14','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide scholarship support for the 2014 Dasra Forum.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Hyde Square Task Force',2500,'2014-09-18','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the 2014 Making Change Happen event.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Agronomes et Vétérinaires Sans Frontières',800000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To reinforce and expand an innovative model for watershed restoration, conservation, and preservation in Haiti.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Bessie Tartt Wilson Initiative for Children',250000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support professional development for early-childhood educators.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Medical Center Corporation',5000000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To consolidate key hospital functions and modernize major facilities. A portion of this grant was recommended and paid through a donor-advised fund.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Carbon Roots International',400000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To pilot green charcoal production and sales in Northern Haiti.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Centre for Catalyzing Change',500000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To expand programs for adolescents in the West Singhbhum district of Jharkhand, India.',NULL,NULL,NULL,NULL)
,('Barr Foundation','City of Boston',150000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To hire a Climate Preparedness Fellow for two years.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Conservatory Lab Charter School Foundation',1500000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the “Securing a Sound Future” campaign to create a permanent school facility and supporting expanded enrollment. A portion of this grant was recommended and paid through a donor-advised fund.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Environment America Research and Policy Center',300000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To implement educational campaigns that help Massachusetts and other New England states meet their climate action commitments.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Fidelity Charitable Gift Fund',1000000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support grantmaking.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Food and Agricultural Research Management Limited (Farm Africa UK)',800000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To increase income for coffee farmers and conserve 149,200 hectares of the Afromontane Forest in Western Oromia, Ethiopia.',NULL,NULL,NULL,NULL)
,('Barr Foundation','FoProBiM',600000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To develop sustainable alternative sources of income for coastal community stakeholders in Caracol Bay, Haiti, while protecting local biodiversity.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Innovation Network for Communities',20000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Boston Climate Finance Summit.',NULL,NULL,NULL,NULL)
,('Barr Foundation','KickStart-International',200000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To promote the use of MoneyMaker water pumps by smallholder farmers in Kenya.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Livable Streets Transportation Alliance of Boston',50000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To begin a long-term public engagement strategy to advance Boston as a model city for bus rapid transit and sustainable urban mobility.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Livable Streets Transportation Alliance of Boston',25000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Greenway Links Initiative, a project to build a mixed-use network of linear parks and green streets in Greater Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','MAMTA Health Institute for Mother and Child',300000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To design, implement, and test a district-level model addressing the health and pregnancy planning needs of young married women in India.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Coalition for Occupational Safety and Health',100000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To research zero-waste practices, increase the recycling rate in Boston, and reduce greenhouse-gas emissions affiliated with solid-waste production and disposal.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Voter Education Network',165000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Future Boston Alliance to build Boston Youth Voice, strengthening the Boston youth-art ecosystem and ensuring Boston''s indigenous creative youth are supported.',NULL,NULL,NULL,NULL)
,('Barr Foundation','National Consumer Law Center',60000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To monitor energy-efficiency policies to ensure low- to moderate- income households reap the benefits of energy policies.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New England Foundation for the Arts',1700000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To help establish the Creative City initiative, expanding the diversity of imaginative, quality public art in Greater Boston and the infrastructure to support it. A portion of this grant was recommended and paid through a donor-advised fund.',NULL,NULL,NULL,NULL)
,('Barr Foundation','New England Grassroots Environment Fund',60000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the New England Local Energy Network, which includes representatives from nonprofits, state agencies, planning commissions, and local groups focused on local energy and climate action.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Pathfinder International',800000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To expand the integrated Population, Health, and the Environment program in the Greater Mahale Ecosystem in Tanzania.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Stichting European Climate Foundation',2000000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support energy initiatives that reduce carbon emissions.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Urban Age Institute',35000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the 2015 Meeting of the Minds conference and follow-up activities, focusing on alternative urban futures and how cities redefine themselves to be more efficient, greener, and cleaner economic clusters.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Wheelock College',75000,'2014-09-17','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To expand and strengthen the Boston Family Engagement Partnership, which promotes parent engagement in Boston''s district, charter, and parochial schools.',NULL,NULL,NULL,NULL)
,('Barr Foundation','National Association of Latino Arts and Culture',4000,'2014-09-10','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To offer scholarships to the 2014 Regional Arts Training Workshop for New England.',NULL,NULL,NULL,NULL)
,('Barr Foundation','A Better City Initiative',2500,'2014-09-09','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the 2014 Norman B. Leventhal Excellence in City Building Awards.',NULL,NULL,NULL,NULL)
,('Barr Foundation','United Way of Massachusetts Bay and Merrimack Valley',13500,'2014-08-18','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Massachusetts Budget and Policy Center''s Boston universal pre-K cost analysis.',NULL,NULL,NULL,NULL)
,('Barr Foundation','DASRA',5000,'2014-07-21','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the first annual Dasra Philanthropy Forum.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The Aspen Institute',15000,'2014-07-01','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation member support for the Aspen Philanthropy Group',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston College Trustees',5000,'2014-06-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a forum on philanthropy at Boston College Law School.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Third Sector New England',5000,'2014-06-19','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To research and publish Leadership New England, a report on nonprofit executive leadership.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Abekam',50000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support year two of PENSOLE, a piloted summer career-development program at MIT for public high-school students from Boston and Cambridge.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Abekam',1500,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation member support for New England Blacks in Philanthropy',NULL,NULL,NULL,NULL)
,('Barr Foundation','A Better City Initiative',80000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To research effective parking policies and practices and to reduce single-occupancy driving in the City of Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','African Community Economic Development Organization of New England',250000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To build organizational capacity.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Associated Grant Makers',300000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support summer camp opportunities, summer learning, and program evaluation through The Summer Fund.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston After School and Beyond',800000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Summer Learning Project, which aims to reverse summer learning loss; to improve skills associated with school, college, and career success; and to deepen school-community partnerships.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Educational Development Foundation',1996550,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To develop and implement an integrated, developmentally appropriate K–2 literacy curriculum in the Boston Public Schools.',NULL,NULL,NULL,NULL)
,('Barr Foundation','BRAC USA',800000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Empowerment and Livelihood for Adolescents program in Uganda, serving girls ages 13 to 21.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Centro Latino',150000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To build organizational capacity.',NULL,NULL,NULL,NULL)
,('Barr Foundation','City of Boston',170000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support two Greenovate Boston Fellows to act as environmental sustainability champions across city departments and in the community.',NULL,NULL,NULL,NULL)
,('Barr Foundation','City of Boston',262500,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide staffing support to facilitate a citywide visioning process and detailed action plan for integrating and empowering immigrants in Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Codman Academy Foundation',1000000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Codman Academy’s expansion from 145 high-school students to 345 students in kindergarten through 12th grade.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Cultural Data Project',112500,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide operating support as CDP transitions to an independent 501(c)(3) organization and to expand CDP''s database.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Dudley Street Neighborhood Initiative',500000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To build capacity for and expand creative placemaking along the Fairmount and Dudley corridors.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Farm Africa USA',0,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To increase income for coffee farmers and conserve 149,200 hectares of the Afromontane Forest in Western Oromia, Ethiopia.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Friends of Excel Academy',200000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a new academic campus in East Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Friends of Excel Academy',300000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a new academic campus in East Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Local Initiatives Support Corporation',500000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Green Retrofit Initiative, which increases the deployment of energy efficiency and clean-energy technologies in the Massachusetts affordable housing sector.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Massachusetts Advocates for Children',100000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To engage community stakeholders on issues of priority for Boston Public Schools, such as human capital, dual-language programs, and the superintendent search.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Metropolitan Area Planning Council',500000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Clean Energy Initiative, which helps Greater Boston municipalities implement strategies for energy management and the increased use of renewable energy.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Nurtury',200000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To launch the Learning Center at Bromley-Heath.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Oxfam America',350000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the System of Rice Intensification expansion project, increasing the food security, income, and resilience of farmers in the Artibonite Valley in Haiti.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Proteus Fund',70000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To expand the Diversity Fellowship Program.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Rennie Center for Education Research & Policy',60000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To develop policy briefs on key strategies to improve outcomes for students in the Boston Public Schools.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Technical Development Corporation',250000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide oversight for the City of Boston''s cultural planning process, Boston Creates, and to support the City in managing the planning.',NULL,NULL,NULL,NULL)
,('Barr Foundation','United Nations Foundation',220000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Global Alliance for Clean Cookstoves in coordinating, supporting, and disseminating the results of clean cooking and child survival research.',NULL,NULL,NULL,NULL)
,('Barr Foundation','United Way of Massachusetts Bay and Merrimack Valley',500000,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Thrive in 5''s implementation and evaluation of its Ready Educators Quality Improvement pilot, in partnership with United Way and the City of Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','VillageReach',2500,'2014-06-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide scholarship support for the Global Health Symposium on Health Systems Research Conference in September 2014.',NULL,NULL,NULL,NULL)
,('Barr Foundation','International Development Exchange',5000,'2014-05-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To offer scholarships to the 2014 Opportunity Collaboration conference in Ixtapa, Mexico.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Educational Development Foundation',50000,'2014-05-03','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the search for a new superintendent for the Boston Public Schools.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Redevelopment Authority',13900,'2014-04-30','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To facilitate a planning process by Seaport District stakeholders to identify pathways towards low-carbon district energy.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Abekam',1500,'2014-04-10','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation member support for New England Blacks in Philanthropy',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Chinatown Neighborhood Center',1161,'2014-03-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Barr Fellows professional development.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Center for Community Health Education, Research and Service',903,'2014-03-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Barr Fellows professional development.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Chelsea Collaborative',851,'2014-03-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Barr Fellows professional development.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Franklin Park Coalition',908,'2014-03-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Barr Fellows professional development.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Haitian American Public Health Initiatives',918,'2014-03-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Barr Fellows professional development.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Oiste Civic Education Initiative',878,'2014-03-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Barr Fellows professional development.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Young Peoples Project',414,'2014-03-31','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Barr Fellows professional development.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Hispanics in Philanthropy',5000,'2014-03-20','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Hispanics in Philanthropy''s 30th-anniversary celebration.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Vermont Natural Resources Council',5000,'2014-03-12','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support two retreats.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Educational Development Foundation',450000,'2014-03-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Phase II of the District Management Council''s work on the Boston Public Schools Data and Accountability Project.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Boston Educational Development Foundation',100000,'2014-03-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Boston Green Academy''s launch of a new middle school.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Ceres',250000,'2014-03-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide operating support.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Conservation Law Foundation',695000,'2014-03-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Transportation for Massachusetts Coalition (T4MA)’s statewide coalition-building for public transit, walking, biking infrastructure, and smart growth, and to education the incoming state administration.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Emerson College',350000,'2014-03-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support a multi-year residency for Daniel Beaty, working at Emerson College and with Boston communities to address long-standing challenges of race, class, and equitable access to opportunity.',NULL,NULL,NULL,NULL)
,('Barr Foundation','English for New Bostonians',450000,'2014-03-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support Boston Public Schools immigrant parents'' English-language learning and capacity to aid in their children''s educational success.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Generations Incorporated',100000,'2014-03-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Read to Succeed Initiative, a new, three-year effort to ensure students are proficient readers by the end of third grade.',NULL,NULL,NULL,NULL)
,('Barr Foundation','NECEC Institute',100000,'2014-03-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the New England Candidates for Clean Energy Initiative, which aims to educate New England gubernatorial candidates and the general public about clean energy and climate action during the 2014 campaign season.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Neighborhood House Charter School',170000,'2014-03-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the School Consulting Initiative, which provides professional development for teachers in South Dorchester and Mattapan.',NULL,NULL,NULL,NULL)
,('Barr Foundation','North Bennet Street School',200000,'2014-03-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To install solar-energy systems at school’s new building.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Nurtury',175000,'2014-03-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To establish a new Boston Early Childhood Data Center, in partnership with United Way and Thrive in 5.',NULL,NULL,NULL,NULL)
,('Barr Foundation','One Day on Earth Foundation',50000,'2014-03-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support One Day in Boston, a one-day filming event as part of the national Your Day. Your City. Your Future campaign.',NULL,NULL,NULL,NULL)
,('Barr Foundation','President and Fellows of Harvard College',50000,'2014-03-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Harvard Achievement Gap Initiative''s Seeding Success social marketing initiative.',NULL,NULL,NULL,NULL)
,('Barr Foundation','President and Fellows of Harvard College',5000000,'2014-03-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Harvard Art Museums’ renovation and construction.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Project Hope',75000,'2014-03-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To launch the Child Quality Care Initiative, a pilot project to train informal caregivers of children from birth to age five.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Roca',500000,'2014-03-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the Massachusetts Juvenile Justice Social Pay for Success project, designed to improve the lives of high-risk young men while reducing recidivism, saving taxpayer dollars, and promoting safer and stronger communities.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Smart from the Start',525000,'2014-03-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support core operations, infrastructure, development, and program expansions.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Smart Growth America',182000,'2014-03-07','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support research to identify the potential for new walkable neighborhoods in Greater Boston.',NULL,NULL,NULL,NULL)
,('Barr Foundation','The MATCH School Foundation',500000,'2014-03-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To build a new, permanent school facility for 700 pre-kindergarten to 5th-grade students in the Hyde Park/Mattapan neighborhood.',NULL,NULL,NULL,NULL)
,('Barr Foundation','A Better City Initiative',40000,'2014-02-06','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To build A Better City Initiative''s marketing and communications capacity.',NULL,NULL,NULL,NULL)
,('Barr Foundation','LIFT',1000,'2014-01-24','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support the 2014 upLIFTing Awards celebration.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Lift Up Africa',8629,'2014-01-23','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','Barr Foundation membership dues for Big Bang Philanthropy',NULL,NULL,NULL,NULL)
,('Barr Foundation','Fidelity Charitable Gift Fund',595000,'2013-12-09','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To support grantmaking.',NULL,NULL,NULL,NULL)
,('Barr Foundation','Alternatives for Community and Environment',30000,'2013-12-04','day','donation log','FIXME','https://www.barrfoundation.org/grantmaking/grants/','FIXME','To provide operating support.',NULL,NULL,NULL,NULL)