-
Notifications
You must be signed in to change notification settings - Fork 0
/
results.csv
We can't make this file beautiful and searchable because it's too large.
1129 lines (1129 loc) · 704 KB
/
results.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
htid,access,rights,ht_bib_key,description,source,source_bib_num,oclc_num,isbn,issn,lccn,title,imprint,rights_reason_code,rights_timestamp,us_gov_doc_flag,rights_date_used,pub_place,lang,bib_fmt,collection_code,content_provider_code,responsible_entity_code,digitization_agent_code,access_profile_code,author,catalog_url,handle_url,publisher,501c3,in_twin_cities,donor_list
coo.31924107125290,0,ic,9157794,,COO,6141330,85892519,"1566892074,9781566892070",,2007062000,Minnesota State Fair : an illustrated history / Kathryn Strand Koutsky and Linda Koutsky in collaboration with Minnesota State Fair.,"Coffee House Press ; Primary distributor, Consortium Book Sales & Distribution, c2007.",bib,2011-04-11 20:39:17,0,2007,mnu,eng,BK,COO,cornell,cornell,google,google,"Koutsky, Kathryn Strand, 1938-",https://catalog.hathitrust.org/Record/9157794,https://hdl.handle.net/2027/coo.31924107125290,Coffee House Press,True,True,"['the minnesota state fair minnesota historical society press', 'the american state fair st paul', None, 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'allan and cinda kornblum', 'lenfesty family foundation', 'rebecca rand', 'james r. thorpe foundation', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
hvd.32044121515621,0,ic,10750072,,HVD,012908947,709681152,"1566892791,9781566892797",,2011019841,Sông I sing : poems / Bao Phi.,"Coffee House Press, 2011.",bib,2019-01-10 03:26:01,0,2011,mnu,eng,BK,HVD,harvard,harvard,harvard,open,"Phi, Bao, 1975-",https://catalog.hathitrust.org/Record/10750072,https://hdl.handle.net/2027/hvd.32044121515621,Coffee House Press,True,True,"['bush foundation', 'jerome foundation', 'mcknight foundation', 'target', 'around town literary media guides', None, 'patrick and aimee butler family foundation', 'buuck family foundation', 'ruth and bruce dayton', 'stephen and isabel keating', 'lenfesty family foundation', 'mary mcdermid', None, 'woessner freeman family foundation', 'target', None, None, None]"
inu.30000001736523,0,ic,7592472,,INU,395380,25517233,,,93135276,Tick tock : short stories and woodcut / Russell Edson.,"Demitasse/Coffee House Press, c1992.",bib,2014-09-26 03:28:04,0,1992,mnu,eng,BK,INU,iu,iu,google,google,"Edson, Russell.",https://catalog.hathitrust.org/Record/7592472,https://hdl.handle.net/2027/inu.30000001736523,Coffee House Press,True,True,[]
mdp.39015011828913,0,ic,391712,,MIU,990003917120106381,12341941,"0918273102,9780918273109",,85017412,The alligator report : stories / by W.P. Kinsella.,"Coffee House Press, 1985.",bib,2012-09-06 19:30:43,0,1985,mnu,eng,BK,MIU,umich,umich,google,google,"Kinsella, W. P.",https://catalog.hathitrust.org/Record/391712,https://hdl.handle.net/2027/mdp.39015011828913,Coffee House Press,True,True,['national endowment for the arts']
mdp.39015014504263,0,ic,1105517,,MIU,990011055170106381,18560858,"0918273447,9780918273444",,88030326,The Chinaman Pacific & Frisco R.R. Co. : short stories / by Frank Chin.,"Coffee House Press, 1988.",bib,2008-06-04 09:30:06,0,1988,mnu,eng,BK,MIU,umich,umich,google,google,"Chin, Frank, 1940-",https://catalog.hathitrust.org/Record/1105517,https://hdl.handle.net/2027/mdp.39015014504263,Coffee House Press,True,True,"['national endowment for the arts', 'star tribune foundation', 'united arts']"
mdp.39015014772969,0,ic,920444,,MIU,990009204440106381,14272131,"0918273269,9780918273260",,86024493,All these voices : new and selected poems / by Faye Kicknosway.,"Coffee House Press, 1986.",bib,2012-09-06 19:30:56,0,1986,mnu,eng,BK,MIU,umich,umich,google,google,"Kicknosway, Faye.",https://catalog.hathitrust.org/Record/920444,https://hdl.handle.net/2027/mdp.39015014772969,Coffee House Press,True,True,"['national endowment for the arts', None, 'national endowment for the arts']"
mdp.39015014892866,0,ic,1103414,,MIU,990011034140106381,18560842,"0918273471,9780918273475",,88030234,Pages from a scrapbook of immigrants : a journey in poems / by Morton Marcus.,"Coffee House Press, 1988.",bib,2012-03-13 19:30:11,0,1988,mnu,eng,BK,MIU,umich,umich,google,google,"Marcus, Morton.",https://catalog.hathitrust.org/Record/1103414,https://hdl.handle.net/2027/mdp.39015014892866,Coffee House Press,True,True,[]
mdp.39015015165833,0,ic,1825026,,MIU,990018250260106381,20390924,"0918273579,9780918273574",,89023951,Verging on the pertinent : stories / by Carol Emshwiller.,"Coffee House Press ; Distributed by Consortium Book Sales and Distribution, 1989.",bib,2008-11-01 22:30:22,0,1989,mnu,eng,BK,MIU,umich,umich,google,google,"Emshwiller, Carol.",https://catalog.hathitrust.org/Record/1825026,https://hdl.handle.net/2027/mdp.39015015165833,Coffee House Press,True,True,"['national endowment for the arts', 'new york state foundation for the arts', 'national endowment for the arts', 'target', 'star tribune foundation', 'united arts']"
mdp.39015015471504,0,ic,1829413,,MIU,990018294130106381,18560523,"0918273455,9780918273451",,88030153,The play and other stories / by Stephen Dixon.,"Coffee House Press, 1988, c1989.",bib,2007-07-16 09:25:30,0,1989,mnu,eng,BK,MIU,umich,umich,google,google,"Dixon, Stephen, 1936-2019.",https://catalog.hathitrust.org/Record/1829413,https://hdl.handle.net/2027/mdp.39015015471504,Coffee House Press,True,True,"['national endowment for the arts', 'target', 'united arts']"
mdp.39015015477436,0,ic,1830473,,MIU,990018304730106381,19848711,"0918273501,9780918273505",,89015706,"Helping the dreamer : new & selected poems, 1966-1988 / Anne Waldman.","Coffee House Press, c1989.",bib,2012-04-19 19:30:25,0,1989,mnu,eng,BK,MIU,umich,umich,google,google,"Waldman, Anne, 1945-",https://catalog.hathitrust.org/Record/1830473,https://hdl.handle.net/2027/mdp.39015015477436,Coffee House Press,True,True,"['national endowment for the arts', 'jerome foundation', 'united arts']"
mdp.39015017712160,0,ic,1954581,,MIU,990019545810106381,20489463,"0918273536,9780918273536",,89025124,Seeing America first : poems / by Nathaniel Tarn.,"Coffee House Press, 1989.",bib,2012-08-10 19:30:24,0,1989,mnu,eng,BK,MIU,umich,umich,google,google,"Tarn, Nathaniel.",https://catalog.hathitrust.org/Record/1954581,https://hdl.handle.net/2027/mdp.39015017712160,Coffee House Press,True,True,"[None, 'national endowment for the arts', 'star tribune foundation', 'united arts']"
mdp.39015018855836,0,ic,2235364,,MIU,990022353640106381,21910790,"0918273781,9780918273789",,90040518,Why we live with animals : poems / by Alvin Greenberg.,"Coffee House Press ; Distributed to trade by Consortium Book Sales and Distribution, 1990.",bib,2012-06-18 19:30:14,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Greenberg, Alvin.",https://catalog.hathitrust.org/Record/2235364,https://hdl.handle.net/2027/mdp.39015018855836,Coffee House Press,True,True,"['national endowment for the arts', 'target', 'star tribune foundation', 'northwest area foundation', 'united arts']"
mdp.39015018860489,0,ic,2235408,,MIU,990022354080106381,22181446,"0918273811,9780918273819",,90002468,"The woman who read novels ; and, Peacetime : two novellas / by Constance Urdang.","Coffee House Press, 1990.",bib,2012-06-18 19:30:14,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Urdang, Constance.",https://catalog.hathitrust.org/Record/2235408,https://hdl.handle.net/2027/mdp.39015018860489,Coffee House Press,True,True,"['national endowment for the arts', 'target', 'star tribune foundation', 'minnesota state arts board', 'northwest area foundation', 'united arts']"
mdp.39015018871270,0,ic,2237712,,MIU,990022377120106381,16832538,"0918273323,9780918273321",,"87027731,87027731 //r88",Monsieur Teste in America & other instances of realism : short stories / by Andrei Codrescu.,"Coffee House Press, 1987.",bib,2012-09-06 19:31:07,0,1987,mnu,eng,BK,MIU,umich,umich,google,google,"Codrescu, Andrei, 1946-",https://catalog.hathitrust.org/Record/2237712,https://hdl.handle.net/2027/mdp.39015018871270,Coffee House Press,True,True,['national endowment for the arts']
mdp.39015018882293,0,ic,2208364,,MIU,990022083640106381,19518302,"091827351X,9780918273512",,89007100,Bend this heart : short stories / by Jonis Agee.,"Coffee House Press, 1989.",bib,2012-06-20 10:03:13,0,1989,mnu,eng,BK,MIU,umich,umich,google,google,"Agee, Jonis.",https://catalog.hathitrust.org/Record/2208364,https://hdl.handle.net/2027/mdp.39015018882293,Coffee House Press,True,True,"['national endowment for the arts', 'jerome foundation', 'united arts']"
mdp.39015018950140,0,ic,2205409,,MIU,990022054090106381,21030049,"0918273773,9780918273772",,90031254,A sympathy of souls : essays / by Albert Goldbarth.,"Coffee House Press ; Distributed to trade by Consortium Book Sales and Distribution, 1990.",bib,2008-07-23 02:30:14,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Goldbarth, Albert.",https://catalog.hathitrust.org/Record/2205409,https://hdl.handle.net/2027/mdp.39015018950140,Coffee House Press,True,True,"['national endowment for the arts', 'target', 'star tribune foundation', 'northwest area foundation', 'united arts']"
mdp.39015018983406,0,ic,2228502,,MIU,990022285020106381,21406870,"0918273765,9780918273765",,90035355,Outlying districts : poems / by Anselm Hollo.,"Coffee House Press, 1990.",bib,2008-11-01 22:30:37,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Hollo, Anselm.",https://catalog.hathitrust.org/Record/2228502,https://hdl.handle.net/2027/mdp.39015018983406,Coffee House Press,True,True,"['national endowment for the arts', 'target', 'star tribune foundation', 'minnesota state arts board', 'northwest area foundation', 'united arts']"
mdp.39015019344988,0,ic,866620,,MIU,990008666200106381,16086635,"091827334X,9780918273345",,87018182,And the word : poems / by Cid Corman.,"Coffee House Press, 1987.",bib,2012-04-19 19:30:32,0,1987,mnu,eng,BK,MIU,umich,umich,google,google,"Corman, Cid.",https://catalog.hathitrust.org/Record/866620,https://hdl.handle.net/2027/mdp.39015019344988,Coffee House Press,True,True,"['national endowment for the arts', 'target']"
mdp.39015019423147,0,ic,2446171,,MIU,990024461710106381,20056447,"0918273552,9780918273550",,89036392,A bliss case : a novel / by Michael Aaron Rockland.,"Coffee House Press ; Distributed to trade by Consortium Book Sales and Distribution, 1989.",bib,2012-08-08 19:30:12,0,1989,mnu,eng,BK,MIU,umich,umich,google,google,"Rockland, Michael Aaron.",https://catalog.hathitrust.org/Record/2446171,https://hdl.handle.net/2027/mdp.39015019423147,Coffee House Press,True,True,"['national endowment for the arts', 'jerome foundation', 'united arts']"
mdp.39015019470809,0,ic,2460536,,MIU,990024605360106381,16091760,"0918273242,0918273250,9780918273246,9780918273253",,87010237,"Thirsting for peace in a raging century : selected poems, 1961-1985 / Edward Sanders.","Coffee House Press, 1987.",bib,2012-04-19 19:30:32,0,1987,mnu,eng,BK,MIU,umich,umich,google,google,"Sanders, Ed.",https://catalog.hathitrust.org/Record/2460536,https://hdl.handle.net/2027/mdp.39015019470809,Coffee House Press,True,True,['target']
mdp.39015019568156,0,ic,2372045,,MIU,990023720450106381,13214525,"0918273196,9780918273192",,86004146,Bop : stories / by Maxine Chernoff.,"Coffee House Press, 1986.",bib,2012-09-06 19:31:10,0,1986,mnu,eng,BK,MIU,umich,umich,google,google,"Chernoff, Maxine, 1952-",https://catalog.hathitrust.org/Record/2372045,https://hdl.handle.net/2027/mdp.39015019568156,Coffee House Press,True,True,['national endowment for the arts']
mdp.39015019569550,0,ic,2372094,,MIU,990023720940106381,20422486,"0918273587,9780918273581",,89027273,In the builded place : poems / by Michael Heller.,"Coffee House Press ; Distributed to trade by Consortium Book Sales and Distribution, 1989.",bib,2012-08-18 19:30:30,0,1989,mnu,eng,BK,MIU,umich,umich,google,google,"Heller, Michael, 1937-",https://catalog.hathitrust.org/Record/2372094,https://hdl.handle.net/2027/mdp.39015019569550,Coffee House Press,True,True,"[None, 'national endowment for the arts', 'star tribune foundation']"
mdp.39015019569568,0,ic,2372054,,MIU,990023720540106381,17805423,"0918273404,9780918273406",,88011817,Cover me : short stories / by Lon Otto.,"Coffee House Press, 1988.",bib,2012-09-06 19:31:10,0,1988,mnu,eng,BK,MIU,umich,umich,google,google,"Otto, Lon, 1948-",https://catalog.hathitrust.org/Record/2372054,https://hdl.handle.net/2027/mdp.39015019569568,Coffee House Press,True,True,"['jerome foundation', None, 'minnesota state legislature', 'national endowment for the arts', 'star tribune foundation', 'united arts']"
mdp.39015019569667,0,ic,2372051,,MIU,990023720510106381,16832671,"0918273331,9780918273338",,87027761,"Common body, royal bones : three stories / by Evelyn Shefner.","Coffee House Press, 1987.",bib,2012-06-21 19:30:14,0,1987,mnu,eng,BK,MIU,umich,umich,google,google,"Shefner, Evelyn, 1919-",https://catalog.hathitrust.org/Record/2372051,https://hdl.handle.net/2027/mdp.39015019569667,Coffee House Press,True,True,"['national endowment for the arts', None, 'national endowment for the arts']"
mdp.39015019622482,0,ic,2425850,,MIU,990024258500106381,16086642,"0918273315,9780918273314",,87018190,The first thing coming : short stories / by Keith Abbott.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, 1987.",bib,2012-08-18 19:30:30,0,1987,mnu,eng,BK,MIU,umich,umich,google,google,"Abbott, Keith, 1944-",https://catalog.hathitrust.org/Record/2425850,https://hdl.handle.net/2027/mdp.39015019622482,Coffee House Press,True,True,"['national endowment for the arts', 'united arts', None, 'target', 'target']"
mdp.39015019622532,0,ic,2425826,,MIU,990024258260106381,12285381,"0918273129,9780918273123",,85017050,Irish musicians/American friends / Terence Winch.,"Coffee House Press, c1985.",bib,2007-11-21 09:30:02,0,1985,mnu,eng,BK,MIU,umich,umich,google,google,"Winch, Terence.",https://catalog.hathitrust.org/Record/2425826,https://hdl.handle.net/2027/mdp.39015019622532,Coffee House Press,True,True,[]
mdp.39015019622581,0,ic,2425831,,MIU,990024258310106381,13214497,"0918273188,9780918273185",,86004143,Pick up the house : new & selected poems / Anselm Hollo.,"Coffee House Press ; Distributed by Consortium, 1986.",bib,2008-11-01 22:30:17,0,1986,mnu,eng,BK,MIU,umich,umich,google,google,"Hollo, Anselm.",https://catalog.hathitrust.org/Record/2425831,https://hdl.handle.net/2027/mdp.39015019622581,Coffee House Press,True,True,['national endowment for the arts']
mdp.39015019656456,0,ic,2437612,,MIU,990024376120106381,22119903,"0918273803,9780918273802",,90002457,Great balls of fire : poems / by Ron Padgett.,"Coffee House Press ; Distributed to trade by Consortium Book Sales and Distribution, 1990.",bib,2007-12-05 09:30:12,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Padgett, Ron, 1942-",https://catalog.hathitrust.org/Record/2437612,https://hdl.handle.net/2027/mdp.39015019656456,Coffee House Press,True,True,"['target', 'star tribune foundation', 'northwest area foundation', 'united arts']"
mdp.39015019665135,0,ic,2437206,,MIU,990024372060106381,14167765,"0918273234,9780918273239",,86020765,Lucha : a novella / by Constance Urdang.,"Coffee House Press, 1986.",bib,2012-09-06 19:31:11,0,1986,mnu,eng,BK,MIU,umich,umich,google,google,"Urdang, Constance.",https://catalog.hathitrust.org/Record/2437206,https://hdl.handle.net/2027/mdp.39015019665135,Coffee House Press,True,True,['national endowment for the arts']
mdp.39015021548972,0,ic,2448382,,MIU,990024483820106381,22909862,"0918273846,9780918273840",,90027025,Survival : stories / by Nancy Lord.,"Coffee House Press ; Consortium Book Sales and Distribution [distributor], 1991.",bib,2012-09-06 19:31:17,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Lord, Nancy.",https://catalog.hathitrust.org/Record/2448382,https://hdl.handle.net/2027/mdp.39015021548972,Coffee House Press,True,True,"['bush foundation', 'target', 'honeywell foundation', 'jerome foundation', 'minnesota state arts board', 'northwest area foundation', 'pentair, inc.', 'national endowment for the arts']"
mdp.39015021549749,0,ic,2528771,,MIU,990025287710106381,24501168,"0918273889,9780918273888",,91035572,"Truth, war, and the dream-game : selected prose poems and parables, 1966-1990 / Lawrence Fixel.","Coffee House Press, 1991.",bib,2008-11-01 22:30:20,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Fixel, Lawrence.",https://catalog.hathitrust.org/Record/2528771,https://hdl.handle.net/2027/mdp.39015021549749,Coffee House Press,True,True,[]
mdp.39015021846616,0,ic,2469524,,MIU,990024695240106381,22389367,"0918273110,0918273137,9780918273116,9780918273130",,90002696,Nice to see you : homage to Ted Berrigan / edited and with an introduction by Anne Waldman.,"Coffee House Press, 1991.",bib,2008-06-04 09:30:09,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2469524,https://hdl.handle.net/2027/mdp.39015021846616,Coffee House Press,True,True,"['target', 'target']"
mdp.39015021863355,0,ic,2474000,,MIU,990024740000106381,23356882,"0918273854,9780918273857",,91014096,Belligerence : new poems / by Andrei Codrescu.,"Coffee House Press, 1991.",bib,2012-03-21 09:30:52,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Codrescu, Andrei, 1946-",https://catalog.hathitrust.org/Record/2474000,https://hdl.handle.net/2027/mdp.39015021863355,Coffee House Press,True,True,"['bush foundation', 'minnesota state arts board', 'national endowment for the arts', 'northwest area foundation', 'star tribune foundation']"
mdp.39015022025178,0,ic,2487263,,MIU,990024872630106381,13184229,"0918273218,9780918273215",,86002681,Comrade Past & Mister Present : new poems & a journal / Andrei Codrescu.,"Coffee House Press, c1986.",bib,2008-11-01 22:30:25,0,1986,mnu,eng,BK,MIU,umich,umich,google,google,"Codrescu, Andrei, 1946-",https://catalog.hathitrust.org/Record/2487263,https://hdl.handle.net/2027/mdp.39015022025178,Coffee House Press,True,True,"['the juniata diary', 'national endowment for the arts']"
mdp.39015022027505,0,ic,2488913,,MIU,990024889130106381,23286899,"0918273862,9780918273864",,91010107,Sudden dreams : new & selected poems / by George Evans.,"Coffee House Press, 1991.",bib,2012-09-06 19:31:18,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Evans, George, 1948-",https://catalog.hathitrust.org/Record/2488913,https://hdl.handle.net/2027/mdp.39015022027505,Coffee House Press,True,True,"['bush foundation', 'target', 'jerome foundation', 'minnesota state arts board', 'national endowment for the arts', 'northwest area foundation']"
mdp.39015024806336,0,ic,2505344,,MIU,990025053440106381,22887735,"0918273838,9780918273833",,"90029994,90029994 /AC",Donald Duk : a novel / by Frank Chin.,"Coffee House Press ; Distributor, Consortium Book Sales and Distribution, 1991.",bib,2008-06-04 09:30:14,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Chin, Frank, 1940-",https://catalog.hathitrust.org/Record/2505344,https://hdl.handle.net/2027/mdp.39015024806336,Coffee House Press,True,True,"['bush foundation', 'target', 'andrew w. mellon foundation', 'minnesota state arts board', 'northwest area foundation']"
mdp.39015024896741,0,ic,2511043,,MIU,990025110430106381,24068748,"0918273870,9780918273871",,91024085,The lion's share : a novel / by Rochelle Ratner.,"Coffee House Press ; Distributed to the trade by Consortium Book Sales & Distribution, 1991.",bib,2012-08-14 19:30:13,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Ratner, Rochelle.",https://catalog.hathitrust.org/Record/2511043,https://hdl.handle.net/2027/mdp.39015024896741,Coffee House Press,True,True,"['the new york city art world and corporate support of the arts', 'bush foundation', 'target', 'jerome foundation', 'minnesota state arts board', 'national endowment for the arts', 'northwest area foundation']"
mdp.39015024943048,0,ic,2516368,,MIU,990025163680106381,24068210,"0918273919,9780918273918",,91025377,Red beans : poems / by Victor Hernández Cruz.,"Coffee House Press ; Consortium Book Sales and Distribution, distributors, 1991.",bib,2008-11-01 23:30:13,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Cruz, Victor Hernández, 1949-",https://catalog.hathitrust.org/Record/2516368,https://hdl.handle.net/2027/mdp.39015024943048,Coffee House Press,True,True,"['bush foundation', 'target', 'honeywell foundation', 'minnesota state arts board', 'national endowment for the arts', 'northwest area foundation', 'star tribune foundation', 'james r. thorpe foundation']"
mdp.39015024956230,0,ic,2516324,,MIU,990025163240106381,23975697,"0918273900,9780918273901",,91022836,"Four incarnations : new & selected poems, 1957-1991 / Robert Sward.","Coffee House Press ; Available to bookstores through Consortium Book Sales and Distribution, 1991.",bib,2012-04-19 19:30:39,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Sward, Robert, 1933-",https://catalog.hathitrust.org/Record/2516324,https://hdl.handle.net/2027/mdp.39015024956230,Coffee House Press,True,True,[]
mdp.39015024959259,0,ic,2518216,,MIU,990025182160106381,21149378,"0918273757,9780918273758",,"90030312,90030312 /AC",Dancers & the dance : stories / by Summer Brenner.,"Coffee House Press ; Distributed to trade by Consortium Book Sales and Distribution, 1990, c1989.",bib,2012-03-13 19:30:13,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Brenner, Summer.",https://catalog.hathitrust.org/Record/2518216,https://hdl.handle.net/2027/mdp.39015024959259,Coffee House Press,True,True,"[None, 'national endowment for the arts', 'star tribune foundation', 'target', 'minnesota state arts board', 'northwest area foundation', 'united arts']"
mdp.39015025212344,0,ic,2554666,,MIU,990025546660106381,25246674,"0918273978,9780918273970",,92003598,Friends in the world : the education of a writer : a memoir / by Aram Saroyan.,"Coffee House Press, 1992.",bib,2012-03-12 19:30:33,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,"Saroyan, Aram.",https://catalog.hathitrust.org/Record/2554666,https://hdl.handle.net/2027/mdp.39015025212344,Coffee House Press,True,True,"['bush foundation', 'minnesota state arts board', 'northwest area foundation', 'star tribune foundation', 'the mary mccarthy literary trust for use of a brief quote in the foreword. coffee house press books are available to bookstores through our primary distributor, consortium book sales & distribution']"
mdp.39015028896135,0,ic,2726459,,MIU,990027264590106381,27813018,"1566890098,9781566890090",,93015299,Unfinished building : poems / by Toby Olson.,"Coffee House Press, 1993.",bib,2012-04-19 19:30:43,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,"Olson, Toby.",https://catalog.hathitrust.org/Record/2726459,https://hdl.handle.net/2027/mdp.39015028896135,Coffee House Press,True,True,[]
mdp.39015029209668,0,ic,2605904,,MIU,990026059040106381,25163721,"0918273986,9780918273987",,"92002573,92002573 //r92",Elvis Presley calls his mother after the Ed Sullivan show : a novel / by Samuel Charters.,"Coffee House Press, 1992.",bib,2008-11-01 22:30:24,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,"Charters, Samuel, 1929-2015.",https://catalog.hathitrust.org/Record/2605904,https://hdl.handle.net/2027/mdp.39015029209668,Coffee House Press,True,True,"['star tribune foundation', 'minnesota state arts board', 'northwest area foundation']"
mdp.39015029252874,0,ic,2612110,,MIU,990026121100106381,25964827,"1566890004,9781566890007",,92017857,Brazil-Maru : a novel / by Karen Tei Yamashita.,"Coffee House Press, 1992.",bib,2012-04-19 19:30:44,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,"Yamashita, Karen Tei, 1951-",https://catalog.hathitrust.org/Record/2612110,https://hdl.handle.net/2027/mdp.39015029252874,Coffee House Press,True,True,"['jerome foundation', 'minnesota state arts board', 'national endowment for the arts', 'northwest area foundation']"
mdp.39015029538165,0,ic,2635589,,MIU,990026355890106381,26129087,"1566890020,9781566890021",,92022804,The song of Percival Peacock : a novel / by Russell Edson.,"Coffee House Press, 1992.",bib,2012-04-19 19:30:44,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,"Edson, Russell.",https://catalog.hathitrust.org/Record/2635589,https://hdl.handle.net/2027/mdp.39015029538165,Coffee House Press,True,True,"[None, 'bush foundation', 'target', 'minnesota state arts board', 'national endowment for the arts', 'northwest area foundation']"
mdp.39015029851543,0,ic,2710188,,MIU,990027101880106381,25200652,"0918273951,9780918273956",,92000817,The price of eggs : stories / by Anne Panning.,"Coffee House Press, 1992.",bib,2012-03-12 19:30:39,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,"Panning, Anne, 1966-",https://catalog.hathitrust.org/Record/2710188,https://hdl.handle.net/2027/mdp.39015029851543,Coffee House Press,True,True,"['thanks jerome foundation', 'minnesota state arts board', 'national endowment for the arts', 'northwest area foundation']"
mdp.39015029933382,0,ic,2710766,,MIU,990027107660106381,27896660,"156689008X,9781566890083",,93017101,"Hotel Lambosa, and other stories / Kenneth Koch.","Coffee House Press, 1993.",bib,2012-09-08 19:30:37,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,"Koch, Kenneth, 1925-2002.",https://catalog.hathitrust.org/Record/2710766,https://hdl.handle.net/2027/mdp.39015029933382,Coffee House Press,True,True,"['bush foundation', 'minnesota state arts board', 'andrew w. mellon foundation', ""lila wallace reader's digest fund""]"
mdp.39015029935684,0,ic,2710189,,MIU,990027101890106381,25202714,"0918273714,9780918273710",,92003245,To and for : new and selected poems / Steve Levine.,"Coffee House Press, 1992.",bib,2008-11-01 23:30:07,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,"Levine, Steve, 1953-",https://catalog.hathitrust.org/Record/2710189,https://hdl.handle.net/2027/mdp.39015029935684,Coffee House Press,True,True,"[None, 'jerome foundation', 'minnesota state arts board', 'national endowment for the arts', 'northwest area foundation']"
mdp.39015029935874,0,ic,2710185,,MIU,990027101850106381,25164460,"091827396X,9780918273963",,"92004005,92004005 //r92",How to leave a country : a novel / by Cris Mazza.,"Coffee House Press, 1992.",bib,2008-11-01 23:30:07,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,"Mazza, Cris.",https://catalog.hathitrust.org/Record/2710185,https://hdl.handle.net/2027/mdp.39015029935874,Coffee House Press,True,True,"['thanks jerome foundation', 'minnesota state arts board', 'national endowment for the arts', 'northwest area foundation']"
mdp.39015029935999,0,ic,2710164,,MIU,990027101640106381,24870607,"0918273935,9780918273932",,91039498,"Collisions and transformations : new and selected poems, 1975-1991 / Leslie Simon.","Coffee House Press, 1992.",bib,2012-04-19 19:30:46,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,"Simon, Leslie, 1947-",https://catalog.hathitrust.org/Record/2710164,https://hdl.handle.net/2027/mdp.39015029935999,Coffee House Press,True,True,"['jerome foundation', 'minnesota state arts board', 'national endowment for the arts', 'northwest area foundation']"
mdp.39015031801510,0,ic,2891658,,MIU,990028916580106381,29319639,"1566890195,9781566890199",,93023689,Exposed / Cris Mazza.,"Coffee House Press ; Distributed by Consortium Book Sales & Distribution, 1994.",bib,2012-03-18 19:30:14,0,1994,mnu,eng,BK,MIU,umich,umich,google,google,"Mazza, Cris.",https://catalog.hathitrust.org/Record/2891658,https://hdl.handle.net/2027/mdp.39015031801510,Coffee House Press,True,True,"['cris mazza, fiction collective two', 'national endowment for the arts', 'target', 'target', 'lannan foundation', 'andrew w. mellon foundation', 'star tribune foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', ""lila wallace reader's digest fund""]"
mdp.39015031809968,0,ic,2893487,,MIU,990028934870106381,29319656,"1566890209,9781566890205",,93023691,One thing that can save us / Barry Silesky.,"Coffee House Press, c1994.",bib,2012-06-18 19:30:16,0,1994,mnu,eng,BK,MIU,umich,umich,google,google,"Silesky, Barry, 1949-",https://catalog.hathitrust.org/Record/2893487,https://hdl.handle.net/2027/mdp.39015031809968,Coffee House Press,True,True,"['the syndicated fiction project.', 'target', 'target', 'national endowment for the arts', 'lannan foundation', 'andrew w. mellon foundation', 'star tribune foundation', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015031821831,0,ic,2876705,,MIU,990028767050106381,29319633,"1566890179,9781566890175",,93023686,Losing Absalom : a novel / by Alexs D. Pate.,"Coffee House Press, 1994.",bib,2012-06-18 19:30:16,0,1994,mnu,eng,BK,MIU,umich,umich,google,google,"Pate, Alexs D., 1950-",https://catalog.hathitrust.org/Record/2876705,https://hdl.handle.net/2027/mdp.39015031821831,Coffee House Press,True,True,"['the minnesota center for book arts', 'star tribune foundation', 'mcknight foundation', 'target', 'lannan foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', ""lila wallace reader's digest fund""]"
mdp.39015032091582,0,ic,2898787,,MIU,990028987870106381,30475426,"156689025X,9781566890250",,94012599,American visa : short stories / by Wang Ping.,"Coffee House Press, 1994.",bib,2012-06-18 19:30:16,0,1994,mnu,eng,BK,MIU,umich,umich,google,google,"Wang, Ping, 1957-",https://catalog.hathitrust.org/Record/2898787,https://hdl.handle.net/2027/mdp.39015032091582,Coffee House Press,True,True,"['national endowment for the arts', 'jerome foundation', 'mcknight foundation', 'target', 'target', 'general mills foundation', 'star tribune foundation', 'star tribune foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', ""lila wallace reader's digest fund"", None]"
mdp.39015032147889,0,ic,2903586,,MIU,990029035860106381,29255778,"1566890217,9781566890212",,93023692,"The green lake is awake : selected poems / by Joseph Ceravolo ; editors, Larry Fagin ... [et al.].","Coffee House Press ; Distributor, Consortium Book Sales & Distribution, 1994.",bib,2012-05-22 19:30:52,0,1994,mnu,eng,BK,MIU,umich,umich,google,google,"Ceravolo, Joseph, 1934-",https://catalog.hathitrust.org/Record/2903586,https://hdl.handle.net/2027/mdp.39015032147889,Coffee House Press,True,True,"['millennium dust', 'minnesota state arts board', 'minnesota state legislature', ""lila wallace reader's digest fund"", None]"
mdp.39015032178561,0,ic,2908536,,MIU,990029085360106381,30475454,"1566890268,9781566890267",,94012603,Decoy : poems / by Elaine Equi.,"Coffee House Press, 1994.",bib,2012-04-19 19:30:52,0,1994,mnu,eng,BK,MIU,umich,umich,google,google,"Equi, Elaine.",https://catalog.hathitrust.org/Record/2908536,https://hdl.handle.net/2027/mdp.39015032178561,Coffee House Press,True,True,[]
mdp.39015032228564,0,ic,2914197,,MIU,990029141970106381,30475435,"1566890284,9781566890281",,94012602,Bone truth : a novel / by Anne Finger.,"Coffee House Press ; Distributed to the trade by Consortium Book Sales, c1994.",bib,2012-09-07 19:30:11,0,1994,mnu,eng,BK,MIU,umich,umich,google,google,"Finger, Anne.",https://catalog.hathitrust.org/Record/2914197,https://hdl.handle.net/2027/mdp.39015032228564,Coffee House Press,True,True,"['target', 'target', 'general mills foundation', 'national endowment for the arts', 'jerome foundation', 'lannan foundation', 'andrew w. mellon foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'star tribune foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', ""lila wallace reader's digest fund""]"
mdp.39015032428420,0,ic,2876705,,MIU,990028767050106381,29319633,"1566890179,9781566890175",,93023686,Losing Absalom : a novel / by Alexs D. Pate.,"Coffee House Press, 1994.",bib,2012-06-18 19:30:16,0,1994,mnu,eng,BK,MIU,umich,umich,google,google,"Pate, Alexs D., 1950-",https://catalog.hathitrust.org/Record/2876705,https://hdl.handle.net/2027/mdp.39015032428420,Coffee House Press,True,True,"['the minnesota center for book arts', 'star tribune foundation', 'mcknight foundation', 'target', 'lannan foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', ""lila wallace reader's digest fund"", None]"
mdp.39015032505201,0,ic,2891658,,MIU,990028916580106381,29319639,"1566890195,9781566890199",,93023689,Exposed / Cris Mazza.,"Coffee House Press ; Distributed by Consortium Book Sales & Distribution, 1994.",bib,2012-03-18 19:30:14,0,1994,mnu,eng,BK,MIU,umich,umich,google,google,"Mazza, Cris.",https://catalog.hathitrust.org/Record/2891658,https://hdl.handle.net/2027/mdp.39015032505201,Coffee House Press,True,True,[]
mdp.39015032506159,0,ic,2896361,,MIU,990028963610106381,30475419,"1566890241,9781566890243",,94012597,Gunga Din highway : a novel / by Frank Chin.,"Coffee House Press ; Consortium Book Sales & Distribution [distributor], c1994.",bib,2008-11-01 23:30:14,0,1994,mnu,eng,BK,MIU,umich,umich,google,google,"Chin, Frank, 1940-",https://catalog.hathitrust.org/Record/2896361,https://hdl.handle.net/2027/mdp.39015032506159,Coffee House Press,True,True,"['national endowment for the arts', 'target', 'target', 'lannan foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'star tribune foundation', 'mcknight foundation', ""lila wallace reader's digest fund"", None]"
mdp.39015032958087,0,ic,2891659,,MIU,990028916590106381,29319653,"1566890187,9781566890182",,"93023690,93023690 //r94",Self-reliance : a novel / by Michael Brownstein.,"Coffee House Press ; Distributed by Consortium Book Sales & Distribution, 1994.",bib,2008-06-05 09:30:27,0,1994,mnu,eng,BK,MIU,umich,umich,google,google,"Brownstein, Michael, 1943-",https://catalog.hathitrust.org/Record/2891659,https://hdl.handle.net/2027/mdp.39015032958087,Coffee House Press,True,True,"['target', 'target', 'lannan foundation', 'andrew w. mellon foundation', 'star tribune foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', ""lila wallace reader's digest fund"", None]"
mdp.39015033319032,0,ic,2960550,,MIU,990029605500106381,30913407,"1566890276,9781566890274",,94029816,Atomic ghost : poets respond to the nuclear age / edited by John Bradley ; introduction by Terry Tempest Williams.,"Coffee House Press, 1995.",bib,2012-03-21 19:30:08,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2960550,https://hdl.handle.net/2027/mdp.39015033319032,Coffee House Press,True,True,"['target', 'target', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'national endowment for the arts', None, 'st. paul companies', 'star tribune foundation', 'minnesota state arts board', 'minnesota state legislature']"
mdp.39015034229552,0,ic,2980649,,MIU,990029806490106381,31737352,"1566890330,9781566890335",,94045620,Happiness : poems / by Deborah Keenan.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, c1995.",bib,2008-11-01 21:30:19,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Keenan, Deborah.",https://catalog.hathitrust.org/Record/2980649,https://hdl.handle.net/2027/mdp.39015034229552,Coffee House Press,True,True,[]
mdp.39015034247935,0,ic,2984003,,MIU,990029840030106381,31753877,"1566890322,9781566890328",,94048076,A .38 special and a broken heart : short-short stories / by Jonis Agee.,"Coffee House Press ; Distributor, Consortium Books Sales & Distribution, c1995.",bib,2012-06-20 10:03:28,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Agee, Jonis.",https://catalog.hathitrust.org/Record/2984003,https://hdl.handle.net/2027/mdp.39015034247935,Coffee House Press,True,True,"['bush foundation', 'target', 'general mills foundation', 'national endowment for the arts', 'jerome foundation', 'lannan foundation', 'andrew w. mellon foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'star tribune foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature']"
mdp.39015034262819,0,ic,2985676,,MIU,990029856760106381,31754335,"1566890292,9781566890298",,94045775,The weather that kills : poems / by Patricia Spears Jones.,"Coffee House Press, c1995.",bib,2009-03-25 21:30:13,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Jones, Patricia Spears, 1955-",https://catalog.hathitrust.org/Record/2985676,https://hdl.handle.net/2027/mdp.39015034262819,Coffee House Press,True,True,"['target', 'target', 'bush foundation', None, 'general mills foundation', 'jerome foundation', 'national endowment for the arts', 'lannan foundation', 'star tribune foundation', 'andrew w. mellon foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature']"
mdp.39015034861321,0,ic,3003935,,MIU,990030039350106381,31754337,"1566890306,9781566890304",,"94045776,94045776 //r95",Ex utero / Laurie Foos.,"Coffee House Press, c1995.",bib,2008-11-01 22:30:22,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Foos, Laurie, 1966-",https://catalog.hathitrust.org/Record/3003935,https://hdl.handle.net/2027/mdp.39015034861321,Coffee House Press,True,True,"['jerome foundation', 'lannan foundation', 'andrew w. mellon foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature']"
mdp.39015035012635,0,ic,3018244,,MIU,990030182440106381,32853069,"1566890365,9781566890366",,95031068,The shape of wilderness : a novel / Shelley Berc.,"Coffee House Press, 1995.",bib,2008-06-05 09:30:09,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Berc, Shelley.",https://catalog.hathitrust.org/Record/3018244,https://hdl.handle.net/2027/mdp.39015035012635,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'star tribune foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'prudential foundation', 'andrew w. mellon foundation']"
mdp.39015035021883,0,ic,3019550,,MIU,990030195500106381,32510382,"1566890349,9781566890342",,95018248,Angel strings : a novel / by Gary Eberle.,"Coffee House Press, 1995.",bib,2008-11-01 22:30:40,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Eberle, Gary.",https://catalog.hathitrust.org/Record/3019550,https://hdl.handle.net/2027/mdp.39015035021883,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'star tribune foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'prudential foundation', 'andrew w. mellon foundation']"
mdp.39015035318040,0,ic,3062946,,MIU,990030629460106381,34282103,"1566890403,9781566890403",,96033694,Her wild American self : short stories / by M. Evelina Galang.,"Coffee House Press, c1996.",bib,2012-03-21 09:30:54,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Galang, M. Evelina, 1961-",https://catalog.hathitrust.org/Record/3062946,https://hdl.handle.net/2027/mdp.39015035318040,Coffee House Press,True,True,"['cover illustration/design by patsy welch back cover photograph by kate kronick book', 'star tribune foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'prudential foundation', 'andrew w. mellon foundation']"
mdp.39015036375510,0,ic,3062946,,MIU,990030629460106381,34282103,"1566890403,9781566890403",,96033694,Her wild American self : short stories / by M. Evelina Galang.,"Coffee House Press, c1996.",bib,2012-04-19 19:30:58,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Galang, M. Evelina, 1961-",https://catalog.hathitrust.org/Record/3062946,https://hdl.handle.net/2027/mdp.39015036375510,Coffee House Press,True,True,"['cover illustration/design by patsy welch back cover photograph by kate kronick book', 'star tribune foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'prudential foundation', 'andrew w. mellon foundation']"
mdp.39015037275685,0,ic,3042929,,MIU,990030429290106381,31188334,,,,Asian American voices : a Coffee House Press sampler.,"Coffee House Press, c1994.",bib,2012-06-20 10:03:29,0,1994,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/3042929,https://hdl.handle.net/2027/mdp.39015037275685,Coffee House Press,True,True,"[""lila wallace reader's digest fund"", None]"
mdp.39015037433144,0,ic,3062942,,MIU,990030629420106381,34281518,"1566890446,1566890454,9781566890441,9781566890458",,96006492,Avalanche : poems / by Quincy Troupe ; art by Jose Bedia.,"Coffee House Press ; Distributed to the trade by Consortium Book Sales, c1996.",bib,2012-04-19 19:30:59,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Troupe, Quincy.",https://catalog.hathitrust.org/Record/3062942,https://hdl.handle.net/2027/mdp.39015037433144,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'star tribune foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'prudential foundation', 'andrew w. mellon foundation']"
mdp.39015037445429,0,ic,3065562,,MIU,990030655620106381,34112809,"1566890411,9781566890410",,96002563,American heaven / Maxine Chernoff.,"Coffee House Press, 1996.",bib,2012-09-07 19:30:24,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Chernoff, Maxine, 1952-",https://catalog.hathitrust.org/Record/3065562,https://hdl.handle.net/2027/mdp.39015037445429,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'lannan foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'star tribune foundation', 'andrew w. mellon foundation']"
mdp.39015037454413,0,ic,3065694,,MIU,990030656940106381,34284365,"1566890462,9781566890465",,96011110,"Cant be wrong : poems / by Michael Lally, 1985-1992.","Coffee House Press, 1996.",bib,2008-11-01 21:30:19,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Lally, Michael, 1942-",https://catalog.hathitrust.org/Record/3065694,https://hdl.handle.net/2027/mdp.39015037454413,Coffee House Press,True,True,"[None, 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'lannan foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'star tribune foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'prudential foundation', 'andrew w. mellon foundation']"
mdp.39015037699207,0,ic,3073486,,MIU,990030734860106381,34113215,"156689042X,9781566890427",,96003143,The ivory crocodile : a novel / by Eileen Drew.,"Coffee House Press, 1996.",bib,2008-11-01 22:30:19,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Drew, Eileen, 1957-",https://catalog.hathitrust.org/Record/3073486,https://hdl.handle.net/2027/mdp.39015037699207,Coffee House Press,True,True,"['chris fischbach excerpts from revolutionary path', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'star tribune foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation']"
mdp.39015037775866,0,ic,3079484,,MIU,990030794840106381,34112844,"1566890470,9781566890472",,96002578,The worldwide church of the handicapped : and other stories / by Marie Sheppard Williams.,"Coffee House Press, c1996.",bib,2008-07-16 00:30:05,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Williams, Marie Sheppard, 1931-",https://catalog.hathitrust.org/Record/3079484,https://hdl.handle.net/2027/mdp.39015037775866,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'star tribune foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'prudential foundation', 'andrew w. mellon foundation']"
mdp.39015037861187,0,ic,3030427,,MIU,990030304270106381,32468522,"1566890357,9781566890359",,95018247,The mirror of monsters and prodigies : a novel / by Pamela Ditchoff.,"Coffee House Press ; Consortium Book Sales & Distribution [distributor], c1995.",bib,2008-11-01 21:30:31,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Ditchoff, Pamela, 1950-",https://catalog.hathitrust.org/Record/3030427,https://hdl.handle.net/2027/mdp.39015037861187,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target']"
mdp.39015038154012,0,ic,3108355,,MIU,990031083550106381,34617847,"1566890543,9781566890540",,96002773,Millennium fever : poems / by Jack Marshall.,"Coffee House Press, c1996.",bib,2008-07-23 02:30:08,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Marshall, Jack, 1936-",https://catalog.hathitrust.org/Record/3108355,https://hdl.handle.net/2027/mdp.39015038154012,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'star tribune foundation', 'james r. thorpe foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'andrew w. mellon foundation']"
mdp.39015038154061,0,ic,3108354,,MIU,990031083540106381,34617806,"1566890489,9781566890489",,96018427,Foreign devil : a novel / by Wang Ping.,"Coffee House Press, 1996.",bib,2012-06-18 19:30:18,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Wang, Ping, 1957-",https://catalog.hathitrust.org/Record/3108354,https://hdl.handle.net/2027/mdp.39015038154061,Coffee House Press,True,True,"['star tribune foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'james r. thorpe foundation', 'dain bosworth foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', None]"
mdp.39015038528231,0,ic,3115316,v.1,MIU,990031153160106381,34623025,"1566890500,9781566890502",,96002777,Collected works / Paul Metcalf,"Coffee House Press, 1996-1997.",bib,2012-03-18 19:30:18,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Metcalf, Paul C",https://catalog.hathitrust.org/Record/3115316,https://hdl.handle.net/2027/mdp.39015038528231,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', None]"
mdp.39015038615368,0,ic,3131445,,MIU,990031314450106381,34244340,"1566890438,9781566890434",,96011376,Returning a borrowed tongue : poems by Filipino and Filipino American writers / edited and with an introduction by Nick Carbó.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, c1995.",bib,2012-06-20 10:03:30,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/3131445,https://hdl.handle.net/2027/mdp.39015038615368,Coffee House Press,True,True,"['star tribune foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'prudential foundation', 'andrew w. mellon foundation']"
mdp.39015038896729,0,ic,3079233,,MIU,990030792330106381,32820059,"1566890381,9781566890380",,95031690,Cranial guitar : selected poems / by Bob Kaufman ; edited by Gerald Nicosia ; introduction by David Henderson.,"Coffee House Press, 1996.",bib,2012-09-07 19:30:27,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Kaufman, Bob.",https://catalog.hathitrust.org/Record/3079233,https://hdl.handle.net/2027/mdp.39015038896729,Coffee House Press,True,True,"['chris felver does the secret mind whisper? was published as a broadside by city lights', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'lannan foundation', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'star tribune foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'prudential foundation', 'andrew w. mellon foundation']"
mdp.39015040176144,0,ic,3975647,,MIU,990039756470106381,37854332,"1566890683,9781566890687",,97043199,Of flesh and spirit : poems / by Wang Ping.,"Coffee House Press, c1998.",bib,2012-04-19 19:31:03,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Wang, Ping, 1957-",https://catalog.hathitrust.org/Record/3975647,https://hdl.handle.net/2027/mdp.39015040176144,Coffee House Press,True,True,"['new york foundation for the arts', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'pentair, inc.', None]"
mdp.39015040365879,0,ic,3974653,,MIU,990039746530106381,37862712,"156689073X,9781566890731",,"97043198,97043198 //r98",The cockfighter : a novel / by Frank Manley.,"Coffee House Press, c1998.",bib,2012-06-18 19:30:20,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Manley, Frank.",https://catalog.hathitrust.org/Record/3974653,https://hdl.handle.net/2027/mdp.39015040365879,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'dain bosworth foundation', 'pentair, inc.', None]"
mdp.39015040577028,0,ic,3948055,,MIU,990039480550106381,36961003,"1566890640,9781566890649",,97015991,Tropic of orange : a novel / by Karen Tei Yamashita.,"Coffee House Press ; Distributed by Consortium Book Sales & Distribution, 1997.",bib,2012-06-17 19:30:14,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Yamashita, Karen Tei, 1951-",https://catalog.hathitrust.org/Record/3948055,https://hdl.handle.net/2027/mdp.39015040577028,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'dain bosworth foundation', 'pentair, inc.', None, None]"
mdp.39015040577077,0,ic,3948043,,MIU,990039480430106381,36961004,"1566890659,9781566890656",,97015992,High holiday Sutra : a novel / by Allan Appel.,"Coffee House Press, c1997.",bib,2012-03-21 19:30:10,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Appel, Allan.",https://catalog.hathitrust.org/Record/3948043,https://hdl.handle.net/2027/mdp.39015040577077,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'dain bosworth foundation', 'pentair, inc.', None]"
mdp.39015040583646,0,ic,3995902,,MIU,990039959020106381,37864098,"1566890691,9781566890694",,97043267,Sacred vows : poetry / by U Sam Oeur ; translated from Khmer by Ken McCullough and U Sam Oeur,"Coffee House Press ; Primary distributor, Consortium Book Sales & Distribution, c1998",bib,2012-05-18 19:30:19,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"U Sam Oeur, 1936-",https://catalog.hathitrust.org/Record/3995902,https://hdl.handle.net/2027/mdp.39015040583646,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'james r. thorpe foundation', 'dain bosworth foundation', 'pentair, inc.', None]"
mdp.39015040603212,0,ic,3115316,v.2,MIU,990031153160106381,34623025,"1566890500,9781566890502",,96002777,Collected works / Paul Metcalf,"Coffee House Press, 1996-1997.",bib,2012-03-12 19:30:59,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Metcalf, Paul C",https://catalog.hathitrust.org/Record/3115316,https://hdl.handle.net/2027/mdp.39015040603212,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'pentair, inc.']"
mdp.39015040607288,0,ic,3115316,v.3,MIU,990031153160106381,34623025,"1566890500,9781566890502",,96002777,Collected works / Paul Metcalf,"Coffee House Press, 1996-1997.",bib,2012-03-15 19:30:39,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Metcalf, Paul C",https://catalog.hathitrust.org/Record/3115316,https://hdl.handle.net/2027/mdp.39015040607288,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'patrick and aimee butler family foundation']"
mdp.39015040739107,0,ic,3141910,,MIU,990031419100106381,34590961,"1566890527,9781566890526",,96017291,Certain people & other stories / by Roberta Allen.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, c1997.",bib,2012-03-17 19:30:28,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Allen, Roberta, 1945-",https://catalog.hathitrust.org/Record/3141910,https://hdl.handle.net/2027/mdp.39015040739107,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'lannan foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'star tribune/cowles media company', 'patrick and aimee butler family foundation', 'james r. thorpe foundation']"
mdp.39015040739198,0,ic,3142457,,MIU,990031424570106381,36122089,"1566890608,9781566890601",,96053370,Drawing the line : poems / by Lawson Fusao Inada.,"Coffee House Press, 1997.",bib,2008-11-01 21:30:18,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Inada, Lawson Fusao.",https://catalog.hathitrust.org/Record/3142457,https://hdl.handle.net/2027/mdp.39015040739198,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'jerome foundation', ""lila wallace reader's digest fund"", 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'star tribune/cowles media company', 'patrick and aimee butler family foundation', 'james r. thorpe foundation', 'dain bosworth foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation']"
mdp.39015040991526,0,ic,3345467,,MIU,990033454670106381,26128478,"1566890055,1566890535,9781566890052,9781566890533",,92022247,Iovis : all is full of Jove / Anne Waldman.,"Coffee House Press, 1993-1997.",bib,2012-07-23 19:30:13,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Waldman, Anne, 1945-",https://catalog.hathitrust.org/Record/3345467,https://hdl.handle.net/2027/mdp.39015040991526,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'lannan foundation', 'mcknight foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'star tribune foundation', 'patrick and aimee butler family foundation', 'james r. thorpe foundation', None]"
mdp.39015040992607,0,ic,3156250,,MIU,990031562500106381,36103748,"1566890594,9781566890595",,96053099,A long way from St. Louie : travel memoirs / Colleen J. McElroy.,"Coffee House Press, c1997.",bib,2012-09-07 19:30:33,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"McElroy, Colleen J.",https://catalog.hathitrust.org/Record/3156250,https://hdl.handle.net/2027/mdp.39015040992607,Coffee House Press,True,True,"[""the writer's solution sourcebook (prenticehall,"", 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'patrick and aimee butler family foundation', 'st. paul companies', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation']"
mdp.39015041006019,0,ic,3156277,,MIU,990031562770106381,36159573,"1566890551,9781566890557",,96054051,Dog people : a novel / by Cris Mazza.,"Coffee House Press, c1997.",bib,2012-09-07 19:30:33,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Mazza, Cris.",https://catalog.hathitrust.org/Record/3156277,https://hdl.handle.net/2027/mdp.39015041006019,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'lannan foundation', 'patrick and aimee butler family foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'star tribune/cowles media company', 'james r. thorpe foundation', None, None, 'dain bosworth foundation']"
mdp.39015041006035,0,ic,3156270,,MIU,990031562700106381,36130702,"1566890586,9781566890588",,96049317,Crowning the queen of love : short stories / by Susan Welch.,"Coffee House Press, c1997.",bib,2008-07-23 01:30:26,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Welch, Susan, 1949-",https://catalog.hathitrust.org/Record/3156270,https://hdl.handle.net/2027/mdp.39015041006035,Coffee House Press,True,True,"['bush foundation', 'minnesota state arts board', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'star tribune foundation', 'patrick and aimee butler family foundation', 'james r. thorpe foundation']"
mdp.39015041016018,0,ic,3159387,,MIU,990031593870106381,36103783,"1566890616,9781566890618",,96053113,Dog road woman : poems / by Allison Adelle Hedge Coke.,"Coffee House Press, 1997.",bib,2012-09-07 19:30:33,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Hedge Coke, Allison Adelle.",https://catalog.hathitrust.org/Record/3159387,https://hdl.handle.net/2027/mdp.39015041016018,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'patrick and aimee butler family foundation', 'st. paul companies', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'dain bosworth foundation', None, 'andrew w. mellon foundation']"
mdp.39015041102362,0,ic,3168445,,MIU,990031684450106381,36165200,"1566890578,9781566890571",,96054052,"Portrait of the walrus by a young artist : a novel about art, bowling, pizza, sex, and hair spray / from the pen of Laurie Foos.","Coffee House Press, c1997.",bib,2012-09-07 19:30:34,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Foos, Laurie, 1966-",https://catalog.hathitrust.org/Record/3168445,https://hdl.handle.net/2027/mdp.39015041102362,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'star tribune foundation', 'patrick and aimee butler family foundation', 'james r. thorpe foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'andrew w. mellon foundation']"
mdp.39015041109268,0,ic,3949485,,MIU,990039494850106381,36969665,"1566890667,9781566890663",,97016017,Panoramas / Victor Hernández Cruz.,"Coffee House Press, c1997.",bib,2012-09-07 19:30:34,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Cruz, Victor Hernández, 1949-",https://catalog.hathitrust.org/Record/3949485,https://hdl.handle.net/2027/mdp.39015041109268,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'dain bosworth foundation', 'pentair, inc.', None]"
mdp.39015041109375,0,ic,3949490,,MIU,990039494900106381,36954538,"1566890632,9781566890632",,97015993,Floating kingdom : a novel / by George Rabasa.,"Coffee House Press, c1997.",bib,2012-06-18 19:30:20,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Rabasa, George, 1941-",https://catalog.hathitrust.org/Record/3949490,https://hdl.handle.net/2027/mdp.39015041109375,Coffee House Press,True,True,"['antonio ruiz / collection', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'dain bosworth foundation', 'pentair, inc.', None]"
mdp.39015042086689,0,ic,3438522,,MIU,990034385220106381,41531889,"1566890861,9781566890861",,99035462,The old ballerina / Ellen Cooney.,"Coffee House Press ; [Distributed to the trade by] Consortium Book Sales & Distribution, c1999.",bib,2012-09-07 19:30:36,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Cooney, Ellen.",https://catalog.hathitrust.org/Record/3438522,https://hdl.handle.net/2027/mdp.39015042086689,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', ""lila wallace reader's digest fund"", 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'dain bosworth foundation', 'pentair, inc.', None]"
mdp.39015042097827,0,ic,3440610,,MIU,990034406100106381,18350867,"0918273439,9780918273437",,88023673,Surfaces and masks : a poem / by Clarence Major.,"Coffee House Press, 1988.",bib,2012-06-18 19:30:20,0,1988,mnu,eng,BK,MIU,umich,umich,google,google,"Major, Clarence.",https://catalog.hathitrust.org/Record/3440610,https://hdl.handle.net/2027/mdp.39015042097827,Coffee House Press,True,True,"['national endowment for the arts', 'star tribune foundation', 'united arts']"
mdp.39015042951189,0,ic,4097439,,MIU,990040974390106381,43287145,"1566891000,9781566891004",,99086398,Garden primitives : stories / Danielle Sosin.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, c2000.",bib,2012-07-23 19:30:14,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Sosin, Danielle, 1959-",https://catalog.hathitrust.org/Record/4097439,https://hdl.handle.net/2027/mdp.39015042951189,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'bush foundation', ""lila wallace reader's digest fund""]"
mdp.39015043091050,0,ic,4033716,,MIU,990040337160106381,40588325,"1566890853,9781566890854",,98056290,87 north : poems / by Michael Coffey.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, c1999.",bib,2012-09-07 19:30:39,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Coffey, Michael, 1954-",https://catalog.hathitrust.org/Record/4033716,https://hdl.handle.net/2027/mdp.39015043091050,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', ""lila wallace reader's digest fund"", 'lannan foundation', 'target', 'target', 'general mills foundation', 'jerome foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', None]"
mdp.39015043779779,0,ic,4033701,,MIU,990040337010106381,40588286,"1566890810,9781566890816",,98056280,Sleep : stories / Stephen Dixon.,"Coffee House Press ; Consortium Book Sales & Distribution, c1999.",bib,2012-09-07 19:30:41,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Dixon, Stephen, 1936-2019.",https://catalog.hathitrust.org/Record/4033701,https://hdl.handle.net/2027/mdp.39015043779779,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'dain bosworth foundation', 'pentair, inc.']"
mdp.39015043791113,0,ic,4033724,,MIU,990040337240106381,40588278,"1566890802,9781566890809",,98056278,Clifford's blues / John A. Williams.,"Coffee House Press ; Consortium Book Sales and Distribution, c1999.",bib,2012-06-18 19:30:21,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Williams, John A., 1925-2015.",https://catalog.hathitrust.org/Record/4033724,https://hdl.handle.net/2027/mdp.39015043791113,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', ""lila wallace reader's digest fund"", 'lannan foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'dain bosworth foundation', 'pentair, inc.', None]"
mdp.39015045656678,0,ic,3992070,,MIU,990039920700106381,37884804,"1566890705,9781566890700",,97043269,Clinch : selected poems / by Michael Scholnick ; edited by Gary Lenhart ... [et al.].,"Coffee House Press, c1998.",bib,2012-06-18 19:30:21,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Scholnick, Michael.",https://catalog.hathitrust.org/Record/3992070,https://hdl.handle.net/2027/mdp.39015045656678,Coffee House Press,True,True,"['united arts', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'dain bosworth foundation', 'pentair, inc.', None]"
mdp.39015045695122,0,ic,3999074,,MIU,990039990740106381,38964248,"1566890756,9781566890755",,98021156,Namako : sea cucumber : a novel / by Linda Watanabe McFerrin.,"Coffee House Press ; Available to the trade through Consortium Book Sales & Distribution, c1998.",bib,2012-04-19 19:31:09,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Watanabe McFerrin, Linda, 1953-",https://catalog.hathitrust.org/Record/3999074,https://hdl.handle.net/2027/mdp.39015045695122,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'star tribune foundation', 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'james r. thorpe foundation', 'dain bosworth foundation', 'pentair, inc.']"
mdp.39015045698639,0,ic,4001809,,MIU,990040018090106381,39024724,"1566890764,9781566890762",,98021158,How to accommodate men : stories / by Marilyn Krysl.,"Coffee House Press, c1998.",bib,2012-04-19 19:31:09,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Krysl, Marilyn, 1942-",https://catalog.hathitrust.org/Record/4001809,https://hdl.handle.net/2027/mdp.39015045698639,Coffee House Press,True,True,"[None, 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'james r. thorpe foundation', 'dain bosworth foundation', 'pentair, inc.', None]"
mdp.39015045986174,0,ic,4013926,,MIU,990040139260106381,38966173,"1566890780,9781566890786",,98021159,Voice-over : poems / by Elaine Equi.,"Coffee House Press, c1998.",bib,2009-03-25 22:30:27,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Equi, Elaine.",https://catalog.hathitrust.org/Record/4013926,https://hdl.handle.net/2027/mdp.39015045986174,Coffee House Press,True,True,[]
mdp.39015046361161,0,ic,4054683,,MIU,990040546830106381,40595224,"1566890845,9781566890847",,98052208,Visit teepee town : native writings after the detours / edited by Diane Glancy and Mark Nowak.,"Coffee House Press, c1999.",bib,2008-06-05 09:30:39,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/4054683,https://hdl.handle.net/2027/mdp.39015046361161,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'bush foundation', ""lila wallace reader's digest fund"", 'james lenfesty']"
mdp.39015046885789,0,ic,4019295,,MIU,990040192950106381,38993168,"1566890799,9781566890793",,98023484,Unlocking the exits : poems / by Eliot Katz.,"Coffee House Press, c1999.",bib,2013-02-07 04:30:33,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Katz, Eliot.",https://catalog.hathitrust.org/Record/4019295,https://hdl.handle.net/2027/mdp.39015046885789,Coffee House Press,True,True,"['the new york quarterly, ikon', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'pentair, inc.']"
mdp.39015047066041,0,ic,3976703,,MIU,990039767030106381,37854343,"1566890721,9781566890724",,97043268,Our sometime sister : a novel / by Norah Labiner.,"Coffee House Press, c1998.",bib,2012-06-18 19:30:21,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Labiner, Norah, 1967-",https://catalog.hathitrust.org/Record/3976703,https://hdl.handle.net/2027/mdp.39015047066041,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'dain bosworth foundation', 'pentair, inc.', None]"
mdp.39015047117067,0,ic,3997891,,MIU,990039978910106381,38976273,"1566890772,9781566890779",,98021157,Routine disruptions : selected poems & lyrics 1960-1998 / Kenward Elmslie ; edited by W.C. Bamberger.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, c1998.",bib,2012-03-21 09:30:55,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Elmslie, Kenward.",https://catalog.hathitrust.org/Record/3997891,https://hdl.handle.net/2027/mdp.39015047117067,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'star tribune foundation', 'dain bosworth foundation', 'pentair, inc.', None]"
mdp.39015047117117,0,ic,3997894,,MIU,990039978940106381,38966163,"1566890748,9781566890748",,98021110,Bring us the old people : a novel / by Marisa Kantor Stark.,"Coffee House Press ; Primary distributor, Consortium Books & Distribution, c1998.",bib,2012-09-07 19:30:44,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Kantor Stark, Marisa, 1973-",https://catalog.hathitrust.org/Record/3997894,https://hdl.handle.net/2027/mdp.39015047117117,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'star tribune foundation', 'james r. thorpe foundation', 'dain bosworth foundation', 'pentair, inc.', None]"
mdp.39015047130136,0,ic,3974657,,MIU,990039746570106381,37863990,"1566890713,9781566890717",,97043200,Sari of the gods : stories / by G.S. Sharat Chandra.,"Coffee House Press, 1998.",bib,2012-06-25 19:30:15,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Sharat Chandra, G. S., 1935-2000.",https://catalog.hathitrust.org/Record/3974657,https://hdl.handle.net/2027/mdp.39015047130136,Coffee House Press,True,True,"['writing fiction (little', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'dain bosworth foundation', 'pentair, inc.', None]"
mdp.39015047443984,0,ic,4035294,,MIU,990040352940106381,40588304,"1566890837,9781566890830",,98056287,Prayers of an accidental nature : stories / Debra Di Blasi.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, c1998.",bib,2008-07-23 03:30:02,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Di Blasi, Debra, 1957-",https://catalog.hathitrust.org/Record/4035294,https://hdl.handle.net/2027/mdp.39015047443984,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', ""lila wallace reader's digest fund"", 'lannan foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'jerome foundation']"
mdp.39015047504645,0,ic,4037741,,MIU,990040377410106381,40618979,"1566890829,9781566890823",,98056279,'66 frames : a memoir / Gordon Ball ; introduction by Jonas Mekas.,"Coffee House Press, c1999.",bib,2012-06-21 19:30:38,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Ball, Gordon.",https://catalog.hathitrust.org/Record/4037741,https://hdl.handle.net/2027/mdp.39015047504645,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', ""lila wallace reader's digest fund"", 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'dain bosworth foundation', 'pentair, inc.', None]"
mdp.39015047702280,0,ic,4061950,,MIU,990040619500106381,41528013,"156689090X,1566890926,9781566890908,9781566890922",,99035487,Choruses : poems / by Quincy Troupe.,"Coffee House Press, c1999.",bib,2008-07-23 02:30:04,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Troupe, Quincy.",https://catalog.hathitrust.org/Record/4061950,https://hdl.handle.net/2027/mdp.39015047702280,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'star tribune foundation', ""lila wallace reader's digest fund"", 'bush foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'james r. thorpe foundation', 'pentair, inc.']"
mdp.39015047709541,0,ic,4074734,,MIU,990040747340106381,41527961,"1566890918,9781566890915",,99035464,Teducation : selected poems 1949-1999 / Ted Joans ; introduction by Gerald Nicosia ; drawings by Heriberto Cogollo.,"Coffee House Press ; Distributed by Consortium Book Sales & Distribution, c1999.",bib,2012-09-07 19:30:47,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Joans, Ted.",https://catalog.hathitrust.org/Record/4074734,https://hdl.handle.net/2027/mdp.39015047709541,Coffee House Press,True,True,"[None, 'minnesota state arts board', 'minnesota state legislature', 'mcknight foundation', 'star tribune foundation', ""lila wallace reader's digest fund"", 'bush foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'patrick and aimee butler family foundation']"
mdp.39015047858306,0,ic,4073118,,MIU,990040731180106381,41548129,"1566890896,9781566890892",,99035307,Among prisoners : stories / by Frank Manley.,"Coffee House Press, c2000.",bib,2012-09-07 19:30:48,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Manley, Frank.",https://catalog.hathitrust.org/Record/4073118,https://hdl.handle.net/2027/mdp.39015047858306,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'bush foundation', ""lila wallace reader's digest fund""]"
mdp.39015048908068,0,ic,925986,,MIU,990009259860106381,16832121,"0918273277,9780918273277",,87027653,Easter Sunday : poems / by Tom Clark.,"Coffee House Press, 1987.",bib,2012-08-14 19:30:19,0,1987,mnu,eng,BK,MIU,umich,umich,google,google,"Clark, Tom, 1941-2018.",https://catalog.hathitrust.org/Record/925986,https://hdl.handle.net/2027/mdp.39015048908068,Coffee House Press,True,True,['national endowment for the arts']
mdp.39015048926748,0,ic,4060731,,MIU,990040607310106381,41527955,"1566890888,9781566890885",,99035463,Taking the wall : stories / Jonis Agee.,"Coffee House Press, c1999.",bib,2012-03-13 19:30:25,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Agee, Jonis.",https://catalog.hathitrust.org/Record/4060731,https://hdl.handle.net/2027/mdp.39015048926748,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'bush foundation', 'general mills foundation', ""lila wallace reader's digest fund"", 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', None]"
mdp.39015049547758,0,ic,4134430,,MIU,990041344300106381,44413570,"1566891043,9781566891042",,00043099,The hand of Buddha : stories / Linda Watanabe McFerrin.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, c2000.",bib,2012-09-07 19:30:58,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"McFerrin, Linda Watanabe, 1953-",https://catalog.hathitrust.org/Record/4134430,https://hdl.handle.net/2027/mdp.39015049547758,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'general mills foundation', 'honeywell foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", 'pentair, inc.', 'mcknight foundation', 'patrick and aimee butler family foundation', 'st. paul companies', 'star tribune foundation', 'target', 'west group']"
mdp.39015049547774,0,ic,4134433,,MIU,990041344330106381,44425398,"1566891035,9781566891035",,00043100,Write letter to Billy : a novel / by Toby Olson.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, c2000.",bib,2008-11-01 23:30:06,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Olson, Toby.",https://catalog.hathitrust.org/Record/4134433,https://hdl.handle.net/2027/mdp.39015049547774,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'general mills foundation', 'honeywell foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'pentair, inc.', 'patrick and aimee butler family foundation', 'st. paul companies', 'star tribune foundation', 'target', 'west group']"
mdp.39015049973699,0,ic,4135517,,MIU,990041355170106381,44270283,"1566891051,9781566891059",,00043023,Madame Deluxe : poems / Tenyana Darlington.,"Coffee House Press, c2000.",bib,2012-03-21 09:30:56,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Darlington, Tenaya, 1971-",https://catalog.hathitrust.org/Record/4135517,https://hdl.handle.net/2027/mdp.39015049973699,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'general mills foundation', 'honeywell foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", 'pentair, inc.', 'mcknight foundation', 'patrick and aimee butler family foundation', 'st. paul companies', 'star tribune foundation', 'target', 'west group']"
mdp.39015049973889,0,ic,4134432,,MIU,990041344320106381,44413568,"1566891078,9781566891073",,00043098,Revenants : poems / by Mark Nowak.,"Coffee House Press, 2000.",bib,2008-05-25 09:30:04,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Nowak, Mark, 1964-",https://catalog.hathitrust.org/Record/4134432,https://hdl.handle.net/2027/mdp.39015049973889,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'general mills foundation', 'honeywell foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'pentair, inc.', 'patrick and aimee butler family foundation', 'st. paul companies', 'star tribune foundation', 'target', 'west group']"
mdp.39015050153363,0,ic,4098850,,MIU,990040988500106381,43296807,"1566890985,9781566890984",,99088965,"The annotated ""Here"" and selected poems / Marjorie Welish.","Coffee House Press, c2000.",bib,2012-04-19 19:31:13,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Welish, Marjorie, 1944-",https://catalog.hathitrust.org/Record/4098850,https://hdl.handle.net/2027/mdp.39015050153363,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'star tribune foundation', ""lila wallace reader's digest fund"", 'bush foundation', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'patrick and aimee butler family foundation']"
mdp.39015050156044,0,ic,4105152,,MIU,990041051520106381,43397152,"1566890993,9781566890991",,00022776,Breakers : selected poems / by Paul Violi.,"Coffee House Press, c2000.",bib,2008-11-01 22:30:06,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Violi, Paul, 1944-2011.",https://catalog.hathitrust.org/Record/4105152,https://hdl.handle.net/2027/mdp.39015050156044,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'star tribune foundation', ""lila wallace reader's digest fund"", 'bush foundation', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'patrick and aimee butler family foundation']"
mdp.39015050326951,0,ic,4131906,,MIU,990041319060106381,44426918,"1566891019,9781566891011",,00043022,Glory goes and gets some : stories / Emily Carter.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, c2000.",bib,2012-09-07 19:31:02,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Carter, Emily, 1960-",https://catalog.hathitrust.org/Record/4131906,https://hdl.handle.net/2027/mdp.39015050326951,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'general mills foundation', 'honeywell foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", 'pentair, inc.', 'mcknight foundation', 'patrick and aimee butler family foundation', 'st. paul companies', 'star tribune foundation', 'target', 'west group']"
mdp.39015050483489,0,ic,4174902,,MIU,990041749020106381,45582544,"1566891108,9781566891103",,00065895,The man who swam with beavers : stories / Nancy Lord.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, c2001.",bib,2012-07-24 19:30:14,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Lord, Nancy.",https://catalog.hathitrust.org/Record/4174902,https://hdl.handle.net/2027/mdp.39015050483489,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'athwin foundation', 'bush foundation', 'honeywell foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'patrick and aimee butler family foundation', 'pentair, inc.', 'st. paul companies', 'star tribune foundation', 'target', 'west group']"
mdp.39015050502650,0,ic,4172841,,MIU,990041728410106381,45505874,"1566891027,9781566891028",,00065755,Dem / William Melvin Kelley ; foreword by John S. Wright.,"Coffee House Press ; Distributed to the trade by Consortium Book Sales & Distribution, c2000.",bib,2012-09-07 19:31:02,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Kelley, William Melvin, 1937-",https://catalog.hathitrust.org/Record/4172841,https://hdl.handle.net/2027/mdp.39015050502650,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'athwin foundation', 'bush foundation', 'general mills foundation', 'honeywell foundation', None, 'james r. thorpe foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', None, 'pentair, inc.', 'patrick and aimee butler family foundation', 'st. paul companies', 'star tribune foundation', 'target', 'west group']"
mdp.39015050756454,0,ic,4169314,,MIU,990041693140106381,45582541,"1566891094,9781566891097",,00065894,Necessary distance : essays and criticism / Clarence Major.,"Coffee House Press ; Available to the trade through Consortium Book Sales & Distribution, c2001.",bib,2008-06-03 09:30:15,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Major, Clarence.",https://catalog.hathitrust.org/Record/4169314,https://hdl.handle.net/2027/mdp.39015050756454,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'athwin foundation', 'bush foundation', 'honeywell foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'patrick and aimee butler family foundation', 'pentair, inc.', 'st. paul companies', 'star tribune foundation', 'target', 'west group']"
mdp.39015050780769,0,ic,4174898,,MIU,990041748980106381,44420516,"156689106X,9781566891066",,00043024,Shiny pencils at the edge of things : new and selected poems / Dick Gallup.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, c2000.",bib,2009-03-25 23:30:05,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Gallup, Dick, 1941-",https://catalog.hathitrust.org/Record/4174898,https://hdl.handle.net/2027/mdp.39015050780769,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'athwin foundation', 'bush foundation', 'honeywell foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'patrick and aimee butler family foundation', 'pentair, inc.', 'st. paul companies', 'star tribune foundation', 'target', 'west group']"
mdp.39015050822363,0,ic,4178799,,MIU,990041787990106381,45582538,"1566891086,9781566891080",,00065892,Circle K cycles / Karen Tei Yamashita.,"Coffee House Press ; Primary distributor, Consortium Book Sales and Distribution, 2001.",bib,2012-09-08 19:30:59,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Yamashita, Karen Tei, 1951-",https://catalog.hathitrust.org/Record/4178799,https://hdl.handle.net/2027/mdp.39015050822363,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'athwin foundation', 'bush foundation', 'honeywell foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'patrick and aimee butler family foundation', 'pentair, inc.', 'st. paul companies', 'star tribune foundation', 'target', 'west group']"
mdp.39015051280249,0,ic,3552097,,MIU,990035520970106381,45610471,"1566891140,9781566891141",,00065891,"Earliest worlds : two books : Blue guide and Of sun, of history, of seeing / Eleni Sikélianòs.","Coffee House Press, c2001.",bib,2012-03-18 19:30:21,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Sikelianos, Eleni.",https://catalog.hathitrust.org/Record/3552097,https://hdl.handle.net/2027/mdp.39015051280249,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'jerome foundation', 'bush foundation', 'honeywell foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'patrick and aimee butler family foundation', 'pentair, inc.', 'st. paul companies', 'star tribune foundation', 'target', 'west group', 'the pny pamphlet series.', 'national endowment for the arts', 'patrick and aimee butler family foundation']"
mdp.39015051328196,0,ic,1071488,,MIU,990010714880106381,17234199,"091827320X,9780918273208",,87034205,"The Face of creation : contemporary Hungarian poetry / translated by Jascha Kessler, with Maria Körösy ... [et al.].","Coffee House Press, 1988.",bib,2007-03-20 09:28:19,0,1988,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/1071488,https://hdl.handle.net/2027/mdp.39015051328196,Coffee House Press,True,True,[]
mdp.39015053117720,0,ic,4207019,,MIU,990042070190106381,46992044,"1566891175,9781566891172",,2001032484,The impossibly : a novel / by Laird Hunt.,"Coffee House Press, c2001.",bib,2012-04-19 19:31:15,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Hunt, Laird.",https://catalog.hathitrust.org/Record/4207019,https://hdl.handle.net/2027/mdp.39015053117720,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'jerome foundation', 'athwin foundation', 'bush foundation', 'honeywell foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'patrick and aimee butler family foundation', 'pentair, inc.', 'st. paul companies', 'star tribune foundation', 'target', 'west group']"
mdp.39015053158906,0,ic,4209070,,MIU,990042090700106381,46969879,"1566891183,9781566891189",,2001032483,Club Revelation : a novel / by Allan Appel.,Coffee House Press ; c2001.,bib,2012-06-20 10:04:09,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Appel, Allan.",https://catalog.hathitrust.org/Record/4209070,https://hdl.handle.net/2027/mdp.39015053158906,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'athwin foundation', 'bush foundation', 'honeywell foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'patrick and aimee butler family foundation', 'pentair, inc.', 'st. paul companies', 'star tribune foundation', 'target', 'west group']"
mdp.39015053159532,0,ic,4208510,,MIU,990042085100106381,46969877,"1566891167,9781566891165",,2001032480,That kind of sleep / Susan Atefat-Peckham.,"Coffee House Press, 2001.",bib,2012-04-19 19:31:16,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Peckham, Susan Atefat, 1970-",https://catalog.hathitrust.org/Record/4208510,https://hdl.handle.net/2027/mdp.39015053159532,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'athwin foundation', 'bush foundation', 'patrick and aimee butler family foundation', 'honeywell foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'st. paul companies', 'target', 'west group']"
mdp.39015053247477,0,ic,1818191,,MIU,990018181910106381,20527795,"0918273595,0918273609,9780918273598,9780918273604",,89152194,"Hill field : poems and memoirs for John Montague on his sixtieth birthday, 28 February 1989 / compiled and edited by Thomas Dillon Redshaw.","Coffee House Press ; Gallery Books ; Distributed by Consortium Book Sales and Distribution, c1989.",bib,2007-03-02 09:28:08,0,1989,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/1818191,https://hdl.handle.net/2027/mdp.39015053247477,Coffee House Press,True,True,[]
mdp.39015053402882,0,ic,4200990,,MIU,990042009900106381,45603953,"1566891124,9781566891127",,00065893,"Vow to poetry : essays, interviews & manifestos / Anne Waldman.","Coffee House Press, 2001.",bib,2012-06-14 19:30:21,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Waldman, Anne, 1945-",https://catalog.hathitrust.org/Record/4200990,https://hdl.handle.net/2027/mdp.39015053402882,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'jerome foundation', 'athwin foundation', 'bush foundation', 'honeywell foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'patrick and aimee butler family foundation', 'pentair, inc.', 'st. paul companies', 'star tribune foundation', 'target', 'west group']"
mdp.39015053541598,0,ic,4213762,,MIU,990042137620106381,46969878,"1566891205,9781566891202",,2001032482,The complexities of intimacy : stories / by Mary Caponegro.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, 2001.",bib,2008-11-01 22:30:23,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Caponegro, Mary, 1956-",https://catalog.hathitrust.org/Record/4213762,https://hdl.handle.net/2027/mdp.39015053541598,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'athwin foundation', 'bush foundation', 'buuck family foundation', 'honeywell foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'patrick and aimee butler family foundation', 'st. paul companies', 'star tribune foundation', 'target', 'wells fargo foundation minnesota', 'west group']"
mdp.39015054152353,0,ic,4216209,,MIU,990042162090106381,46976613,"1566891213,9781566891219",,2001032481,Distance and direction / Judith Kitchen.,"Coffee House Press, 2001.",bib,2008-11-01 21:30:20,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Kitchen, Judith.",https://catalog.hathitrust.org/Record/4216209,https://hdl.handle.net/2027/mdp.39015054152353,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'jerome foundation', 'athwin foundation', 'bush foundation', 'buuck family foundation', 'honeywell foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'patrick and aimee butler family foundation', 'st. paul companies', 'star tribune foundation', 'target', 'wells fargo foundation minnesota', 'west group']"
mdp.39015054266666,0,ic,3604071,,MIU,990036040710106381,46969876,"1566890667,1566891221,9781566890663,9781566891226",,2001032479,"Maraca : new and selected poems, 1966-2000 / Victor Hernández Cruz.","Coffee House Press, c2001.",bib,2008-07-23 03:30:02,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Cruz, Victor Hernández, 1949-",https://catalog.hathitrust.org/Record/3604071,https://hdl.handle.net/2027/mdp.39015054266666,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'athwin foundation', 'buuck family foundation', 'bush foundation', 'honeywell foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'patrick and aimee butler family foundation', 'st. paul companies', ""marshall field's project imagine with support from the target foundation"", 'wells fargo foundation minnesota', 'west group']"
mdp.39015054289536,0,ic,4247714,,MIU,990042477140106381,48473876,"1566891272,9781566891271",,2001052946,Some of her friends that year : new + selected stories / by Maxine Chernoff.,"Coffee House Press, 2002.",bib,2012-03-21 09:30:58,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Chernoff, Maxine, 1952-",https://catalog.hathitrust.org/Record/4247714,https://hdl.handle.net/2027/mdp.39015054289536,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'jerome foundation', 'athwin foundation', 'bush foundation', 'buuck family foundation', 'lerner family foundation', 'mcknight foundation', 'patrick and aimee butler family foundation', 'st. paul companies', 'star tribune foundation', ""marshall field's project imagine with support from the target foundation"", 'wells fargo foundation minnesota', 'west group', 'woessner freeman family foundation']"
mdp.39015054303550,0,ic,4254831,,MIU,990042548310106381,48469150,"1566891264,9781566891264",,2001052943,Little Casino / Gilbert Sorrentino.,"Coffee House Press, c2002.",bib,2012-03-18 19:30:22,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Sorrentino, Gilbert.",https://catalog.hathitrust.org/Record/4254831,https://hdl.handle.net/2027/mdp.39015054303550,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'jerome foundation', 'athwin foundation', 'bush foundation', 'buuck family foundation', 'honeywell foundation', 'mcknight foundation', 'patrick and aimee butler family foundation', 'st. paul companies', ""marshall field's project imagine with support from the target foundation"", 'wells fargo foundation minnesota', 'west group', 'woessner freeman family foundation']"
mdp.39015054429835,0,ic,4253763,,MIU,990042537630106381,48495182,"1566891299,9781566891295",,2001052947,Red suburb : poems / by Greg Hewett.,"Coffee House Press, 2002.",bib,2012-09-07 19:31:13,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Hewett, Greg.",https://catalog.hathitrust.org/Record/4253763,https://hdl.handle.net/2027/mdp.39015054429835,Coffee House Press,True,True,"['digital vision/picture', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'jerome foundation', 'athwin foundation', 'bush foundation', 'buuck family foundation', 'honeywell foundation', 'mcknight foundation', 'patrick and aimee butler family foundation', 'st. paul companies', ""marshall field's project imagine with support from the target foundation"", 'wells fargo foundation minnesota', 'west group', 'woessner freeman family foundation']"
mdp.39015054444149,0,ic,4253770,,MIU,990042537700106381,48469151,"1566891248,9781566891240",,2001052944,The mermaid that came between them / by Carol Ann Sima.,"Coffee House Press, c2001.",bib,2012-04-19 19:31:17,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Sima, Carol Ann, 1956-",https://catalog.hathitrust.org/Record/4253770,https://hdl.handle.net/2027/mdp.39015054444149,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'jerome foundation', 'athwin foundation', 'bush foundation', 'honeywell foundation', 'james r. thorpe foundation', 'mcknight foundation', 'patrick and aimee butler family foundation', 'pentair, inc.', 'st. paul companies', 'star tribune foundation', 'target', 'west group', 'woessner freeman family foundation']"
mdp.39015055108990,0,ic,4257386,,MIU,990042573860106381,48495179,"1566891280,9781566891288",,2001052945,You never know : poems / by Ron Padgett.,"Coffee House Press, c2001.",bib,2008-11-01 23:30:07,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Padgett, Ron, 1942-",https://catalog.hathitrust.org/Record/4257386,https://hdl.handle.net/2027/mdp.39015055108990,Coffee House Press,True,True,"['christen ktfbke', 'the hirschsprung collection', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'bush foundation', 'buuck family foundation', 'honeywell foundation', 'mcknight foundation', 'patrick and aimee butler family foundation', 'st. paul companies', ""marshall field's project imagine with support from the target foundation"", 'wells fargo foundation minnesota', 'west group', 'woessner freeman family foundation']"
mdp.39015055831096,0,ic,4282281,,MIU,990042822810106381,49799352,"1566891329,1566891361,9781566891325,9781566891363",,2002071283,Miniatures : a novel / by Norah Labiner.,"Coffee House Press, 2002.",bib,2008-06-03 09:30:22,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Labiner, Norah, 1967-",https://catalog.hathitrust.org/Record/4282281,https://hdl.handle.net/2027/mdp.39015055831096,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'jerome foundation', 'athwin foundation', 'beim foundation', 'bush foundation', 'buuck family foundation', 'lerner family foundation', 'mcknight foundation', 'patrick and aimee butler family foundation', 'st. paul companies', 'target', 'target', 'james r. thorpe foundation', 'wells fargo foundation minnesota', 'west group', None, 'woessner freeman family foundation']"
mdp.39015055861176,0,ic,4289358,,MIU,990042893580106381,49799315,"1566891345,9781566891349",,2002071280,The white palazzo : a novel / by Ellen Cooney.,"Coffee House Press, 2002.",bib,2012-03-21 09:31:01,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Cooney, Ellen.",https://catalog.hathitrust.org/Record/4289358,https://hdl.handle.net/2027/mdp.39015055861176,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'athwin foundation', 'beim foundation', 'bush foundation', 'buuck family foundation', 'lerner family foundation', 'mcknight foundation', 'patrick and aimee butler family foundation', 'st. paul companies', 'star tribune foundation', 'target', 'target', 'james r. thorpe foundation', 'wells fargo foundation minnesota', 'west group', None, 'woessner freeman family foundation']"
mdp.39015055861937,0,ic,4290876,,MIU,990042908760106381,49805795,"1566891302,9781566891301",,2002071282,"Gorgeous chaos : new & selected poems, 1965-2001 / by Jack Marshall.","Coffee House Press ; Distributor, Consortium Book Sales & Distribution, c2002.",bib,2008-11-01 21:30:21,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Marshall, Jack, 1936-",https://catalog.hathitrust.org/Record/4290876,https://hdl.handle.net/2027/mdp.39015055861937,Coffee House Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'minnesota state legislature', 'athwin foundation', 'buuck family foundation', 'bush foundation', 'mcknight foundation', 'st. paul companies', 'target', 'target', 'james r. thorpe foundation', 'wells fargo foundation minnesota', 'west group', 'woessner freeman family foundation', 'national endowment for the arts']"
mdp.39015055901881,0,ic,4296600,,MIU,990042966000106381,49799318,"1566891337,9781566891332",,2002071281,Bingo under the crucifix : a novel / by Laurie Foos.,Coffee House Press ; 2002.,bib,2012-09-07 19:31:25,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Foos, Laurie, 1966-",https://catalog.hathitrust.org/Record/4296600,https://hdl.handle.net/2027/mdp.39015055901881,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'athwin foundation', 'beim foundation', 'bush foundation', 'buuck family foundation', 'lerner family foundation', 'mcknight foundation', 'patrick and aimee butler family foundation', 'st. paul companies', 'star tribune foundation', 'target', 'target', 'james r. thorpe foundation', 'wells fargo foundation minnesota', 'west group', None, 'woessner freeman family foundation']"
mdp.39015056170114,0,ic,4296611,,MIU,990042966110106381,49799303,"1566891353,156689137X,9781566891356,9781566891370",,2002071277,Transcircularities : new and selected poems / by Quincy Troupe.,"Coffee House Press ; Distributed by Consortium Book Sales & Distribution, c2002.",bib,2012-08-04 19:30:23,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Troupe, Quincy.",https://catalog.hathitrust.org/Record/4296611,https://hdl.handle.net/2027/mdp.39015056170114,Coffee House Press,True,True,[]
mdp.39015056315404,0,ic,4318367,,MIU,990043183670106381,51389163,"156689140X,9781566891400",,2003041221,Twelve branches : stories from St. Paul / Nora Murphy ... [et al.].,"Coffee House Press, 2003.",bib,2008-06-05 09:30:39,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/4318367,https://hdl.handle.net/2027/mdp.39015056315404,Coffee House Press,True,True,"['the st. paul public library cover + book design by linda s. koutsky author photos © charissa uemura cover', None, 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'st. paul / by nora murphy', 'st. paul (minn.)—fiction i. murphy, nora']"
mdp.39015056477824,0,ic,3845929,,MIU,990038459290106381,27012254,"1566890047,9781566890045",,92038871,Legends from camp : poems / by Lawson Fusao Inada.,"Coffee House Press ; Available through Consortium Book Sales & Distribution, 1992, [c1993]",bib,2012-03-18 19:30:23,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,"Inada, Lawson Fusao.",https://catalog.hathitrust.org/Record/3845929,https://hdl.handle.net/2027/mdp.39015056477824,Coffee House Press,True,True,[]
mdp.39015056651675,0,ic,4314984,,MIU,990043149840106381,51851983,"1566891256,9781566891257",,,The Lakestown rebellion / Kristin Lattany ; foreword by Sandra Adell.,"Coffee House Press, c2003.",bib,2012-04-19 19:31:19,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Lattany, Kristin Hunter, 1931-2008.",https://catalog.hathitrust.org/Record/4314984,https://hdl.handle.net/2027/mdp.39015056651675,Coffee House Press,True,True,"['star tribune foundation', 'phillips family foundation', 'laura jane musser fund', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', ""marshall field's project imagine with support from the target foundation"", 'athwin foundation', 'patrick and aimee butler family foundation', 'buuck family foundation', 'lerner family foundation', 'st. paul companies', 'star tribune foundation', 'james r. thorpe foundation', None, 'wells fargo foundation minnesota', 'west group']"
mdp.39015056652574,0,ic,4317600,,MIU,990043176000106381,51389180,"1566891388,9781566891387",,2003041246,Acts of love on Indigo Road : new & selected stories / by Jonis Agee.,Coffee House Press ; 2003.,bib,2008-06-05 09:30:38,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Agee, Jonis.",https://catalog.hathitrust.org/Record/4317600,https://hdl.handle.net/2027/mdp.39015056652574,Coffee House Press,True,True,"['national endowment for the arts', 'beim foundation', 'buuck family foundation', 'patrick and aimee butler family foundation', 'lerner family foundation', 'mcknight foundation', 'st. paul companies', 'target', 'target', None, 'wells fargo foundation minnesota', 'west group', 'woessner freeman family foundation', 'national endowment for the arts']"
mdp.39015056666137,0,ic,4318369,,MIU,990043183690106381,51446268,"1566891396,9781566891394",,2003041236,The grasshopper king / by Jordan Ellenberg.,"Coffee House Press, 2003.",bib,2008-06-04 09:30:08,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Ellenberg, Jordan, 1971-",https://catalog.hathitrust.org/Record/4318369,https://hdl.handle.net/2027/mdp.39015056666137,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'minnesota state legislature', 'national endowment for the arts', 'beim foundation', 'bush foundation', 'patrick and aimee butler family foundation', 'lerner family foundation', 'mcknight foundation', 'st. paul companies', 'target', 'target', None, 'wells fargo foundation minnesota', 'west group', 'woessner freeman family foundation', 'statt arts board']"
mdp.39015056669925,0,ic,4320508,,MIU,990043205080106381,51389175,"1566891426,9781566891424",,2003041241,The cloud of knowable things : poems / by Elaine Equi.,"Coffee House Press ; Available to the trade through ... Consortium Book Sales & Distribution, c2003.",bib,2008-05-27 09:30:02,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Equi, Elaine.",https://catalog.hathitrust.org/Record/4320508,https://hdl.handle.net/2027/mdp.39015056669925,Coffee House Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'minnesota state legislature', 'buuck family foundation', 'bush foundation', 'patrick and aimee butler family foundation', 'lerner family foundation', 'mcknight foundation', 'st. paul companies', 'target', 'target', 'james r. thorpe foundation', None, 'wells fargo foundation minnesota', 'west group', 'woessner freeman family foundation', 'national endowment for the arts']"
mdp.39015056671749,0,ic,4319647,,MIU,990043196470106381,51454579,"1566891434,9781566891431",,2003041325,A handmade museum : poems / by Brenda Coultas.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, 2003.",bib,2008-05-26 09:30:05,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Coultas, Brenda.",https://catalog.hathitrust.org/Record/4319647,https://hdl.handle.net/2027/mdp.39015056671749,Coffee House Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'minnesota state legislature', 'beim foundation', 'bush foundation', None, 'mcknight foundation', 'st. paul companies', 'target', 'target', 'james r. thorpe foundation', None, 'wells fargo foundation minnesota', 'west group', 'woessner freeman family foundation', 'national endowment for the arts']"
mdp.39015057026497,0,ic,4339416,,MIU,990043394160106381,52381014,"1566891469,1566891507,9781566891462,9781566891509",,2003055097,It was today : new poems / by Andrei Codrescu.,"Coffee House Press, c2003.",bib,2008-05-27 09:30:04,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Codrescu, Andrei, 1946-",https://catalog.hathitrust.org/Record/4339416,https://hdl.handle.net/2027/mdp.39015057026497,Coffee House Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'buuck family foundation', 'bush foundation', 'patrick and aimee butler family foundation', 'patrick and aimee butler family foundation', 'lerner family foundation', 'mcknight foundation', 'st. paul companies', 'target', 'target', 'james r. thorpe foundation', 'wells fargo foundation minnesota', 'west group', 'woessner freeman family foundation']"
mdp.39015057644976,0,ic,4354479,,MIU,990043544790106381,52937829,"1566891418,9781566891417",,2003061251,Screaming monkeys : critiques of Asian American images / edited by M. Evelina Galang ; in collaboration with nonfiction editor Sunaina Maira ... [et al.].,"Coffee House Press, c2003.",bib,2012-03-22 19:30:13,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/4354479,https://hdl.handle.net/2027/mdp.39015057644976,Coffee House Press,True,True,"['national endowment for the arts', None, 'minnesota state arts board', 'buuck family foundation', 'bush foundation', 'patrick and aimee butler family foundation', 'lerner family foundation', 'mcknight foundation', 'outagamie foundation', 'target', 'target', 'james r. thorpe foundation', 'west group', 'woessner freeman family foundation', 'minnesota state arts board']"
mdp.39015057645148,0,ic,4354456,,MIU,990043544560106381,52381052,"1566891493,9781566891493",,2003055120,Echo tree : the collected short fiction of Henry Dumas / edited and with a foreword by Eugene B. Redmond ; critical introduction by John S. Wright.,"Coffee House Press : Distributor, Consortium Book Sales & Distribution, c2003.",bib,2008-07-23 03:30:06,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Dumas, Henry, 1934-1968.",https://catalog.hathitrust.org/Record/4354456,https://hdl.handle.net/2027/mdp.39015057645148,Coffee House Press,True,True,"['bush foundation', None, 'star tribune foundation', None, ""lila wallace reader's digest fund""]"
mdp.39015058137376,0,ic,4361956,,MIU,990043619560106381,52380999,"1566891485,9781566891486",,2003055095,Foreign wife elegy : poems / by Yuko Taniguchi.,"Coffee House Press, 2004.",bib,2012-04-19 19:31:20,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Taniguchi, Yuko, 1975-",https://catalog.hathitrust.org/Record/4361956,https://hdl.handle.net/2027/mdp.39015058137376,Coffee House Press,True,True,[]
mdp.39015058730048,0,ic,4376434,,MIU,990043764340106381,54065671,"1566891566,9781566891561",,2004000680,Dancing on Main Street : poems / by Lorenzo Thomas.,"Coffee House Press ; Available to the trade through Consortium Book Sales & Distibution, 2004.",bib,2012-06-18 19:30:24,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Thomas, Lorenzo, 1944-2005.",https://catalog.hathitrust.org/Record/4376434,https://hdl.handle.net/2027/mdp.39015058730048,Coffee House Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'buuck family foundation', 'bush foundation', 'lerner family foundation', 'mcknight foundation', 'outagamie foundation', None, 'target', 'target', 'james r. thorpe foundation', 'west group', 'woessner freeman family foundation', 'national endowment for the arts']"
mdp.39015058732853,0,ic,4376423,,MIU,990043764230106381,54400466,"156689154X,9781566891547",,2004002893,Desire : a novel / by Lindsay Ahl.,"Coffee House Press ; Available to the trade through Consortium Book Sales & Distribution, 2004.",bib,2012-03-21 19:30:15,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Ahl, Lindsay.",https://catalog.hathitrust.org/Record/4376423,https://hdl.handle.net/2027/mdp.39015058732853,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'buuck family foundation', 'bush foundation', None, 'lerner family foundation', 'mcknight foundation', 'outagamie foundation', None, 'target', 'target', 'west group', 'woessner freeman family foundation']"
mdp.39015060005207,0,ic,4339420,,MIU,990043394200106381,52381037,"1566891442,9781566891448",,2003055098,"Indiana, Indiana : (the dark and lovely portions of the night) : a novel / by Laird Hunt.","Coffee House Press, 2003.",bib,2012-09-08 19:31:14,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Hunt, Laird.",https://catalog.hathitrust.org/Record/4339420,https://hdl.handle.net/2027/mdp.39015060005207,Coffee House Press,True,True,[]
mdp.39015060033142,0,ic,4346582,,MIU,990043465820106381,52380996,"1566891477,9781566891479",,2003055094,The magic whip : poems / by Wang Ping.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, 2003.",bib,2008-07-23 01:30:26,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Wang, Ping, 1957-",https://catalog.hathitrust.org/Record/4346582,https://hdl.handle.net/2027/mdp.39015060033142,Coffee House Press,True,True,[]
mdp.39015060034835,0,ic,4342910,,MIU,990043429100106381,52381004,"1566891450,9781566891455",,2003055096,"In the room of never grieve : new and selected poems, 1985-2003 / Anne Waldman.","Coffee House Press ; Distributor, Consortium Book Sales & Distribution, c2003.",bib,2012-06-14 19:30:23,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Waldman, Anne, 1945-",https://catalog.hathitrust.org/Record/4342910,https://hdl.handle.net/2027/mdp.39015060034835,Coffee House Press,True,True,"['the new york school, the beat literary movement, and the experimental strands of the new american poetry.', None, None, 'the angel hair anthology (granary books,', 'foundation for contemporary arts']"
mdp.39015060065284,0,ic,4753452,,MIU,990047534520106381,55597182,"1566891647,9781566891646",,2004012790,Earthling / Steve Healey.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, c2004.",bib,2008-09-24 23:30:04,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Healey, Steve, 1966-",https://catalog.hathitrust.org/Record/4753452,https://hdl.handle.net/2027/mdp.39015060065284,Coffee House Press,True,True,[]
mdp.39015060066241,0,ic,4763548,,MIU,990047635480106381,55600769,"1566891620,9781566891622",,2004012788,The California poem / Eleni Sikelianos.,"Coffee House Press, 2004.",bib,2012-03-12 19:31:32,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Sikelianos, Eleni.",https://catalog.hathitrust.org/Record/4763548,https://hdl.handle.net/2027/mdp.39015060066241,Coffee House Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'buuck family foundation', 'bush foundation', None, 'lerner family foundation', 'mcknight foundation', 'outagamie foundation', 'target', 'target', 'james r. thorpe foundation', 'west group', 'woessner freeman family foundation', 'minnesota state arts board', 'national endowment for the arts']"
mdp.39015060098368,0,ic,4763573,,MIU,990047635730106381,55597183,"1566891655,9781566891653",,2004012791,Murder (a violet) / Raymond McDaniel.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, c2004.",bib,2012-12-03 19:31:57,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"McDaniel, Raymond, 1969-",https://catalog.hathitrust.org/Record/4763573,https://hdl.handle.net/2027/mdp.39015060098368,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'patrick and aimee butler family foundation', None, 'lerner family foundation', 'mcknight foundation', None, 'st. paul companies', 'target', 'target', 'james r. thorpe foundation', 'west group', 'woessner freeman family foundation', 'national endowment for the arts']"
mdp.39015060368845,0,ic,4916477,,MIU,990049164770106381,55597179,"1566891590,1566891604,9781566891592,9781566891608",,2004012786,Joe : a memoir of Joe Brainard / Ron Padgett.,"Coffee House Press, c2004.",bib,2012-07-06 20:18:51,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Padgett, Ron, 1942-",https://catalog.hathitrust.org/Record/4916477,https://hdl.handle.net/2027/mdp.39015060368845,Coffee House Press,True,True,"['national endowment for the arts', 'national endowment for the arts', 'buuck family foundation', 'bush foundation', None, 'mcknight foundation', None, 'target', 'target', 'james r. thorpe foundation', 'west group', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts']"
mdp.39015060593202,0,ic,4971610,,MIU,990049716100106381,57068418,"1566891736,9781566891738",,2004027803,Somewhere else : poems / by Matthew Shenoda.,"Coffee House Press, c2005.",bib,2012-06-25 19:30:20,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Shenoda, Matthew.",https://catalog.hathitrust.org/Record/4971610,https://hdl.handle.net/2027/mdp.39015060593202,Coffee House Press,True,True,"['jerome foundation', 'minnesota state arts board', 'national endowment for the arts', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'consortium book sales and distribution', 'foundation for contemporary arts', 'performance arts', 'stephen and isabel keating', 'outagamie foundation', None, 'west group', 'woessner freeman family foundation', 'national endowment for the arts']"
mdp.39015060617936,0,ic,4975801,,MIU,990049758010106381,57068416,"156689171X,9781566891714",,2004027801,Off-season city pipe : work / by Allison Adelle Hedge Coke.,"Coffee House Press ; Distributor, Consortium Book Sales and Distribution, 2005.",bib,2012-06-25 19:30:20,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Hedge Coke, Allison Adelle.",https://catalog.hathitrust.org/Record/4975801,https://hdl.handle.net/2027/mdp.39015060617936,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'bush foundation', 'patrick and aimee butler family foundation', 'consortium book sales and distribution', 'foundation for contemporary arts', 'stephen and isabel keating', 'lerner family foundation', 'outagamie foundation', None, 'west group', 'woessner freeman family foundation', 'national endowment for the arts']"
mdp.39015060838466,0,ic,4987903,,MIU,990049879030106381,57169986,"156689168X,9781566891684",,2004028141,Before Elvis there was nothing / by Laurie Foos.,"Coffee House Press, 2005.",bib,2012-06-25 19:30:20,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Foos, Laurie, 1966-",https://catalog.hathitrust.org/Record/4987903,https://hdl.handle.net/2027/mdp.39015060838466,Coffee House Press,True,True,[]
mdp.39015060839480,0,ic,4987789,,MIU,990049877890106381,57169985,"1566891698,9781566891691",,2004028140,Lunar follies / by Gilbert Sorrentino.,"Coffee House Press ; Available to the trade through primary distributor, Consortium Book Sales & Distribution, c2005.",bib,2012-05-16 19:30:43,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Sorrentino, Gilbert.",https://catalog.hathitrust.org/Record/4987789,https://hdl.handle.net/2027/mdp.39015060839480,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'consortium book sales and distribution', 'foundation for contemporary arts', 'stephen and isabel keating', 'lerner family foundation', 'outagamie foundation', None, 'james r. thorpe foundation', 'west group', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts']"
mdp.39015061094853,0,ic,4376435,,MIU,990043764350106381,54046922,"1566891574,9781566891578",,2004000676,Word group : poems / by Marjorie Welish.,"Coffee House Press, 2004.",bib,2008-11-01 22:30:08,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Welish, Marjorie, 1944-",https://catalog.hathitrust.org/Record/4376435,https://hdl.handle.net/2027/mdp.39015061094853,Coffee House Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'buuck family foundation', 'bush foundation', None, 'lerner family foundation', 'mcknight foundation', 'outagamie foundation', 'target', 'target', 'james r. thorpe foundation', 'west group', 'woessner freeman family foundation']"
mdp.39015061104207,0,ic,4377669,,MIU,990043776690106381,54035285,"1566891558,9781566891554",,2004000668,The pink institution : a novel / by Selah Saterstrom.,"Coffee House Press ; Primary distributor, Consortium Book Sales & Distribution, 2004.",bib,2012-03-18 19:30:25,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Saterstrom, Selah, 1974-",https://catalog.hathitrust.org/Record/4377669,https://hdl.handle.net/2027/mdp.39015061104207,Coffee House Press,True,True,[]
mdp.39015061145077,0,ic,4729709,,MIU,990047297090106381,54082131,"1566891582,9781566891585",,2004000683,Civil disobediences : poetics and politics in action / edited by Anne Waldman & Lisa Birman.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, c2004.",bib,2008-11-13 22:30:08,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/4729709,https://hdl.handle.net/2027/mdp.39015061145077,Coffee House Press,True,True,[]
mdp.39015061187194,0,ic,5052977,,MIU,990050529770106381,60323437,"1566891779,9781566891776",,2005012568,Starred wire : poems / by Ange Mlinko.,"Coffee House Press, c2005.",bib,2012-06-25 19:30:20,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Mlinko, Ange.",https://catalog.hathitrust.org/Record/5052977,https://hdl.handle.net/2027/mdp.39015061187194,Coffee House Press,True,True,"['jerome foundation', 'minnesota state arts board', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'bush foundation', 'patrick and aimee butler family foundation', 'consortium book sales and distribution', 'foundation for contemporary arts', 'outagamie foundation', None, 'west group', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
mdp.39015061190180,0,ic,5052975,,MIU,990050529750106381,60311857,"1566891787,9781566891783",,2005012804,Forge : poems / by Ted Mathys.,"Coffee House Press ; Available to the trade through Consortium Book Sales & Distribution, 2005.",bib,2012-07-01 19:30:25,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Mathys, Ted, 1979-",https://catalog.hathitrust.org/Record/5052975,https://hdl.handle.net/2027/mdp.39015061190180,Coffee House Press,True,True,[]
mdp.39015061461508,0,ic,5031614,,MIU,990050316140106381,57123675,"1566891728,9781566891721",,2004027802,Wise fish : tales in 6/8 time : poems / by Adrian Castro.,"Coffee House Press : Distributor, Consortium Book Sales and Distribution, c2005.",bib,2012-05-16 19:30:43,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Castro, Adrian, 1967-",https://catalog.hathitrust.org/Record/5031614,https://hdl.handle.net/2027/mdp.39015061461508,Coffee House Press,True,True,[]
mdp.39015061751627,0,ic,4380026,,MIU,990043800260106381,54035284,"1566891523,9781566891523",,2004000665,The moon in its flight : stories / by Gilbert Sorrentino.,"Coffee House Press ; Distributed to trade by Consortium Book Sales & Distribution, 2004.",bib,2012-04-19 19:31:23,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Sorrentino, Gilbert.",https://catalog.hathitrust.org/Record/4380026,https://hdl.handle.net/2027/mdp.39015061751627,Coffee House Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'buuck family foundation', 'bush foundation', 'lerner family foundation', 'mcknight foundation', 'outagamie foundation', None, 'target', 'target', 'james r. thorpe foundation', 'west group', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts']"
mdp.39015062564086,0,ic,5071351,,MIU,990050713510106381,60323441,"1566891752,9781566891752",,2005012569,Garner / Kristin Allio.,"Coffee House Press, 2005.",bib,2008-11-13 22:30:05,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Allio, Kirstin.",https://catalog.hathitrust.org/Record/5071351,https://hdl.handle.net/2027/mdp.39015062564086,Coffee House Press,True,True,[]
mdp.39015062609220,0,ic,5093220,,MIU,990050932200106381,60341524,"1566891760,1566891809,9781566891769,9781566891806",,2005012570,The collected fiction of Kenneth Koch / introduction by Jordan Davis.,"Coffee House Press, 2005.",bib,2012-05-16 19:30:44,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Koch, Kenneth, 1925-2002.",https://catalog.hathitrust.org/Record/5093220,https://hdl.handle.net/2027/mdp.39015062609220,Coffee House Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'buuck family foundation', 'bush foundation', 'patrick and aimee butler family foundation', 'consortium book sales and distribution', 'contemporary performance arts', 'stephen and isabel keating', 'lerner family foundation', 'outagamie foundation', None, 'james r. thorpe foundation', None, 'west group', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
mdp.39015062840692,0,ic,5091560,,MIU,990050915600106381,60590103,"1566891671,9781566891677",,2005016116,Crossing three wildernesses : a memoir / by U Sam Oeur ; with Ken McCullough.,"Coffee House Press, c2005.",bib,2012-07-13 19:31:50,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"U Sam Oeur, 1936-",https://catalog.hathitrust.org/Record/5091560,https://hdl.handle.net/2027/mdp.39015062840692,Coffee House Press,True,True,"['national endowment for the arts', 'madeleine martin foundation for the creative arts', 'stephen and isabel keating', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'buuck family foundation', 'bush foundation', 'patrick and aimee butler family foundation', 'consortium book sales and distribution', 'contemporary performance arts', 'lerner family foundation', 'outagamie foundation', None, None, 'west group', 'woessner freeman family foundation', 'minnesota state legislature', 'national endowment for the arts', 'target', 'target']"
mdp.39015063246873,0,ic,5211444,,MIU,990052114440106381,62615889,"1566891833,9781566891837",,2005035810,Light & shade : new and selected poems / Tom Clark ; introduction by Amy Gerstler.,"Coffee House Press ; Distributed by Consortium Book Sales and Distribution, 2006.",bib,2012-07-01 19:30:26,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Clark, Tom, 1941-2018.",https://catalog.hathitrust.org/Record/5211444,https://hdl.handle.net/2027/mdp.39015063246873,Coffee House Press,True,True,[]
mdp.39015063249257,0,ic,5211454,,MIU,990052114540106381,63228512,"1566891841,9781566891844",,2005035801,Erosion's pull : poems / Maureen Owen.,"Coffee House Press, 2006.",bib,2012-06-25 19:30:22,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Owen, Maureen, 1943-",https://catalog.hathitrust.org/Record/5211454,https://hdl.handle.net/2027/mdp.39015063249257,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'foundation for contemporary arts', 'stephen and isabel keating', 'outagamie foundation', None, None, 'woessner freeman family foundation', 'minnesota state legislature', 'national endowment for the arts', 'target']"
mdp.39015063261518,0,ic,5211219,,MIU,990052112190106381,62615886,"1566891868,9781566891868",,2005035800,Because why : poems / Sarah Fox.,"Coffee House Press, 2006.",bib,2008-11-13 22:30:28,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Fox, Sarah, 1966-",https://catalog.hathitrust.org/Record/5211219,https://hdl.handle.net/2027/mdp.39015063261518,Coffee House Press,True,True,[]
mdp.39015063261583,0,ic,5211223,,MIU,990052112230106381,62615888,"156689185X,9781566891851",,2005035802,The eros conspiracy : a poem / by Greg Hewett.,"Coffee House Press, 2006.",bib,2012-07-01 19:30:26,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Hewett, Greg.",https://catalog.hathitrust.org/Record/5211223,https://hdl.handle.net/2027/mdp.39015063261583,Coffee House Press,True,True,"['national endowment for the arts', 'jerome foundation', None, 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'bush foundation', 'patrick and aimee butler family foundation', 'foundation for contemporary arts', 'stephen and isabel keating', 'outagamie foundation', 'james r. thorpe foundation', None, 'thr/west', 'woessner freeman family foundation', 'minnesota state arts board', 'national endowment for the arts', 'target']"
mdp.39015063339793,0,ic,5222414,,MIU,990052224140106381,62525191,"1566891817,9781566891813",,2005035803,Firmin : adventures of a metropolitan lowlife : a novel / by Sam Savage.,"Coffee House Press, 2006.",bib,2012-06-25 19:30:22,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Savage, Sam, 1940-2019.",https://catalog.hathitrust.org/Record/5222414,https://hdl.handle.net/2027/mdp.39015063339793,Coffee House Press,True,True,"['jerome foundation', None, 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'bush foundation', 'patrick and aimee butler family foundation', 'patrick and aimee butler family foundation', 'consortium book sales and distribution', 'foundation for contemporary arts', 'outagamie foundation', 'james r. thorpe foundation', None, 'tlr/west', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
mdp.39015064688768,0,ic,5225932,,MIU,990052259320106381,62525192,"1566891825,9781566891820",,2005035804,A strange commonplace / Gilbert Sorrentino.,"Coffee House Press, c2006.",bib,2012-05-16 19:30:45,0,2006,miu,eng,BK,MIU,umich,umich,google,google,"Sorrentino, Gilbert.",https://catalog.hathitrust.org/Record/5225932,https://hdl.handle.net/2027/mdp.39015064688768,Coffee House Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'foundation for contemporary arts', 'stephen and isabel keating', 'outagamie foundation', None, None, 'west group', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
mdp.39015064764965,0,ic,5288430,,MIU,990052884300106381,67361100,"1566891876,9781566891875",,2006011901,The exquisite : a novel / Laird Hunt.,"Coffee House Press, 2006.",bib,2012-07-01 19:30:27,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Hunt, Laird.",https://catalog.hathitrust.org/Record/5288430,https://hdl.handle.net/2027/mdp.39015064764965,Coffee House Press,True,True,"['national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'bush foundation', 'patrick and aimee butler family foundation', 'foundation for contemporary arts', 'gary fink', 'rebecca rand', 'james r. thorpe foundation', None, None, 'thompson west', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
mdp.39015064765012,0,ic,5288437,,MIU,990052884370106381,65978665,"1566891930,9781566891936",,2006011899,Teahouse of the almighty : poems / by Patricia Smith,"Coffee House Press, c2006",bib,2012-06-30 19:30:28,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Smith, Patricia, 1955-",https://catalog.hathitrust.org/Record/5288437,https://hdl.handle.net/2027/mdp.39015064765012,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'bush foundation', 'patrick and aimee butler family foundation', 'foundation for contemporary arts', 'stephen and isabel keating', 'outagamie foundation', None, 'james r. thorpe foundation', None, 'thr/west', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
mdp.39015064766804,0,ic,5288426,,MIU,990052884260106381,66463679,"1566891914,9781566891912",,2006012062,The mountain in the sea : poems / Victor Hernández Cruz,"Coffee House Press, 2006",bib,2012-05-16 19:30:46,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Cruz, Victor Hernández, 1949-",https://catalog.hathitrust.org/Record/5288426,https://hdl.handle.net/2027/mdp.39015064766804,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'foundation for contemporary arts', 'gary fink', 'stephen and isabel keating', 'lenfesty family foundation', 'rebecca rand', 'james r. thorpe foundation', None, 'thompson west', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
mdp.39015066770291,0,ic,5376749,,MIU,990053767490106381,67405534,"1566891884,9781566891882",,2006012060,The open curtain : a novel / Brian Evenson,"Coffee House Press, 2006",bib,2012-06-26 19:30:22,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Evenson, Brian, 1966-",https://catalog.hathitrust.org/Record/5376749,https://hdl.handle.net/2027/mdp.39015066770291,Coffee House Press,True,True,[]
mdp.39015066787212,0,ic,5291460,,MIU,990052914600106381,67405535,"1566891892,1566891906,9781566891899,9781566891905",,2006012061,The architecture of language : poems / Quincy Troupe,"Coffee House Press, 2006",bib,2012-07-10 19:30:54,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Troupe, Quincy",https://catalog.hathitrust.org/Record/5291460,https://hdl.handle.net/2027/mdp.39015066787212,Coffee House Press,True,True,"['minnesota state arts board', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'bush foundation', 'patrick and aimee butler family foundation', 'foundation for contemporary arts', 'gary fink', 'rebecca rand', 'james r. thorpe foundation', None, 'thompson west', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
mdp.39015067679897,0,ic,5546755,,MIU,990055467550106381,76897666,"1566891973,9781566891974",,2006039246,Ripple effect : new and selected poems / by Elaine Equi,"Coffee House Press, c2007",bib,2012-05-16 19:30:47,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Equi, Elaine",https://catalog.hathitrust.org/Record/5546755,https://hdl.handle.net/2027/mdp.39015067679897,Coffee House Press,True,True,[]
mdp.39015068793960,0,ic,5560230,,MIU,990055602300106381,76481526,"1566891965,9781566891967",,2006038520,ULULU : clown shrapnel / by Thalia Field ; with silent film by Bill Morrison and illustrations by Abbot Stranahan,"Coffee House Press ; Available to the trade through Consortium Book Sales & Distribution, c2007",bib,2012-05-16 19:30:48,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Field, Thalia, 1966-",https://catalog.hathitrust.org/Record/5560230,https://hdl.handle.net/2027/mdp.39015068793960,Coffee House Press,True,True,"['foundation for contemporary arts', 'target', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'buuck family foundation', 'patrick and aimee butler family foundation', 'stephen and isabel keating', 'lenfesty family foundation', 'james r. thorpe foundation', None, 'thompson west', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
mdp.39015068803397,0,ic,5560250,,MIU,990055602500106381,76786718,"1566891949,9781566891943",,2006038347,The ocean in the closet : a novel / Yuko Taniguchi,"Coffee House Press, 2007",bib,2012-06-26 19:30:23,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Taniguchi, Yuko, 1975-",https://catalog.hathitrust.org/Record/5560250,https://hdl.handle.net/2027/mdp.39015068803397,Coffee House Press,True,True,[]
mdp.39015068816878,0,ic,5557951,,MIU,990055579510106381,76786730,"1566891957,9781566891950",,2006038522,The last communist virgin : stories / by Wang Ping.,"Coffee House Press, 2007.",bib,2012-06-25 19:30:25,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Wang, Ping, 1957-",https://catalog.hathitrust.org/Record/5557951,https://hdl.handle.net/2027/mdp.39015068816878,Coffee House Press,True,True,"['national endowment for the arts', 'mcknight foundation', 'target', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'buuck family foundation', 'patrick and aimee butler family foundation', 'gary fink', 'stephen and isabel keating', 'lenfesty family foundation', 'rebecca rand', 'james r. thorpe foundation', None, 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
mdp.39015069302142,0,ic,5562232,,MIU,990055622320106381,,"1566891981,9781566891981",,,Broken world : poems.,"Coffee House Press, c2007.",bib,2012-07-01 19:30:29,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Lease, Joseph.",https://catalog.hathitrust.org/Record/5562232,https://hdl.handle.net/2027/mdp.39015069302142,Coffee House Press,True,True,[]
mdp.39015069361908,0,ic,5557812,,MIU,990055578120106381,,"1566892007,9781566892001",,,Living will : poems.,"Coffee House Press, c2007.",bib,2008-11-13 23:30:04,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Hilton, David, 1938-2005.",https://catalog.hathitrust.org/Record/5557812,https://hdl.handle.net/2027/mdp.39015069361908,Coffee House Press,True,True,"['woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'patrick and aimee butler family foundation', 'gary fink', 'stephen and isabel keating', 'lenfesty family foundation', 'rebecca rand', 'james r. thorpe foundation', None, 'thompson west', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts']"
mdp.39015070756344,0,ic,5616275,,MIU,990056162750106381,137260064,"1566892015,9781566892018",,2007021002,The meat and spirit plan : a novel / Selah Saterstrom,"Coffee House Press, 2007",bib,2012-06-25 19:30:27,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Saterstrom, Selah, 1974-",https://catalog.hathitrust.org/Record/5616275,https://hdl.handle.net/2027/mdp.39015070756344,Coffee House Press,True,True,"['the meat and spirit plan was designed at coffee house press', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'stephen and isabel keating', 'lenfesty family foundation', 'rebecca rand', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
mdp.39015070756799,0,ic,5616255,,MIU,990056162550106381,134991479,"156689204X,9781566892049",,2007021003,The marvelous bones of time : excavations and explanations : poetry / by Brenda Coultas,"Coffee House Press, c2007",bib,2012-07-01 19:30:30,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Coultas, Brenda",https://catalog.hathitrust.org/Record/5616255,https://hdl.handle.net/2027/mdp.39015070756799,Coffee House Press,True,True,['new york foundation for the arts']
mdp.39015070756849,0,ic,5616272,,MIU,990056162720106381,123818338,"1566892031,9781566892032",,2007017772,How to be perfect / by Ron Padgett,"Coffee House Press, c2007",bib,2012-06-25 19:30:27,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Padgett, Ron, 1942-",https://catalog.hathitrust.org/Record/5616272,https://hdl.handle.net/2027/mdp.39015070756849,Coffee House Press,True,True,"['minnesota state arts board', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'stephen and isabel keating', 'lenfesty family foundation', 'rebecca rand', 'james r. thorpe foundation', None, 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
mdp.39015070773166,0,ic,5605266,,MIU,990056052660106381,123912646,"1566892058,9781566892056",,2007017784,Vertigo : poems / Martha Ronk,"Coffee House Press, c2007",bib,2012-05-16 19:30:50,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Ronk, Martha Clare",https://catalog.hathitrust.org/Record/5605266,https://hdl.handle.net/2027/mdp.39015070773166,Coffee House Press,True,True,"[None, 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'stephen and isabel keating', 'lenfesty family foundation', 'rebecca rand', 'james r. thorpe foundation', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
mdp.39015073890645,0,ic,5687976,,MIU,990056879760106381,181730495,"1566892066,1566892104,9781566892063,9781566892100",,2007046388,Rounding the human corners : poems / Linda Hogan ; introduction by William Kittredge,"Coffee House Press, 2008",bib,2012-05-12 19:31:01,0,2008,mnu,eng,BK,MIU,umich,umich,google,google,"Hogan, Linda",https://catalog.hathitrust.org/Record/5687976,https://hdl.handle.net/2027/mdp.39015073890645,Coffee House Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'stephen and isabel keating', 'rebecca rand', 'james r. thorpe foundation', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
mdp.39015073918438,0,ic,5688701,,MIU,990056887010106381,181730499,"1566892066,1566892139,9781566892063,9781566892131",,2007046394,Saltwater empire : poetry / Raymond McDaniel.,"Coffee House Press : Distributor, Consortium Book Sales & Distribution, 2008.",bib,2008-09-16 22:30:31,0,2008,mnu,eng,BK,MIU,umich,umich,google,google,"McDaniel, Raymond, 1969-",https://catalog.hathitrust.org/Record/5688701,https://hdl.handle.net/2027/mdp.39015073918438,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'stephen and isabel keating', 'lenfesty family foundation', 'rebecca rand', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
mdp.39015073918453,0,ic,5688691,,MIU,990056886910106381,181730497,"1566892066,1566892120,9781566892063,9781566892124",,2007046392,Isle of the signatories : poems / Marjorie Welish.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, 2008.",bib,2008-09-16 22:30:31,0,2008,mnu,eng,BK,MIU,umich,umich,google,google,"Welish, Marjorie, 1944-",https://catalog.hathitrust.org/Record/5688691,https://hdl.handle.net/2027/mdp.39015073918453,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'jennifer haugh', 'stephen and isabel keating', 'lenfesty family foundation', 'rebecca rand', 'woessner freeman family foundation', 'minnesota state arts board', 'target']"
mdp.39015076178550,0,ic,5691195,,MIU,990056911950106381,182529285,"1566892082,9781566892087",,2007046386,The latehomecomer : a Hmong family memoir / Kao Kalia Yang.,"Coffee House Press, 2008.",bib,2012-08-30 19:30:26,0,2008,mnu,eng,BK,MIU,umich,umich,google,google,"Yang, Kao Kalia, 1980-",https://catalog.hathitrust.org/Record/5691195,https://hdl.handle.net/2027/mdp.39015076178550,Coffee House Press,True,True,"['jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'stephen and isabel keating', 'lenfesty family foundation', 'rebecca rand', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
mdp.39015078783225,0,ic,6305098,,MIU,990063050980106381,261176364,"1566892287,9781566892285",,2008052608,Coal mountain elementary / Mark Nowak ; with photographs by Ian Teh and Mark Nowak.,"Coffee House Press : Distributor, Constortium Book Sales & Distribution, 2009.",bib,2012-03-30 10:30:28,0,2009,mnu,eng,BK,MIU,umich,umich,google,google,"Nowak, Mark, 1964-",https://catalog.hathitrust.org/Record/6305098,https://hdl.handle.net/2027/mdp.39015078783225,Coffee House Press,True,True,"['mcknight foundation', 'bush foundation', 'target', 'minnesota state arts board', 'national endowment for the arts', 'patrick and aimee butler family foundation', 'buuck family foundation', 'stephen and isabel keating', 'lenfesty family foundation', 'james r. thorpe foundation', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', None]"
mdp.39015078783316,0,ic,6305291,,MIU,990063052910106381,261176534,"1566892309,9781566892308",,2008052609,The spoils : poems / Ted Mathys.,"Coffee House Press : Distributor, Consortium Book Sales & Distribution, 2009.",bib,2010-07-10 20:31:40,0,2009,mnu,eng,BK,MIU,umich,umich,google,google,"Mathys, Ted, 1979-",https://catalog.hathitrust.org/Record/6305291,https://hdl.handle.net/2027/mdp.39015078783316,Coffee House Press,True,True,"['jerome foundation', 'national endowment for the arts', 'mcknight foundation', 'bush foundation', 'target', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'patrick and aimee butler family foundation', 'patrick and aimee butler family foundation', 'buuck family foundation', 'stephen and isabel keating', 'lenfesty family foundation', 'james r. thorpe foundation', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', None]"
mdp.39015078785394,0,ic,6767015,,MIU,990067670150106381,261176533,"1566892066,1566892295,9781566892063,9781566892292",,2008052607,Portrait and dream : new and selected poems / Bill Berkson.,"Coffee House Press : Distributor, Consortium Book Sales & Distribution, 2009.",bib,2012-02-24 04:30:03,0,2009,mnu,eng,BK,MIU,umich,umich,google,google,"Berkson, Bill.",https://catalog.hathitrust.org/Record/6767015,https://hdl.handle.net/2027/mdp.39015078785394,Coffee House Press,True,True,"['mcknight foundation', 'bush foundation', 'target', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'patrick and aimee butler family foundation', 'buuck family foundation', 'lenfesty family foundation', 'james r. thorpe foundation', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', None]"
mdp.39015078793679,0,ic,6782205,,MIU,990067822050106381,261175912,"1566892066,1566892236,9781566892063,9781566892230",,2008052719,German for travelers : a novel in 95 lessons / Norah Labiner.,"Coffee House Press : Distributor, Consortium Book Sales & Distribution, 2009.",bib,2010-07-10 21:30:40,0,2009,mnu,eng,BK,MIU,umich,umich,google,google,"Labiner, Norah, 1967-",https://catalog.hathitrust.org/Record/6782205,https://hdl.handle.net/2027/mdp.39015078793679,Coffee House Press,True,True,"['national endowment for the arts', 'mcknight foundation', 'target', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'patrick and aimee butler family foundation', 'buuck family foundation', 'stephen and isabel keating', 'lenfesty family foundation', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', None]"
mdp.39015080866885,0,ic,6856590,,MIU,990068565900106381,261176595,"1566892066,1566892260,9781566892063,9781566892261",,2008052723,All fall down : stories / Mary Caponegro.,"Coffee House Press : [Distributed by] Consortium Book Sales & Distribution, 2009.",bib,2012-09-25 04:30:04,0,2009,mnu,eng,BK,MIU,umich,umich,google,google,"Caponegro, Mary, 1956-",https://catalog.hathitrust.org/Record/6856590,https://hdl.handle.net/2027/mdp.39015080866885,Coffee House Press,True,True,"['national endowment for the arts', 'mcknight foundation', 'bush foundation', 'target', 'minnesota state arts board', 'minnesota state legislature', 'patrick and aimee butler family foundation', 'buuck family foundation', 'lenfesty family foundation', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', None]"
mdp.39015080872602,0,ic,6857182,,MIU,990068571820106381,261175967,"1566892066,1566892252,9781566892063,9781566892254",,2008052722,Fugue state : stories / Brian Evenson ; with art by Zak Sally.,"Coffee House Press : [Distributed by] Consortium Book Sales & Distribution, 2009.",bib,2010-07-09 20:30:48,0,2009,mnu,eng,BK,MIU,umich,umich,google,google,"Evenson, Brian, 1966-",https://catalog.hathitrust.org/Record/6857182,https://hdl.handle.net/2027/mdp.39015080872602,Coffee House Press,True,True,[]
mdp.39015080873279,0,ic,6834791,,MIU,990068347910106381,261176593,"1566892066,1566892244,9781566892063,9781566892247",,2008052721,The Hebrew tutor of Bel Air / Allan Appel.,"Coffee House Press, 2009.",bib,2010-07-10 21:30:52,0,2009,mnu,eng,BK,MIU,umich,umich,google,google,"Appel, Allan.",https://catalog.hathitrust.org/Record/6834791,https://hdl.handle.net/2027/mdp.39015080873279,Coffee House Press,True,True,"['mcknight foundation', 'bush foundation', 'target', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'patrick and aimee butler family foundation', 'buuck family foundation', 'stephen and isabel keating', 'lenfesty family foundation', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', None]"
txu.059172101313253,0,ic,2437206,,TXU,b23177846,14167765,"0918273234,9780918273239",,86020765,Lucha : a novella / by Constance Urdang.,"Coffee House Press, 1986.",bib,2016-04-23 03:26:47,0,1986,mnu,eng,BK,TXU,utexas,utexas,google,google,"Urdang, Constance.",https://catalog.hathitrust.org/Record/2437206,https://hdl.handle.net/2027/txu.059172101313253,Coffee House Press,True,True,[]
txu.059173000774965,0,ic,2806243,,TXU,b3885045x,28254693,"156689011X,9781566890113",,"93025176,93025176 //r93",A place where the sea remembers : a novel / by Sandra Benítez.,"Coffee House Press, 1993.",bib,2016-04-23 03:28:04,0,1993,mnu,eng,BK,TXU,utexas,utexas,google,google,"Benítez, Sandra, 1941-",https://catalog.hathitrust.org/Record/2806243,https://hdl.handle.net/2027/txu.059173000774965,Coffee House Press,True,True,[]
txu.059173005076977,0,ic,3949490,,TXU,b43783326,36954538,"1566890632,9781566890632",,97015993,Floating kingdom : a novel / by George Rabasa.,"Coffee House Press, c1997.",bib,2016-04-23 03:29:01,0,1997,mnu,eng,BK,TXU,utexas,utexas,google,google,"Rabasa, George, 1941-",https://catalog.hathitrust.org/Record/3949490,https://hdl.handle.net/2027/txu.059173005076977,Coffee House Press,True,True,[]
txu.059173005631692,0,ic,101030579,,TXU,b43860199,36961007,"1566890675,9781566890670",,97016016,Cantos to blood & honey : poems / by Adrian Castro.,"Coffee House Press, c1997.",bib,2016-04-23 03:29:14,0,1997,mnu,eng,BK,TXU,utexas,utexas,google,google,"Castro, Adrian, 1967-",https://catalog.hathitrust.org/Record/101030579,https://hdl.handle.net/2027/txu.059173005631692,Coffee House Press,True,True,[]
txu.059173010259648,0,ic,101031884,,TXU,b52901828,45963238,"1566891116,9781566891110",,2001028061,Bird at my window / Rosa Guy ; foreword by Sandra Adell.,"Coffee House Press ; Primary distributor, Consortium Book Sales & Distribution, c2001.",bib,2016-04-27 03:29:39,0,2001,mnu,eng,BK,TXU,utexas,utexas,google,google,"Guy, Rosa.",https://catalog.hathitrust.org/Record/101031884,https://hdl.handle.net/2027/txu.059173010259648,Coffee House Press,True,True,[]
txu.059173015338005,0,ic,4748118,,TXU,b59630760,55597180,"1566891612,9781566891615",,2004012787,Autopsy of an engine and other stories from the Cadillac plant / Lolita Hernandez.,"Coffee House Press, c2004.",bib,2016-04-27 03:33:56,0,2004,mnu,eng,BK,TXU,utexas,utexas,google,google,"Hernandez, Lolita, 1947-",https://catalog.hathitrust.org/Record/4748118,https://hdl.handle.net/2027/txu.059173015338005,Coffee House Press,True,True,[]
txu.059173016619837,0,ic,5031614,,TXU,b59711693,57123675,"1566891728,9781566891721",,2004027802,Wise fish : tales in 6/8 time : poems / by Adrian Castro.,"Coffee House Press : Distributor, Consortium Book Sales and Distribution, c2005.",bib,2016-04-27 03:35:44,0,2005,mnu,eng,BK,TXU,utexas,utexas,google,google,"Castro, Adrian, 1967-",https://catalog.hathitrust.org/Record/5031614,https://hdl.handle.net/2027/txu.059173016619837,Coffee House Press,True,True,[]
txu.059173019184661,0,ic,5288426,,TXU,b61251835,66463679,"1566891914,9781566891912",,2006012062,The mountain in the sea : poems / Victor Hernández Cruz,"Coffee House Press, 2006",bib,2016-04-28 03:29:22,0,2006,mnu,eng,BK,TXU,utexas,utexas,google,google,"Cruz, Victor Hernández, 1949-",https://catalog.hathitrust.org/Record/5288426,https://hdl.handle.net/2027/txu.059173019184661,Coffee House Press,True,True,[]
uc1.32106007953653,0,ic,7105650,,UC,b10823244,11532484,"0918273099,9780918273093",,84028517,"The lotus lovers : poems & songs / Tzu Yeh, Li Chʼing-chao ; translated ; [Chinese figure drawings by Sam Hamill].","Coffee House Press, 1985.",bib,2010-10-23 20:33:16,0,1985,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Tzu, Yeh, 4th cent.",https://catalog.hathitrust.org/Record/7105650,https://hdl.handle.net/2027/uc1.32106007953653,Coffee House Press,True,True,"['national endowment for the arts', 'national endowment for the arts']"
uc1.32106012923758,0,ic,3115316,v.3,UC,b19194638,34623025,"1566890500,9781566890502",,96002777,Collected works / Paul Metcalf,"Coffee House Press, 1996-1997.",bib,2010-07-20 08:54:04,0,1997,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Metcalf, Paul C",https://catalog.hathitrust.org/Record/3115316,https://hdl.handle.net/2027/uc1.32106012923758,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'patrick and aimee butler family foundation']"
uc1.32106013248098,0,ic,3115316,v.1,UC,b19194638,34623025,"1566890500,9781566890502",,96002777,Collected works / Paul Metcalf,"Coffee House Press, 1996-1997.",bib,2010-07-20 08:53:50,0,1997,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Metcalf, Paul C",https://catalog.hathitrust.org/Record/3115316,https://hdl.handle.net/2027/uc1.32106013248098,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', None]"
uc1.32106013825804,0,ic,3995902,,UC,b19920969,37864098,"1566890691,9781566890694",,97043267,Sacred vows : poetry / by U Sam Oeur ; translated from Khmer by Ken McCullough and U Sam Oeur,"Coffee House Press ; Primary distributor, Consortium Book Sales & Distribution, c1998",bib,2009-12-08 23:30:12,0,1998,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"U Sam Oeur, 1936-",https://catalog.hathitrust.org/Record/3995902,https://hdl.handle.net/2027/uc1.32106013825804,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'james r. thorpe foundation', 'dain bosworth foundation', 'pentair, inc.', None]"
uc1.32106013926032,0,ic,3115316,v.2,UC,b19194638,34623025,"1566890500,9781566890502",,96002777,Collected works / Paul Metcalf,"Coffee House Press, 1996-1997.",bib,2010-07-20 08:53:50,0,1997,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Metcalf, Paul C",https://catalog.hathitrust.org/Record/3115316,https://hdl.handle.net/2027/uc1.32106013926032,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'pentair, inc.']"
uc1.32106018715331,0,ic,5288437,,UC,b24983524,65978665,"1566891930,9781566891936",,2006011899,Teahouse of the almighty : poems / by Patricia Smith,"Coffee House Press, c2006",bib,2010-09-20 20:33:38,0,2006,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Smith, Patricia, 1955-",https://catalog.hathitrust.org/Record/5288437,https://hdl.handle.net/2027/uc1.32106018715331,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'bush foundation', 'patrick and aimee butler family foundation', 'foundation for contemporary arts', 'stephen and isabel keating', 'outagamie foundation', None, 'james r. thorpe foundation', None, 'thr/west', 'woessner freeman family foundation', 'minnesota state arts board', 'national endowment for the arts', 'target']"
uc1.32106018715380,0,ic,5288426,,UC,b24982775,66463679,"1566891914,9781566891912",,2006012062,The mountain in the sea : poems / Victor Hernández Cruz,"Coffee House Press, 2006",bib,2009-11-24 22:30:05,0,2006,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Cruz, Victor Hernández, 1949-",https://catalog.hathitrust.org/Record/5288426,https://hdl.handle.net/2027/uc1.32106018715380,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'foundation for contemporary arts', 'gary fink', 'stephen and isabel keating', 'lenfesty family foundation', 'rebecca rand', 'james r. thorpe foundation', None, 'thompson west', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
uc1.32106018717188,0,ic,5291460,,UC,b24992586,67405535,"1566891892,1566891906,9781566891899,9781566891905",,2006012061,The architecture of language : poems / Quincy Troupe,"Coffee House Press, 2006",bib,2010-09-19 19:30:24,0,2006,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Troupe, Quincy",https://catalog.hathitrust.org/Record/5291460,https://hdl.handle.net/2027/uc1.32106018717188,Coffee House Press,True,True,"['minnesota state arts board', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'bush foundation', 'patrick and aimee butler family foundation', 'foundation for contemporary arts', 'gary fink', 'rebecca rand', 'james r. thorpe foundation', None, 'thompson west', 'woessner freeman family foundation', 'minnesota state legislature', 'target', 'national endowment for the arts']"
uc1.32106018746203,0,ic,5376749,,UC,b25965839,67405534,"1566891884,9781566891882",,2006012060,The open curtain : a novel / Brian Evenson,"Coffee House Press, 2006",bib,2010-09-10 19:31:12,0,2006,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Evenson, Brian, 1966-",https://catalog.hathitrust.org/Record/5376749,https://hdl.handle.net/2027/uc1.32106018746203,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'buuck family foundation', 'bush foundation', 'patrick and aimee butler family foundation', 'patrick and aimee butler family foundation', 'foundation for contemporary arts', 'stephen and isabel keating', 'lenfesty family foundation', 'rebecca rand', 'james r. thorpe foundation', None, 'thompson west', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts']"
uc1.32106018792512,0,ic,5616272,,UC,b27371578,123818338,"1566892031,9781566892032",,2007017772,How to be perfect / by Ron Padgett,"Coffee House Press, c2007",bib,2010-09-23 20:33:45,0,2007,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Padgett, Ron, 1942-",https://catalog.hathitrust.org/Record/5616272,https://hdl.handle.net/2027/uc1.32106018792512,Coffee House Press,True,True,"['minnesota state arts board', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'stephen and isabel keating', 'lenfesty family foundation', 'rebecca rand', 'james r. thorpe foundation', None, 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
uc1.32106018793411,0,ic,5616255,,UC,b27371864,134991479,"156689204X,9781566892049",,2007021003,The marvelous bones of time : excavations and explanations : poetry / by Brenda Coultas,"Coffee House Press, c2007",bib,2010-09-21 19:30:33,0,2007,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Coultas, Brenda",https://catalog.hathitrust.org/Record/5616255,https://hdl.handle.net/2027/uc1.32106018793411,Coffee House Press,True,True,['new york foundation for the arts']
uc1.32106018793585,0,ic,5616275,,UC,b27371906,137260064,"1566892015,9781566892018",,2007021002,The meat and spirit plan : a novel / Selah Saterstrom,"Coffee House Press, 2007",bib,2010-09-24 20:31:52,0,2007,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Saterstrom, Selah, 1974-",https://catalog.hathitrust.org/Record/5616275,https://hdl.handle.net/2027/uc1.32106018793585,Coffee House Press,True,True,"['the meat and spirit plan was designed at coffee house press', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'stephen and isabel keating', 'lenfesty family foundation', 'rebecca rand', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
uc1.32106018949211,0,ic,7147837,,UC,b26346515,76901788,"1566892007,9781566892001",,2006039208,Living will : poems / by David Hilton,"Coffee House Press, c2007",bib,2009-12-08 00:30:24,0,2007,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Hilton, David, 1938-2005",https://catalog.hathitrust.org/Record/7147837,https://hdl.handle.net/2027/uc1.32106018949211,Coffee House Press,True,True,[]
uc1.32106019109997,0,ic,7147688,,UC,b26260591,66463680,"1566891922,9781566891929",,2006012063,Guests of space : [poems] / Anselm Hollo,"Coffee House Press, c2007",bib,2010-08-27 19:31:10,0,2007,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Hollo, Anselm",https://catalog.hathitrust.org/Record/7147688,https://hdl.handle.net/2027/uc1.32106019109997,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'foundation for contemporary arts', 'stephen and isabel keating', 'lenfesty family foundation', 'james r. thorpe foundation', None, 'thompson west', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
uc1.32106019119301,0,ic,5605266,,UC,b27363302,123912646,"1566892058,9781566892056",,2007017784,Vertigo : poems / Martha Ronk,"Coffee House Press, c2007",bib,2009-11-24 22:30:15,0,2007,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Ronk, Martha Clare",https://catalog.hathitrust.org/Record/5605266,https://hdl.handle.net/2027/uc1.32106019119301,Coffee House Press,True,True,"[None, 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'stephen and isabel keating', 'lenfesty family foundation', 'rebecca rand', 'james r. thorpe foundation', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
uc1.32106019142360,0,ic,7147902,,UC,b26356788,"123465139,76786728","156689199X,9781566891998",,2006038521,Skirt full of black : poems / by Sun Yung Shin,"Coffee House Press, 2007",bib,2010-09-24 20:31:52,0,2007,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Shin, Sun Yung",https://catalog.hathitrust.org/Record/7147902,https://hdl.handle.net/2027/uc1.32106019142360,Coffee House Press,True,True,"['minnesota state arts board', 'jerome foundation', 'jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'bush foundation', 'patrick and aimee butler family foundation', 'foundation for contemporary arts', 'gary fink', 'rebecca rand', None, 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
uc1.32106019143087,0,ic,5560230,,UC,b26357021,76481526,"1566891965,9781566891967",,2006038520,ULULU : clown shrapnel / by Thalia Field ; with silent film by Bill Morrison and illustrations by Abbot Stranahan,"Coffee House Press ; Available to the trade through Consortium Book Sales & Distribution, c2007",bib,2010-09-13 19:30:14,0,2007,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Field, Thalia, 1966-",https://catalog.hathitrust.org/Record/5560230,https://hdl.handle.net/2027/uc1.32106019143087,Coffee House Press,True,True,"['foundation for contemporary arts', 'target', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'buuck family foundation', 'patrick and aimee butler family foundation', 'stephen and isabel keating', 'lenfesty family foundation', 'james r. thorpe foundation', None, 'thompson west', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
uc1.32106019144473,0,ic,5560250,,UC,b26366605,76786718,"1566891949,9781566891943",,2006038347,The ocean in the closet : a novel / Yuko Taniguchi,"Coffee House Press, 2007",bib,2009-11-24 22:30:10,0,2007,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Taniguchi, Yuko, 1975-",https://catalog.hathitrust.org/Record/5560250,https://hdl.handle.net/2027/uc1.32106019144473,Coffee House Press,True,True,"['jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'patrick and aimee butler family foundation', 'stephen and isabel keating', 'lenfesty family foundation', 'rebecca rand', None, 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
uc1.32106019173472,0,ic,5546755,,UC,b26313443,76897666,"1566891973,9781566891974",,2006039246,Ripple effect : new and selected poems / by Elaine Equi,"Coffee House Press, c2007",bib,2010-09-10 19:31:13,0,2007,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Equi, Elaine",https://catalog.hathitrust.org/Record/5546755,https://hdl.handle.net/2027/uc1.32106019173472,Coffee House Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'national endowment for the arts', 'mcknight foundation', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'gary fink', 'lenfesty family foundation', 'james r. thorpe foundation', None, 'thompson west', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts']"
uc1.32106019179222,0,ic,7147888,,UC,b26355036,76786719,"1566891981,9781566891981",,2006038348,Broken world : poems / by Joseph Lease,"Coffee House Press, c2007",bib,2010-09-20 20:32:36,0,2007,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Lease, Joseph",https://catalog.hathitrust.org/Record/7147888,https://hdl.handle.net/2027/uc1.32106019179222,Coffee House Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'patrick and aimee butler family foundation', 'gary fink', 'stephen and isabel keating', 'lenfesty family foundation', 'james r. thorpe foundation', None, 'thompson west', 'woessner freeman family foundation', 'minnesota state arts board', 'national endowment for the arts', None, None]"
uc1.32106019400370,0,ic,8325722,,UC,b29225942,181730493,"1566892090,9781566892094",,2007046387,Open line : a novel / by Ellen Hawley,"Coffee House Press, 2008",bib,2010-07-20 08:55:31,0,2008,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Hawley, Ellen",https://catalog.hathitrust.org/Record/8325722,https://hdl.handle.net/2027/uc1.32106019400370,Coffee House Press,True,True,"['jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'buuck family foundation', 'patrick and aimee butler family foundation', 'stephen and isabel keating', 'lenfesty family foundation', 'woessner freeman family foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target']"
uc1.32106019480612,0,ic,5687976,,UC,b29198768,181730495,"1566892066,1566892104,9781566892063,9781566892100",,2007046388,Rounding the human corners : poems / Linda Hogan ; introduction by William Kittredge,"Coffee House Press, 2008",bib,2010-07-20 08:56:14,0,2008,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Hogan, Linda",https://catalog.hathitrust.org/Record/5687976,https://hdl.handle.net/2027/uc1.32106019480612,Coffee House Press,True,True,[]
uc1.b3486496,0,ic,2425831,,UC,GLAD84063134-B,13214497,"0918273188,9780918273185",,86004143,Pick up the house : new & selected poems / Anselm Hollo.,"Coffee House Press ; Distributed by Consortium, 1986.",bib,2009-10-12 21:30:06,0,1986,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Hollo, Anselm.",https://catalog.hathitrust.org/Record/2425831,https://hdl.handle.net/2027/uc1.b3486496,Coffee House Press,True,True,['national endowment for the arts']
uc1.b3966855,0,ic,2876705,,UC,GLAD100941147-B,29319633,"1566890179,9781566890175",,93023686,Losing Absalom : a novel / by Alexs D. Pate.,"Coffee House Press, 1994.",bib,2009-05-30 22:30:10,0,1994,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Pate, Alexs D., 1950-",https://catalog.hathitrust.org/Record/2876705,https://hdl.handle.net/2027/uc1.b3966855,Coffee House Press,True,True,"['the minnesota center for book arts', 'star tribune foundation', 'mcknight foundation', 'target', 'lannan foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', ""lila wallace reader's digest fund"", None]"
uc1.b4354547,0,ic,9508219,,UC,b167850489,14098391,"0918273226,9780918273222",,"86020794,86020794 /AC",Bobby's girl : a novel / by Rochelle Ratner.,"Coffee House Press, 1986.",bib,2011-03-04 19:30:41,0,1986,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Ratner, Rochelle.",https://catalog.hathitrust.org/Record/9508219,https://hdl.handle.net/2027/uc1.b4354547,Coffee House Press,True,True,['national endowment for the arts']
uc1.b4356092,0,ic,2710188,,UC,b167858105,25200652,"0918273951,9780918273956",,92000817,The price of eggs : stories / by Anne Panning.,"Coffee House Press, 1992.",bib,2011-03-10 20:31:33,0,1992,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Panning, Anne, 1966-",https://catalog.hathitrust.org/Record/2710188,https://hdl.handle.net/2027/uc1.b4356092,Coffee House Press,True,True,"['thanks jerome foundation', 'minnesota state arts board', 'national endowment for the arts', 'northwest area foundation']"
uc1.b4356137,0,ic,6224657,,UC,GLAD50895437-B,22344964,"091827379X,9780918273796",,"90002690,90002690//r91",The Samaritan treasure : stories / by Marianne Luban.,"Coffee House Press ; Distributed to trade by Consortium Book Sales and Distribution, 1990.",bib,2010-09-16 19:31:27,0,1990,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Luban, Marianne, 1946-",https://catalog.hathitrust.org/Record/6224657,https://hdl.handle.net/2027/uc1.b4356137,Coffee House Press,True,True,"['national endowment for the arts', 'target', 'star tribune foundation', 'jerome foundation', 'northwest area foundation']"
uc1.b4359299,0,ic,9508846,,UC,b167872114,27896653,"1566890071,9781566890076",,93017100,A robber in the house / Jessica Treat.,"Coffee House Press, 1993.",bib,2011-03-10 20:30:55,0,1993,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Treat, Jessica, 1958-",https://catalog.hathitrust.org/Record/9508846,https://hdl.handle.net/2027/uc1.b4359299,Coffee House Press,True,True,[]
uc1.b4359393,0,ic,1954581,,UC,GLAD50905613-B,20489463,"0918273536,9780918273536",,89025124,Seeing America first : poems / by Nathaniel Tarn.,"Coffee House Press, 1989.",bib,2010-09-15 19:31:20,0,1989,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Tarn, Nathaniel.",https://catalog.hathitrust.org/Record/1954581,https://hdl.handle.net/2027/uc1.b4359393,Coffee House Press,True,True,"[None, 'national endowment for the arts', 'star tribune foundation', 'united arts']"
uc1.b4359450,0,ic,2235408,,UC,GLAD50905725-B,22181446,"0918273811,9780918273819",,90002468,"The woman who read novels ; and, Peacetime : two novellas / by Constance Urdang.","Coffee House Press, 1990.",bib,2010-09-15 20:34:33,0,1990,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Urdang, Constance.",https://catalog.hathitrust.org/Record/2235408,https://hdl.handle.net/2027/uc1.b4359450,Coffee House Press,True,True,"['national endowment for the arts', 'target', 'star tribune foundation', 'minnesota state arts board', 'northwest area foundation', 'united arts']"
uc1.b4366057,0,ic,2372051,,UC,GLAD50932815-B,16832671,"0918273331,9780918273338",,87027761,"Common body, royal bones : three stories / by Evelyn Shefner.","Coffee House Press, 1987.",bib,2010-09-15 20:36:05,0,1987,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Shefner, Evelyn, 1919-",https://catalog.hathitrust.org/Record/2372051,https://hdl.handle.net/2027/uc1.b4366057,Coffee House Press,True,True,"['national endowment for the arts', None, 'national endowment for the arts']"
uc1.b4366128,0,ic,6226793,,UC,GLAD50933285-B,11465490,"091827303X,9780918273031",,,How to be modern art / Trevor Winkfield & Ron Padgett,"[Coffee House Press], 1984",bib,2010-09-22 20:33:29,0,1984,iau,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Winkfield, Trevor.",https://catalog.hathitrust.org/Record/6226793,https://hdl.handle.net/2027/uc1.b4366128,Coffee House Press,True,False,[]
uc1.b4369751,0,ic,2437206,,UC,GLAD50943750-B,14167765,"0918273234,9780918273239",,86020765,Lucha : a novella / by Constance Urdang.,"Coffee House Press, 1986.",bib,2010-09-21 19:30:45,0,1986,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Urdang, Constance.",https://catalog.hathitrust.org/Record/2437206,https://hdl.handle.net/2027/uc1.b4369751,Coffee House Press,True,True,['national endowment for the arts']
uc1.b4411736,0,ic,1825026,,UC,b168159910,20390924,"0918273579,9780918273574",,89023951,Verging on the pertinent : stories / by Carol Emshwiller.,"Coffee House Press ; Distributed by Consortium Book Sales and Distribution, 1989.",bib,2011-03-14 20:32:15,0,1989,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Emshwiller, Carol.",https://catalog.hathitrust.org/Record/1825026,https://hdl.handle.net/2027/uc1.b4411736,Coffee House Press,True,True,"['national endowment for the arts', 'new york state foundation for the arts', 'national endowment for the arts', 'target', 'star tribune foundation', 'united arts']"
uc1.b4411753,0,ic,2488913,,UC,GLAD51093964-B,23286899,"0918273862,9780918273864",,91010107,Sudden dreams : new & selected poems / by George Evans.,"Coffee House Press, 1991.",bib,2010-08-27 20:30:29,0,1991,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Evans, George, 1948-",https://catalog.hathitrust.org/Record/2488913,https://hdl.handle.net/2027/uc1.b4411753,Coffee House Press,True,True,"['bush foundation', 'target', 'jerome foundation', 'minnesota state arts board', 'national endowment for the arts', 'northwest area foundation']"
uc1.b4411880,0,ic,6236105,,UC,GLAD51095445-B,10949662,"0918273005,9780918273000",,84015003,Harum scarum : short stories / by Keith Abbott ; illustrations by Gaylord Schanilec,"Coffee House Press : Distributed by Bookslinger, c1984",bib,2010-08-28 19:30:36,0,1984,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Abbott, Keith, 1944-",https://catalog.hathitrust.org/Record/6236105,https://hdl.handle.net/2027/uc1.b4411880,Coffee House Press,True,False,['national endowment for the arts']
uc1.b4422285,0,ic,6237897,,UC,GLAD51128516-B,18591864,"0915124955,9780915124954",,,January zero / Ray DiPalma; drawings by Elisabeth Brandfass,"Coffee House Press, 1984",bib,2009-06-13 22:30:19,0,1984,iau,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"DiPalma, Ray.",https://catalog.hathitrust.org/Record/6237897,https://hdl.handle.net/2027/uc1.b4422285,Coffee House Press,True,False,[]
uc1.b4438830,0,ic,2516324,,UC,GLAD84503365-B,23975697,"0918273900,9780918273901",,91022836,"Four incarnations : new & selected poems, 1957-1991 / Robert Sward.","Coffee House Press ; Available to bookstores through Consortium Book Sales and Distribution, 1991.",bib,2010-08-25 19:30:51,0,1991,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Sward, Robert, 1933-",https://catalog.hathitrust.org/Record/2516324,https://hdl.handle.net/2027/uc1.b4438830,Coffee House Press,True,True,[]
uc1.b4439324,0,ic,6240247,,UC,GLAD84504261-B,11325187,"0915124971,9780915124978",,,Litany / Elizabeth Eddy ; drawings by Rachel Matteson,"Coffee House Press, c1984",bib,2010-08-25 20:30:20,0,1984,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Eddy, Elizabeth.",https://catalog.hathitrust.org/Record/6240247,https://hdl.handle.net/2027/uc1.b4439324,Coffee House Press,True,False,[]
uc1.b4439642,0,ic,6240325,,UC,GLAD84504251-B,11628265,"0915124955,9780915124954",,,"Eldridge Cleaver visits Creede, Colorado : & other poems / by Walter Hall ; two line drawings by Rachel Matteson","Coffee House Press, 1984",bib,2010-08-25 20:31:17,0,1984,iau,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Hall, Walter",https://catalog.hathitrust.org/Record/6240325,https://hdl.handle.net/2027/uc1.b4439642,Coffee House Press,True,False,[]
uc1.b4449469,0,ic,2208364,,UC,b168364311,19518302,"091827351X,9780918273512",,89007100,Bend this heart : short stories / by Jonis Agee.,"Coffee House Press, 1989.",bib,2011-03-15 21:32:07,0,1989,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Agee, Jonis.",https://catalog.hathitrust.org/Record/2208364,https://hdl.handle.net/2027/uc1.b4449469,Coffee House Press,True,True,"['national endowment for the arts', 'jerome foundation', 'united arts']"
uc1.b4450299,0,ic,2425850,,UC,b168367877,16086642,"0918273315,9780918273314",,87018190,The first thing coming : short stories / by Keith Abbott.,"Coffee House Press ; Distributor, Consortium Book Sales & Distribution, 1987.",bib,2011-03-15 21:33:57,0,1987,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Abbott, Keith, 1944-",https://catalog.hathitrust.org/Record/2425850,https://hdl.handle.net/2027/uc1.b4450299,Coffee House Press,True,True,"['national endowment for the arts', 'united arts', None, 'target', 'target']"
uc1.b4450861,0,ic,6242172,,UC,GLAD84542433-B,11951652,"0918273072,9780918273079",,88173281,Why people lack confidence in chairs : a poem / by Norman Fischer ; three drawings by Dave Morice.,"Coffee House Press, 1984.",bib,2010-08-22 19:30:32,0,1984,iau,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Fischer, Norman, 1946-",https://catalog.hathitrust.org/Record/6242172,https://hdl.handle.net/2027/uc1.b4450861,Coffee House Press,True,False,[]
uc1.b4495447,0,ic,2235364,,UC,b171759503,21910790,"0918273781,9780918273789",,90040518,Why we live with animals : poems / by Alvin Greenberg.,"Coffee House Press ; Distributed to trade by Consortium Book Sales and Distribution, 1990.",bib,2015-05-15 03:26:44,0,1990,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Greenberg, Alvin.",https://catalog.hathitrust.org/Record/2235364,https://hdl.handle.net/2027/uc1.b4495447,Coffee House Press,True,True,"['national endowment for the arts', 'target', 'star tribune foundation', 'northwest area foundation', 'united arts']"
uc1.b4975960,0,ic,9490873,,UC,b167610879,14130815,"0918273285,9780918273284",,86019273,Arabian nights : poems / by Jack Marshall.,"Coffee House Press, 1986.",bib,2012-02-04 19:30:25,0,1986,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Marshall, Jack, 1936-",https://catalog.hathitrust.org/Record/9490873,https://hdl.handle.net/2027/uc1.b4975960,Coffee House Press,True,True,['national endowment for the arts']
uc1.b4975990,0,ic,9490370,,UC,b167611239,11519903,"0918273080,9780918273086",,84027472,Margaret & Dusty : poems / by Alice Notley.,"Coffee House Press : Distribution, Bookslinger, 1985.",bib,2012-02-04 19:30:25,0,1985,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Notley, Alice, 1945-",https://catalog.hathitrust.org/Record/9490370,https://hdl.handle.net/2027/uc1.b4975990,Coffee House Press,True,True,['national endowment for the arts']
ucbk.ark:/28722/h23776914,0,ic,102840470,,UC,b233197825,920018916,"156689428X,9781566894289",,2015033491,Pretentiousness : why it matters / Dan Fox.,"Coffee House Press, 2016.",bib,2021-10-27 03:25:36,0,2016,mnu,eng,BK,UCBK,universityofcalifornia,universityofcalifornia,berkeley,open,"Fox, Dan 1976-",https://catalog.hathitrust.org/Record/102840470,https://hdl.handle.net/2027/ucbk.ark:/28722/h23776914,Coffee House Press,True,True,[]
ucbk.ark:/28722/h2s46hh6r,0,ic,102823445,,UC,b250855471,1056781737,"1566895510,9781566895514",,2018054100,Socialist realism / Trisha Low.,"Coffee House Press, 2019.",bib,2021-04-29 03:25:29,0,2019,mnu,eng,BK,UCBK,universityofcalifornia,universityofcalifornia,berkeley,open,"Low, Trisha,",https://catalog.hathitrust.org/Record/102823445,https://hdl.handle.net/2027/ucbk.ark:/28722/h2s46hh6r,Coffee House Press,True,True,[]
ucbk.ark:/28722/h2sx6496f,0,ic,5616255,,UC,b247370708,134991479,"156689204X,9781566892049",,2007021003,The marvelous bones of time : excavations and explanations : poetry / by Brenda Coultas,"Coffee House Press, c2007",bib,2019-10-16 11:25:17,0,2007,mnu,eng,BK,UCBK,universityofcalifornia,universityofcalifornia,berkeley,open,"Coultas, Brenda",https://catalog.hathitrust.org/Record/5616255,https://hdl.handle.net/2027/ucbk.ark:/28722/h2sx6496f,Coffee House Press,True,True,[]
umn.31951d01602806n,0,ic,7478115,v.3,UMN,003142077,123270598,"1566890500,9781566890502",,96002777,"Collected works, 1956-1976 / Paul Metcalf.","Coffee House Press, 1996-",bib,2015-01-13 03:25:19,0,9999,mnu,eng,BK,UMN,umn,umn,google,google,"Metcalf, Paul C.",https://catalog.hathitrust.org/Record/7478115,https://hdl.handle.net/2027/umn.31951d01602806n,Coffee House Press,False,False,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', 'patrick and aimee butler family foundation']"
uva.x004104753,0,ic,3345467,v.2,UVA,u2119898,26128478,"1566890055,1566890535,9781566890052,9781566890533",,92022247,Iovis : all is full of Jove / Anne Waldman.,"Coffee House Press, 1993-1997.",bib,2017-05-31 03:27:14,0,1997,mnu,eng,BK,UVA,virginia,virginia,google,google,"Waldman, Anne, 1945-",https://catalog.hathitrust.org/Record/3345467,https://hdl.handle.net/2027/uva.x004104753,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'lannan foundation', 'mcknight foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'patrick and aimee butler family foundation', 'james r. thorpe foundation', None]"
uva.x004140864,0,ic,7478115,v.1,UVA,u2736616,123270598,"1566890500,9781566890502",,96002777,"Collected works, 1956-1976 / Paul Metcalf.","Coffee House Press, 1996-",bib,2017-06-02 15:17:48,0,9999,mnu,eng,BK,UVA,virginia,virginia,google,google,"Metcalf, Paul C.",https://catalog.hathitrust.org/Record/7478115,https://hdl.handle.net/2027/uva.x004140864,Coffee House Press,False,False,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'honeywell foundation', 'star tribune foundation', 'james r. thorpe foundation', None]"
uva.x004208975,0,ic,3995902,,UVA,u2804747,37864098,"1566890691,9781566890694",,97043267,Sacred vows : poetry / by U Sam Oeur ; translated from Khmer by Ken McCullough and U Sam Oeur,"Coffee House Press ; Primary distributor, Consortium Book Sales & Distribution, c1998",bib,2017-06-02 15:47:22,0,1998,mnu,eng,BK,UVA,virginia,virginia,google,google,"U Sam Oeur, 1936-",https://catalog.hathitrust.org/Record/3995902,https://hdl.handle.net/2027/uva.x004208975,Coffee House Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'lannan foundation', 'jerome foundation', 'target', 'target', 'general mills foundation', 'st. paul companies', 'patrick and aimee butler family foundation', 'honeywell foundation', 'star tribune foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'james r. thorpe foundation', 'dain bosworth foundation', 'pentair, inc.', None]"
inu.30000114317815,0,ic,10556816,,INU,1722018,6086334,,,79066915,My life with the tsar & other poems / Susan Firer ; drawings by Lynne Srba.,"New Rivers Press ; distributed by SBD, Small Press Distribution, 1979.",bib,2014-09-28 03:26:56,0,1979,mnu,eng,BK,INU,iu,iu,google,google,"Firer, Susan.",https://catalog.hathitrust.org/Record/10556816,https://hdl.handle.net/2027/inu.30000114317815,New Rivers Press,False,True,[]
inu.39000004006677,0,ic,9399721,,INU,1988790,9397081,"0898230381,9780898230383",,82081363,What rhymes with cancer? / Harry Brander ; translated by Judy Schavrien ; drawings by John Dobbs.,"New Rivers Press, 1982.",bib,2014-10-03 03:25:22,0,1982,mnu,eng,BK,INU,iu,iu,google,google,"Brander, Harry, d. 1980.",https://catalog.hathitrust.org/Record/9399721,https://hdl.handle.net/2027/inu.39000004006677,New Rivers Press,True,True,"[None, 'foundation for contemporary arts']"
mdp.39015000607989,0,ic,3985,,MIU,990000039850106381,277758,"0912284234,0912284242,9780912284231,9780912284248",,75181034,A birthday of waters. Drawings [by] Neil Greenberg.,"New Rivers Press; [distributed by Serendipity Books, Berkeley, Calif.] 1971.",bib,2006-12-04 18:32:07,0,1971,nyu,eng,BK,MIU,umich,umich,google,google,"Ratner, Rochelle.",https://catalog.hathitrust.org/Record/3985,https://hdl.handle.net/2027/mdp.39015000607989,New Rivers Press,False,False,[]
mdp.39015000648561,0,ic,691827,,MIU,990006918270106381,5103031,"0898230004,9780898230000",,78071541,Modern Catalan poetry : an anthology : poems / selected and translated from the Catalan by David H. Rosenthal.,"New Rivers Press, 1979.",bib,2008-05-05 14:54:44,0,1979,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/691827,https://hdl.handle.net/2027/mdp.39015000648561,New Rivers Press,False,True,"['national endowment for the arts', None]"
mdp.39015000661887,0,ic,359368,,MIU,990003593680106381,886233,"091228451X,0912284528,9780912284514,9780912284521",,73089343,The South Dakota guidebook.,"New Rivers Press; [distributed by Serendipity Books, Berkeley, Calif.] 1974.",bib,2012-09-05 19:30:09,0,1974,nyu,eng,BK,MIU,umich,umich,google,google,"Baxter, Charles, 1947-",https://catalog.hathitrust.org/Record/359368,https://hdl.handle.net/2027/mdp.39015000661887,New Rivers Press,False,False,[]
mdp.39015002258344,0,ic,731048,,MIU,990007310480106381,2542386,,,76023474,Primele poeme = First poems / Tristan Tzara ; translated by Michael Impey and Brian Swann.,"New Rivers Press ; distributed by Serendipity Books, 1976.",bib,2012-06-09 19:30:12,0,1976,nyu,eng,BK,MIU,umich,umich,google,google,"Tzara, Tristan, 1896-1963.",https://catalog.hathitrust.org/Record/731048,https://hdl.handle.net/2027/mdp.39015002258344,New Rivers Press,False,False,[]
mdp.39015002713033,0,ic,134538,,MIU,990001345380106381,3819586,"0912284900,9780912284903",,77020625,Bucks County blues / Sonia Raiziss ; drawings by Rose Graubart.,"New Rivers Press, 1977.",bib,2011-08-23 19:30:10,0,1977,nyu,eng,BK,MIU,umich,umich,google,google,"Raiziss, Sona.",https://catalog.hathitrust.org/Record/134538,https://hdl.handle.net/2027/mdp.39015002713033,New Rivers Press,False,True,[]
mdp.39015002753708,0,ic,18211,,MIU,990000182110106381,1530433,"0912284684,0912284692,9780912284682,9780912284699",,74020133,Laments / Vern Rutsala ; with etchings by James Burgess.,"New Rivers Press ; distributed by Serendipity Books, 1975.",bib,2012-08-11 19:30:09,0,1975,nyu,eng,BK,MIU,umich,umich,google,google,"Rutsala, Vern.",https://catalog.hathitrust.org/Record/18211,https://hdl.handle.net/2027/mdp.39015002753708,New Rivers Press,False,False,['national endowment for the arts']
mdp.39015002754540,0,ic,214774,,MIU,990002147740106381,4139383,"0912284919,9780912284910",,77020626,100 chameleons / Dennis Saleh.,"New Rivers Press, 1977, c1978.",bib,2012-12-04 19:30:07,0,1978,nyu,eng,BK,MIU,umich,umich,google,google,"Saleh, Dennis, 1942-",https://catalog.hathitrust.org/Record/214774,https://hdl.handle.net/2027/mdp.39015002754540,New Rivers Press,False,True,[]
mdp.39015003346056,0,ic,714716,,MIU,990007147160106381,2032525,"0912284749,9780912284743",,,"The man who ate New York (and other poems, early and late, of Manhattan and Ossabaw Islands) / Richard Elman ; drawings by Neil Greenberg.","New Rivers Press, 1975.",bib,2008-11-01 22:30:41,0,1975,nyu,eng,BK,MIU,umich,umich,google,google,"Elman, Richard M.",https://catalog.hathitrust.org/Record/714716,https://hdl.handle.net/2027/mdp.39015003346056,New Rivers Press,False,False,"['national endowment for the arts', None]"
mdp.39015003676643,0,ic,252922,,MIU,990002529220106381,3055340,,,76048817,How to eat a fortune cookie / by Siv Cedering Fox ; drawings by Sally Soper Bowers.,"New Rivers Press, c1977.",bib,2009-06-25 21:30:03,0,1977,nyu,eng,BK,MIU,umich,umich,google,google,"Cedering, Siv.",https://catalog.hathitrust.org/Record/252922,https://hdl.handle.net/2027/mdp.39015003676643,New Rivers Press,False,True,[]
mdp.39015003678748,0,ic,432452,,MIU,990004324520106381,1108867,"0912284579,0912284587,9780912284576,9780912284583",,75312026,Tree-lines / Robin Fulton ; with drawings by Harley Elliott.,"New Rivers Press ; distributed by Serendipity Books, 1974.",bib,2009-04-21 22:30:18,0,1974,nyu,eng,BK,MIU,umich,umich,google,google,"Fulton Macpherson, Robin, 1937-",https://catalog.hathitrust.org/Record/432452,https://hdl.handle.net/2027/mdp.39015003678748,New Rivers Press,False,False,[]
mdp.39015003687418,0,ic,211990,,MIU,990002119900106381,2854994,"0912284838,9780912284835",,76049678,An inhuman rival : poems & drawings / Celestine Frost.,"New Rivers Press, 1977.",bib,2006-11-17 13:47:57,0,1977,nyu,eng,BK,MIU,umich,umich,google,google,"Frost, Celestine.",https://catalog.hathitrust.org/Record/211990,https://hdl.handle.net/2027/mdp.39015003687418,New Rivers Press,False,True,"['national endowment for the arts', None]"
mdp.39015003940247,0,ic,193497,,MIU,990001934970106381,8418798,"0898230306,9780898230307",,81082536,Faith / Albert Goldbarth.,"New Rivers Press, 1981.",bib,2012-06-18 19:30:09,0,1981,miu,eng,BK,MIU,umich,umich,google,google,"Goldbarth, Albert.",https://catalog.hathitrust.org/Record/193497,https://hdl.handle.net/2027/mdp.39015003940247,New Rivers Press,False,True,[]
mdp.39015003940288,0,ic,391862,,MIU,990003918620106381,866225,"091228448X,0912284498,9780912284484,9780912284491",,73089872,Coprolites. Drawings by Neil Greenberg.,"New Rivers Press; [distributed by Serendipity Books, Berkeley, Calif.] 1973.",bib,2012-12-11 19:30:04,0,1973,nyu,eng,BK,MIU,umich,umich,google,google,"Goldbarth, Albert.",https://catalog.hathitrust.org/Record/391862,https://hdl.handle.net/2027/mdp.39015003940288,New Rivers Press,False,False,[]
mdp.39015010327727,0,ic,695535,,MIU,990006955350106381,1993036,"0912284714,0912284722,9780912284712,9780912284729",,75021973,Running : poems and drawings / Nathan Whiting,"New Rivers Press ; distributed by Serendipity Books, 1975",bib,2007-07-05 09:29:40,0,1975,nyu,eng,BK,MIU,umich,umich,google,google,"Whiting, Nathan, 1946-",https://catalog.hathitrust.org/Record/695535,https://hdl.handle.net/2027/mdp.39015010327727,New Rivers Press,False,False,[]
mdp.39015010327735,0,ic,13299,,MIU,990000132990106381,3445309,,,,Distancing.,"New Rivers Press, 1974.",bib,2009-07-16 23:30:16,0,1974, ,eng,BK,MIU,umich,umich,google,google,"Whiting, Nathan, 1946-",https://catalog.hathitrust.org/Record/13299,https://hdl.handle.net/2027/mdp.39015010327735,New Rivers Press,False,False,[]
mdp.39015010454133,0,ic,710186,,MIU,990007101860106381,2406223,"0912284803,9780912284804",,76007219,The conquistador dog texts / improvisations by D. Clinton ; drawings by Neil Greenberg.,"New Rivers Press ; distributed by Serendipity Books, 1976.",bib,2012-04-11 19:30:07,0,1976,nyu,eng,BK,MIU,umich,umich,google,google,"Clinton, D.",https://catalog.hathitrust.org/Record/710186,https://hdl.handle.net/2027/mdp.39015010454133,New Rivers Press,False,False,['national endowment for the arts']
mdp.39015011205484,0,ic,33537,,MIU,990010300640106381,1309938,"091228465X,9780912284651",,74020132,The whale's scars / Brian Swann ; art by Tom Huffman.,"New Rivers Press ; distributed by Serendipity Books, 1974.",bib,2007-05-19 09:28:57,0,1974,nyu,eng,BK,MIU,umich,umich,google,google,"Swann, Brian",https://catalog.hathitrust.org/Record/33537,https://hdl.handle.net/2027/mdp.39015011205484,New Rivers Press,False,False,[]
mdp.39015011913517,0,ic,33537,,MIU,990010300640106381,1309938,"091228465X,9780912284651",,74020132,The whale's scars / Brian Swann ; art by Tom Huffman.,"New Rivers Press ; distributed by Serendipity Books, 1974.",bib,2012-03-26 19:30:05,0,1974,nyu,eng,BK,MIU,umich,umich,google,google,"Swann, Brian",https://catalog.hathitrust.org/Record/33537,https://hdl.handle.net/2027/mdp.39015011913517,New Rivers Press,False,False,[]
mdp.39015013525368,0,ic,139822,,MIU,990001398220106381,6754924,"0898230209,9780898230208",,80081942,Blood of their blood : an anthology of Polish-American poetry / edited by Victor Contoski ; paper cuttings by Wieslawa Contoski.,"New Rivers Press ; American Council of Polish Cultural Clubs, 1980.",bib,2007-11-22 09:30:09,0,1980,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/139822,https://hdl.handle.net/2027/mdp.39015013525368,New Rivers Press,False,True,[]
mdp.39015013538023,0,ic,846818,,MIU,990008468180106381,16375995,"0898230918,9780898230918",,86063559,Touchwood : a collection of Ojibway prose / edited by Gerald Vizenor.,"New Rivers Press : Distributed by Talman co., and Bookslinger, 1987.",bib,2012-03-30 19:30:06,0,1987,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/846818,https://hdl.handle.net/2027/mdp.39015013538023,New Rivers Press,True,True,"['minnesota state legislature', 'mcknight foundation', 'national endowment for the arts', 'the ojibway sacred scrolls used throughout this volume are from the george a. flaskerd', 'first bank system foundation']"
mdp.39015013969947,0,ic,2170599,,MIU,990021705990106381,19365478,"0898231086,9780898231083",,88062982,Shadow partisan : a novella / by Nadja Tesich.,"New Rivers Press ; Distributed by Talman, c1989.",bib,2007-07-07 09:29:33,0,1989,mnu,eng,BK,MIU,umich,umich,google,google,"Tesich, Nadja.",https://catalog.hathitrust.org/Record/2170599,https://hdl.handle.net/2027/mdp.39015013969947,New Rivers Press,True,True,"['first bank system foundation', None, 'united arts', 'mcknight foundation']"
mdp.39015018513179,0,ic,2168197,,MIU,990021681970106381,"20185935,25507741","0898231078,9780898231076",,88062983,"Sampo, the magic mill : a collection of Finnish-American writing / edited by Aili Jarvenpa & Michael G. Karni ; graphics by Oili Mäki.","New Rivers Press ; Distributed by the Talman Co., c1989.",bib,2007-07-04 09:30:07,0,1989,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2168197,https://hdl.handle.net/2027/mdp.39015018513179,New Rivers Press,True,True,"['metropolitan regional arts council', 'first bank system foundation', None, 'united arts']"
mdp.39015018902109,0,ic,2214972,,MIU,990022149720106381,21125599,"0898231175,9780898231175",,89062214,The headlong future : a collection of poems / James Cervantes ; with graphics by Caroline Garrett Taber.,"New Rivers Press, 1990.",bib,2013-04-21 19:25:07,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Cervantes, James.",https://catalog.hathitrust.org/Record/2214972,https://hdl.handle.net/2027/mdp.39015018902109,New Rivers Press,True,True,"['national endowment for the arts', 'first bank system foundation', None, 'united arts', None]"
mdp.39015018939754,0,ic,2228787,,MIU,990022287870106381,22123132,"0898231183,9780898231182",,89062215,In the shadow of the gourd : a collection of poems / Malcolm Glass ; with graphics by Bruce Childs.,"New Rivers Press ; Distributed by Talman Co., 1990.",bib,2012-09-06 19:31:07,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Glass, Malcolm.",https://catalog.hathitrust.org/Record/2228787,https://hdl.handle.net/2027/mdp.39015018939754,New Rivers Press,True,True,"['douglas paschall alice swanson. copyright ©', 'first bank system foundation', None, 'united arts', 'mcknight foundation']"
mdp.39015019138497,0,ic,470325,,MIU,990004703250106381,12437363,"0898230624,0946162204,9780898230628,9780946162208",,85060563,The Slavs beneath Parnassus : selected poems /,"Angel Books ; New Rivers Press : Bookslinger [U.S. distributor] ; Small Press Distributor [U.S. distributor], 1985.",bib,2012-05-29 19:30:28,0,1985,enk,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/470325,https://hdl.handle.net/2027/mdp.39015019138497,New Rivers Press,True,True,"['mcknight foundation', None, 'united arts']"
mdp.39015019214959,0,ic,709371,,MIU,990007093710106381,2109186,"0912284757,9780912284750",,76362148,Roots / Brian Swann ; photos. by Hardie Truesdale,"New Rivers Press ; distributed by Serendipity Books, 1976",bib,2013-04-25 19:25:11,0,1976,nyu,eng,BK,MIU,umich,umich,google,google,"Swann, Brian.",https://catalog.hathitrust.org/Record/709371,https://hdl.handle.net/2027/mdp.39015019214959,New Rivers Press,False,False,"['national endowment for the arts', None]"
mdp.39015019673477,0,ic,2440994,,MIU,990024409940106381,4921672,"0898230020,9780898230024",,"78073283,78073283 //r85",The drowned man to the fish : poems / Robert Peters ; with drawings by Meredith Peters.,"New Rivers Press, 1978, c1979.",bib,2007-11-21 09:30:13,0,1979,xx ,eng,BK,MIU,umich,umich,google,google,"Peters, Robert, 1924-2014.",https://catalog.hathitrust.org/Record/2440994,https://hdl.handle.net/2027/mdp.39015019673477,New Rivers Press,False,True,[]
mdp.39015019857666,0,ic,2457966,,MIU,990024579660106381,20880396,"0898231140,9780898231144",,89062211,Suburban metaphysics : and other stories / Ronald J. Rindo.,"New Rivers Press ; Distributed by Talman Co., c1990.",bib,2009-10-17 23:30:13,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Rindo, Ronald J., 1959-",https://catalog.hathitrust.org/Record/2457966,https://hdl.handle.net/2027/mdp.39015019857666,New Rivers Press,True,True,"['target', 'first bank system foundation', None, 'united arts', 'mcknight foundation', 'national endowment for the arts', None, None]"
mdp.39015020669142,0,ic,2485577,,MIU,990024855770106381,25916308,"0898231248,9780898231243",,,Primary colors : and other stories / Barbara Croft ; graphics by R.W. Scholes.,New Rivers Press ; 1991.,bib,2007-07-16 09:25:23,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Croft, Barbara.",https://catalog.hathitrust.org/Record/2485577,https://hdl.handle.net/2027/mdp.39015020669142,New Rivers Press,True,True,"[None, None, 'jerome foundation', None, 'united arts', None, 'cray research foundation', 'first bank system foundation', 'liberty state bank', 'star tribune foundation', 'tennant company foundation', 'national endowment for the arts', 'minneapolis foundation']"
mdp.39015020669191,0,ic,2485576,,MIU,990024855760106381,22778192,"0898231272,9780898231274",,90061089,From the Lanai : and other Hawaii stories / by Jessica Kawasuna Saiki ; with illustrations by the author.,"New Rivers Press ; distributed by Talman Co., c1991.",bib,2012-04-19 19:30:33,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Saiki, Jessica.",https://catalog.hathitrust.org/Record/2485576,https://hdl.handle.net/2027/mdp.39015020669191,New Rivers Press,True,True,"['target', None, 'united arts', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'cray research foundation', None, 'first bank system foundation', 'liberty state bank', 'star tribune foundation', 'tennant company foundation', None, 'national endowment for the arts', None]"
mdp.39015020876291,0,ic,2597123,,MIU,990025971230106381,25372597,"0888011652,0898231469,9780888011657,9780898231465",,"cn 92098020,cn92098020","Beyond borders : an anthology of new writing from Manitoba, Minnesota, Saskatchewan and the Dakotas / Mark Vinz and Dave Williamson, editors.","New Rivers Press ; Turnstone Press, c1992.",bib,2012-04-19 19:30:34,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2597123,https://hdl.handle.net/2027/mdp.39015020876291,New Rivers Press,True,True,"[None, 'south dakota arts council', 'national endowment for the arts', 'first bank system foundation', None, 'united arts', 'liberty state bank', 'tennant company foundation', None, None, None, 'the state legislature', 'national endowment for the arts']"
mdp.39015021876183,0,ic,2475273,,MIU,990024752730106381,18887380,"0898231019,9780898231014",,,"Eternal moment : selected poems / Sándor Weöres ; edited, and with an introduction, by Miklós Vajda ; foreword by William Jay Smith ; afterword by Edwin Morgan ; drawings by Sándor Weöres ; translated from the Hungarian by Alan Dixon ... [et al.].","New Rivers Press, 1988.",bib,2012-06-25 19:30:11,0,1988,mnu,eng,BK,MIU,umich,umich,google,google,"Weöres, Sándor, 1913-1989.",https://catalog.hathitrust.org/Record/2475273,https://hdl.handle.net/2027/mdp.39015021876183,New Rivers Press,True,True,[]
mdp.39015022265253,0,ic,2530181,,MIU,990025301810106381,22884419,"0898231280,9780898231281",,"90-61094,90061094",Iron woman : poems / by Diane Glancy.,"New Rivers Press, 1990.",bib,2008-11-01 22:30:19,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Glancy, Diane.",https://catalog.hathitrust.org/Record/2530181,https://hdl.handle.net/2027/mdp.39015022265253,New Rivers Press,True,True,"[None, None, 'united arts', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'cray research foundation', 'first bank system foundation', 'liberty state bank', 'star tribune foundation', 'tennant company foundation', None, 'national endowment for the arts']"
mdp.39015025240295,0,ic,2560559,,MIU,990025605590106381,22778189,"089823123X,9780898231236",,,No peace at Versailles : and other stories / Nina Barragan.,New Rivers Press ; 1991.,bib,2008-07-23 03:30:02,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Barragan, Nina.",https://catalog.hathitrust.org/Record/2560559,https://hdl.handle.net/2027/mdp.39015025240295,New Rivers Press,True,True,"['jerome foundation', None, 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'cray research foundation', 'first bank system foundation', 'liberty state bank', 'star tribune foundation', 'tennant company foundation', 'national endowment for the arts']"
mdp.39015025262380,0,ic,2563574,,MIU,990025635740106381,22778182,"0898231256,9780898231250",,,Pieces from the long afternoon / by Monica Ochtrup.,"New Rivers Press ; distributed by Talman Co., c1991.",bib,2012-06-18 19:30:15,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Ochtrup, Monica.",https://catalog.hathitrust.org/Record/2563574,https://hdl.handle.net/2027/mdp.39015025262380,New Rivers Press,True,True,"[None, 'jerome foundation', None, 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'cray research foundation', None, 'first bank system foundation', 'liberty state bank', 'star tribune/cowles media company', 'tennant company foundation', None, 'national endowment for the arts', None]"
mdp.39015025861181,0,ic,1029871,,MIU,990010298710106381,1475165,"0912284617,9780912284613",,74020131,Living the borrowed life / Robert Bonazzi.,"New Rivers Press ; distributed by Serendipity Books, 1974.",bib,2012-09-06 19:31:34,0,1974,nyu,eng,BK,MIU,umich,umich,google,google,"Bonazzi, Robert.",https://catalog.hathitrust.org/Record/1029871,https://hdl.handle.net/2027/mdp.39015025861181,New Rivers Press,False,False,[]
mdp.39015026960925,0,ic,726786,,MIU,990007267860106381,6278467,"0898230136,9780898230130",,79057158,Unease / Tadeusz Różewicz ; translated from the Polish by Victor Contoski ; woodcuts by Gaylord Schanilec.,"New Rivers Press ; distributed by SBD: Small Press Distribution, 1980.",bib,2012-08-23 19:30:20,0,1980,mnu,eng,BK,MIU,umich,umich,google,google,"Różewicz, Tadeusz.",https://catalog.hathitrust.org/Record/726786,https://hdl.handle.net/2027/mdp.39015026960925,New Rivers Press,False,True,[]
mdp.39015028919762,0,ic,2732077,,MIU,990027320770106381,27103720,"0898231418,9780898231410",,92060238,Intensive care : poems / by Lucia Cordell Getsi ; [cover and inside paintings by Nicholas Hill].,"New Rivers Press ; Distributed by the Talman Co., 1992.",bib,2012-06-18 19:30:16,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,"Getsi, Lucia Cordell.",https://catalog.hathitrust.org/Record/2732077,https://hdl.handle.net/2027/mdp.39015028919762,New Rivers Press,True,True,"['first bank system foundation', 'liberty state bank', 'national endowment for the arts', 'star tribune foundation', 'tennant company foundation', None, None]"
mdp.39015030016888,0,ic,32252,,MIU,990000322520106381,1492683,,,74020137,Letters from Helge / by Siv Cedering Fox.,"New Rivers Press ; distributed by Serendipity Books, 1974.",bib,2007-11-26 09:30:11,0,1974, ,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/32252,https://hdl.handle.net/2027/mdp.39015030016888,New Rivers Press,False,False,[]
mdp.39015030719374,0,ic,695454,,MIU,990006954540106381,2217083,,,75042579,Demolition zone / Suzanne Ostro Zavrian.,"New Rivers Press ; distributed by Serendipity Books, 1975.",bib,2012-12-04 19:31:46,0,1975,nyu,eng,BK,MIU,umich,umich,google,google,"Zavrian, Suzanne Ostro.",https://catalog.hathitrust.org/Record/695454,https://hdl.handle.net/2027/mdp.39015030719374,New Rivers Press,False,False,"['national endowment for the arts', None]"
mdp.39015030719960,0,ic,715797,,MIU,990007157970106381,2299011,,,,The Marisol poems.,"New Rivers Press ; Berkeley Calif. : distributed by Serendipity Books, 1975.",bib,2012-03-30 19:30:11,0,1975, ,eng,BK,MIU,umich,umich,google,google,"Wicklund, Millie Mae.",https://catalog.hathitrust.org/Record/715797,https://hdl.handle.net/2027/mdp.39015030719960,New Rivers Press,False,False,[]
mdp.39015030753761,0,ic,482683,,MIU,990004826830106381,1062667,"0912284552,0912284560,9780912284552,9780912284569",,73089344,Eclipse / Halvard Johnson ; with photos. by Melissa Shook.,"New Rivers Press ; distributed by Serendipity Books, c1974.",bib,2007-06-23 09:29:32,0,1974,nyu,eng,BK,MIU,umich,umich,google,google,"Johnson, Halvard, 1936-",https://catalog.hathitrust.org/Record/482683,https://hdl.handle.net/2027/mdp.39015030753761,New Rivers Press,False,False,[]
mdp.39015030761079,0,ic,631071,,MIU,990006310710106381,1110252,"0912284544,9780912284545",,78317326,Friend / Howard McCord.,"New Rivers Press, c1974.",bib,2013-04-22 19:25:23,0,1974,nyu,eng,BK,MIU,umich,umich,google,google,"McCord, Howard, 1932-",https://catalog.hathitrust.org/Record/631071,https://hdl.handle.net/2027/mdp.39015030761079,New Rivers Press,False,False,[None]
mdp.39015030851284,0,ic,35280,,MIU,990000352800106381,1501923,"0912284676,9780912284675",,74020138,Terminal placebos / James Bertolino ; with postcard collages by Anne Sharp.,"New Rivers Press ; distributed by Serendipity Books, 1975.",bib,2012-06-21 19:30:23,0,1975,nyu,eng,BK,MIU,umich,umich,google,google,"Bertolino, James, 1942-",https://catalog.hathitrust.org/Record/35280,https://hdl.handle.net/2027/mdp.39015030851284,New Rivers Press,False,False,['national endowment for the arts']
mdp.39015031224341,0,ic,686328,,MIU,990006863280106381,2037429,"0912284730,9780912284736",,75021968,White screen : poetry & graphics / by John M. Bennett.,"New Rivers Press, 1976.",bib,2007-06-17 11:30:13,0,1976,nyu,eng,BK,MIU,umich,umich,google,google,"Bennett, John M.",https://catalog.hathitrust.org/Record/686328,https://hdl.handle.net/2027/mdp.39015031224341,New Rivers Press,False,False,"['national endowment for the arts', None]"
mdp.39015031297560,0,ic,695480,,MIU,990006954800106381,2981302,"091228479X,9780912284798",,74020134,Moving / Roger Mitchell ; drawings by Lucas Johnson.,"New Rivers Press ; Berkeley Calif. : distributed by Serendipity Books, 1976.",bib,2008-10-02 22:30:18,0,1976,nyu,eng,BK,MIU,umich,umich,google,google,"Mitchell, Roger, 1935-",https://catalog.hathitrust.org/Record/695480,https://hdl.handle.net/2027/mdp.39015031297560,New Rivers Press,False,False,[]
mdp.39015031305561,0,ic,1186544,,MIU,990011865440106381,866204,"0912284501,9780912284507",,73089342,In the red meadow; poems. Drawings by Mildred Thompson.,"New Rivers Press; [distributed by Serendipity Books, Berkeley, Calif.], 1973.",bib,2012-02-16 19:30:38,0,1973,nyu,eng,BK,MIU,umich,umich,google,google,"Stoloff, Carolyn.",https://catalog.hathitrust.org/Record/1186544,https://hdl.handle.net/2027/mdp.39015031305561,New Rivers Press,False,False,[]
mdp.39015031306304,0,ic,695422,,MIU,990006954220106381,2216974,"0912284773,9780912284774",,75042850,Intimate wilderness : poems and photographs / Mark Weiss.,"New Rivers Press ; Berkeley, Calif. : distributed by Serendipity Books, 1976.",bib,2012-03-16 19:30:30,0,1976,nyu,eng,BK,MIU,umich,umich,google,google,"Weiss, Mark.",https://catalog.hathitrust.org/Record/695422,https://hdl.handle.net/2027/mdp.39015031306304,New Rivers Press,False,False,"['national endowment for the arts', None]"
mdp.39015031308219,0,ic,253946,,MIU,990002539460106381,3084054,"0912284870,9780912284873",,77072075,The anarchist heart / Bill Tremblay.,"New Rivers Press, 1977.",bib,2012-06-08 19:30:33,0,1977,nyu,eng,BK,MIU,umich,umich,google,google,"Tremblay, Bill.",https://catalog.hathitrust.org/Record/253946,https://hdl.handle.net/2027/mdp.39015031308219,New Rivers Press,False,True,[]
mdp.39015032193891,0,ic,2909883,,MIU,990029098830106381,27765813,"0898231477,9780898231472",,"92064074,92064074 //r942",Right by my side : a novel / by David Haynes.,New Rivers Press ; 1993.,bib,2010-07-07 19:30:06,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,"Haynes, David, 1955-",https://catalog.hathitrust.org/Record/2909883,https://hdl.handle.net/2027/mdp.39015032193891,New Rivers Press,True,True,"['target', 'target', 'metropolitan regional arts council', 'minnesota state legislature', 'first bank system foundation', 'national endowment for the arts', 'star tribune/cowles media company', 'tennant company foundation', None, None]"
mdp.39015032516646,0,ic,3004365,,MIU,990030043650106381,32817911,"0898231582,9780898231588",,94067069,Mal d'Afrique : and stories from other places / by Jarda Cervenka.,"New Rivers Press, c1995.",bib,2008-11-01 23:30:14,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Cervenka, Jarda.",https://catalog.hathitrust.org/Record/3004365,https://hdl.handle.net/2027/mdp.39015032516646,New Rivers Press,True,True,"['target', 'target', 'jerome foundation', 'metropolitan regional arts council', 'minnesota state legislature', None, 'south dakota arts council', 'bush foundation', 'liberty state bank', 'mcknight foundation', 'minnesota state arts board', 'star tribune foundation', None, 'united arts']"
mdp.39015032974134,0,ic,2858337,,MIU,990028583370106381,29489728,"0898231507,9780898231502",,93083973,The next parish over : a collection of Irish-American writing / edited by Patricia Monaghan.,"New Rivers Press ; Distributed by The Talman Co., c1993.",bib,2012-03-22 19:30:08,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2858337,https://hdl.handle.net/2027/mdp.39015032974134,New Rivers Press,True,True,"['star tribune foundation', 'liberty state bank', 'national endowment for the arts', 'tennant company foundation', None]"
mdp.39015033281703,0,ic,929231,,MIU,990009292310106381,18431278,"0898230950,9780898230956",,88060049,Memory of another river: prose poems / Eugénio de Andrade ; translated and with an introduction by Alexis Levitin ; graphics by Ângelo de Sousa.,"New Rivers Press, 1988.",bib,2012-06-05 19:30:11,0,1988,mnu,eng,BK,MIU,umich,umich,google,google,"Andrade, Eugénio de.",https://catalog.hathitrust.org/Record/929231,https://hdl.handle.net/2027/mdp.39015033281703,New Rivers Press,True,True,"['first bank system foundation', 'united arts', 'mcknight foundation', 'national endowment for the arts']"
mdp.39015033950091,0,ic,2961057,,MIU,990029610570106381,31638893,"0898231493,9780898231496",,93083972,"Two worlds walking : short stories, essays, & poetry by writers with mixed heritages / edited by Diane Glancy & C.W. Truesdale.","New Rivers Press : Distributed by the Talman Co., 1994.",bib,2012-06-25 19:30:12,0,1994,nyu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2961057,https://hdl.handle.net/2027/mdp.39015033950091,New Rivers Press,True,True,"['national endowment for the arts', 'general mills foundation', 'liberty state bank', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'star tribune foundation', 'tennant company foundation', 'united arts']"
mdp.39015034340953,0,ic,942722,,MIU,990009427220106381,18338978,"089823106X,9780898231069",,88060050,"Stiller's pond : new fiction from the Upper Midwest / edited by Jonis Agee, Roger Blakely, & Susan Welch.","New Rivers Press, 1988.",bib,2012-08-10 19:30:30,0,1988,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/942722,https://hdl.handle.net/2027/mdp.39015034340953,New Rivers Press,True,True,"['national endowment for the arts', 'first bank system foundation', None, 'mcknight foundation', 'target']"
mdp.39015034399710,0,ic,3000998,,MIU,990030009980106381,31945135,"0898231620,9780898231625",,94067065,Everything's a verb : poems / Debra Marquart.,"New Rivers Press ; Distributed by Talman Co., c1995.",bib,2012-09-07 19:30:19,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Marquart, Debra.",https://catalog.hathitrust.org/Record/3000998,https://hdl.handle.net/2027/mdp.39015034399710,New Rivers Press,True,True,"['target', 'target', 'jerome foundation', 'metropolitan regional arts council', 'minnesota state legislature', None, 'south dakota arts council', 'bush foundation', 'liberty state bank', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'star tribune foundation', 'tennant company foundation']"
mdp.39015034419237,0,ic,2999739,,MIU,990029997390106381,32770801,"0898231590,9780898231595",,94067068,Coming up for light and air : poems / Barbara Crow.,"New Rivers Press ; Distributed by Talman Co., 1995.",bib,2012-09-07 19:30:19,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Crow, Barbara.",https://catalog.hathitrust.org/Record/2999739,https://hdl.handle.net/2027/mdp.39015034419237,New Rivers Press,True,True,"['target', 'target', 'jerome foundation', 'metropolitan regional arts council', 'minnesota state legislature', None, 'south dakota arts council', 'bush foundation', 'liberty state bank', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'star tribune foundation', 'tennant company foundation', 'united arts']"
mdp.39015034437288,0,ic,2996257,,MIU,990029962570106381,32209909,"0898231639,9780898231632",,94067064,Secrets men keep : stories / by Ron Rindo.,"New Rivers Press ; Distributed by Talman Co., 1995.",bib,2008-06-02 09:30:11,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Rindo, Ronald J., 1959-",https://catalog.hathitrust.org/Record/2996257,https://hdl.handle.net/2027/mdp.39015034437288,New Rivers Press,True,True,"['target', 'target', 'jerome foundation', 'metropolitan regional arts council', 'minnesota state legislature', None, 'south dakota arts council', 'united arts', 'bush foundation', 'liberty state bank', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'star tribune foundation', 'tennant company foundation', 'united arts']"
mdp.39015034449085,0,ic,3001397,,MIU,990030013970106381,32771757,"0898231612,9780898231618",,94067066,Revealing the unknown to a pair of lovers : stories / Ann Lundberg Grunke.,"New Rivers Press ; Distributed by Talman Company, 1995.",bib,2012-07-24 19:30:07,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Lundberg Grunke, Ann.",https://catalog.hathitrust.org/Record/3001397,https://hdl.handle.net/2027/mdp.39015034449085,New Rivers Press,True,True,"['target', 'target', 'jerome foundation', 'minnesota state legislature', 'south dakota arts council', 'bush foundation', 'general mills foundation', 'liberty state bank', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'star tribune foundation', 'tennant company foundation', 'united arts']"
mdp.39015034875446,0,ic,3006166,,MIU,990030061660106381,32531355,"0898231604,9780898231601",,94067067,What they always were : poems / Norita Dittberner-Jax.,"New Rivers Press ; Distributed by Talman Co., 1995.",bib,2008-11-01 22:30:42,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Dittberner-Jax, Norita.",https://catalog.hathitrust.org/Record/3006166,https://hdl.handle.net/2027/mdp.39015034875446,New Rivers Press,True,True,"['target', 'target', 'jerome foundation', 'minnesota state legislature', None, 'south dakota arts council', 'bush foundation', 'liberty state bank', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'star tribune foundation', 'tennant company foundation']"
mdp.39015037343012,0,ic,3055603,,MIU,990030556030106381,34483770,"0898231655,9780898231656",,95069349,"The Party train : a collection of North American prose poetry / edited by Robert Alexander, Mark Vinz & C.W. Truesdale.","New Rivers Press, 1996.",bib,2012-03-21 19:30:09,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/3055603,https://hdl.handle.net/2027/mdp.39015037343012,New Rivers Press,True,True,"['bush foundation', 'general mills foundation', 'liberty state bank', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'star tribune foundation', 'tennant company foundation', None, 'the minnesota non']"
mdp.39015037484576,0,ic,3065812,,MIU,990030658120106381,34520713,"0898231663,9780898231663",,95071164,Heathens : a novel / David Haynes.,"New Rivers Press, 1996.",bib,2012-09-07 19:30:24,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Haynes, David, 1955-",https://catalog.hathitrust.org/Record/3065812,https://hdl.handle.net/2027/mdp.39015037484576,New Rivers Press,True,True,"['target', 'target', 'jerome foundation', 'metropolitan regional arts council', 'national endowment for the arts', None, 'south dakota arts council', 'bush foundation', 'general mills, liberty state bank', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'star tribune foundation', 'tennant company foundation', 'united arts', 'united arts', 'minnesota nonprofits assistance fund']"
mdp.39015038154855,0,ic,3104489,,MIU,990031044890106381,35739656,"0898231671,9780898231670",,96067817,To collect the flesh : poems / by Greg Hewett.,"New Rivers Press, 1996.",bib,2012-03-18 19:30:18,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Hewett, Greg.",https://catalog.hathitrust.org/Record/3104489,https://hdl.handle.net/2027/mdp.39015038154855,New Rivers Press,True,True,"['jerome foundation', None, 'minnesota state legislature', 'national endowment for the arts', None, 'south dakota arts council', 'target', 'target', 'beim foundation', 'bush foundation', 'liberty state bank', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'star tribune foundation', 'united arts']"
mdp.39015038156637,0,ic,3108820,,MIU,990031088200106381,35738911,"0898231698,9780898231694",,96067820,The dance hall at Spring Hill : stories / by Duke Klassen.,"New Rivers Press, 1996.",bib,2012-09-07 19:30:25,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Klassen, Duke.",https://catalog.hathitrust.org/Record/3108820,https://hdl.handle.net/2027/mdp.39015038156637,New Rivers Press,True,True,"['jerome foundation', 'metropolitan regional arts council', 'minnesota state legislature', 'national endowment for the arts', None, 'south dakota arts council', 'target', 'target', 'james r. thorpe foundation', 'beim foundation', 'general mills foundation', 'liberty state bank', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'star tribune foundation', 'tennant company foundation', 'united arts', 'united arts']"
mdp.39015038581479,0,ic,3124783,,MIU,990031247830106381,35323070,"0898231701,9780898231700",,95071165,"Remembering China, 1935-1945 : a memoir / by Bea Exner Liu.","New Rivers Press, 1996.",bib,2010-01-21 10:49:51,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Liu, Bea Exner.",https://catalog.hathitrust.org/Record/3124783,https://hdl.handle.net/2027/mdp.39015038581479,New Rivers Press,True,True,"['target', 'target', 'jerome foundation', 'metropolitan regional arts council', 'minnesota state legislature', 'national endowment for the arts', None, 'south dakota arts council', 'james r. thorpe foundation', None, 'general mills foundation', 'liberty state bank', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'star tribune foundation', 'tennant company foundation', 'united arts', 'united arts']"
mdp.39015038890425,0,ic,3174816,,MIU,990031748160106381,37036300,"0898231779,9780898231779",,97065064,"Laundromat blues : stories / by Lupe Solis, Jr.","New Rivers Press, 1997.",bib,2012-03-17 19:30:28,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Solis, Lupe, 1960-",https://catalog.hathitrust.org/Record/3174816,https://hdl.handle.net/2027/mdp.39015038890425,New Rivers Press,True,True,"['jerome foundation', 'metropolitan regional arts council', 'minnesota state legislature', None, 'south dakota arts council', 'target', 'target', 'beim foundation', 'liberty state bank', 'minnesota state arts board', 'minnesota state legislature', 'star tribune foundation', None, 'united arts']"
mdp.39015038926559,0,ic,2612358,,MIU,990026123580106381,26732244,"089823140X,9780898231403",,92060239,The perimeter of light : short fiction and other writing about the Vietnam War / edited by Vivian Vie Balfour.,"New Rivers Press ; Distributed by the Talman Co., c1992.",bib,2012-04-19 19:31:01,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2612358,https://hdl.handle.net/2027/mdp.39015038926559,New Rivers Press,True,True,"['first bank system foundation', 'liberty state bank', 'tennant company foundation', None, 'national endowment for the arts', None]"
mdp.39015040031372,0,ic,3958293,,MIU,990039582930106381,38429465,"0898231825,9780898231823",,,The House on Via Gombito : writing by American women abroad / edited by Madelon Sprengnether and C.W. Truesdale.,New Rivers Press 1997.,bib,2010-07-09 20:30:05,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/3958293,https://hdl.handle.net/2027/mdp.39015040031372,New Rivers Press,True,True,"[None, 'beim foundation', 'general mills, liberty state bank', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'star tribune foundation', 'tennant company foundation', 'united arts', None]"
mdp.39015040060678,0,ic,3950589,,MIU,990039505890106381,38037961,"0898231833,9780898231830",,97068815,Self storage and other stories / Mary Helen Stefaniak.,"New Rivers Press, c1997.",bib,2012-03-17 19:30:28,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Stefaniak, Mary Helen.",https://catalog.hathitrust.org/Record/3950589,https://hdl.handle.net/2027/mdp.39015040060678,New Rivers Press,True,True,"['jerome foundation', 'south dakota arts council', 'target', 'target', 'james r. thorpe foundation', 'general mills foundation', 'mcknight foundation', 'star tribune foundation', 'tennant company foundation', 'united arts']"
mdp.39015040571203,0,ic,3942795,,MIU,990039427950106381,37415164,"0898231736,9780898231731",,97065062,Sustenance : poems / Aaron Anstett.,"New Rivers Press, 1997.",bib,2012-03-21 19:30:10,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Anstett, Aaron.",https://catalog.hathitrust.org/Record/3942795,https://hdl.handle.net/2027/mdp.39015040571203,New Rivers Press,True,True,"['jerome foundation', None, 'south dakota arts council', 'target', 'target', 'beim foundation', 'general mills foundation', 'liberty state bank', 'mcknight foundation', 'star tribune foundation', 'tennant company foundation', 'united arts']"
mdp.39015040638507,0,ic,3124970,,MIU,990031249700106381,36019731,"089823171X,9780898231717",,96067818,On the road to Patsy Cline : poems / by John Reinhard.,"New Rivers Press, 1996.",bib,2012-06-18 19:30:20,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Reinhard, John, 1953-",https://catalog.hathitrust.org/Record/3124970,https://hdl.handle.net/2027/mdp.39015040638507,New Rivers Press,True,True,"['jerome foundation', 'minnesota state legislature', 'national endowment for the arts', None, 'south dakota arts council', 'target', 'target', 'beim foundation', 'bush foundation', 'liberty state bank', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'star tribune foundation', 'tennant company foundation', 'united arts', 'united arts']"
mdp.39015040721808,0,ic,3144544,,MIU,990031445440106381,36199908,"089823168X,9780898231687",,96067819,Divining the landscape : poems / by Diane Jarvenpa.,"New Rivers Press, c1996.",bib,2012-09-07 19:30:32,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Jarvenpa, Diane, 1959-",https://catalog.hathitrust.org/Record/3144544,https://hdl.handle.net/2027/mdp.39015040721808,New Rivers Press,True,True,"['jerome foundation', None, 'minnesota state legislature', 'national endowment for the arts', None, 'target', 'target', 'beim foundation', 'bush foundation', 'general mills foundation', 'liberty state bank', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'star tribune foundation', 'tennant company foundation', 'united arts']"
mdp.39015040762166,0,ic,3087461,v.7 1995,MIU,990030874610106381,34712515,,,,American fiction : the best unpublished stories by emerging writers.,"New Rivers Press, 1995-",bib,2008-07-23 06:30:09,0,1995,mnu,eng,SE,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/3087461,https://hdl.handle.net/2027/mdp.39015040762166,New Rivers Press,True,True,"['bush foundation', 'general mills foundation', 'liberty state bank', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'star tribune foundation', 'tennant company foundation', 'united arts']"
mdp.39015041056824,0,ic,3169090,,MIU,990031690900106381,37142100,"0898231744,9780898231748",,97065062,Fishing for myth : poems / by Heid E. Erdrich.,"New Rivers Press, 1997.",bib,2008-05-26 09:30:06,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Erdrich, Heid E.",https://catalog.hathitrust.org/Record/3169090,https://hdl.handle.net/2027/mdp.39015041056824,New Rivers Press,True,True,"['jerome foundation', None, 'south dakota arts council', 'target', 'target', 'beim foundation', 'liberty state bank', 'mcknight foundation', 'star tribune foundation', 'tennant company foundation', 'united arts']"
mdp.39015041095103,0,ic,3166072,,MIU,990031660720106381,37023306,"0898231795,9780898231793",,96072513,Tanzania on Tuesday / writing by American Women Abroad ; edited by Kathleen Coskran & C.W. Truesdale.,"New Rivers Press, c1997.",bib,2012-07-06 20:18:41,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/3166072,https://hdl.handle.net/2027/mdp.39015041095103,New Rivers Press,True,True,"['metropolitan regional arts council', 'minnesota state legislature', 'general mills, liberty state bank', 'mcknight foundation', 'minnesota state arts board', 'star tribune foundation', 'tennant company foundation', 'united arts', None]"
mdp.39015041102438,0,ic,3169072,,MIU,990031690720106381,37135453,"0898231760,9780898231762",,97065063,The natural father : stories / by Robert Lacy.,"New Rivers Press, 1997.",bib,2012-07-24 19:30:10,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Lacy, Robert.",https://catalog.hathitrust.org/Record/3169072,https://hdl.handle.net/2027/mdp.39015041102438,New Rivers Press,True,True,"['jerome foundation', None, 'south dakota arts council', 'target', 'target', 'beim foundation', 'general mills foundation', 'liberty state bank', 'mcknight foundation', 'star tribune foundation', 'tennant company foundation']"
mdp.39015041541098,0,ic,3191352,,MIU,990031913520106381,37229500,"0898231787,9780898231786",,97065065,Bonfire : poems / Connie Wanek.,"New Rivers Press, 1997.",bib,2008-07-23 02:30:05,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Wanek, Connie, 1952-",https://catalog.hathitrust.org/Record/3191352,https://hdl.handle.net/2027/mdp.39015041541098,New Rivers Press,True,True,"['the minnesota st. gang', 'jerome foundation', None, 'south dakota arts council', 'target', 'target', 'beim foundation', 'general mills foundation', 'mcknight foundation', 'star tribune foundation', 'tennant company foundation', 'united arts']"
mdp.39015042953052,0,ic,4102680,,MIU,990041026800106381,41542920,"0898231884,9780898231885",,98089711,A degree of mastery : a journey through book arts apprenticeship / Annie Tremmel Wilcox.,"New Rivers Press, 1999.",bib,2009-09-07 22:30:12,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Wilcox, Annie Tremmel.",https://catalog.hathitrust.org/Record/4102680,https://hdl.handle.net/2027/mdp.39015042953052,New Rivers Press,True,True,"['their tradition', 'jerome foundation', None, 'target', 'target', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'general mills foundation', 'mcknight foundation', 'star tribune foundation']"
mdp.39015043769705,0,ic,3999075,,MIU,990039990750106381,40273364,"0898231914,9780898231915",,98066584,Traffic : new and selected prose poems / Jack Anderson.,"New Rivers Press, 1998.",bib,2012-03-21 19:30:12,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Anderson, Jack, 1935-",https://catalog.hathitrust.org/Record/3999075,https://hdl.handle.net/2027/mdp.39015043769705,New Rivers Press,True,True,"['bush foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'beim foundation', 'mcknight foundation', 'star tribune foundation']"
mdp.39015045630525,0,ic,3999084,,MIU,990039990840106381,40101948,"0898231868,9780898231861",,97069841,The fragile peace you keep : poems / by Kel Munger.,"New Rivers Press, c1998.",bib,2012-09-03 19:30:15,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Munger, Kel.",https://catalog.hathitrust.org/Record/3999084,https://hdl.handle.net/2027/mdp.39015045630525,New Rivers Press,True,True,"['jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'target', 'target', 'beim foundation', 'liberty state bank', 'mcknight foundation', 'star tribune/cowles media company']"
mdp.39015046879089,0,ic,4002444,,MIU,990040024440106381,48032878,"0898231906,089823199X,9780898231908,9780898231991",,97069844,"The Talking of hands : unpublished writings by New Rivers Press authors ; Robert Alexander, Mark Vinz, C.W. Truesdale, editors.","New Rivers Press, c1998.",bib,2012-03-22 19:30:10,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/4002444,https://hdl.handle.net/2027/mdp.39015046879089,New Rivers Press,True,True,"['beim foundation', 'general mills foundation', 'mcknight foundation', 'star tribune foundation']"
mdp.39015047066256,0,ic,3976698,,MIU,990039766980106381,38997519,"089823185X,9780898231854",,97069734,Sermon on a perfect spring day : poems / Philip Bryant.,"New Rivers Press, 1998.",bib,2012-09-07 19:30:44,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Bryant, Philip S.",https://catalog.hathitrust.org/Record/3976698,https://hdl.handle.net/2027/mdp.39015047066256,New Rivers Press,True,True,"['jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'target', 'target', 'james r. thorpe foundation', 'beim foundation', 'general mills foundation', 'liberty state bank', 'mcknight foundation', 'star tribune/cowles media company']"
mdp.39015047068302,0,ic,3976699,,MIU,990039766990106381,39486921,"0898231841,9780898231847",,97068816,Rootbound : poems / Jeanne Emmons.,"New Rivers Press, 1998.",bib,2012-09-07 19:30:44,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Emmons, Jeanne, 1949-",https://catalog.hathitrust.org/Record/3976699,https://hdl.handle.net/2027/mdp.39015047068302,New Rivers Press,True,True,"['jerome foundation', 'target', 'target', 'james r. thorpe foundation', 'beim foundation', 'general mills foundation', 'liberty state bank', 'mcknight foundation', 'star tribune/cowles media company']"
mdp.39015047107498,0,ic,3979014,,MIU,990039790140106381,48468981,"0898231876,9780898231878",,,The Dirty Shame hotel : and other stories / Ron Block.,"New Rivers Press, 1998.",bib,2008-06-05 09:30:10,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Block, Ron.",https://catalog.hathitrust.org/Record/3979014,https://hdl.handle.net/2027/mdp.39015047107498,New Rivers Press,True,True,"['jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'target', 'target', 'beim foundation', 'general mills foundation', 'liberty state bank', 'mcknight foundation', 'star tribune/cowles media company']"
mdp.39015047444685,0,ic,4035306,,MIU,990040353060106381,41415511,"0898232007,9780898232004",,98089706,Gifts and secrets : poems of the therapeutic relationship / Elizabeth Zelvin.,"New Rivers Press, c1999.",bib,2008-07-23 02:30:04,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Zelvin, Elizabeth.",https://catalog.hathitrust.org/Record/4035306,https://hdl.handle.net/2027/mdp.39015047444685,New Rivers Press,True,True,"['general mills foundation', 'mcknight foundation']"
mdp.39015047578870,0,ic,4060735,,MIU,990040607350106381,42924293,"0898231957,9780898231953",,98089713,"Vendettas, charms, and prayers : poems / by Pamela Gemin.","New Rivers Press, 1999.",bib,2008-05-26 09:30:06,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Gemin, Pamela, 1954-",https://catalog.hathitrust.org/Record/4060735,https://hdl.handle.net/2027/mdp.39015047578870,New Rivers Press,True,True,"['jerome foundation', None, 'target', 'target', 'general mills foundation', 'mcknight foundation', 'star tribune foundation']"
mdp.39015047580504,0,ic,4065006,,MIU,990040650060106381,43304515,"0898231973,9780898231977",,98089718,Casting lines : poems / Orval Lund.,"New Rivers Press, 1999.",bib,2012-09-08 19:30:57,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Lund, Orval, 1940-",https://catalog.hathitrust.org/Record/4065006,https://hdl.handle.net/2027/mdp.39015047580504,New Rivers Press,True,True,"['jerome foundation', 'target', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'general mills foundation', 'mcknight foundation', 'star tribune foundation']"
mdp.39015047585305,0,ic,4032512,,MIU,990040325120106381,39710398,"0898231817,9780898231816",,97068817,An Inn near Kyoto : writing by American women abroad / edited by Kathleen Coskran and C.W. Truesdale.,"New Rivers Press, 1998.",bib,2012-07-06 20:18:43,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/4032512,https://hdl.handle.net/2027/mdp.39015047585305,New Rivers Press,True,True,"['general mills foundation', 'mcknight foundation', 'star tribune foundation']"
mdp.39015047702272,0,ic,4057867,,MIU,990040578670106381,43034349,"0898232058,9780898232059",,99065928,"Your sun, Manny : a prose poem memoir / Marie Harris.","New Rivers Press, c1999.",bib,2008-06-03 09:30:22,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Harris, Marie.",https://catalog.hathitrust.org/Record/4057867,https://hdl.handle.net/2027/mdp.39015047702272,New Rivers Press,True,True,"['the marie alexander poetry series', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'star tribune foundation']"
mdp.39015047761435,0,ic,711040,,MIU,990007110400106381,6189763,"0898230098,9780898230093",,,The coyot.Inca texts : improvisations / by D. Clinton ; drawings by Neil Greenberg.,"New Rivers Press ; SBD:Small Press Distribution, 1979.",bib,2012-04-21 19:30:21,0,1979,mnu,eng,BK,MIU,umich,umich,google,google,"Clinton, D.",https://catalog.hathitrust.org/Record/711040,https://hdl.handle.net/2027/mdp.39015047761435,New Rivers Press,False,True,"['national endowment for the arts', None]"
mdp.39015047852416,0,ic,4065010,,MIU,990040650100106381,43245579,"0898231930,9780898231939",,98089720,Music of the inner lakes : stories / by Roger Sheffer.,"New Rivers Press, c1999.",bib,2008-06-03 09:30:04,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Sheffer, Roger.",https://catalog.hathitrust.org/Record/4065010,https://hdl.handle.net/2027/mdp.39015047852416,New Rivers Press,True,True,"['jerome foundation', None, 'target', 'target', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'general mills foundation', 'mcknight foundation', 'star tribune foundation']"
mdp.39015048576782,0,ic,4079947,,MIU,990040799470106381,43644158,"0898231981,9780898231984",,98089719,The record player and other stories / Winifred Moranville.,"New Rivers Press, 2000.",bib,2012-09-07 19:30:51,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Moranville, Winifred.",https://catalog.hathitrust.org/Record/4079947,https://hdl.handle.net/2027/mdp.39015048576782,New Rivers Press,True,True,"['target', 'target', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'general mills foundation', 'mcknight foundation', 'star tribune foundation', ""jerome foundation and dayton's, mervyn's california""]"
mdp.39015048916731,0,ic,4039425,,MIU,990040394250106381,48494048,"0898231949,9780898231946",,97069843,An alchemy in the bones : poems / William Reichard.,"New Rivers Press, 1999.",bib,2012-03-18 19:30:20,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Reichard, William, 1963-",https://catalog.hathitrust.org/Record/4039425,https://hdl.handle.net/2027/mdp.39015048916731,New Rivers Press,True,True,"['jerome foundation', None, 'target', 'target', 'general mills foundation', 'mcknight foundation', 'star tribune foundation']"
mdp.39015048926821,0,ic,4049499,,MIU,990040494990106381,42272782,"0898231965,9780898231960",,98089712,Dakota incarnate : a collection of short stories / Bill McDonald.,"New Rivers Press, 1999.",bib,2012-09-07 19:30:52,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"McDonald, Bill, 1924-",https://catalog.hathitrust.org/Record/4049499,https://hdl.handle.net/2027/mdp.39015048926821,New Rivers Press,True,True,"['jerome foundation', None, 'target', 'target', 'mcknight foundation', 'star tribune foundation']"
mdp.39015049524500,0,ic,4122151,,MIU,990041221510106381,45067927,"0898232031,9780898232035",,99068470,Alone with the owl : stories / by Alan Davis.,"New Rivers Press, 2000.",bib,2008-05-27 09:30:03,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Davis, Alan",https://catalog.hathitrust.org/Record/4122151,https://hdl.handle.net/2027/mdp.39015049524500,New Rivers Press,True,True,"['jerome foundation', 'target', 'target', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'general mills foundation', 'mcknight foundation', 'star tribune foundation']"
mdp.39015049665600,0,ic,3528204,,MIU,990035282040106381,29357310,"0898231213,9780898231212",,90061092,The Boundaries of twilight : Czecho-Slovak writing from the New World / edited by C.J. Hribal.,"New Rivers Press ; Distributed by Talman Co. ; Distributed by Bookslinger, 1991.",bib,2012-04-21 19:30:21,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/3528204,https://hdl.handle.net/2027/mdp.39015049665600,New Rivers Press,True,True,"[None, 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'cray research foundation', 'first bank system foundation', 'liberty state bank', 'star tribune foundation', 'tennant company foundation', 'national endowment for the arts']"
mdp.39015049977450,0,ic,4136560,,MIU,990041365600106381,45046346,"0898232074,9780898232073",,00105588,Northern latitudes : prose poems / Lawrence Millman.,"New Rivers Press, 2000.",bib,2008-07-23 02:30:09,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Millman, Lawrence.",https://catalog.hathitrust.org/Record/4136560,https://hdl.handle.net/2027/mdp.39015049977450,New Rivers Press,True,True,"['the marie alexander poetry series', 'minnesota state arts board', 'national endowment for the arts', 'mcknight foundation']"
mdp.39015050047086,0,ic,4102208,,MIU,990041022080106381,44498856,"0898232023,9780898232028",,99068467,Rafting on the water table : poems / by Susan Steger Welsh.,"New Rivers Press, 2000,",bib,2012-04-19 19:31:12,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Welsh, Susan Steger.",https://catalog.hathitrust.org/Record/4102208,https://hdl.handle.net/2027/mdp.39015050047086,New Rivers Press,True,True,"['jerome foundation', 'target', 'target', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'general mills foundation', 'mcknight foundation', 'star tribune foundation']"
mdp.39015050047482,0,ic,4102196,,MIU,990041021960106381,44498904,"0898232015,9780898232011",,99068468,Woman lake : poems / Richard Broderick.,"New Rivers Press, 2000.",bib,2012-08-04 19:30:21,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Broderick, Richard, 1949-",https://catalog.hathitrust.org/Record/4102196,https://hdl.handle.net/2027/mdp.39015050047482,New Rivers Press,True,True,"['jerome foundation', 'target', 'target', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'general mills foundation', 'mcknight foundation', 'star tribune foundation']"
mdp.39015050507006,0,ic,4146257,,MIU,990041462570106381,45740891,"0898232090,9780898232097",,,The hunger bone : rock & roll stories / Debra Marquart.,"New Rivers Press, 2001.",bib,2012-09-07 19:31:02,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Marquart, Debra K.",https://catalog.hathitrust.org/Record/4146257,https://hdl.handle.net/2027/mdp.39015050507006,New Rivers Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'general mills foundation', 'mcknight foundation', 'star tribune foundation']"
mdp.39015050507014,0,ic,4134435,,MIU,990041344350106381,45279294,"0898232082,9780898232080",,00105590,Red Cross dog : poems / Patricia Zontelli.,"New Rivers Press, 2000.",bib,2012-04-19 19:31:13,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Zontelli, Patricia.",https://catalog.hathitrust.org/Record/4134435,https://hdl.handle.net/2027/mdp.39015050507014,New Rivers Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'general mills foundation', 'mcknight foundation', 'star tribune foundation', 'national endowment for the arts']"
mdp.39015050712002,0,ic,4140256,,MIU,990041402560106381,45468598,"0898232104,9780898232103",,00105591,Homecoming : poems / Victor Contoski.,"New Rivers Press, 2000.",bib,2012-09-07 19:31:04,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Contoski, Victor.",https://catalog.hathitrust.org/Record/4140256,https://hdl.handle.net/2027/mdp.39015050712002,New Rivers Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation']"
mdp.39015050733008,0,ic,4081244,,MIU,990040812440106381,45018141,"0898232066,9780898232066",,99068471,"Tilting the continent : Southeast Asian American writing / Shirley Geok-lin Lim and Cheng Lok Chua, editors.","New Rivers Press, 2000.",bib,2010-01-31 22:30:04,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/4081244,https://hdl.handle.net/2027/mdp.39015050733008,New Rivers Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'general mills foundation', 'mcknight foundation', 'star tribune foundation']"
mdp.39015051891862,0,ic,3087461,v.10 1999,MIU,990030874610106381,34712515,,,,American fiction : the best unpublished stories by emerging writers.,"New Rivers Press, 1995-",bib,2012-06-20 10:04:08,0,1999,mnu,eng,SE,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/3087461,https://hdl.handle.net/2027/mdp.39015051891862,New Rivers Press,True,True,"['general mills foundation', 'mcknight foundation', 'star tribune foundation']"
mdp.39015053245133,0,ic,403731,,MIU,990004037310106381,13205512,"0898230675,9780898230673",,85060566,There lies a fair land : an anthology of Norwegian-American writing.,"New Rivers Press, 1985.",bib,2007-03-01 09:28:01,0,1985,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/403731,https://hdl.handle.net/2027/mdp.39015053245133,New Rivers Press,True,True,"['northwest area foundation', None, 'first bank system foundation']"
mdp.39015054505337,0,ic,838861,,MIU,990008388610106381,13347282,"0898230705,9780898230703",,,"Collected translations : Italian, French, Spanish, Portuguese / William Jay Smith ; woodcuts by Jacques Hnizdovsky.","New Rivers Press, 1985.",bib,2008-09-27 22:30:11,0,1985,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/838861,https://hdl.handle.net/2027/mdp.39015054505337,New Rivers Press,True,True,"['mcknight foundation', None, 'united arts', 'first bank system foundation']"
mdp.39015057648571,0,ic,4351736,,MIU,990043517360106381,53283892,"0898232171,9780898232172",,2002117333,The volunteer / Candace Black.,"New Rivers Press, c2003.",bib,2012-09-07 19:31:36,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Black, Candace.",https://catalog.hathitrust.org/Record/4351736,https://hdl.handle.net/2027/mdp.39015057648571,New Rivers Press,False,False,"['jerome foundation', 'mcknight foundation']"
mdp.39015057972997,0,ic,3087461,v.8 1996,MIU,990030874610106381,34712515,,,,American fiction : the best unpublished stories by emerging writers.,"New Rivers Press, 1995-",bib,2012-06-20 10:04:11,0,1996,mnu,eng,SE,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/3087461,https://hdl.handle.net/2027/mdp.39015057972997,New Rivers Press,True,True,"['beim foundation', 'general mills foundation', 'liberty state bank', 'mcknight foundation', 'star tribune foundation', 'tennant company foundation', 'united arts']"
mdp.39015057973003,0,ic,3087461,v.9 1997,MIU,990030874610106381,34712515,,,,American fiction : the best unpublished stories by emerging writers.,"New Rivers Press, 1995-",bib,2012-04-19 19:31:20,0,1997,mnu,eng,SE,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/3087461,https://hdl.handle.net/2027/mdp.39015057973003,New Rivers Press,True,True,"['beim foundation', 'liberty state bank', 'mcknight foundation', 'star tribune foundation', 'tennant company foundation', 'united arts']"
mdp.39015058873889,0,ic,5398106,,MIU,990053981060106381,73526130,"0898232309,9780898232301",,2005932923,Terrain tracks / by Purvi Shah.,"New Rivers Press, c2006.",bib,2012-06-26 19:30:18,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Shah, Purvi.",https://catalog.hathitrust.org/Record/5398106,https://hdl.handle.net/2027/mdp.39015058873889,New Rivers Press,False,False,[]
mdp.39015059140148,0,ic,5428022,,MIU,990054280220106381,73526671,"0898232295,9780898232295",,2005932924,Numerology and other stories / Christian Michener.,"New Rivers Press, c2006.",bib,2012-05-17 19:30:40,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Michener, Christian, 1963-",https://catalog.hathitrust.org/Record/5428022,https://hdl.handle.net/2027/mdp.39015059140148,New Rivers Press,False,False,['jerome foundation']
mdp.39015059313620,0,ic,4923325,,MIU,990049233250106381,55854763,"0898232201,9780898232202",,,"Duane Hanson : portraits from the heartland / Erika Doss, Wesla Hanson, Tin Ly.","Plains Art Museum ; New Rivers Press, c2004.",bib,2013-04-26 19:25:21,0,2004,ndu,eng,BK,MIU,umich,umich,google,google,"Hanson, Duane.",https://catalog.hathitrust.org/Record/4923325,https://hdl.handle.net/2027/mdp.39015059313620,New Rivers Press,False,False,[]
mdp.39015059552813,0,ic,4917333,,MIU,990049173330106381,57244005,"0898232198,9780898232196",,,The egg lady and other neighbors / Tricia Currans-Sheehan.,"New Rivers Press, c2004.",bib,2012-06-24 19:30:36,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Currans-Sheehan, Tricia.",https://catalog.hathitrust.org/Record/4917333,https://hdl.handle.net/2027/mdp.39015059552813,New Rivers Press,False,False,"['mcknight foundation', 'deb mercier allen sheets, design director designers: julie campbell']"
mdp.39015060399790,0,ic,4917260,,MIU,990049172600106381,57244211,"089823221X,9780898232219",,,No guarantee : poems / Craig Crist-Evans.,"New Rivers Press, 2004.",bib,2012-05-16 19:30:42,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Crist-Evans, Craig.",https://catalog.hathitrust.org/Record/4917260,https://hdl.handle.net/2027/mdp.39015060399790,New Rivers Press,False,False,[]
mdp.39015062521524,0,ic,5116127,,MIU,990051161270106381,62366803,"0898232252,9780898232257",,2005923889,Love in an expanding universe : stories / by Ron Rindo.,"New Rivers Press, c2005.",bib,2012-06-25 19:30:21,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Rindo, Ronald J., 1959-",https://catalog.hathitrust.org/Record/5116127,https://hdl.handle.net/2027/mdp.39015062521524,New Rivers Press,False,False,"['jerome foundation', 'mcknight foundation']"
mdp.39015062866564,0,ic,5097552,,MIU,990050975520106381,62271208,"0898232244,9780898232240",,,Second language / by Ronna Wineberg.,"New Rivers Press, 2005.",bib,2009-01-13 11:30:23,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Wineberg, Ronna.",https://catalog.hathitrust.org/Record/5097552,https://hdl.handle.net/2027/mdp.39015062866564,New Rivers Press,False,False,[]
mdp.39015062895886,0,ic,5097543,,MIU,990050975430106381,62231253,"0898232260,9780898232264",,2005923890,Real karaoke people : poems and prose / by Ed-Bok Lee.,"New Rivers Press, c2005.",bib,2012-06-25 19:30:22,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Lee, Ed-Bok.",https://catalog.hathitrust.org/Record/5097543,https://hdl.handle.net/2027/mdp.39015062895886,New Rivers Press,False,False,"['jerome foundation', 'mcknight foundation']"
mdp.39015063688348,0,ic,5104939,,MIU,990051049390106381,62750967,"0898232279,9780898232271",,2005923891,Flock & shadow : new and selected poems.,"New Rivers Press, c2005.",bib,2012-06-25 19:30:23,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Hettich, Michael.",https://catalog.hathitrust.org/Record/5104939,https://hdl.handle.net/2027/mdp.39015063688348,New Rivers Press,False,False,['mcknight foundation']
mdp.39015066843965,0,ic,5403940,,MIU,990054039400106381,75203652,"0898232317,9780898232318",,2005932917,Mortar & pestle : poems / by Lisa Gill.,"New Rivers Press, c2006.",bib,2012-06-26 19:30:22,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Gill, Lisa, 1970-",https://catalog.hathitrust.org/Record/5403940,https://hdl.handle.net/2027/mdp.39015066843965,New Rivers Press,False,False,[]
mdp.39015067664030,0,ic,5414962,,MIU,990054149620106381,74330665,"0898232333,9780898232332",,2005932915,Not a matter of love / Beth Alvarado.,"New Rivers Press, c2006.",bib,2012-06-26 19:30:22,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Alvarado, Beth.",https://catalog.hathitrust.org/Record/5414962,https://hdl.handle.net/2027/mdp.39015067664030,New Rivers Press,False,False,[]
mdp.39015069312620,0,ic,5551486,,MIU,990055514860106381,78608002,"0898232325,9780898232325",,2005932916,"To sing along the way : Minnesota women poets from pre-Territorial days to the present / edited by Joyce Sutphen, Thom Tammaro & Connie Wanek.","New Rivers Press, 2006.",ipma,2010-10-06 11:46:34,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/5551486,https://hdl.handle.net/2027/mdp.39015069312620,New Rivers Press,False,False,[]
mdp.39076005214692,0,ic,432452,,MIU,990004324520106381,1108867,"0912284579,0912284587,9780912284576,9780912284583",,75312026,Tree-lines / Robin Fulton ; with drawings by Harley Elliott.,"New Rivers Press ; distributed by Serendipity Books, 1974.",bib,2011-08-18 19:30:52,0,1974,nyu,eng,BK,UMDB,umich,umich,google,google,"Fulton Macpherson, Robin, 1937-",https://catalog.hathitrust.org/Record/432452,https://hdl.handle.net/2027/mdp.39076005214692,New Rivers Press,False,False,[None]
mdp.49015000667833,0,ic,4449008,,MIU,990044490080106381,9065112,"0898230403,9780898230406",,82061652,Night sale / Richard Broderick ; with drawings by Tom Dolan.,"New Rivers Press, 1982.",bib,2010-11-02 20:33:37,0,1982,mnu,eng,BK,MIU,umich,umich,google,google,"Broderick, Richard, 1949-",https://catalog.hathitrust.org/Record/4449008,https://hdl.handle.net/2027/mdp.49015000667833,New Rivers Press,True,True,"['jerome foundation', None, 'northwest area foundation', None]"
mdp.49015000686247,0,ic,4450923,,MIU,990044509230106381,3084112,"0912284846,9780912284842",,,Curve : overlapping narratives / Albert Goldbarth.,"New Rivers Press, 1977.",bib,2010-11-02 19:30:33,0,1977,nyu,eng,BK,MIU,umich,umich,google,google,"Goldbarth, Albert.",https://catalog.hathitrust.org/Record/4450923,https://hdl.handle.net/2027/mdp.49015000686247,New Rivers Press,False,True,"[None, 'national endowment for the arts']"
mdp.49015001043505,0,ic,4487002,,MIU,990044870020106381,8593362,"0898230314,9780898230314",,81083882,"North from Duluth / Roger Blakely, text ; Hardie Truesdale, photographs.","New Rivers Press : Distributed by Bookslinger, 1981.",bib,2010-11-02 20:31:33,0,1981,mnu,eng,BK,MIU,umich,umich,google,google,"Blakely, Roger.",https://catalog.hathitrust.org/Record/4487002,https://hdl.handle.net/2027/mdp.49015001043505,New Rivers Press,False,True,[]
osu.32435059899419,0,ic,676642,v.1 1960,OU,b11461238,"1779874,2235021",,00265667,2007215129,The Minnesota review,"Duke University Press, Minnesota Review, New Rivers Press, Minnesota Review",bib,2020-03-17 03:25:21,0,1960,nyu,eng,SE,OSU,osu,osu,google,google,,https://catalog.hathitrust.org/Record/676642,https://hdl.handle.net/2027/osu.32435059899419,New Rivers Press,False,False,[]
osu.32435059899468,0,ic,676642,v.2 1961,OU,b11461238,"1779874,2235021",,00265667,2007215129,The Minnesota review,"Duke University Press, Minnesota Review, New Rivers Press, Minnesota Review",bib,2020-01-17 03:26:15,0,1961,nyu,eng,SE,OSU,osu,osu,google,google,,https://catalog.hathitrust.org/Record/676642,https://hdl.handle.net/2027/osu.32435059899468,New Rivers Press,False,False,[]
osu.32435059899518,0,ic,676642,v.3 1962,OU,b11461238,"1779874,2235021",,00265667,2007215129,The Minnesota review,"Duke University Press, Minnesota Review, New Rivers Press, Minnesota Review",bib,2020-03-17 03:25:21,0,1962,nyu,eng,SE,OSU,osu,osu,google,google,,https://catalog.hathitrust.org/Record/676642,https://hdl.handle.net/2027/osu.32435059899518,New Rivers Press,False,False,[]
osu.32435059899567,0,ic,676642,v.4 1963,OU,b11461238,"1779874,2235021",,00265667,2007215129,The Minnesota review,"Duke University Press, Minnesota Review, New Rivers Press, Minnesota Review",bib,2020-03-17 03:25:21,0,1963,nyu,eng,SE,OSU,osu,osu,google,google,,https://catalog.hathitrust.org/Record/676642,https://hdl.handle.net/2027/osu.32435059899567,New Rivers Press,False,False,[]
txu.059173001360731,0,ic,6239044,,TXU,b4167232x,3114509,,,76049677,Occupied country / Olga Cabral.,"New Rivers Press, 1976.",bib,2016-04-23 03:28:19,0,1976,nyu,eng,BK,TXU,utexas,utexas,google,google,"Cabral, Olga.",https://catalog.hathitrust.org/Record/6239044,https://hdl.handle.net/2027/txu.059173001360731,New Rivers Press,False,False,[]
txu.059173004313002,0,ic,3174816,,TXU,b43618716,37036300,"0898231779,9780898231779",,97065064,"Laundromat blues : stories / by Lupe Solis, Jr.","New Rivers Press, 1997.",bib,2016-04-23 03:28:45,0,1997,mnu,eng,BK,TXU,utexas,utexas,google,google,"Solis, Lupe, 1960-",https://catalog.hathitrust.org/Record/3174816,https://hdl.handle.net/2027/txu.059173004313002,New Rivers Press,True,True,[]
txu.059173021868047,0,ic,5414962,,TXU,b64968480,74330665,"0898232333,9780898232332",,2005932915,Not a matter of love / Beth Alvarado.,"New Rivers Press, c2006.",bib,2016-04-28 03:30:10,0,2006,mnu,eng,BK,TXU,utexas,utexas,google,google,"Alvarado, Beth.",https://catalog.hathitrust.org/Record/5414962,https://hdl.handle.net/2027/txu.059173021868047,New Rivers Press,False,False,[]
uc1.$b191659,0,ic,4486968,,UC,GLAD84487200-B,6759373,"0898230152,9780898230154",,,Are you tough enough for the eighties? / James Bertolino,"New Rivers Press ; distributed by SBD, [1979]",bib,2013-09-28 19:25:19,0,1979,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Bertolino, James, 1942-",https://catalog.hathitrust.org/Record/4486968,https://hdl.handle.net/2027/uc1.$b191659,New Rivers Press,False,True,[]
uc1.$b235290,0,ic,35280,,UC,b168313224,1501923,"0912284676,9780912284675",,74020138,Terminal placebos / James Bertolino ; with postcard collages by Anne Sharp.,"New Rivers Press ; distributed by Serendipity Books, 1975.",bib,2013-09-11 12:47:17,0,1975,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Bertolino, James, 1942-",https://catalog.hathitrust.org/Record/35280,https://hdl.handle.net/2027/uc1.$b235290,New Rivers Press,False,False,[]
uc1.$b391312,0,ic,9447558,,UC,b139594516,153389,"0912284129,9780912284125",,76150785,The spaces between the stones is where the survivors live. Drawings by Judith Rothschild.,"New Rivers Press, 1971.",bib,2011-02-10 20:31:40,0,1971,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Fulton, Robin.",https://catalog.hathitrust.org/Record/9447558,https://hdl.handle.net/2027/uc1.$b391312,New Rivers Press,False,False,[]
uc1.$b662208,0,ic,9986984,,UC,b169873195,66864,,,75113700,"Fire gardens; selected poems, 1956-1969 [by] Ivan V. Lalic. Translated by Charles Simic and C. W. Truesdale. Drawings by Zivotin Turinski.","New Rivers Press, 1970.",bib,2011-09-23 19:31:44,0,1970,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Lalić, Ivan V.",https://catalog.hathitrust.org/Record/9986984,https://hdl.handle.net/2027/uc1.$b662208,New Rivers Press,False,False,[]
uc1.$b791857,0,ic,9517151,,UC,b16831437x,64941,,,71113698,"Here; poems, 1965-1969.","New Rivers Press, 1970.",bib,2011-03-15 21:31:01,0,1970, ,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Curry, David, 1942-",https://catalog.hathitrust.org/Record/9517151,https://hdl.handle.net/2027/uc1.$b791857,New Rivers Press,False,False,[]
uc1.$b801448,0,ic,9517119,,UC,b168313169,8839596,"0898230349,9780898230345",,81080548,Precinct Kali & The Gertrude Spicer story : poems / by James Bertolino.,"New Rivers Press, 1981.",bib,2011-03-15 21:31:02,0,1981,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Bertolino, James, 1942-",https://catalog.hathitrust.org/Record/9517119,https://hdl.handle.net/2027/uc1.$b801448,New Rivers Press,False,True,[]
uc1.$b802627,0,ic,9950542,,UC,b170115197,153236,"0912284161,9780912284163",,75151101,The dance of the red swan. With etchings by Kathy von Ertfelda.,New Rivers Press [1971],bib,2011-06-12 19:30:29,0,1971,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Johnson, Halvard, 1936-",https://catalog.hathitrust.org/Record/9950542,https://hdl.handle.net/2027/uc1.$b802627,New Rivers Press,False,False,[]
uc1.$b803159,0,ic,9950864,,UC,b170114570,448796,,,68028108,The metaphysical giraffe. Drawings by Gene Roberds.,New Rivers Press [1968],bib,2011-06-12 20:30:40,0,1968,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Greenberg, Alvin.",https://catalog.hathitrust.org/Record/9950864,https://hdl.handle.net/2027/uc1.$b803159,New Rivers Press,False,False,[]
uc1.$b803271,0,ic,9950929,,UC,b170113747,126599,"0912284099,9780912284095",,76139694,The dime / Richard Deutch,"New Rivers Press, 1970",bib,2011-06-12 20:30:40,0,1970,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Deutch, Richard",https://catalog.hathitrust.org/Record/9950929,https://hdl.handle.net/2027/uc1.$b803271,New Rivers Press,False,False,[]
uc1.31822010594364,0,ic,8949175,,UC,b1721984x,6586682,"091228420X,9780912284200",,"73166978,73166978 /M",Hold on together. Words & music by Gail Guidry. Drawings by Rick Blackerby,"New Rivers Press, 1971",bib,2010-11-04 20:34:37,0,1971,nyu,eng,MU,UCSD,universityofcalifornia,universityofcalifornia,google,google,"Guidry, Gail, 1944-",https://catalog.hathitrust.org/Record/8949175,https://hdl.handle.net/2027/uc1.31822010594364,New Rivers Press,False,False,[]
uc1.32106007837831,0,ic,7105323,,UC,b10739762,16752109,"0898230942,9780898230949",,86063560,Bloodstains : a novel / by Giuliana Morandini ; translated by Blossom Steinberg Kirschenbaum.,"New Rivers Press, 1987.",bib,2010-08-25 20:30:06,0,1987,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Morandini, Giuliana.",https://catalog.hathitrust.org/Record/7105323,https://hdl.handle.net/2027/uc1.32106007837831,New Rivers Press,True,True,"['national endowment for the arts', 'first bank system foundation']"
uc1.32106009032621,0,ic,5989779,,UC,b12598847,26079729,"0898231388,9780898231380",,91061263,Late night calls : prose poems and short fiction / Mark Vinz.,"New Rivers Press ; Distributed by Talman Co., 1992.",bib,2010-09-19 19:30:18,0,1992,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Vinz, Mark, 1943-",https://catalog.hathitrust.org/Record/5989779,https://hdl.handle.net/2027/uc1.32106009032621,New Rivers Press,True,True,"[None, 'united arts', 'first bank system foundation', 'liberty state bank', 'tennant company foundation', None]"
uc1.32106010332671,0,ic,7111722,,UC,b13078161,27844511,"0898231426,9780898231427",,92085452,Rumors from the lost world : stories / by Alan Davis.,"New Rivers Press ; Distributed by the Talman Co., 1993.",bib,2010-09-16 20:33:47,0,1993,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Davis, Alan",https://catalog.hathitrust.org/Record/7111722,https://hdl.handle.net/2027/uc1.32106010332671,New Rivers Press,True,True,"['jerome foundation', 'metropolitan regional arts council', 'minnesota state legislature', 'first bank system foundation', 'liberty state bank', 'national endowment for the arts', 'star tribune/cowles media company', 'tennant company foundation', None, None, None]"
uc1.32106010750245,0,ic,7109833,,UC,b12464491,25277058,"0898231310,9780898231311",,91061256,Mykonos : a memoir / by Nancy Raeburn.,"New Rivers Press ; Distributed by Talman Co., 1992.",bib,2012-10-25 04:30:09,0,1992,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Raeburn, Nancy.",https://catalog.hathitrust.org/Record/7109833,https://hdl.handle.net/2027/uc1.32106010750245,New Rivers Press,True,True,"['target', 'metropolitan regional arts council', 'minnesota state legislature', None, 'united arts', 'first bank system foundation', 'liberty state bank', 'star tribune foundation', 'tennant company foundation', 'national endowment for the arts', None]"
uc1.32106011708317,0,ic,7129744,,UC,b1794580x,30055273,"0898231531,9780898231533",,93083976,This house is filled with cracks : poems / by Madelyn Camrud.,"New Rivers Press ; distributed by The Talman Co., 1994.",bib,2010-09-10 19:31:03,0,1994,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Camrud, Madelyn Roeder.",https://catalog.hathitrust.org/Record/7129744,https://hdl.handle.net/2027/uc1.32106011708317,New Rivers Press,True,True,"['target', 'target', 'jerome foundation', 'metropolitan regional arts council', 'minnesota state legislature', None, 'south dakota arts council', 'general mills foundation', 'liberty state bank', 'mcknight foundation', 'star tribune foundation', 'tennant company foundation', 'united arts']"
uc1.32106011708366,0,ic,7129741,,UC,b17945756,30055309,"0898231574,9780898231571",,93083980,Aerial studies : poems / by Sandra Adelmund Witt.,"New Rivers Press ; distributed by The Talman Co., 1994.",bib,2010-09-24 20:33:58,0,1994,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Witt, Sandra Adelmund.",https://catalog.hathitrust.org/Record/7129741,https://hdl.handle.net/2027/uc1.32106011708366,New Rivers Press,True,True,"['target', 'target', 'jerome foundation', 'metropolitan regional arts council', 'minnesota state legislature', None, 'south dakota arts council', 'general mills foundation', 'liberty state bank', 'mcknight foundation', 'star tribune foundation', 'tennant company foundation']"
uc1.b000769643,0,ic,676642,v.2 (fall 1961-summer 1962),UC,b100142825,"1779874,2235021",,00265667,2007215129,The Minnesota review,"Duke University Press, Minnesota Review, New Rivers Press, Minnesota Review",bib,2020-01-17 03:26:15,0,1962,nyu,eng,SE,UCBK,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/676642,https://hdl.handle.net/2027/uc1.b000769643,New Rivers Press,False,False,[]
uc1.b000771718,0,ic,676642,v.4 (fall 1963-summer 1964),UC,b100142825,"1779874,2235021",,00265667,2007215129,The Minnesota review,"Duke University Press, Minnesota Review, New Rivers Press, Minnesota Review",bib,2020-01-17 03:26:15,0,1964,nyu,eng,SE,UCBK,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/676642,https://hdl.handle.net/2027/uc1.b000771718,New Rivers Press,False,False,[]
uc1.b000958641,0,ic,676642,v.3 (fall 1962-summer 1963),UC,b100142825,"1779874,2235021",,00265667,2007215129,The Minnesota review,"Duke University Press, Minnesota Review, New Rivers Press, Minnesota Review",bib,2020-01-17 03:26:15,0,1963,nyu,eng,SE,UCBK,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/676642,https://hdl.handle.net/2027/uc1.b000958641,New Rivers Press,False,False,[]
uc1.b3456848,0,ic,6302650,,UC,GLAD50735447-B,11264545,"0898230551,9780898230550",,84060334,Enemy country / Emilio DeGrazia.,"New Rivers Press ; distributed by Bookslinger, 1984.",bib,2010-09-01 19:30:10,0,1984,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"DeGrazia, Emilio.",https://catalog.hathitrust.org/Record/6302650,https://hdl.handle.net/2027/uc1.b3456848,New Rivers Press,True,True,"['national endowment for the arts', 'united arts', 'mcknight foundation']"
uc1.b3457558,0,ic,714716,,UC,b104928657,2032525,"0912284749,9780912284743",,,"The man who ate New York (and other poems, early and late, of Manhattan and Ossabaw Islands) / Richard Elman ; drawings by Neil Greenberg.","New Rivers Press, 1975.",bib,2010-09-01 19:31:03,0,1975,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Elman, Richard M.",https://catalog.hathitrust.org/Record/714716,https://hdl.handle.net/2027/uc1.b3457558,New Rivers Press,False,False,"['national endowment for the arts', None]"
uc1.b3457559,0,ic,7848379,,UC,b103464475,4973772,"0912284986,9780912284989",,78061001,Homage to Fats Navarro / Richard Elman ; with drawings by Neil Greenberg.,"New Rivers Press, 1978.",bib,2010-09-01 19:30:12,0,1978,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Elman, Richard M.",https://catalog.hathitrust.org/Record/7848379,https://hdl.handle.net/2027/uc1.b3457559,New Rivers Press,False,True,"['national endowment for the arts', None]"
uc1.b3462033,0,ic,4452823,,UC,b105071973,4143021,"0912284943,9780912284941",,,A purple tale / John Judson ; graphics by Harley Elliott.,"New Rivers Press, 1978.",bib,2010-09-03 20:30:57,0,1978,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Judson, John, 1930-",https://catalog.hathitrust.org/Record/4452823,https://hdl.handle.net/2027/uc1.b3462033,New Rivers Press,False,True,"[None, 'national endowment for the arts']"
uc1.b3462833,0,ic,4455222,,UC,"GLAD50895381-B,b100032515","21636413,6095742","0898230063,9780898230062",,79064149,Shemuel / Rochelle Owens ; with drawings by Gaylord Schanilec,"New Rivers Press ; distributed by SBD: Small Press Distribution, 1979",bib,2018-08-30 03:26:54,0,1979,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Owens, Rochelle.",https://catalog.hathitrust.org/Record/4455222,https://hdl.handle.net/2027/uc1.b3462833,New Rivers Press,False,True,"['national endowment for the arts', None]"
uc1.b3462840,0,ic,134538,,UC,b100092275,3819586,"0912284900,9780912284903",,77020625,Bucks County blues / Sonia Raiziss ; drawings by Rose Graubart.,"New Rivers Press, 1977.",bib,2010-05-25 20:30:52,0,1977,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Raiziss, Sona.",https://catalog.hathitrust.org/Record/134538,https://hdl.handle.net/2027/uc1.b3462840,New Rivers Press,False,True,"['national endowment for the arts', None]"
uc1.b3466093,0,ic,6660596,,UC,GLAD17208903-B,500597,"0912284293,0912284307,9780912284293,9780912284309",,72079079,"Brandy in the snow; poems, 1966-1970.","New Rivers Press; [distributed by Serendipity Books, Berkeley, Calif.] 1972.",bib,2013-05-08 19:25:08,0,1972,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Will, Frederic.",https://catalog.hathitrust.org/Record/6660596,https://hdl.handle.net/2027/uc1.b3466093,New Rivers Press,False,False,[]
uc1.b3467128,0,ic,4486160,,UC,b102707030,3858516,,,,Abracadabra / Stephen Ajay,"New Rivers Press ; distributed by Serendipity Books, 1977",bib,2010-05-25 19:30:44,0,1977,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Ajay, Stephen.",https://catalog.hathitrust.org/Record/4486160,https://hdl.handle.net/2027/uc1.b3467128,New Rivers Press,False,True,[]
uc1.b3747707,0,ic,676642,v.2 1961-62,UC,b168283001,"1779874,2235021",,00265667,2007215129,The Minnesota review,"Duke University Press, Minnesota Review, New Rivers Press, Minnesota Review",bib,2020-01-17 03:26:15,0,1962,nyu,eng,SE,NRLF,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/676642,https://hdl.handle.net/2027/uc1.b3747707,New Rivers Press,False,False,[]
uc1.b3747708,0,ic,676642,v.3 1962-63,UC,b168283001,"1779874,2235021",,00265667,2007215129,The Minnesota review,"Duke University Press, Minnesota Review, New Rivers Press, Minnesota Review",bib,2020-01-17 03:26:15,0,1963,nyu,eng,SE,NRLF,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/676642,https://hdl.handle.net/2027/uc1.b3747708,New Rivers Press,False,False,[]
uc1.b3747709,0,ic,676642,v.4 1963-64,UC,b168283001,"1779874,2235021",,00265667,2007215129,The Minnesota review,"Duke University Press, Minnesota Review, New Rivers Press, Minnesota Review",bib,2020-01-17 03:26:15,0,1964,nyu,eng,SE,NRLF,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/676642,https://hdl.handle.net/2027/uc1.b3747709,New Rivers Press,False,False,[]
uc1.b3747710,0,ic,676642,v.5 1965,UC,b168283001,"1779874,2235021",,00265667,2007215129,The Minnesota review,"Duke University Press, Minnesota Review, New Rivers Press, Minnesota Review",bib,2020-01-17 03:26:15,0,1965,nyu,eng,SE,NRLF,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/676642,https://hdl.handle.net/2027/uc1.b3747710,New Rivers Press,False,False,[]
uc1.b3747711,0,ic,676642,v.6 1966,UC,b168283001,"1779874,2235021",,00265667,2007215129,The Minnesota review,"Duke University Press, Minnesota Review, New Rivers Press, Minnesota Review",bib,2020-01-17 03:26:15,0,1966,nyu,eng,SE,NRLF,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/676642,https://hdl.handle.net/2027/uc1.b3747711,New Rivers Press,False,False,[]
uc1.b3747712,0,ic,676642,v.7 1967,UC,b168283001,"1779874,2235021",,00265667,2007215129,The Minnesota review,"Duke University Press, Minnesota Review, New Rivers Press, Minnesota Review",bib,2020-01-17 03:26:15,0,1967,nyu,eng,SE,NRLF,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/676642,https://hdl.handle.net/2027/uc1.b3747712,New Rivers Press,False,False,[]
uc1.b3747713,0,ic,676642,v.8 1968,UC,b168283001,"1779874,2235021",,00265667,2007215129,The Minnesota review,"Duke University Press, Minnesota Review, New Rivers Press, Minnesota Review",bib,2020-01-17 03:26:15,0,1968,nyu,eng,SE,NRLF,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/676642,https://hdl.handle.net/2027/uc1.b3747713,New Rivers Press,False,False,[]
uc1.b3747714,0,ic,676642,v.9 1969,UC,b168283001,"1779874,2235021",,00265667,2007215129,The Minnesota review,"Duke University Press, Minnesota Review, New Rivers Press, Minnesota Review",bib,2020-01-17 03:26:15,0,1969,nyu,eng,SE,NRLF,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/676642,https://hdl.handle.net/2027/uc1.b3747714,New Rivers Press,False,False,[]
uc1.b3747715,0,ic,676642,v.10 1970,UC,b168283001,"1779874,2235021",,00265667,2007215129,The Minnesota review,"Duke University Press, Minnesota Review, New Rivers Press, Minnesota Review",bib,2020-01-17 03:26:15,0,1970,nyu,eng,SE,NRLF,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/676642,https://hdl.handle.net/2027/uc1.b3747715,New Rivers Press,False,False,[]
uc1.b3747716,0,ic,676642,NRP no.1-4 (1971:Fall-1973:Spr.),UC,b168283001,"1779874,2235021",,00265667,2007215129,The Minnesota review,"Duke University Press, Minnesota Review, New Rivers Press, Minnesota Review",bib,2020-01-17 03:26:15,0,1973,nyu,eng,SE,NRLF,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/676642,https://hdl.handle.net/2027/uc1.b3747716,New Rivers Press,False,False,[]
uc1.b4351572,0,ic,6223866,,UC,GLAD50877831-B,26066994,"0898231396,9780898231397",,91061264,The wounded and other stories about fathers and sons / Ian Graham Leask.,"New Rivers Press, c1992.",bib,2010-09-15 19:31:14,0,1992,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Leask, Ian Graham.",https://catalog.hathitrust.org/Record/6223866,https://hdl.handle.net/2027/uc1.b4351572,New Rivers Press,True,True,"[None, 'united arts', 'first bank system foundation', 'liberty state bank', 'tennant company foundation', 'national endowment for the arts', None]"
uc1.b4351586,0,ic,4453633,,UC,GLAD50878130-B,6589341,"0898230179,9780898230178",,80050369,"Silent partner / Jane Lippe ; [cover photos., Eliot Fine].","New Rivers Press ; distributed by SBD--Small Press Distribution, 1980.",bib,2010-09-15 19:31:14,0,1980,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Lippe, Jane.",https://catalog.hathitrust.org/Record/4453633,https://hdl.handle.net/2027/uc1.b4351586,New Rivers Press,False,True,['national endowment for the arts']
uc1.b4354184,0,ic,6224207,,UC,GLAD50891902-B,8550187,"0898230314,9780898230314",,81082537,The naturalized citizen / Carol J. Pierman ; drawings by Marcia Rizzi,"New Rivers Press, 1981",bib,2010-09-16 20:32:54,0,1981,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Pierman, Carol J",https://catalog.hathitrust.org/Record/6224207,https://hdl.handle.net/2027/uc1.b4354184,New Rivers Press,False,True,[]
uc1.b4354546,0,ic,3985,,UC,b167850477,277758,"0912284234,0912284242,9780912284231,9780912284248",,75181034,A birthday of waters. Drawings [by] Neil Greenberg.,"New Rivers Press; [distributed by Serendipity Books, Berkeley, Calif.] 1971.",bib,2011-03-05 19:30:28,0,1971,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Ratner, Rochelle.",https://catalog.hathitrust.org/Record/3985,https://hdl.handle.net/2027/uc1.b4354546,New Rivers Press,False,False,[]
uc1.b4355073,0,ic,631071,,UC,GLAD50893416-B,1110252,"0912284544,9780912284545",,78317326,Friend / Howard McCord.,"New Rivers Press, c1974.",bib,2010-09-16 20:32:55,0,1974,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"McCord, Howard, 1932-",https://catalog.hathitrust.org/Record/631071,https://hdl.handle.net/2027/uc1.b4355073,New Rivers Press,False,False,[None]
uc1.b4355987,0,ic,2440994,,UC,GLAD50895248-B,4921672,"0898230020,9780898230024",,"78073283,78073283 //r85",The drowned man to the fish : poems / Robert Peters ; with drawings by Meredith Peters.,"New Rivers Press, 1978, c1979.",bib,2010-09-17 20:32:32,0,1979,xx ,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Peters, Robert, 1924-2014.",https://catalog.hathitrust.org/Record/2440994,https://hdl.handle.net/2027/uc1.b4355987,New Rivers Press,False,True,"['the male muse anthology', 'national endowment for the arts', None]"
uc1.b4355990,0,ic,6224582,,UC,GLAD50895252-B,15613096,"0898230888,9780898230888",,86063555,"Dying old and dying young : poems / by Susan Williams ; with photographs by Sharon Scapple, Garret Williams, and others.","New Rivers Press : Distributed by Bookslinger ; Distributed by Talman Co., c1987.",bib,2010-09-17 20:31:10,0,1987,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Williams, Susan.",https://catalog.hathitrust.org/Record/6224582,https://hdl.handle.net/2027/uc1.b4355990,New Rivers Press,True,True,"['jerome foundation', None, 'first bank system foundation', 'national endowment for the arts']"
uc1.b4355994,0,ic,6224585,,UC,GLAD50895256-B,15607174,"0898230896,9780898230895",,86063556,Stormlines : a collection of poems / Warren Woessner.,"New Rivers Press : Distributed by Bookslinger ; Distributed by Talman Co., 1987.",bib,2010-09-15 20:32:52,0,1987,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Woessner, Warren.",https://catalog.hathitrust.org/Record/6224585,https://hdl.handle.net/2027/uc1.b4355994,New Rivers Press,True,True,"['jerome foundation', None, 'first bank system foundation', 'national endowment for the arts']"
uc1.b4356068,0,ic,6224626,,UC,GLAD50895354-B,8860413,"0898230330,9780898230338",,,Greenfellow / Jean Pedrick,"New Rivers Press, 1981",bib,2010-09-17 20:32:32,0,1981,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Pedrick, Jean, 1922-",https://catalog.hathitrust.org/Record/6224626,https://hdl.handle.net/2027/uc1.b4356068,New Rivers Press,False,True,[]
uc1.b4356093,0,ic,4455222,,UC,"GLAD50895381-B,b100032515","21636413,6095742","0898230063,9780898230062",,79064149,Shemuel / Rochelle Owens ; with drawings by Gaylord Schanilec,"New Rivers Press ; distributed by SBD: Small Press Distribution, 1979",bib,2010-09-16 20:34:23,0,1979,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Owens, Rochelle.",https://catalog.hathitrust.org/Record/4455222,https://hdl.handle.net/2027/uc1.b4356093,New Rivers Press,False,True,"['national endowment for the arts', None]"
uc1.b4357748,0,ic,6224899,,UC,GLAD50902551-B,4671290,"0912284986,9780912284989",,82170026,Quarry / Rochelle Ratner,"New Rivers Press, 1978",bib,2010-09-15 19:31:17,0,1978,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Ratner, Rochelle.",https://catalog.hathitrust.org/Record/6224899,https://hdl.handle.net/2027/uc1.b4357748,New Rivers Press,False,True,"['national endowment for the arts', None]"
uc1.b4357923,0,ic,6224985,,UC,GLAD50902801-B,18027051,"0898231051,9780898231052",,,The transparency of skin : poems / by Catherine Stearns,"New Rivers Press, 1988",bib,2010-09-15 20:34:31,0,1988,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Stearns, Catherine, 1952-",https://catalog.hathitrust.org/Record/6224985,https://hdl.handle.net/2027/uc1.b4357923,New Rivers Press,True,True,"['college english (""talking back', 'mcknight foundation', 'jerome foundation', 'first bank system foundation', 'united arts', 'mcknight foundation', 'national endowment for the arts']"
uc1.b4357977,0,ic,709371,,UC,GLAD50902920-B,2109186,"0912284757,9780912284750",,76362148,Roots / Brian Swann ; photos. by Hardie Truesdale,"New Rivers Press ; distributed by Serendipity Books, 1976",bib,2010-09-15 20:36:01,0,1976,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Swann, Brian.",https://catalog.hathitrust.org/Record/709371,https://hdl.handle.net/2027/uc1.b4357977,New Rivers Press,False,False,[]
uc1.b4358827,0,ic,2457966,,UC,GLAD50904226-B,20880396,"0898231140,9780898231144",,89062211,Suburban metaphysics : and other stories / Ronald J. Rindo.,"New Rivers Press ; Distributed by Talman Co., c1990.",bib,2010-09-15 19:31:19,0,1990,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Rindo, Ronald J., 1959-",https://catalog.hathitrust.org/Record/2457966,https://hdl.handle.net/2027/uc1.b4358827,New Rivers Press,True,True,"['target', 'first bank system foundation', None, 'united arts', 'mcknight foundation', 'national endowment for the arts', None, None]"
uc1.b4358828,0,ic,6225286,,UC,GLAD50904229-B,22778200,"0898231264,9780898231267",,,Pictures of 3 seasons : [poems] / Gail Rixen ; graphics by Ross Zirkle.,"New Rivers Press ; distributed by Talman Co., c1991.",bib,2010-09-20 19:30:55,0,1991,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Rixen, Gail, 1954-",https://catalog.hathitrust.org/Record/6225286,https://hdl.handle.net/2027/uc1.b4358828,New Rivers Press,True,True,"['jerome foundation', None, 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'cray research foundation', 'first bank system foundation', 'liberty state bank', 'star tribune foundation', 'tennant company foundation', None, 'national endowment for the arts', None, 'minneapolis foundation']"
uc1.b4358833,0,ic,9508792,,UC,b167870464,18027133,"0898231043,9780898231045",,,Burning the prairie : poems / by John Reinhard.,"New Rivers Press, 1988.",bib,2011-03-10 20:31:34,0,1988,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Reinhard, John, 1953-",https://catalog.hathitrust.org/Record/9508792,https://hdl.handle.net/2027/uc1.b4358833,New Rivers Press,True,True,"['the fundamentalist argues against darwin”', ""ernest hemingway's goat."", 'jerome foundation', 'first bank system foundation', 'united arts', 'mcknight foundation', 'national endowment for the arts']"
uc1.b4359144,0,ic,9508847,,UC,b16787214x,26160723,"0898231329,9780898231328",,91061257,Learning to dance : and other stories / by Sharon Oard Warner.,New Rivers Press ; 1992.,bib,2011-03-04 20:32:23,0,1992,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Warner, Sharon Oard.",https://catalog.hathitrust.org/Record/9508847,https://hdl.handle.net/2027/uc1.b4359144,New Rivers Press,True,True,"['jerome foundation', 'metropolitan regional arts council', 'minnesota state legislature', None, 'united arts', 'first bank system foundation', 'liberty state bank', 'star tribune/cowles media company', 'tennant company foundation', 'national endowment for the arts', None]"
uc1.b4359378,0,ic,6225462,,UC,GLAD50905573-B,5103205,"0912284951,9780912284958",,78062338,"Along the river, and other poems / Robert Vander Molen ; with photos. by Hardie Truesdale","New Rivers Press, 1978",bib,2010-09-15 19:31:20,0,1978,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Vander Molen, Robert.",https://catalog.hathitrust.org/Record/6225462,https://hdl.handle.net/2027/uc1.b4359378,New Rivers Press,False,True,[]
uc1.b4359410,0,ic,6225481,,UC,GLAD50905663-B,8018966,"0898230292,9780898230291",,81083881,Changing the past / Laurie Taylor ; drawings by Randall Scholes,"New Rivers Press : Distributed by Bookslinger ; Small Press Distribution, 1981",bib,2010-09-15 19:31:20,0,1981,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Taylor, L. A. 1939-",https://catalog.hathitrust.org/Record/6225481,https://hdl.handle.net/2027/uc1.b4359410,New Rivers Press,False,True,"['the cape rock', 'northeast journal', 'target', 'jerome foundation', None, 'national endowment for the arts', None]"
uc1.b4361098,0,ic,2168197,,UC,GLAD50916262-B,"20185935,25507741","0898231078,9780898231076",,88062983,"Sampo, the magic mill : a collection of Finnish-American writing / edited by Aili Jarvenpa & Michael G. Karni ; graphics by Oili Mäki.","New Rivers Press ; Distributed by the Talman Co., c1989.",bib,2010-09-15 20:36:04,0,1989,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/2168197,https://hdl.handle.net/2027/uc1.b4361098,New Rivers Press,True,True,"['regional arts council', 'first bank system foundation', None, 'united arts']"
uc1.b4362250,0,ic,6225916,,UC,GLAD50918879-B,1505430,"0912284668,9780912284668",,75314880,Planting beeches : [poems] / Jerzy Harasymowicz ; translated by Victor Contoski,"New Rivers Press, 1975",bib,2009-06-28 21:30:05,0,1975,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Harasymowicz, Jerzy, 1933-1999.",https://catalog.hathitrust.org/Record/6225916,https://hdl.handle.net/2027/uc1.b4362250,New Rivers Press,False,False,[]
uc1.b4362476,0,ic,695535,,UC,GLAD50919595-B,1993036,"0912284714,0912284722,9780912284712,9780912284729",,75021973,Running : poems and drawings / Nathan Whiting,"New Rivers Press ; distributed by Serendipity Books, 1975",bib,2010-09-15 19:31:21,0,1975,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Whiting, Nathan, 1946-",https://catalog.hathitrust.org/Record/695535,https://hdl.handle.net/2027/uc1.b4362476,New Rivers Press,False,False,[]
uc1.b4362493,0,ic,6225963,,UC,GLAD50919620-B,749520,"0912284390,0912284404,9780912284392,9780912284408",,"72096038,72096038//r92",New and selected poems. Introd. by William Matthews. Drawings by Deborah Eddy.,"New Rivers Press; [distributed by Serendipity Books, Berkeley, Calif.] 1973.",bib,2010-09-15 20:31:16,0,1973,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Wild, Peter, 1940-",https://catalog.hathitrust.org/Record/6225963,https://hdl.handle.net/2027/uc1.b4362493,New Rivers Press,False,False,[]
uc1.b4362501,0,ic,6225966,,UC,GLAD50919632-B,152381,"091228417X,0912284188,9780912284170,9780912284187",,70150786,Wild's magical book of cranial effusions / by Peter Wild ; with illustrations selected from various sources and modified by Thomas T. Beeler,"New Rivers Press, 1971",bib,2009-08-05 22:30:18,0,1971,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Wild, Peter, 1940-",https://catalog.hathitrust.org/Record/6225966,https://hdl.handle.net/2027/uc1.b4362501,New Rivers Press,False,False,[]
uc1.b4363093,0,ic,2597123,,UC,GLAD50921415-B,25372597,"0888011652,0898231469,9780888011657,9780898231465",,"cn 92098020,cn92098020","Beyond borders : an anthology of new writing from Manitoba, Minnesota, Saskatchewan and the Dakotas / Mark Vinz and Dave Williamson, editors.","New Rivers Press ; Turnstone Press, c1992.",bib,2009-08-05 23:30:37,0,1992,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/2597123,https://hdl.handle.net/2027/uc1.b4363093,New Rivers Press,True,True,"['the dakotas mark vinz and dave williamson', None, 'south dakota arts council', 'national endowment for the arts', 'first bank system foundation', None, 'united arts', 'liberty state bank', 'tennant company foundation', None, None, None, 'the state legislature', 'national endowment for the arts']"
uc1.b4363420,0,ic,726786,,UC,b167899739,6278467,"0898230136,9780898230130",,79057158,Unease / Tadeusz Różewicz ; translated from the Polish by Victor Contoski ; woodcuts by Gaylord Schanilec.,"New Rivers Press ; distributed by SBD: Small Press Distribution, 1980.",bib,2011-03-10 19:30:51,0,1980,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Różewicz, Tadeusz.",https://catalog.hathitrust.org/Record/726786,https://hdl.handle.net/2027/uc1.b4363420,New Rivers Press,False,True,[]
uc1.b4366008,0,ic,6226727,,UC,GLAD50932119-B,20832233,"0898231159,9780898231151",,89062212,This body she's entered : poems / by Mary Kay Rummel ; with drawings by Sandra Rummel.,"New Rivers Press ; distributed by Talman Company, c1989.",bib,2010-09-15 19:31:23,0,1989,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Rummel, Mary Kay.",https://catalog.hathitrust.org/Record/6226727,https://hdl.handle.net/2027/uc1.b4366008,New Rivers Press,True,True,"[""saturday's women anthology"", 'jerome foundation', 'first bank system foundation', None, 'united arts', 'national endowment for the arts']"
uc1.b4366017,0,ic,6226731,,UC,GLAD50932169-B,15607479,"0898230861,9780898230864",,86063557,Holidays : short stories / by Lisa Ruffolo ; with artworks by Kathryn Wright.,"New Rivers Press ; Distributed by Talman Co., 1987.",bib,2009-07-18 22:30:11,0,1987,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Ruffolo, Lisa.",https://catalog.hathitrust.org/Record/6226731,https://hdl.handle.net/2027/uc1.b4366017,New Rivers Press,True,True,"['the beloit fiction journal', 'jerome foundation', 'target', 'first bank system foundation', 'national endowment for the arts']"
uc1.b4366036,0,ic,6226741,,UC,GLAD50932732-B,7649144,"0898230187,9780898230185",,80050370,Black leaves / Kenneth Rosen ; drawings by DeWitt Hardy,"New Rivers Press, 1980",bib,2009-06-29 21:30:12,0,1980,miu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Rosen, Kenneth, 1940-",https://catalog.hathitrust.org/Record/6226741,https://hdl.handle.net/2027/uc1.b4366036,New Rivers Press,False,True,['national endowment for the arts']
uc1.b4366052,0,ic,9509748,,UC,b167921630,6890719,"0898230217,9780898230215",,80082124,Sleeping in Damascus / Margaret Shafer ; with drawings by Karin Valum.,"New Rivers Press ; distributed by Small Press Distribution, 1980.",bib,2011-03-15 20:31:40,0,1980,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Shafer, Margaret.",https://catalog.hathitrust.org/Record/9509748,https://hdl.handle.net/2027/uc1.b4366052,New Rivers Press,False,True,[]
uc1.b4366054,0,ic,6226749,,UC,GLAD50932773-B,20979874,"0898231167,9780898231168",,89062213,Borrowed voices : a collection of stories / by Roger Sheffer ; with graphics by Nicholas Hill.,"New Rivers Press ; distributed by Talman Co., c1990.",bib,2009-08-05 21:30:11,0,1990,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Sheffer, Roger.",https://catalog.hathitrust.org/Record/6226749,https://hdl.handle.net/2027/uc1.b4366054,New Rivers Press,True,True,"['jerome foundation', 'first bank system foundation', None, 'united arts', 'national endowment for the arts', None, None]"
uc1.b4366123,0,ic,4457556,,UC,GLAD50933281-B,6278464,"0898230144,9780898230147",,79057157,Wilderness / Peter Wild ; drawings by Hannah Hinchman,"New Rivers Press ; distributed by Small Press Distribution, 1980",bib,2009-08-05 21:30:11,0,1980,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Wild, Peter, 1940-",https://catalog.hathitrust.org/Record/4457556,https://hdl.handle.net/2027/uc1.b4366123,New Rivers Press,False,True,['national endowment for the arts']
uc1.b4366178,0,ic,9509721,,UC,b167920212,8019132,"0898230268,9780898230260",,81083878,The heron dancer : and other stories of the North / John Solensten ; drawings by Jean Allan-Ales.,"New Rivers Press : Distributed by Bookslinger ; Distributed by Small Press Distribution, 1981.",bib,2011-03-10 20:31:37,0,1981,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Solensten, John.",https://catalog.hathitrust.org/Record/9509721,https://hdl.handle.net/2027/uc1.b4366178,New Rivers Press,False,True,"['target', 'jerome foundation', None, 'national endowment for the arts', None, 'minnesota state legislature', 'the minnesota voices project books are distributed by bookslinger small press distribution']"
uc1.b4366180,0,ic,6226814,,UC,GLAD50931999-B,19619814,"0898231108,9780898231106",,88062984,In the longboats with others / Susan Sonde ; with graphics by Nicholas Hill,"New Rivers Press ; Distributed by the Talman Co., 1988",bib,2010-09-15 20:36:05,0,1988,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Sonde, Susan.",https://catalog.hathitrust.org/Record/6226814,https://hdl.handle.net/2027/uc1.b4366180,New Rivers Press,True,True,"[None, 'first bank system foundation', None, 'united arts', 'mcknight foundation', 'the creative arts']"
uc1.b4366204,0,ic,9509723,,UC,b167920388,9146601,"089823039X,9780898230390",,82081365,Turmoil in Hungary : an anthology of twentieth century Hungarian poetry / edited and translated by Nicholas Kolumban ; with photographs by Peter Korniss ; with an introduction by Peter Klappert.,"New Rivers Press ; distributed by Small Press Distribution, Inc., 1982.",bib,2011-03-15 21:31:30,0,1982,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/9509723,https://hdl.handle.net/2027/uc1.b4366204,New Rivers Press,True,True,[None]
uc1.b4373333,0,ic,470325,,UC,b167958719,12437363,"0898230624,0946162204,9780898230628,9780946162208",,85060563,The Slavs beneath Parnassus : selected poems /,"Angel Books ; New Rivers Press : Bookslinger [U.S. distributor] ; Small Press Distributor [U.S. distributor], 1985.",bib,2011-03-05 19:30:34,0,1985,enk,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/470325,https://hdl.handle.net/2027/uc1.b4373333,New Rivers Press,True,True,"['mcknight foundation', None, 'united arts']"
uc1.b4394165,0,ic,6232529,,UC,GLAD51033112-B,21202253,"0898231124,9780898231120",,89062208,Dismal river : a narrative poem / Ron Block ; with pictures by Gaylord Schanilec,"New Rivers Press ; Distributed by Talman Co., 1990",bib,2010-09-03 20:35:18,0,1990,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Block, Ron.",https://catalog.hathitrust.org/Record/6232529,https://hdl.handle.net/2027/uc1.b4394165,New Rivers Press,True,True,"['jerome foundation', 'first bank system foundation', None, 'united arts', 'national endowment for the arts', None, None]"
uc1.b4394186,0,ic,6232543,,UC,GLAD51033460-B,4535782,"0912284935,9780912284934",,77094043,The house / Victor Depta,"New Rivers Press, 1978",bib,2010-09-03 20:35:18,0,1978,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Depta, Victor.",https://catalog.hathitrust.org/Record/6232543,https://hdl.handle.net/2027/uc1.b4394186,New Rivers Press,False,True,"['victor m. depta library of congress catalog card number', None]"
uc1.b4394189,0,ic,9513461,,UC,b168081878,25144682,"0898231302,9780898231304",,91061255,Billy Brazil : a novella / Emilio DeGrazia.,"New Rivers Press ; Distributed by Talman Co., 1992.",bib,2011-03-15 21:33:27,0,1992,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"DeGrazia, Emilio.",https://catalog.hathitrust.org/Record/9513461,https://hdl.handle.net/2027/uc1.b4394189,New Rivers Press,True,True,"['them dr. kristi lane', 'jerome foundation', 'metropolitan regional arts council', 'minnesota state legislature', None, 'united arts', 'first bank system foundation', 'liberty state bank', 'star tribune foundation', 'tennant company foundation', 'national endowment for the arts', None]"
uc1.b4394230,0,ic,9513474,,UC,b168082305,15607644,"0898230853,9780898230857",,86063554,The wind : a novella / by Patricia Barone ; with artworks by the author.,"New Rivers Press ; Distributed by Talman Co., 1987.",bib,2011-03-14 21:31:42,0,1987,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Barone, Patricia.",https://catalog.hathitrust.org/Record/9513474,https://hdl.handle.net/2027/uc1.b4394230,New Rivers Press,True,True,"['jerome foundation', None, 'first bank system foundation', 'national endowment for the arts']"
uc1.b4394231,0,ic,2560559,,UC,GLAD51033863-B,22778189,"089823123X,9780898231236",,,No peace at Versailles : and other stories / Nina Barragan.,New Rivers Press ; 1991.,bib,2010-09-03 20:35:18,0,1991,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Barragan, Nina.",https://catalog.hathitrust.org/Record/2560559,https://hdl.handle.net/2027/uc1.b4394231,New Rivers Press,True,True,"['jerome foundation', None, 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'cray research foundation', 'first bank system foundation', 'liberty state bank', 'star tribune foundation', 'tennant company foundation', 'national endowment for the arts']"
uc1.b4394310,0,ic,4449505,,UC,GLAD51034040-B,6036884,"0898230071,9780898230079",,79064150,Names / Victor Contoski,New Rivers Press ; c1979,bib,2010-09-03 20:31:10,0,1979,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Contoski, Victor.",https://catalog.hathitrust.org/Record/4449505,https://hdl.handle.net/2027/uc1.b4394310,New Rivers Press,False,True,"['national endowment for the arts', None]"
uc1.b4394319,0,ic,6232615,,UC,GLAD51034049-B,22778188,"0898231191,9780898231199",,,But I won't go out in a boat : poems / by Sharon Chmielarz.,"New Rivers Press ; distributed by Talman Co., c1991.",bib,2010-09-19 20:32:16,0,1991,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Chmielarz, Sharon.",https://catalog.hathitrust.org/Record/6232615,https://hdl.handle.net/2027/uc1.b4394319,New Rivers Press,True,True,"['jerome foundation', None, 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'cray research foundation', 'first bank system foundation', 'liberty state bank', 'star tribune foundation', 'tennant company foundation', 'national endowment for the arts']"
uc1.b4394320,0,ic,6232616,,UC,GLAD51034050-B,9065027,"089823042X,9780898230420",,82061650,Different arrangements / Sharon Chmielarz ; with drawings by Gaylord Schanilec,"New Rivers Press : Distributed by Bookslinger ; Distributed by Small Press Distribution, Inc., 1982",bib,2010-09-03 20:32:29,0,1982,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Chmielarz, Sharon.",https://catalog.hathitrust.org/Record/6232616,https://hdl.handle.net/2027/uc1.b4394320,New Rivers Press,True,True,"[""minnesota monthly (“lines”')"", 'jerome foundation', 'northwest area foundation', 'united arts', ""st. benedict's college literary magazine (“carl's stone”)""]"
uc1.b4401566,0,ic,9514195,,UC,b168116893,20954373,"0898231132,9780898231137",,"89-62209,89062209","Out far, in deep : short stories / by Alvin Handelman ; with graphics by Sharon Brown.","New Rivers Press ; Distributed by Talman Co., c1990.",bib,2011-03-14 21:31:53,0,1990,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Handelman, Alvin.",https://catalog.hathitrust.org/Record/9514195,https://hdl.handle.net/2027/uc1.b4401566,New Rivers Press,True,True,"['jerome foundation', 'first bank system foundation', None, 'mcknight foundation', 'national endowment for the arts', None, None]"
uc1.b4401637,0,ic,9514247,,UC,b168119031,8952954,"0898230276,9780898230277",,82103522,The normal heart / Madelon Sprengnether Gohlke ; drawings by C.D. O'Hare.,"New Rivers Press : Distributed by Bookslinger ; Small Press Distribution, 1981.",bib,2013-04-04 19:26:22,0,1981,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Sprengnether, Madelon.",https://catalog.hathitrust.org/Record/9514247,https://hdl.handle.net/2027/uc1.b4401637,New Rivers Press,False,True,"['target', 'jerome foundation', None, 'national endowment for the arts', None, 'minnesota state legislature', 'the minnesota voices project books are distributed by']"
uc1.b4401645,0,ic,6234027,,UC,GLAD51067485-B,9453798,"0898230446,9780898230444",,82061648,Deposition / Pete Green ; with drawings by Gaylord Schanilec,"New Rivers Press ; Distributed by Small Press Distribution, Inc., 1982",bib,2010-09-02 19:31:01,0,1982,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Green, Pete.",https://catalog.hathitrust.org/Record/6234027,https://hdl.handle.net/2027/uc1.b4401645,New Rivers Press,True,True,[None]
uc1.b4402002,0,ic,2228787,,UC,GLAD51067503-B,22123132,"0898231183,9780898231182",,89062215,In the shadow of the gourd : a collection of poems / Malcolm Glass ; with graphics by Bruce Childs.,"New Rivers Press ; Distributed by Talman Co., 1990.",bib,2010-09-04 19:32:45,0,1990,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Glass, Malcolm.",https://catalog.hathitrust.org/Record/2228787,https://hdl.handle.net/2027/uc1.b4402002,New Rivers Press,True,True,"['first bank system foundation', None, 'united arts', 'mcknight foundation']"
uc1.b4402219,0,ic,9514416,,UC,b168124932,7722124,"0898230241,9780898230246",,81080549,White flowers in the snow / Penny Harter ; with drawings by Gilbert Riou.,"New Rivers Press ; Distributed by Small Press Distribution, 1981.",bib,2011-03-14 21:31:56,0,1981,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Harter, Penny.",https://catalog.hathitrust.org/Record/9514416,https://hdl.handle.net/2027/uc1.b4402219,New Rivers Press,False,True,[]
uc1.b4402228,0,ic,6234182,,UC,GLAD51069416-B,11717520,"089823056X,9780898230567",,84061822,"Stars above, stars below / Margaret Hasse ; graphics by Mike Lynch.","New Rivers Press ; Distributed by Small Press Distribution, 1984.",bib,2010-09-02 19:32:05,0,1984,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Hasse, Margaret, 1950-",https://catalog.hathitrust.org/Record/6234182,https://hdl.handle.net/2027/uc1.b4402228,New Rivers Press,True,True,"['south dakota arts council', 'jerome foundation', 'target', 'united arts', 'first bank system foundation', 'regional arts council', 'minnesota state legislature']"
uc1.b4402385,0,ic,9514425,,UC,b168125456,16733630,"0898230926,9780898230925",,85060568,Death of the Plankton Bar & Grill / Kathryn Nocerino ; with artworks by Cynthia Carlson.,"New Rivers Press, 1987.",bib,2013-04-04 19:26:22,0,1987,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Nocerino, Kathryn.",https://catalog.hathitrust.org/Record/9514425,https://hdl.handle.net/2027/uc1.b4402385,New Rivers Press,True,True,"['first bank system foundation', 'national endowment for the arts']"
uc1.b4402425,0,ic,6234243,,UC,GLAD51069591-B,11743003,"0898230578,9780898230574",,84061823,Matty's heart / C.J. Hribal ; drawings by Tracy Turner.,"New Rivers Press : Distributed by Bookslinger ; Distributed by Small Press Distribution, c1984.",bib,2010-09-03 20:35:29,0,1984,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Hribal, C. J.",https://catalog.hathitrust.org/Record/6234243,https://hdl.handle.net/2027/uc1.b4402425,New Rivers Press,True,True,"['jerome foundation', None, 'first bank system foundation', None, 'mcknight foundation', 'metropolitan regional arts council', 'minnesota state legislature']"
uc1.b4403565,0,ic,6234492,,UC,GLAD51069576-B,9108965,"0898230438,9780898230437",,82061649,We'll come when it rains / Yvette Nelson,"New Rivers Press : Distributed by Bookslinger ; Distributed by Small Press Distribution, 1982",bib,2010-09-02 19:32:40,0,1982,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Nelson, Yvette, 1940-",https://catalog.hathitrust.org/Record/6234492,https://hdl.handle.net/2027/uc1.b4403565,New Rivers Press,True,True,"['jerome foundation', 'northwest area foundation', 'united arts']"
uc1.b4403566,0,ic,6234493,,UC,GLAD51069577-B,17356046,"0898230934,9780898230932",,86063561,Villy sadness : a novella / by Rodney Nelson ; with drawings by Trygve Olson.,"New Rivers Press, 1987.",bib,2010-09-02 19:31:02,0,1987,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Nelson, Rodney.",https://catalog.hathitrust.org/Record/6234493,https://hdl.handle.net/2027/uc1.b4403566,New Rivers Press,True,True,"['first bank system foundation', 'national endowment for the arts']"
uc1.b4407722,0,ic,6235354,,UC,GLAD51081089-B,6864641,"0898230195,9780898230192",,80050371,"Wax lips / Kathryn Nocerino ; [collages, Kathryn Nocerino]","New Rivers Press ; distributed by SBD, Small Press Distribution, 1980",bib,2010-09-02 19:32:08,0,1980,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Nocerino, Kathryn.",https://catalog.hathitrust.org/Record/6235354,https://hdl.handle.net/2027/uc1.b4407722,New Rivers Press,False,True,['national endowment for the arts']
uc1.b4411781,0,ic,6236069,,UC,GLAD51094725-B,3111556,"0912284854,9780912284859",,,Common elegies / Charles Molesworth ; drawings by John Dobbs,"New Rivers Press, 1977",bib,2010-08-28 19:30:17,0,1977,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Molesworth, Charles, 1941-",https://catalog.hathitrust.org/Record/6236069,https://hdl.handle.net/2027/uc1.b4411781,New Rivers Press,False,True,"['national endowment for the arts', None]"
uc1.b4411818,0,ic,6236076,,UC,GLAD51095186-B,6567947,"0898230160,9780898230161",,,The transatlantic flight of the angel Death : poems / by Catherine Murray ; drypoints by Dan Werner.,"New Rivers Press, 1980.",bib,2010-08-27 20:31:14,0,1980,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Murray, Catherine.",https://catalog.hathitrust.org/Record/6236076,https://hdl.handle.net/2027/uc1.b4411818,New Rivers Press,False,True,['national endowment for the arts']
uc1.b4411836,0,ic,6236087,,UC,GLAD51095254-B,5330353,"0898230055,9780898230055",,79084326,The spiders / John Minczeski ; drawings by Alvaro Cardona-Hine,"New Rivers Press ; distributed by SBD: Small Press Distribution, 1979",bib,2010-08-28 20:30:37,0,1979,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Minczeski, John.",https://catalog.hathitrust.org/Record/6236087,https://hdl.handle.net/2027/uc1.b4411836,New Rivers Press,False,True,"['national endowment for the arts', None]"
uc1.b4411837,0,ic,9515203,,UC,b168163329,7446220,"0898230233,9780898230239",,81080546,The reconstruction of light / John Minczeski ; drawings by Alvaro Cardona-Hine.,"New Rivers Press ; Small Press Distribution, 1981.",bib,2011-03-15 21:31:43,0,1981,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Minczeski, John.",https://catalog.hathitrust.org/Record/9515203,https://hdl.handle.net/2027/uc1.b4411837,New Rivers Press,False,True,['minnesota state arts board']
uc1.b4420515,0,ic,6237478,,UC,GLAD51125924-B,6086433,"0898230128,9780898230123",,79067704,Plum Gut / Thomas Frosch,"New Rivers Press ; distributed by SBD, Small Press Distribution, 1979",bib,2010-08-27 19:30:36,0,1979,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Frosch, Thomas R.",https://catalog.hathitrust.org/Record/6237478,https://hdl.handle.net/2027/uc1.b4420515,New Rivers Press,False,True,[]
uc1.b4420593,0,ic,6237520,,UC,GLAD51126188-B,4873368,"0898230012,9780898230017",,78068644,Winter journey / Halvard Johnson ; with drawings by Basil King,"New Rivers Press, 1979",bib,2010-08-27 20:32:05,0,1979,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Johnson, Halvard, 1936-",https://catalog.hathitrust.org/Record/6237520,https://hdl.handle.net/2027/uc1.b4420593,New Rivers Press,False,True,[]
uc1.b4420647,0,ic,9515402,,UC,b168180108,18067338,"0898231000,9780898231007",,88060578,More or less urgent : poems / by Nina Zivancevic ; with photographs by Sokhi Wagner.,"New Rivers Press, 1988.",bib,2011-03-15 21:33:29,0,1988,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,1957-,https://catalog.hathitrust.org/Record/9515402,https://hdl.handle.net/2027/uc1.b4420647,New Rivers Press,True,True,"['first bank system foundation', 'united arts', 'mcknight foundation', 'national endowment for the arts']"
uc1.b4430763,0,ic,6239044,,UC,GLAD84484134-B,3114509,,,76049677,Occupied country / Olga Cabral.,"New Rivers Press, 1976.",bib,2013-05-03 19:25:29,0,1976,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Cabral, Olga.",https://catalog.hathitrust.org/Record/6239044,https://hdl.handle.net/2027/uc1.b4430763,New Rivers Press,False,False,"['national endowment for the arts', None]"
uc1.b4431276,0,ic,4452866,,UC,b168307029,7446180,"0898230225,9780898230222",,81080547,Household wounds / Deborah Keenan ; drawings by Gaylord Schanilec.,"New Rivers Press ; Small Press Distribution, 1981.",bib,2011-03-15 21:33:37,0,1981,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Keenan, Deborah.",https://catalog.hathitrust.org/Record/4452866,https://hdl.handle.net/2027/uc1.b4431276,New Rivers Press,False,True,[]
uc1.b4431286,0,ic,9516961,,UC,b168307133,4949535,"091228496X,9780912284965",,78061000,Weather / Martha King ; with drawings by Basil King.,"New Rivers Press, 1978.",bib,2011-03-15 20:32:01,0,1978,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"King, Martha.",https://catalog.hathitrust.org/Record/9516961,https://hdl.handle.net/2027/uc1.b4431286,New Rivers Press,False,True,[]
uc1.b4431372,0,ic,6239229,,UC,GLAD84485343-B,16072681,"089823090X,9780898230901",,,Reception at the Mongolian embassy : poetry and translations / by Nicholas Kolumban.,"New Rivers Press, 1987.",bib,2010-08-25 20:31:11,0,1987,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Kolumban, Nicholas.",https://catalog.hathitrust.org/Record/6239229,https://hdl.handle.net/2027/uc1.b4431372,New Rivers Press,True,True,"['first bank system foundation', 'national endowment for the arts']"
uc1.b4450296,0,ic,4486131,,UC,GLAD84541114-B,3085043,"0912284862,9780912284866",,,The book of Rimbaud / Keith Abbott,"New Rivers Press, 1977",bib,2010-08-22 20:34:02,0,1977,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Abbott, Keith, 1944-",https://catalog.hathitrust.org/Record/4486131,https://hdl.handle.net/2027/uc1.b4450296,New Rivers Press,False,True,"[None, 'national endowment for the arts']"
uc1.b4451036,0,ic,6242254,,UC,GLAD84543280-B,50293,,,75089805,Transparencies and projections : poems / by Halvard Johnson ; artwork by Leonel Gongora,"New Rivers Press, c1969",bib,2010-08-22 20:31:32,0,1969,nyu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Johnson, Halvard, 1936-",https://catalog.hathitrust.org/Record/6242254,https://hdl.handle.net/2027/uc1.b4451036,New Rivers Press,False,False,[]
uc1.b4582772,0,ic,9497076,,UC,b167177928,11031472,"0898230543,9780898230543",,84060335,Border crossings : a Minnesota voices project reader / edited by Jonis Agee ... [et al].,"New Rivers Press, 1984.",bib,2011-03-11 19:31:47,0,1984,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/9497076,https://hdl.handle.net/2027/uc1.b4582772,New Rivers Press,True,True,"['united arts', 'mcknight foundation', 'national endowment for the arts', 'target']"
uc1.b4948694,0,ic,139822,,UC,b16749837x,6754924,"0898230209,9780898230208",,80081942,Blood of their blood : an anthology of Polish-American poetry / edited by Victor Contoski ; paper cuttings by Wieslawa Contoski.,"New Rivers Press ; American Council of Polish Cultural Clubs, 1980.",bib,2011-11-29 19:32:23,0,1980,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/139822,https://hdl.handle.net/2027/uc1.b4948694,New Rivers Press,False,True,[]
uc1.b4950748,0,ic,9491174,,UC,b167506821,6143226,"089823011X,9780898230116",,79066916,Songs of the gypsy women / Susu Jeffrey ; drawings by Frederick Andersen.,"New Rivers Press ; distributed by SBD, Small Press Distribution, 1979.",bib,2011-12-03 19:30:45,0,1979,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Jeffrey, Susu.",https://catalog.hathitrust.org/Record/9491174,https://hdl.handle.net/2027/uc1.b4950748,New Rivers Press,False,True,['national endowment for the arts']
uc1.b4973120,0,ic,9491074,,UC,b167598727,16472238,"089823087X,9780898230871",,86063553,"Once, a lotus garden : and other stories / by Jessica Saiki, with drawings by the author.","New Rivers Press ; Distributed by Talman Co., 1987.",bib,2011-12-05 19:31:11,0,1987,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Saiki, Jessica.",https://catalog.hathitrust.org/Record/9491074,https://hdl.handle.net/2027/uc1.b4973120,New Rivers Press,True,True,"['jerome foundation', None, 'first bank system foundation', 'national endowment for the arts']"
uc1.b4975686,0,ic,2530181,,UC,b167610089,22884419,"0898231280,9780898231281",,"90-61094,90061094",Iron woman : poems / by Diane Glancy.,"New Rivers Press, 1990.",bib,2011-11-22 19:30:36,0,1990,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Glancy, Diane.",https://catalog.hathitrust.org/Record/2530181,https://hdl.handle.net/2027/uc1.b4975686,New Rivers Press,True,True,"[None, None, 'united arts', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', 'cray research foundation', 'first bank system foundation', 'liberty state bank', 'star tribune foundation', 'tennant company foundation', None, 'national endowment for the arts']"
uc1.b4975703,0,ic,4511601,,UC,b167607273,18003235,"0898230985,9780898230987",,87062991,Concert at Chopin's house : a collection of Polish-American writing / edited by John Minczeski.,"New Rivers Press : Distributed by Bookslinger ; Distributed by The Talman Company, 1987.",bib,2011-11-22 19:30:36,0,1987,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/4511601,https://hdl.handle.net/2027/uc1.b4975703,New Rivers Press,True,True,"['metropolitan regional arts council', 'minnesota state legislature', 'first bank system foundation', 'national endowment for the arts']"
uc1.c022619284,0,ic,676642,v.1 (fall 1960-summer 1961),UC,b100142825,"1779874,2235021",,00265667,2007215129,The Minnesota review,"Duke University Press, Minnesota Review, New Rivers Press, Minnesota Review",bib,2020-01-18 03:26:13,0,1961,nyu,eng,SE,UCBK,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/676642,https://hdl.handle.net/2027/uc1.c022619284,New Rivers Press,False,False,[]
umn.31951002470533s,0,ic,7472785,,UMN,000994602,19970103,"0898230454,9780898230451",,83080389,"Rivers, stories, houses, dreams / Madelon Sprengnether ; drawings by C.D. O'Hare.","New Rivers Press, 1983.",bib,2015-01-11 03:25:47,0,1983,mnu,eng,BK,UMN,umn,umn,google,google,"Sprengnether, Madelon.",https://catalog.hathitrust.org/Record/7472785,https://hdl.handle.net/2027/umn.31951002470533s,New Rivers Press,True,True,"[None, None]"
umn.31951p00078855c,0,ic,4497783,,UMN,001709079,22980264,"0898231221,9780898231229",,90061093,The House on Via Gombito : writing by North American women abroad / edited by Madelon Sprengnether & C.W. Truesdale.,"New Rivers Press ; Distributed by Talman Co., c1991.",bib,2015-01-13 03:25:17,0,1991,mnu,eng,BK,UMN,umn,umn,google,google,,https://catalog.hathitrust.org/Record/4497783,https://hdl.handle.net/2027/umn.31951p00078855c,New Rivers Press,True,True,"[None, None, 'cray research foundation', 'first bank system foundation', 'liberty state bank', 'star tribune foundation', 'tennant company foundation', 'national endowment for the arts', None, 'john and beverly rollwagen foundation']"
umn.31951p00146021a,0,ic,4511601,,UMN,002292530,18003235,"0898230985,9780898230987",,87062991,Concert at Chopin's house : a collection of Polish-American writing / edited by John Minczeski.,"New Rivers Press : Distributed by Bookslinger ; Distributed by The Talman Company, 1987.",bib,2015-01-13 03:25:16,0,1987,mnu,eng,BK,UMN,umn,umn,google,google,,https://catalog.hathitrust.org/Record/4511601,https://hdl.handle.net/2027/umn.31951p00146021a,New Rivers Press,True,True,"['metropolitan regional arts council', 'minnesota state legislature', 'first bank system foundation', 'national endowment for the arts']"
umn.31951p006987257,0,ic,4081244,,UMN,001267386,45018141,"0898232066,9780898232066",,99068471,"Tilting the continent : Southeast Asian American writing / Shirley Geok-lin Lim and Cheng Lok Chua, editors.","New Rivers Press, 2000.",bib,2015-01-08 03:25:19,0,2000,mnu,eng,BK,UMN,umn,umn,google,google,,https://catalog.hathitrust.org/Record/4081244,https://hdl.handle.net/2027/umn.31951p006987257,New Rivers Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'general mills foundation', 'mcknight foundation', 'star tribune foundation']"
uva.x002119814,0,ic,7109833,,UVA,u1950977,25277058,"0898231310,9780898231311",,91061256,Mykonos : a memoir / by Nancy Raeburn.,"New Rivers Press ; Distributed by Talman Co., 1992.",bib,2017-05-31 03:25:46,0,1992,mnu,eng,BK,UVA,virginia,virginia,google,google,"Raeburn, Nancy.",https://catalog.hathitrust.org/Record/7109833,https://hdl.handle.net/2027/uva.x002119814,New Rivers Press,True,True,"['target', 'metropolitan regional arts council', 'minnesota state legislature', None, 'united arts', 'first bank system foundation', 'liberty state bank', 'star tribune foundation', 'tennant company foundation', 'national endowment for the arts', None]"
coo.31924104870799,0,ic,9132939,,COO,5992771,70660147,"1571313001,9781571313003",,2006023504,"Hope, human and wild : true stories of living lightly on the earth / Bill McKibben.","Milkweed Editions, 2007.",bib,2010-12-08 19:31:58,0,2007,mnu,eng,BK,COO,cornell,cornell,google,google,"McKibben, Bill.",https://catalog.hathitrust.org/Record/9132939,https://hdl.handle.net/2027/coo.31924104870799,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', None, 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'greystone foundation', 'constance b. kunin', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'serene and christopher warren', 'w. m. foundation', 'xcel energy foundation', None, None, None, 'debbie reynolds', None]"
hvd.32044133772533,0,ic,102324961,,HVD,014577856,877365971,"1571313575,1571313583,157131928X,9781571313577,9781571313584,9781571319289",,2014017309,Adventures in the anthropocene : a journey to the heart of the planet we made / Gaia Vince.,"Milkweed Editions, 2014.",bib,2019-01-10 03:26:02,0,2014,mnu,eng,BK,HVD,harvard,harvard,harvard,open,"Vince, Gaia,",https://catalog.hathitrust.org/Record/102324961,https://hdl.handle.net/2027/hvd.32044133772533,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', None, 'jerome foundation', 'mcknight foundation', 'national endowment for the arts', 'target', 'minnesota state arts board', 'wells fargo foundation minnesota']"
inu.30000044501959,0,ic,7586838,,INU,494886,28928726,"0915943816,9780915943814",,93037769,Kingfishers catch fire / Rumer Godden.,"Milkweed Editions, 1994.",bib,2014-10-01 03:26:25,0,1994,mnu,eng,BK,INU,iu,iu,google,google,"Godden, Rumer, 1907-1998",https://catalog.hathitrust.org/Record/7586838,https://hdl.handle.net/2027/inu.30000044501959,Milkweed Editions,True,True,"['target', 'general mills foundation', 'honeywell foundation', 'knight foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""i. a. o'shaughnessy foundation"", 'piper family fund of the minneapolis foundation', 'piper jaffray companies, inc.', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', 'unity avenue foundation', ""lila wallace reader's digest fund"", 'council of literary magazines and presses']"
inu.30000068153612,0,ic,7980094,,INU,2887700,36042466,"1571312110,9781571312112",,96052086,Boundary waters : the grace of the wild / Paul Gruchow.,"Milkweed Editions ; Distributed by Publishers Group West, 1997.",bib,2014-09-26 03:26:29,0,1997,mnu,eng,BK,INU,iu,iu,google,google,"Gruchow, Paul.",https://catalog.hathitrust.org/Record/7980094,https://hdl.handle.net/2027/inu.30000068153612,Milkweed Editions,True,True,"['target', 'target', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'challenge and literature programs of the national endowment for the arts', 'kate and stuart nielsen', 'piper jaffray companies, inc.', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'james r. thorpe foundation', None, None]"
inu.30000068224256,0,ic,9801813,,INU,4703622,42786208,"1571312404,1571312412,9781571312402,9781571312419",,99055767,Shaped by wind and water : reflections of a naturalist / Ann Haymond Zwinger.,"Milkweed Editions, 2000.",bib,2014-09-30 03:25:57,0,2000,mnu,eng,BK,INU,iu,iu,google,google,"Zwinger, Ann.",https://catalog.hathitrust.org/Record/9801813,https://hdl.handle.net/2027/inu.30000068224256,Milkweed Editions,True,True,"['creation and presentation programs of the national endowment for the arts', 'ford bell foundation', 'bush foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'norwest foundation', 'norwest foundation', 'norwest investment management and trust', 'oswald family foundation', 'ritz foundation', 'st. paul companies', 'star tribune foundation', 'target', 'target', 'u.s. bancorp piper jaffray foundation', ""lila wallace reader's digest fund""]"
inu.30000076375660,0,ic,6023669,,INU,4703655,,"1571312374,9781571312372",,99016274,"The barn at the end of the world : the apprenticeship of a Quaker, Buddhist shepherd / Mary Rose O'Reilley.","Milkweed Editions, c2000.",bib,2009-10-17 22:30:34,0,2000,mnu,eng,BK,INU,iu,iu,google,google,"O'Reilley, Mary Rose.",https://catalog.hathitrust.org/Record/6023669,https://hdl.handle.net/2027/inu.30000076375660,Milkweed Editions,True,True,"['national endowment for the arts', 'ford bell foundation', 'bush foundation', 'target', 'target', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'norwest foundation', 'norwest foundation', 'oswald family foundation', 'ritz foundation', None, 'st. paul companies', 'u.s. bancorp piper jaffray foundation']"
mdp.39015014302924,0,ic,1076113,,MIU,990010761130106381,14267492,"0915943158,9780915943159",,,Bad government and silly literature : an essay / by Carol Bly.,"Milkweed Editions, 1986.",bib,2013-04-23 19:25:05,0,1986,mnu,eng,BK,MIU,umich,umich,google,google,"Bly, Carol.",https://catalog.hathitrust.org/Record/1076113,https://hdl.handle.net/2027/mdp.39015014302924,Milkweed Editions,True,True,"['first bank system foundation', 'jerome foundation', 'minnesota state legislature', 'mcknight foundation', None, None]"
mdp.39015014960564,0,ic,1091012,,MIU,990010910120106381,18770598,"0915943328,9780915943326",,88042975,The freedom of history : poems / by Jim Moore.,"Milkweed Editions, c1988.",bib,2012-04-19 19:30:24,0,1988,mnu,eng,BK,MIU,umich,umich,google,google,"Moore, James, 1943-",https://catalog.hathitrust.org/Record/1091012,https://hdl.handle.net/2027/mdp.39015014960564,Milkweed Editions,True,True,"['national endowment for the arts', 'target', 'jerome foundation', 'minnesota state legislature', 'mcknight foundation', 'united arts']"
mdp.39015015309043,0,ic,1820878,,MIU,990018208780106381,19325146,"0915943352,9780915943357",,89003106,"Twin sons of different mirrors : poems in dialogue / Jack Driscoll, Bill Meissner ; photographs by nanct Campbell.","Milkweed Editions, 1989.",bib,2008-06-04 09:30:17,0,1989,mnu,eng,BK,MIU,umich,umich,google,google,"Driscoll, Jack, 1946-",https://catalog.hathitrust.org/Record/1820878,https://hdl.handle.net/2027/mdp.39015015309043,Milkweed Editions,True,True,"['first bank system foundation', 'target', None, 'united arts', 'through the arts development', 'national endowment for the arts']"
mdp.39015015385860,0,ic,845290,,MIU,990008452900106381,17670051,"091594328X,9780915943289",,87042897,Trusting your life to water and eternity : twenty poems of Olav H. Hauge / chosen and translated by Robert Bly ; graphics by Kaare Espolin Johnson.,"Milkweed Editions, 1987.",bib,2009-06-19 22:30:36,0,1987,miu,eng,BK,MIU,umich,umich,google,google,"Hauge, Olav H.",https://catalog.hathitrust.org/Record/845290,https://hdl.handle.net/2027/mdp.39015015385860,Milkweed Editions,True,True,"[None, 'target', 'first bank system foundation', 'jerome foundation', 'mcknight foundation', 'metropolitan council from funds appropriated to the minnesota state arts board']"
mdp.39015015526109,0,ic,1835799,,MIU,990018357990106381,18065541,"0915943247,9780915943241",,87063529,Sweet ones : poems / by Len Roberts.,"Milkweed Editions, c1988.",bib,2012-12-11 19:30:06,0,1988,mnu,eng,BK,MIU,umich,umich,google,google,"Roberts, Len, 1947-2007.",https://catalog.hathitrust.org/Record/1835799,https://hdl.handle.net/2027/mdp.39015015526109,Milkweed Editions,True,True,"['national endowment for the arts', None, 'target', 'target', 'first bank system foundation', 'jerome foundation', 'metropolitan regional arts council', 'minnesota state legislature', 'mcknight foundation', None]"
mdp.39015017684773,0,ic,1096540,,MIU,990010965400106381,18695045,"0915943336,9780915943333",,88042977,The country I come from / by Maura Stanton.,"Milkweed Editions, 1988.",bib,2012-03-17 19:30:17,0,1988,mnu,eng,BK,MIU,umich,umich,google,google,"Stanton, Maura.",https://catalog.hathitrust.org/Record/1096540,https://hdl.handle.net/2027/mdp.39015017684773,Milkweed Editions,True,True,"['national endowment for the arts', 'jerome foundation', None, ""dayton hudson foundation for dayton's and target stores"", ""first bank system foundation's small arts funding program""]"
mdp.39015017698229,0,ic,1952973,,MIU,990019529730106381,20015082,"0915943417,9780915943418",,89012595,Blue taxis : stories about Africa / by Eileen Drew ; foreword by Rosellen Brown ; designed and illustrated by R.W. Scholes.,"Milkweed Editions, 1989.",bib,2008-11-01 23:30:12,0,1989,mnu,eng,BK,MIU,umich,umich,google,google,"Drew, Eileen, 1957-",https://catalog.hathitrust.org/Record/1952973,https://hdl.handle.net/2027/mdp.39015017698229,Milkweed Editions,True,True,"['target', 'target', 'jerome foundation', None, 'national endowment for the arts', 'minnesota state arts board']"
mdp.39015017714976,0,ic,1954928,,MIU,990019549280106381,20013713,"0915943409,9780915943401",,89036393,The color of Mesabi bones : poems and prose poems / by John Caddy ; designed and illustrated by R.W. Scholes.,"Milkweed Editions, 1989.",bib,2012-08-19 19:30:13,0,1989,mnu,eng,BK,MIU,umich,umich,google,google,"Caddy, John.",https://catalog.hathitrust.org/Record/1954928,https://hdl.handle.net/2027/mdp.39015017714976,Milkweed Editions,True,True,"['national endowment for the arts', 'target', 'target', 'first bank system foundation', 'jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'minnesota state arts board', 'the arts de', 'united arts']"
mdp.39015017961460,0,ic,2062293,,MIU,990020622930106381,11478190,"0915943042,9780915943043",,84061733,Backbone : short stories / by Carol Bly.,"Milkweed Editions, 1985, c1984.",bib,2012-08-18 19:30:28,0,1985,mnu,eng,BK,MIU,umich,umich,google,google,"Bly, Carol.",https://catalog.hathitrust.org/Record/2062293,https://hdl.handle.net/2027/mdp.39015017961460,Milkweed Editions,True,True,[None]
mdp.39015018455801,0,ic,2172065,,MIU,990021720650106381,20013720,"0915943425,9780915943425",,89036394,Coming home crazy : an alphabet of China essays / Bill Holm ; introduction by Harrison E. Salisbury.,"Milkweed Editions, 1990.",bib,2012-07-18 19:30:35,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Holm, Bill, 1943-2009.",https://catalog.hathitrust.org/Record/2172065,https://hdl.handle.net/2027/mdp.39015018455801,Milkweed Editions,True,True,"[None, 'national endowment for the arts', None, 'united arts', 'target', 'target', 'general mills foundation', 'jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'minnesota state arts board', 'northwest area foundation', 'star tribune foundation']"
mdp.39015018916836,0,ic,2182298,,MIU,990022191590106381,20994292,"0915943484,9780915943487",,"90-5457,90005457",Passages north anthology / edited by Elinor Benedict ; introduction by Charles Baxter.,"Milkweed Editions, 1990.",bib,2012-06-21 19:30:14,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2182298,https://hdl.handle.net/2027/mdp.39015018916836,Milkweed Editions,True,True,"['the arts foundation of michigan, bay de noc com', None]"
mdp.39015019484875,0,ic,2463559,,MIU,990024635590106381,22911532,"0915943646,9780915943647",,90025969,I won't learn from you : the role of assent in learning / Herbert Kohl.,"Milkweed Editions, c1991.",bib,2013-04-30 19:25:11,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Kohl, Herbert R.",https://catalog.hathitrust.org/Record/2463559,https://hdl.handle.net/2027/mdp.39015019484875,Milkweed Editions,True,True,"['national endowment for the arts', 'star tribune foundation', 'target', 'target', 'first bank system foundation', ""i. a. o'shaughnessy foundation"", 'jerome foundation', 'minnesota state arts board', 'northwest area foundation']"
mdp.39015019590846,0,ic,2430326,,MIU,990024303260106381,21973365,"091594359X,9780915943593",,90041192,Aquaboogie : a novel in stories / Susan Straight.,"Milkweed Editions, 1990.",bib,2012-04-19 19:30:32,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Straight, Susan.",https://catalog.hathitrust.org/Record/2430326,https://hdl.handle.net/2027/mdp.39015019590846,Milkweed Editions,True,True,"['target', 'target', 'jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'mcknight foundation', 'minnesota state arts board', 'northwest area foundation']"
mdp.39015019635013,0,ic,2428005,,MIU,990024280050106381,21036947,"0915943492,9780915943494",,90005500,The house in the sand : prose poems / by Pablo Neruda ; translated by Dennis Maloney and Clark M. Zlotchew ; foreword by Marjorie Agosin ; afterword by Ariel Dorfman.,"Milkweed Editions, 1990.",bib,2012-06-04 10:29:33,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Neruda, Pablo, 1904-1973.",https://catalog.hathitrust.org/Record/2428005,https://hdl.handle.net/2027/mdp.39015019635013,Milkweed Editions,True,True,"['national endowment for the arts', None, 'united arts', 'target', 'target', 'first bank system foundation', 'general mills foundation', 'jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'mcknight foundation', 'minnesota state arts board', 'northwest area foundation']"
mdp.39015021569176,0,ic,2448358,,MIU,990024483580106381,22859150,"0915943638,9780915943630",,90026184,The clay that breathes / by Catherine Browder ; drawings by Stephanie Torbert.,"Milkweed Editions, c1991.",bib,2012-03-12 19:30:23,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Browder, Catherine.",https://catalog.hathitrust.org/Record/2448358,https://hdl.handle.net/2027/mdp.39015021569176,Milkweed Editions,True,True,"['national endowment for the arts', None, 'target', 'first bank system foundation', 'general mills foundation', 'jerome foundation', 'star tribune foundation', 'minnesota state arts board', 'minnesota state legislature', 'mcknight foundation', 'minnesota state arts board', 'northwest area foundation']"
mdp.39015021860591,0,ic,2473789,,MIU,990024737890106381,22731722,"0915943611,9780915943616",,90022663,Agassiz : a novel in stories / by Sandra Birdsell.,"Milkweed Editions, 1991.",bib,2012-08-18 19:30:33,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Birdsell, Sandra, 1942-",https://catalog.hathitrust.org/Record/2473789,https://hdl.handle.net/2027/mdp.39015021860591,Milkweed Editions,True,True,"['national endowment for the arts', 'star tribune foundation', 'target', 'target', 'first bank system foundation', ""i. a. o'shaughnessy foundation"", 'jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation']"
mdp.39015021885994,0,ic,2477159,,MIU,990024771590106381,22906179,"0915943557,9780915943555",,"90-26153,90026153",The dead get by with everything : poems / by Bill Holm.,"Milkweed Editions, 1990.",bib,2012-08-18 19:30:33,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Holm, Bill, 1943-2009",https://catalog.hathitrust.org/Record/2477159,https://hdl.handle.net/2027/mdp.39015021885994,Milkweed Editions,True,True,"['national endowment for the arts', 'star tribune foundation', 'target', 'target', 'first bank system foundation', 'general mills foundation', 'jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation']"
mdp.39015022244530,0,ic,2536203,,MIU,990025362030106381,23462573,"0915943549,9780915943548",,91014944,Paul Bunyan's bearskin : poems / by Patricia Goedicke.,"Milkweed Editions, 1992.",bib,2012-06-18 19:30:15,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,"Goedicke, Patricia.",https://catalog.hathitrust.org/Record/2536203,https://hdl.handle.net/2027/mdp.39015022244530,Milkweed Editions,True,True,"['national endowment for the arts', 'star tribune foundation', 'target', 'target', 'ecolab foundation', 'first bank system foundation', 'general mills foundation', ""i. a. o'shaughnessy foundation"", 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation']"
mdp.39015022277456,0,ic,2533390,,MIU,990025333900106381,23583668,"0915943670,0915943824,9780915943678,9780915943821",,91015082,Mixed voices : contemporary poems about music / edited by Emilie Buchwald and Ruth Roston ; design and graphics by R.W. Scholes.,"Milkweed Editions, 1991.",bib,2012-03-21 19:30:06,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2533390,https://hdl.handle.net/2027/mdp.39015022277456,Milkweed Editions,True,True,"['national endowment for the arts', 'star tribune foundation', 'target', 'target', 'first bank system foundation', 'general mills foundation', 'jerome foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation']"
mdp.39015024963251,0,ic,2518418,,MIU,990025184180106381,23462280,"0915943514,9780915943517",,91012967,Cracking India : a novel / Bapsi Sidhwa.,"Milkweed Editions, 1991.",bib,2010-01-30 22:30:02,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Sidhwa, Bapsi.",https://catalog.hathitrust.org/Record/2518418,https://hdl.handle.net/2027/mdp.39015024963251,Milkweed Editions,True,True,"['national endowment for the arts', 'star tribune foundation', 'target', 'target', 'first bank system foundation', ""i. a. o'shaughnessy foundation"", 'jerome foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation']"
mdp.39015024994421,0,ic,2525301,,MIU,990025253010106381,23462309,"0915943522,9780915943524",,91003370,Mandala : poems / by Sam Hamill ; monotypes by Galen Garwood.,"Milkweed Editions, 1991.",bib,2009-07-14 22:30:45,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Hamill, Sam.",https://catalog.hathitrust.org/Record/2525301,https://hdl.handle.net/2027/mdp.39015024994421,Milkweed Editions,True,True,"['bush foundation', 'national endowment for the arts', 'star tribune/cowles media company', 'target', 'target', 'general mills foundation', 'jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'mcknight foundation', 'minnesota state arts board', 'andrew w. mellon foundation', 'northwest area foundation']"
mdp.39015028527896,0,ic,1816594,,MIU,990018165940106381,19325139,"0915943344,9780915943340",,89003105,The tongues we speak : new and selected poems / Patricia Goedicke.,"Milkweed Editions, 1989.",bib,2012-09-08 19:30:32,0,1989,mnu,eng,BK,MIU,umich,umich,google,google,"Goedicke, Patricia.",https://catalog.hathitrust.org/Record/1816594,https://hdl.handle.net/2027/mdp.39015028527896,Milkweed Editions,True,True,"['first bank system foundation', 'united arts', 'through the arts', 'national endowment for the arts', ""dayton hudson foundation for dayton's and target stores""]"
mdp.39015028757709,0,ic,1072216,,MIU,990010722160106381,13674493,"0915943115,9780915943111",,85063725,The man with red suspenders : poems / by Philip Dacey ; [designed and illustrated by R.W. Scholes].,"Milkweed Editions, 1986.",bib,2012-03-21 09:30:52,0,1986,mnu,eng,BK,MIU,umich,umich,google,google,"Dacey, Philip.",https://catalog.hathitrust.org/Record/1072216,https://hdl.handle.net/2027/mdp.39015028757709,Milkweed Editions,True,True,"['first bank system foundation', 'jerome foundation', 'metropolitan regional arts council', 'minnesota state legislature', 'mcknight foundation', 'united arts', 'k.rsw newsletter (worthington,', 'minnesota state arts board', 'mcknight foundation', 'the new jersey poetry jour nal', 'the corporation of yaddo and the ragdale foundation']"
mdp.39015029118679,0,ic,2784320,,MIU,990027843200106381,28549630,"0915943069,9780915943067",,93005693,"Transforming a rape culture / edited by Emilie Buchwald, Pamela R. Fletcher, Martha Roth.","Milkweed Editions, 1993.",bib,2012-08-02 19:30:19,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2784320,https://hdl.handle.net/2027/mdp.39015029118679,Milkweed Editions,True,True,"['target', 'general mills foundation', 'honeywell foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'northwest area foundation', ""i. a. o'shaughnessy foundation"", 'piper jaffray companies, inc.', None, 'star tribune foundation', 'surdna foundation', ""lila wallace reader's digest fund"", None]"
mdp.39015029244368,0,ic,2617134,,MIU,990026171340106381,22239224,"0915943603,9780915943609",,90041194,Through the sky in the lake / sayings by Sid Gershgoren ; photographs by George Peer.,"Milkweed Editions, 1990.",bib,2012-04-21 19:30:21,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Gershgoren, Sid.",https://catalog.hathitrust.org/Record/2617134,https://hdl.handle.net/2027/mdp.39015029244368,Milkweed Editions,True,True,"['bush foundation', 'national endowment for the arts', None, 'united arts', 'target', 'target', 'first bank system foundation', 'general mills foundation', 'jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'mcknight foundation', 'minnesota state arts board', 'northwest area foundation']"
mdp.39015029851642,0,ic,2710264,,MIU,990027102640106381,25964881,"0915943719,9780915943715",,92018246,Mouth to mouth : poems by twelve contemporary Mexican women / edited by Forrest Gander ; translated by Zoe Anglesey ... [et al.] ; with an introduction by Julio Ortega.,"Milkweed Editions, 1993.",bib,2012-06-06 19:30:52,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2710264,https://hdl.handle.net/2027/mdp.39015029851642,Milkweed Editions,True,True,[]
mdp.39015029984435,0,ic,2719897,,MIU,990027198970106381,27070888,"0915943573,9780915943579",,92041958,The historian : six fantasies of the American experience / by Eugene K. Garber.,"Milkweed Editions in conjunction with Triquarterly Books, 1993.",bib,2008-11-01 21:30:20,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,"Garber, Eugene K.",https://catalog.hathitrust.org/Record/2719897,https://hdl.handle.net/2027/mdp.39015029984435,Milkweed Editions,True,True,"['national endowment for the arts', 'star tribune foundation', 'target', 'target', 'ecolab foundation', 'first bank system foundation', 'general mills foundation', 'honeywell foundation', ""i. a. o'shaughnessy foundation"", 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation', ""lila wallace reader's digest fund""]"
mdp.39015032425913,0,ic,2876417,,MIU,990028764170106381,25130729,"0915943697,9780915943692",,91045688,What we save for last : stories / by Corinne Demas Bliss.,"Milkweed Editions, c1992.",bib,2008-11-02 23:30:06,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,"Demas, Corinne.",https://catalog.hathitrust.org/Record/2876417,https://hdl.handle.net/2027/mdp.39015032425913,Milkweed Editions,True,True,"['national endowment for the arts', 'star tribune foundation', 'target', 'target', 'ecolab foundation', 'first bank system foundation', ""i. a. o'shaughnessy foundation"", 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation']"
mdp.39015032511548,0,ic,2963302,,MIU,990029633020106381,31075131,"1571314016,9781571314017",,94032531,The long experience of love / Jim Moore.,"Milkweed Editions, 1995.",bib,2012-04-19 19:30:53,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Moore, James, 1943-",https://catalog.hathitrust.org/Record/2963302,https://hdl.handle.net/2027/mdp.39015032511548,Milkweed Editions,True,True,"['stephen mitchell (random house', 'target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'knight foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'musser fund', 'national endowment for the arts', ""i. a. o'shaughnessy foundation"", 'piper family fund of the minneapolis foundation', 'piper jaffray companies, inc.', None, 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund""]"
mdp.39015032546197,0,ic,2877912,,MIU,990028779120106381,20994081,"0915943468,9780915943463",,"90005432,90005432 //r91",Circe's mountain / stories by Marie Luise Kaschnitz ; translated by Lisel Mueller.,"Milkweed Editions, c1990.",bib,2012-06-11 19:30:20,0,1990,miu,eng,BK,MIU,umich,umich,google,google,"Kaschnitz, Marie Luise, 1901-1974.",https://catalog.hathitrust.org/Record/2877912,https://hdl.handle.net/2027/mdp.39015032546197,Milkweed Editions,True,True,"['national endowment for the arts', 'target', 'target', 'first bank system foundation', 'star tribune/cowles media company', 'minnesota state arts board', 'minnesota state legislature', 'mcknight foundation', 'minnesota state arts board', 'northwest area foundation', 'eines mittages, mitte juni', 'arts development fund of united arts', 'general mills foundation']"
mdp.39015032552476,0,ic,2880120,,MIU,990028801200106381,27034863,"0915943794,9780915943791",,92041957,The importance of high places : stories and a novella / by Joanna Higgins.,"Milkweed Editions, 1993.",bib,2012-09-07 19:30:13,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,"Higgins, Joanna, 1945-",https://catalog.hathitrust.org/Record/2880120,https://hdl.handle.net/2027/mdp.39015032552476,Milkweed Editions,True,True,"['national endowment for the arts', 'star tribune foundation', 'target', None, 'ecolab foundation', 'first bank system foundation', 'general mills foundation', 'honeywell foundation', ""i. a. o'shaughnessy foundation"", 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation', 'beverly j. and john a. rollwagen fund of the minneapolis foundation', ""lila wallace reader's digest fund""]"
mdp.39015032574769,0,ic,2884030,,MIU,990028840300106381,15901520,"0915943166,0915943174,0915943182,9780915943166,9780915943173,9780915943180",,86060749,Spillville / text by Patricia Hampl ; engravings by Steven Sorman,"Milkweed Editions, 1987",bib,2009-01-22 21:30:18,0,1987,mnu,eng,BK,MIU,umich,umich,google,google,"Hampl, Patricia, 1946-",https://catalog.hathitrust.org/Record/2884030,https://hdl.handle.net/2027/mdp.39015032574769,Milkweed Editions,True,True,"['national endowment for the arts', 'northwest area foundation', 'target']"
mdp.39015032580717,0,ic,2886927,,MIU,990028869270106381,29877779,"1571310002,9781571310002",,94007049,A keeper of sheep / William Carpenter.,"Milkweed Editions, 1994.",bib,2012-03-13 19:30:19,0,1994,mnu,eng,BK,MIU,umich,umich,google,google,"Carpenter, William.",https://catalog.hathitrust.org/Record/2886927,https://hdl.handle.net/2027/mdp.39015032580717,Milkweed Editions,True,True,"['jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'knight foundation', 'mcknight foundation', 'musser fund', 'national endowment for the arts', ""i. a. o'shaughnessy foundation"", 'piper family fund of the minneapolis foundation', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', 'unity avenue foundation', None]"
mdp.39015032594668,0,ic,2887214,,MIU,990028872140106381,30318871,"1571314008,9781571314000",,94010655,Firekeeper : new & selected poems / Pattiann Rogers.,"Milkweed Editions, c1994.",bib,2012-06-18 19:30:16,0,1994,mnu,eng,BK,MIU,umich,umich,google,google,"Rogers, Pattiann, 1940-",https://catalog.hathitrust.org/Record/2887214,https://hdl.handle.net/2027/mdp.39015032594668,Milkweed Editions,True,True,"['dain bosworth foundation', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'knight foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'musser fund', 'national endowment for the arts', ""i. a. o'shaughnessy foundation"", 'piper family fund of the minneapolis foundation', 'piper jaffray companies, inc.', None, 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', 'unity avenue foundation', ""lila wallace reader's digest fund""]"
mdp.39015032628656,0,ic,2885669,,MIU,990028856690106381,19266626,"0915943379,0915943395,9780915943371,9780915943395",,89002266,Village without mirrors / photographs by Timothy Francisco ; essays by Patricia Weaver Francisco.,"Milkweed Editions, c1989.",bib,2012-08-30 19:30:13,0,1989,mnu,eng,BK,MIU,umich,umich,google,google,"Francisco, Timothy, 1950-",https://catalog.hathitrust.org/Record/2885669,https://hdl.handle.net/2027/mdp.39015032628656,Milkweed Editions,True,True,"['bush foundation', None, 'target', 'target', 'jerome foundation', 'national endowment for the arts']"
mdp.39015032744438,0,ic,2795587,,MIU,990027955870106381,28708681,"0915943735,9780915943739",,93027523,An American brat / Bapsi Sidhwa.,"Milkweed Editions, 1993.",bib,2012-03-17 19:30:26,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,"Sidhwa, Bapsi.",https://catalog.hathitrust.org/Record/2795587,https://hdl.handle.net/2027/mdp.39015032744438,Milkweed Editions,True,True,"['jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'target', None, 'first bank system foundation', 'general mills foundation', 'honeywell foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'northwest area foundation', ""i. a. o'shaughnessy foundation"", 'star tribune foundation', 'surdna foundation', ""lila wallace reader's digest fund""]"
mdp.39015032753462,0,ic,2795366,,MIU,990027953660106381,28376746,"0915943131,9780915943135",,93025962,Montana 1948 : a novel / Larry Watson.,"Milkweed Editions, c1993.",bib,2012-06-18 19:30:16,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,"Watson, Larry, 1947-",https://catalog.hathitrust.org/Record/2795366,https://hdl.handle.net/2027/mdp.39015032753462,Milkweed Editions,True,True,"['star tribune/cowles media company', 'target', 'first bank system foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation', ""i. a. o'shaughnessy foundation"", 'piper jaffray companies, inc.', 'surdna foundation', 'challenge and literature programs of the national endowment for the arts', 'council of literary magazines and presses']"
mdp.39015032955984,0,ic,2879949,,MIU,990028799490106381,23463170,"0915943867,9780915943869",,91013673,"Winter roads, summer fields / Marjorie Dorner.","Milkweed Editions, c1992.",bib,2008-11-01 21:30:27,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,"Dorner, Marjorie.",https://catalog.hathitrust.org/Record/2879949,https://hdl.handle.net/2027/mdp.39015032955984,Milkweed Editions,True,True,"['james r. thorpe foundation', 'national endowment for the arts', 'star tribune foundation', 'target', 'first bank system foundation', 'general mills foundation', ""i. a. o'shaughnessy foundation"", 'jerome foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation']"
mdp.39015032955992,0,ic,2879796,,MIU,990028797960106381,10650450,"091594300X,0915943018,9780915943005,9780915943012",,83073502,The Poet dreaming in the artist's house : contemporary poems about the visual arts / edited by Emilie Buchwald and Ruth Roston ; designed and illustrated by R.W. Scholes ; annotated bibliography by Phyllis Janik.,"Milkweed Editions, 1984.",bib,2012-03-13 19:30:19,0,1984,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2879796,https://hdl.handle.net/2027/mdp.39015032955992,Milkweed Editions,True,True,"['metropolitan regional arts council', 'minnesota state legislature', 'mcknight foundation', 'jerome foundation']"
mdp.39015032956040,0,ic,2879832,,MIU,990028798320106381,14081544,"0915943093,0915943107,9780915943098,9780915943104",,"86060097,86060097 //r90",Civil blood : poems and prose / by Jill Breckenridge ; engravings by R.W. Scholes.,"Milkweed Editions, c1986.",bib,2008-05-27 09:30:05,0,1986,mnu,eng,BK,MIU,umich,umich,google,google,"Breckenridge, Jill.",https://catalog.hathitrust.org/Record/2879832,https://hdl.handle.net/2027/mdp.39015032956040,Milkweed Editions,True,True,"['first bank system foundation', 'jerome foundation', 'regional arts council', 'minnesota state legislature', 'mcknight foundation', None, 'bush foundation', 'minnesota state arts board', None]"
mdp.39015032956065,0,ic,2880012,,MIU,990028800120106381,25369158,"0915943859,9780915943852",,92004153,Clay & star : contemporary Bulgarian poets / translated and edited by Lisa Sapinkopf and Georgi Belev ; introduction by Charles A. Moser.,"Milkweed Editions, 1992.",bib,2012-06-04 10:29:40,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2880012,https://hdl.handle.net/2027/mdp.39015032956065,Milkweed Editions,True,True,"[None, 'national endowment for the arts', 'star tribune foundation', 'target', 'target', 'ecolab foundation', 'first bank system foundation', ""i. a. o'shaughnessy foundation"", 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation']"
mdp.39015033117501,0,ic,2738095,,MIU,990027380950106381,27381695,"0915943581,9780915943586",,93009273,"Astonishing world : the selected poems of Angel González, 1956-1986 / translated from the Spanish by Steven Ford Brown and Gutiérrez Revuelta ; edited by Steven Ford Brown.","Milkweed Editions, 1993.",bib,2012-04-04 19:32:19,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,"González, Ángel, 1925-2008.",https://catalog.hathitrust.org/Record/2738095,https://hdl.handle.net/2027/mdp.39015033117501,Milkweed Editions,True,True,"['the direccion general del libro y bibliotecas del', 'national endowment for the arts', 'target', 'target', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation', 'star tribune foundation', 'surdna foundation']"
mdp.39015033338495,0,ic,2960697,,MIU,990029606970106381,31076049,"1571310029,9781571310026",,94034080,Justice / Larry Watson.,"Milkweed Editions, 1995.",bib,2012-04-19 19:30:54,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Watson, Larry, 1947-",https://catalog.hathitrust.org/Record/2960697,https://hdl.handle.net/2027/mdp.39015033338495,Milkweed Editions,True,True,"['target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'knight foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'musser fund', 'national endowment for the arts', 'piper family fund of the minneapolis foundation', 'piper jaffray companies, inc.', None, 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', 'unity avenue foundation', ""lila wallace reader's digest fund""]"
mdp.39015033965487,0,ic,2969689,,MIU,990029696890106381,30701232,"157131203X,9781571312037",,94025402,Planning to stay : a collaborative project / by William R. Morrish ... [et al.].,"Milkweed Editions, 1994.",bib,2012-09-08 19:30:50,0,1994,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2969689,https://hdl.handle.net/2027/mdp.39015033965487,Milkweed Editions,True,True,"['mcknight foundation', 'star tribune foundation', 'target', 'target', 'target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'james l. knight foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'musser fund', 'national endowment for the arts', ""i. a. o'shaughnessy foundation"", 'piper jaffray companies, inc.', 'piper family fund of the minneapolis foundation', None, 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', 'unity avenue foundation', ""lila wallace reader's digest fund"", None]"
mdp.39015033979934,0,ic,2973089,,MIU,990029730890106381,31131541,"1571310037,9781571310033",,94034999,Somebody else's mama / David Haynes.,"Milkweed Editions, c1995.",bib,2012-09-08 19:30:50,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Haynes, David, 1955-",https://catalog.hathitrust.org/Record/2973089,https://hdl.handle.net/2027/mdp.39015033979934,Milkweed Editions,True,True,"[None, 'the creative arts', 'target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'knight foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'musser fund', 'national endowment for the arts', ""i. a. o'shaughnessy foundation"", 'piper family fund of the minneapolis foundation', 'piper jaffray companies, inc.', None, 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund""]"
mdp.39015034031495,0,ic,2977243,,MIU,990029772430106381,31170624,"1571310045,9781571310040",,94033644,Confidence of the heart / David Schweidel.,"Milkweed Editions, 1995.",bib,2008-05-24 09:30:07,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Schweidel, David.",https://catalog.hathitrust.org/Record/2977243,https://hdl.handle.net/2027/mdp.39015034031495,Milkweed Editions,True,True,"['target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'knight foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'musser fund', 'national endowment for the arts', ""i. a. o'shaughnessy foundation"", 'piper family fund of the minneapolis foundation', None, 'piper jaffray companies, inc.', 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', 'unity avenue foundation', None]"
mdp.39015034424187,0,ic,2997549,,MIU,990029975490106381,31328449,"1571312064,9781571312068",,94040312,Homestead / Annick Smith.,"Milkweed Editions ; Distributed by Publishers Group West, 1995.",bib,2009-06-11 23:30:14,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Smith, Annick, 1936-",https://catalog.hathitrust.org/Record/2997549,https://hdl.handle.net/2027/mdp.39015034424187,Milkweed Editions,True,True,"['stephen simpson/fpg international', 'target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'knight foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'musser fund', 'national endowment for the arts', ""i. a. o'shaughnessy foundation"", 'piper family fund of the minneapolis foundation', 'piper jaffray companies, inc.', None, 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', 'unity avenue foundation', ""lila wallace reader's digest fund"", None]"
mdp.39015034908031,0,ic,3011992,,MIU,990030119920106381,32392976,"1571310088,9781571310088",,95016349,The children Bob Moses led / William Heath.,"Milkweed Editions, 1995.",bib,2008-11-01 22:30:19,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Heath, William, 1942-",https://catalog.hathitrust.org/Record/3011992,https://hdl.handle.net/2027/mdp.39015034908031,Milkweed Editions,True,True,"['bush foundation', 'target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'knight foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'challenge and literature programs of the national endowment for the arts', ""i. a. o'shaughnessy foundation"", 'piper jaffray companies, inc.', None, 'st. paul companies', 'star tribune foundation', 'surdna foundation', ""lila wallace reader's digest fund"", None]"
mdp.39015034938046,0,ic,3016590,,MIU,990030165900106381,32394427,"1571310061,9781571310064",,95017162,Swimming in the Congo / Margaret Meyers.,"Milkweed Editions ; Distributed by Publishers Group West, 1995.",bib,2012-09-06 19:31:40,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Meyers, Margaret.",https://catalog.hathitrust.org/Record/3016590,https://hdl.handle.net/2027/mdp.39015034938046,Milkweed Editions,True,True,"['target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'knight foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'musser fund', 'national endowment for the arts', 'piper family fund of the minneapolis foundation', 'piper jaffray companies, inc.', None, 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', 'unity avenue foundation', ""lila wallace reader's digest fund"", 'the congo / margaret meyers.']"
mdp.39015037468769,0,ic,3067122,,MIU,990030671220106381,33047083,"1571310096,9781571310095",,95038452,Live at five / David Haynes.,"Milkweed Editions, 1996.",bib,2012-06-06 19:30:55,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Haynes, David, 1955-",https://catalog.hathitrust.org/Record/3067122,https://hdl.handle.net/2027/mdp.39015037468769,Milkweed Editions,True,True,"['bush foundation', 'target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'knight foundation', 'mcknight foundation', 'andrew w. mellon foundation', None, 'minnesota state arts board', 'minnesota state legislature', 'musser fund', 'national endowment for the arts', ""i. a. o'shaughnessy foundation"", 'piper jaffray companies, inc.', None, 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", None]"
mdp.39015037486878,0,ic,3071173,,MIU,990030711730106381,32167580,"1571314024,9781571314024",,95007560,"White flash, black rain : women of Japan relive the bomb / edited and translated by Lequita Vance-Watkins and Aratani Mariko.","Milkweed Editions ; Distributed by Publishers Group West, 1995.",bib,2012-06-04 10:29:15,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/3071173,https://hdl.handle.net/2027/mdp.39015037486878,Milkweed Editions,True,True,"['target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'knight foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'challenge and literature programs of the national endowment for the arts', 'national endowment for the arts', ""i. a. o'shaughnessy foundation"", 'st. paul companies', 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund""]"
mdp.39015038026202,0,ic,3096333,,MIU,990030963330106381,34115434,"1571312056,9781571312051",,96000403,Changing the bully who rules the world : reading and thinking about ethics / [compiled by] Carol Bly.,"Milkweed Editions, 1996.",bib,2009-06-26 21:30:18,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/3096333,https://hdl.handle.net/2027/mdp.39015038026202,Milkweed Editions,True,True,"['bush foundation', 'target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', None, 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""i. a. o'shaughnessy foundation"", 'piper jaffray companies, inc.', None, 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund""]"
mdp.39015038116672,0,ic,3099501,,MIU,990030995010106381,33947518,"1571312099,9781571312099",,95051844,"The heart can be filled anywhere on earth : Minneota, Minnesota / Bill Holm.","Milkweed Editions, 1996.",bib,2012-11-09 19:30:13,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Holm, Bill, 1943-2009.",https://catalog.hathitrust.org/Record/3099501,https://hdl.handle.net/2027/mdp.39015038116672,Milkweed Editions,True,True,"['bush foundation', 'target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'knight foundation', 'mcknight foundation', None, 'minnesota state arts board', 'minnesota state legislature', 'challenge and literature programs of the national endowment for the arts', 'national endowment for the arts', ""i. a. o'shaughnessy foundation"", 'st. paul companies', None, 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund""]"
mdp.39015038187939,0,ic,3112237,,MIU,990031122370106381,34633345,"1571312153,9781571312150",,96015052,Rescuing Little Roundhead / Syl Jones.,"Milkweed Editions : Distributed by Publishers Group West, 1996.",bib,2012-06-20 10:03:30,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Jones, Syl, 1951-",https://catalog.hathitrust.org/Record/3112237,https://hdl.handle.net/2027/mdp.39015038187939,Milkweed Editions,True,True,"['bush foundation', 'target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', None, 'minnesota state arts board', 'minnesota state legislature', 'challenge and literature programs of the national endowment for the arts', 'national endowment for the arts', 'piper jaffray companies, inc.', 'ritz foundation', 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", 'u.s. west foundation']"
mdp.39015038439561,0,ic,3036238,,MIU,990030362380106381,32589126,"1571312080,9781571312082",,95020061,The old bridge : the third Balkan War and the age of the refugee / Christopher Merrill.,"Milkweed Editions, 1995.",bib,2012-05-10 19:30:32,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Merrill, Christopher.",https://catalog.hathitrust.org/Record/3036238,https://hdl.handle.net/2027/mdp.39015038439561,Milkweed Editions,True,True,"['bush foundation', 'target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'knight foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'challenge and literature programs of the national endowment for the arts', 'national endowment for the arts', ""i. a. o'shaughnessy foundation"", 'piper jaffray companies, inc.', 'st. paul companies', 'star tribune foundation', 'surdna foundation', None, 'james r. thorpe foundation', ""lila wallace reader's digest fund""]"
mdp.39015038538651,0,ic,3115380,,MIU,990031153800106381,34705058,"1571310118,9781571310118",,96021666,The empress of one / Faith Sullivan.,"Milkweed Editions : Distributed by Publishers Group West, 1996.",bib,2012-06-17 19:30:14,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Sullivan, Faith.",https://catalog.hathitrust.org/Record/3115380,https://hdl.handle.net/2027/mdp.39015038538651,Milkweed Editions,True,True,"[None, 'bush foundation', 'target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'challenge and literature programs of the national endowment for the arts', 'piper jaffray companies, inc.', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', None, ""lila wallace reader's digest fund""]"
mdp.39015038912260,0,ic,3133523,,MIU,990031335230106381,34564805,"1571314032,9781571314031",,96015040,Invisible horses / Patricia Goedicke.,"Milkweed Editions ; Distibuted by Publishers Group West, 1996.",bib,2008-11-01 22:30:38,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Goedicke, Patricia.",https://catalog.hathitrust.org/Record/3133523,https://hdl.handle.net/2027/mdp.39015038912260,Milkweed Editions,True,True,"['bush foundation', 'target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'piper jaffray companies, inc.', 'ritz foundation', 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", None]"
mdp.39015040335781,0,ic,3965387,,MIU,990039653870106381,36675987,"157131217X,9781571312174",,"97010712,97010712 //r98","Shedding life : disease, politics, and other human conditions / Miroslav Holub ; translated by David Young ... [et al. ; poems translated by Rebekah Bloyd].","Milkweed Editions ; Distributed by Publishers Group West, 1997.",bib,2009-08-07 22:30:09,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Holub, Miroslav, 1923-1998.",https://catalog.hathitrust.org/Record/3965387,https://hdl.handle.net/2027/mdp.39015040335781,Milkweed Editions,True,True,"[""mahler's ninth symphony (viking"", 'the arts conceded their civilising role to science?', 'cray research foundation', 'target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'creation and presentation programs of the national endowment for the arts', 'norwest foundation', 'norwest investment management and trust', 'piper jaffray companies, inc.', 'ritz foundation', 'st. paul companies', 'star tribune foundation', 'james r. thorpe foundation']"
mdp.39015040577473,0,ic,3947453,,MIU,990039474530106381,36528396,"1571310150,9781571310156",,"97010199,97010199 //r97",All American dream dolls / David Haynes.,"Milkweed Editions, 1997.",bib,2009-03-25 22:30:26,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Haynes, David, 1955-",https://catalog.hathitrust.org/Record/3947453,https://hdl.handle.net/2027/mdp.39015040577473,Milkweed Editions,True,True,"['james ford bell foundation', 'target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'challenge and literature programs of the national endowment for the arts', 'piper jaffray companies, inc.', 'ritz foundation', 'st. paul companies', 'star tribune foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund""]"
mdp.39015040577796,0,ic,3948056,,MIU,990039480560106381,36681689,"1571312188,9781571312181",,97011722,Many lights in many windows : twenty years of great fiction and poetry from the Writers Community / edited by Laurel Blossom.,"Milkweed Editions, c1997.",bib,2012-06-20 10:03:38,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/3948056,https://hdl.handle.net/2027/mdp.39015040577796,Milkweed Editions,True,True,"[None, 'bush foundation', 'target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', None, 'minnesota state arts board', 'minnesota state legislature', 'challenge and literature programs of the national endowment for the arts', 'national endowment for the arts', 'piper jaffray companies, inc.', 'ritz foundation', 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', 'u.s. west foundation', ""lila wallace reader's digest fund"", None, ""the national writer's voice of the ymca of the usa in 1986.""]"
mdp.39015041074132,0,ic,3172515,,MIU,990031725150106381,36074376,"1571310134,9781571310132",,"96040156,96040156 //r97",The tree of red stars / Tessa Bridal.,"Milkweed Editions ; Distributed by Publishers Group West, 1997.",bib,2012-03-21 09:30:54,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Bridal, Tessa, 1947-",https://catalog.hathitrust.org/Record/3172515,https://hdl.handle.net/2027/mdp.39015041074132,Milkweed Editions,True,True,"['bush foundation', 'target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', None, 'minnesota state arts board', 'minnesota state legislature', 'challenge and literature programs of the national endowment for the arts', 'national endowment for the arts', 'piper jaffray companies, inc.', 'ritz foundation', 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', 'u.s. west foundation', ""lila wallace reader's digest fund""]"
mdp.39015041109235,0,ic,3947470,,MIU,990039474700106381,36017114,"1571314067,9781571314062",,96046697,Eating bread and honey / Pattiann Rogers.,"Milkweed Editions, 1997.",bib,2008-06-02 09:30:11,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Rogers, Pattiann, 1940-",https://catalog.hathitrust.org/Record/3947470,https://hdl.handle.net/2027/mdp.39015041109235,Milkweed Editions,True,True,"['james ford bell foundation', 'target', 'target', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'piper jaffray companies, inc.', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", None]"
mdp.39015041358121,0,ic,3182774,,MIU,990031827740106381,35718703,"1571314059,9781571314055",,96047358,"Night out : poems about hotels, motels, restaurants, and bars / edited by Kurt Brown and Laure-Anne Bosselaar.","Milkweed Editions ; Distributed by Publishers Group West, 1997.",bib,2012-06-20 10:03:39,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/3182774,https://hdl.handle.net/2027/mdp.39015041358121,Milkweed Editions,True,True,"['bush foundation', 'target', 'target', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'challenge and literature programs of the national endowment for the arts', 'piper jaffray companies, inc.', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', None]"
mdp.39015042086648,0,ic,3437643,,MIU,990034376430106381,40734921,"1571310304,9781571310309",,99018182,Falling dark / Tim Tharp.,"Milkweed Editions : Distributed by Publishers Group West, 1999.",bib,2012-03-18 19:30:19,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Tharp, Tim, 1957-",https://catalog.hathitrust.org/Record/3437643,https://hdl.handle.net/2027/mdp.39015042086648,Milkweed Editions,True,True,"['star tribune foundation', 'james ford bell foundation', 'bush foundation', 'target', 'target', 'general mills foundation', 'honeywell foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'norwest foundation', 'oswald family foundation', 'ritz foundation', 'st. paul companies', 'star tribune foundation', 'u.s. bancorp piper jaffray foundation']"
mdp.39015043040115,0,ic,4038479,,MIU,990040384790106381,40354778,"1571312242,1571312277,9781571312242,9781571312273",,98050947,Brown dog of the Yaak : essays on art and activism / Rick Bass.,"Milkweed Editions, 1999.",bib,2012-03-21 09:30:55,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Bass, Rick, 1958-",https://catalog.hathitrust.org/Record/4038479,https://hdl.handle.net/2027/mdp.39015043040115,Milkweed Editions,True,True,"['national endowment for the arts', 'james ford bell foundation', 'target', 'target', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'norwest foundation', 'oswald family foundation', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'u.s. bancorp piper jaffray foundation']"
mdp.39015043788952,0,ic,4028918,,MIU,990040289180106381,40331057,"1571314091,9781571314093",,98032217,"Outsiders : poems about rebels, exiles, and renegades / edited by Laure-Anne Bosselaar.","Milkweed Editions, 1999.",bib,2012-06-20 10:03:42,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/4028918,https://hdl.handle.net/2027/mdp.39015043788952,Milkweed Editions,True,True,[]
mdp.39015043792970,0,ic,4033283,,MIU,990040332830106381,40543806,"1571312234,9781571312235",,98055433,The necessity of empty places / Paul Gruchow.,"Milkweed Editions, 1999.",bib,2011-08-24 19:30:50,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Gruchow, Paul.",https://catalog.hathitrust.org/Record/4033283,https://hdl.handle.net/2027/mdp.39015043792970,Milkweed Editions,True,True,"['the flight of cranes', 'james ford bell foundation', 'cray research foundation', 'target', 'target', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'creation and presentation programs of the national endowment for the arts', 'national endowment for the arts', 'norwest foundation', 'norwest foundation', 'oswald family foundation', 'piper jaffray companies, inc.', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'james r. thorpe foundation']"
mdp.39015045657700,0,ic,3985627,,MIU,990039856270106381,38924173,"1571314075,9781571314079",,98019340,Verse & universe : poems about science and mathematics / edited by Kurt Brown.,"Milkweed Editions ; Distributed by Publishers Group West, c1998.",bib,2012-03-21 19:30:12,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/3985627,https://hdl.handle.net/2027/mdp.39015045657700,Milkweed Editions,True,True,"['the journey home (new york', 'james ford bell foundation', 'target', 'target', 'dorsey and whitney foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'challenge and literature programs of the national endowment for the arts', 'national endowment for the arts', 'norwest foundation', 'norwest investment management and trust', 'oswald family foundation', 'piper jaffray companies, inc.', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'james r. thorpe foundation']"
mdp.39015046479781,0,ic,4024507,,MIU,990040245070106381,39217060,"1571310223,9781571310224",,"98021805,98021805 //r98",The promised land / Ruhama Veltfort.,"Milkweed Editions : Distributed by Publishers Group West, 1998.",bib,2012-06-18 19:30:21,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Veltfort, Ruhama, 1944-",https://catalog.hathitrust.org/Record/4024507,https://hdl.handle.net/2027/mdp.39015046479781,Milkweed Editions,True,True,"['ford bell foundation', 'bush foundation', 'target', 'target', 'doherty, rumble and butler foundation', 'dorsey and whitney foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'creation and presentation programs of the national endowment for the arts', 'norwest foundation', 'norwest investment management and trust', 'oswald family foundation', 'piper jaffray companies, inc.', 'ritz foundation', None, 'st. paul companies', 'james r. thorpe foundation', 'the pacificfiction.']"
mdp.39015046483619,0,ic,4028902,,MIU,990040289020106381,40311550,"1571310274,9781571310279",,98050092,Seasons of sun & rain / Marjorie Dorner.,"Milkweed Editions ; Distributed by Publishers Group West, 1999.",bib,2008-11-01 21:30:27,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Dorner, Marjorie.",https://catalog.hathitrust.org/Record/4028902,https://hdl.handle.net/2027/mdp.39015046483619,Milkweed Editions,True,True,"['james ford bell foundation', 'bush foundation', 'target', 'target', 'honeywell foundation', 'hubbard foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'creation and presentation programs of the national endowment for the arts', 'norwest foundation', 'oswald family foundation', 'piper jaffray companies, inc.', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'james r. thorpe foundation']"
mdp.39015047066215,0,ic,3978827,,MIU,990039788270106381,37862719,"1571310193,9781571310194",,97043264,Tivolem / Victor Rangel-Ribeiro ; [maps by Victor Rangel-Ribeiro].,"Milkweed Editions ; Distributed by Publishers Group West, 1998.",bib,2012-03-18 19:30:19,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Rangel-Ribeiro, Victor.",https://catalog.hathitrust.org/Record/3978827,https://hdl.handle.net/2027/mdp.39015047066215,Milkweed Editions,True,True,"['star tribune foundation', 'james ford bell foundation', 'cray research foundation', 'target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'creation and presentation programs of the national endowment for the arts', 'piper jaffray companies, inc.', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", None]"
mdp.39015047110849,0,ic,3980211,,MIU,990039802110106381,37870617,"1571310185,9781571310187",,"97039050,97039050 //r98",Thirst / Ken Kalfus.,"Milkweed Editions ; Distributed by Publishers Group West, c1998.",bib,2008-06-03 09:30:22,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Kalfus, Ken.",https://catalog.hathitrust.org/Record/3980211,https://hdl.handle.net/2027/mdp.39015047110849,Milkweed Editions,True,True,"['ford bell foundation', 'target', 'target', 'honeywell foundation', 'hubbard foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'challenge and literature programs of the national endowment for the arts', 'national endowment for the arts', 'norwest foundation', 'oswald family foundation', 'st. paul companies', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'james r. thorpe foundation']"
mdp.39015047117315,0,ic,3997383,,MIU,990039973830106381,39223576,"1571310215,9781571310217",,98021809,Trip sheets / Ellen Hawley.,"Milkweed Editions ; Distributed by Publishers Group West, 1998.",bib,2008-11-01 23:30:10,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Hawley, Ellen.",https://catalog.hathitrust.org/Record/3997383,https://hdl.handle.net/2027/mdp.39015047117315,Milkweed Editions,True,True,"['target', 'target', 'doherty, rumble and butler foundation', 'dorsey and whitney foundation', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'hubbard foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'challenge and literature programs of the national endowment for the arts', 'national endowment for the arts', 'oswald family foundation', 'piper jaffray companies, inc.', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'surdna foundation']"
mdp.39015047450401,0,ic,4041626,,MIU,990040416260106381,40423126,"1571312269,9781571312266",,98049802,The book of the Tongass / edited by Carolyn Servid and Donald Snow.,"Milkweed Editions ; Distributed by Publishers Group West, 1999.",bib,2009-01-28 21:30:08,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/4041626,https://hdl.handle.net/2027/mdp.39015047450401,Milkweed Editions,True,True,['gerry ellis/enpimages back']
mdp.39015047465474,0,ic,4232388,,MIU,990042323880106381,46872328,"1571312625,9781571312624",,2001032689,Wild earth : wild ideas for a world out of balance / edited by Tom Butler.,"Milkweed Editions, 2002.",bib,2009-08-24 22:30:26,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/4232388,https://hdl.handle.net/2027/mdp.39015047465474,Milkweed Editions,True,True,"['j. m. kaplan fund', 'bush foundation', 'faegre and benson foundation', 'general mills foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'wells fargo foundation minnesota', 'national endowment for the arts', 'oswald family foundation', 'ritz foundation', None, 'st. paul companies', 'target', 'u.s. bancorp piper jaffray foundation', None]"
mdp.39015047581627,0,ic,4061584,,MIU,990040615840106381,41326671,"1571312315,1571312323,9781571312310,9781571312327",,99028751,Taking care : thoughts on storytelling and belief / William Kittredge.,"Milkweed Editions ; Distributed by Publishers Group West, 1999.",bib,2012-09-08 19:30:57,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Kittredge, William.",https://catalog.hathitrust.org/Record/4061584,https://hdl.handle.net/2027/mdp.39015047581627,Milkweed Editions,True,True,"['james ford bell foundation', 'bush foundation', 'target', 'target', 'general mills foundation', 'honeywell foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'norwest foundation', 'ritz foundation', 'st. paul companies', 'star tribune foundation', 'u.s. bancorp piper jaffray foundation']"
mdp.39015047588515,0,ic,4052339,,MIU,990040523390106381,40305539,"1571314083,9781571314086",,98032216,Butterfly effect / Harry Humes.,"Milkweed Editions ; Distributed by Publishers Group West, 1999.",bib,2012-09-08 19:30:57,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Humes, Harry.",https://catalog.hathitrust.org/Record/4052339,https://hdl.handle.net/2027/mdp.39015047588515,Milkweed Editions,True,True,"['james ford bell foundation', 'bush foundation', 'target', 'honeywell foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'norwest foundation', 'norwest foundation', 'oswald family foundation', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'u.s. bancorp piper jaffray foundation']"
mdp.39015047780831,0,ic,858513,,MIU,990008585130106381,14214752,"0915943204,9780915943203",,86062394,One age in a dream / Diane Glancy ; illustrations by Jay Moon,"Milkweed Editions, 1986",bib,2008-10-11 22:30:11,0,1986,mnu,eng,BK,MIU,umich,umich,google,google,"Glancy, Diane.",https://catalog.hathitrust.org/Record/858513,https://hdl.handle.net/2027/mdp.39015047780831,Milkweed Editions,True,True,[]
mdp.39015047842904,0,ic,4066582,,MIU,990040665820106381,40395758,"1571312250,1571312285,9781571312259,9781571312280",,98050946,The dream of the Marsh Wren : writing as reciprocal creation / Pattiann Rogers.,"Milkweed Editions ; Distributed by Publishers Group West, 1999.",bib,2012-06-18 19:30:21,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Rogers, Pattiann, 1940-",https://catalog.hathitrust.org/Record/4066582,https://hdl.handle.net/2027/mdp.39015047842904,Milkweed Editions,True,True,"['james ford bell foundation', 'bush foundation', 'target', 'target', 'doherty, rumble and butler foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'creation and presentation programs of the national endowment for the arts', 'national endowment for the arts', 'oswald family foundation', 'piper jaffray companies, inc.', 'ritz foundation', 'st. paul companies', 'star tribune foundation', ""lila wallace reader's digest fund""]"
mdp.39015047849404,0,ic,4079943,,MIU,990040799430106381,42475637,"1571310312,9781571310316",,99047930,My lord bag of rice : new and selected stories / Carol Bly.,"Milkweed Editions : Distributed by Publishers Group West, 2000.",bib,2012-06-18 19:30:21,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Bly, Carol.",https://catalog.hathitrust.org/Record/4079943,https://hdl.handle.net/2027/mdp.39015047849404,Milkweed Editions,True,True,"['james ford bell foundation', 'target', 'target', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'oswald family foundation', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'u.s. bancorp piper jaffray foundation', 'u.s. bancorp piper jaffray foundation']"
mdp.39015048691243,0,ic,950669,,MIU,990009506690106381,14241562,"0915943190,9780915943197",,86062393,Eating the sting : including The heronry / by John Caddy.,"Milkweed Editions, 1986.",bib,2012-03-08 19:30:14,0,1986,mnu,eng,BK,MIU,umich,umich,google,google,"Caddy, John.",https://catalog.hathitrust.org/Record/950669,https://hdl.handle.net/2027/mdp.39015048691243,Milkweed Editions,True,True,[]
mdp.39015048764370,0,ic,4050990,,MIU,990040509900106381,40723748,"1571310290,9781571310293",,99018183,Pu-239 and other Russian fantasies / Ken Kalfus.,"Milkweed Editions, c1999.",bib,2008-06-03 09:30:14,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Kalfus, Ken.",https://catalog.hathitrust.org/Record/4050990,https://hdl.handle.net/2027/mdp.39015048764370,Milkweed Editions,True,True,"['james ford bell foundation', 'bush foundation', 'target', 'target', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'norwest foundation', 'oswald family foundation', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'u.s. bancorp piper jaffray foundation']"
mdp.39015048889839,0,ic,1074822,,MIU,990010748220106381,17949923,"0915943263,9780915943265",,87063531,Ganado Red : a novella and stories / Susan Lowell ; foreword by Phillip Lopate ; designed and illustrated by R.W. Scholes.,"Milkweed Editions, 1988.",bib,2012-08-14 19:30:19,0,1988,mnu,eng,BK,MIU,umich,umich,google,google,"Lowell, Susan, 1950-",https://catalog.hathitrust.org/Record/1074822,https://hdl.handle.net/2027/mdp.39015048889839,Milkweed Editions,True,True,"['target', 'target', 'jerome foundation', None, 'united arts', None]"
mdp.39015048899788,0,ic,1090232,,MIU,990010902320106381,19099846,"091594331X,9780915943319",,,Traveling light : monologues / by Jim Stowell.,"Milkweed Editions, 1988.",bib,2012-07-07 19:30:23,0,1988,mnu,eng,BK,MIU,umich,umich,google,google,"Stowell, Jim.",https://catalog.hathitrust.org/Record/1090232,https://hdl.handle.net/2027/mdp.39015048899788,Milkweed Editions,True,True,"['national endowment for the arts', 'target', 'target', 'jerome foundation', None, 'united arts', None, 'metropolitan regional arts council']"
mdp.39015049484853,0,ic,4130855,,MIU,990041308550106381,43641128,"1571312455,9781571312457",,00023180,Eccentric islands : travels real and imaginary / Bill Holm.,"Milkweed Editions, c2000.",bib,2009-01-09 21:30:02,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Holm, Bill, 1943-2009.",https://catalog.hathitrust.org/Record/4130855,https://hdl.handle.net/2027/mdp.39015049484853,Milkweed Editions,True,True,"['james ford bell foundation', 'bush foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'norwest foundation', 'oswald family foundation', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'target', 'target', 'u.s. bancorp piper jaffray foundation']"
mdp.39015049528881,0,ic,4130009,,MIU,990041300090106381,40887145,"1571310282,9781571310286",,,"The boy without a flag : tales of the South Bronx / by Abraham Rodriguez, Jr.","Milkweed Editions, 1999.",bib,2012-03-18 19:30:20,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Rodriguez, Abraham, 1961-",https://catalog.hathitrust.org/Record/4130009,https://hdl.handle.net/2027/mdp.39015049528881,Milkweed Editions,True,True,"['star tribune foundation', 'target', 'target', 'ecolab foundation', 'first bank system foundation', 'general mills foundation', 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'northwest area foundation', ""i. a. o'shaughnessy foundation"", 'james ford bell foundation', 'bush foundation', 'target', 'target', 'doherty, rumble and butler foundation', 'whitney foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'norwest foundation', 'norwest foundation', 'norwest investment management and trust', 'oswald family foundation', 'piper jaffray companies, inc.', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'james r. thorpe foundation']"
mdp.39015049978136,0,ic,4153930,,MIU,990041539300106381,45100221,"157131248X,1571312498,9781571312488,9781571312495",,00048996,Writing the sacred into the real / Alison Hawthorne Deming.,"Milkweed Editions, 2001.",bib,2008-05-26 09:30:04,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Deming, Alison Hawthorne, 1946-",https://catalog.hathitrust.org/Record/4153930,https://hdl.handle.net/2027/mdp.39015049978136,Milkweed Editions,True,True,"['james ford bell foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'norwest foundation', 'norwest investment management and trust', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'u.s. bancorp piper jaffray foundation', 'u.s. bancorp piper jaffray foundation', 'bush foundation', 'target']"
mdp.39015049982260,0,ic,4157730,,MIU,990041577300106381,43115155,"1571314113,9781571314116",,99088540,Turning over the earth / Ralph Black.,"Milkweed Editions, 2000.",bib,2012-09-07 19:31:01,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Black, Ralph, 1960-",https://catalog.hathitrust.org/Record/4157730,https://hdl.handle.net/2027/mdp.39015049982260,Milkweed Editions,True,True,"['james ford bell foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'norwest foundation', 'oswald family foundation', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'target', 'target', 'u.s. bancorp piper jaffray foundation']"
mdp.39015050121329,0,ic,4113102,,MIU,990041131020106381,42476737,"1571314105,9781571314109",,99049399,Urban nature : poems about wildlife in the city / edited by Laure-Anne Bosselaar.,"Milkweed Editions, 2000.",bib,2012-06-20 10:04:06,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/4113102,https://hdl.handle.net/2027/mdp.39015050121329,Milkweed Editions,True,True,"['james ford bell foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'norwest foundation', 'oswald family foundation', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'target', 'target', 'u.s. bancorp piper jaffray foundation', 'u.s. bancorp piper jaffray foundation', 'bush foundation']"
mdp.39015050790750,0,ic,4185559,,MIU,990041855590106381,46783015,"1571312633,1571312641,9781571312631,9781571312648",,2001034283,Arctic refuge : a circle of testimony / compiled by Hank Lentfer and Carolyn Servid.,"Milkweed Editions, c2001.",bib,2010-09-14 04:30:04,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/4185559,https://hdl.handle.net/2027/mdp.39015050790750,Milkweed Editions,True,True,"['bush foundation', 'general mills foundation', ""marshall field's project imagine with support from the target foundation"", 'target', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'oswald family foundation', 'ritz foundation', None, 'st. paul companies', 'u.s. bancorp piper jaffray foundation']"
mdp.39015051169145,0,ic,1298503,,MIU,990012985030106381,18472022,,,87063533,This error is the sign of love : poems / by Lewis Hyde.,"Milkweed Editions, 1988.",bib,2013-04-21 19:25:19,0,1988,mnu,eng,BK,MIU,umich,umich,google,google,"Hyde, Lewis, 1945-",https://catalog.hathitrust.org/Record/1298503,https://hdl.handle.net/2027/mdp.39015051169145,Milkweed Editions,True,True,"['national endowment for the arts', 'united arts', 'target', 'target', 'first bank system foundation', 'jerome foundation', None, 'mcknight foundation', 'national endowment for the arts', None]"
mdp.39015053159615,0,ic,4208519,,MIU,990042085190106381,45505962,"157131413X,9781571314130",,00067863,"Song of the world becoming : new and collected poems, 1981-2001 / Pattiann Rogers.","Milkweed Editions, 2001.",bib,2012-03-18 19:30:21,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Rogers, Pattiann, 1940-",https://catalog.hathitrust.org/Record/4208519,https://hdl.handle.net/2027/mdp.39015053159615,Milkweed Editions,True,True,"['bush foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'norwest foundation', 'ritz foundation', None, 'st. paul companies', 'target', 'u.s. bancorp piper jaffray foundation']"
mdp.39015053382738,0,ic,4182663,,MIU,990041826630106381,45806369,"1571312528,1571312536,9781571312525,9781571312532",,2001016411,An American child supreme : the education of a liberation ecologist / John Nichols.,"Milkweed Editions, 2001.",bib,2012-04-19 19:31:16,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Nichols, John Treadwell, 1940-",https://catalog.hathitrust.org/Record/4182663,https://hdl.handle.net/2027/mdp.39015053382738,Milkweed Editions,True,True,"[""lila wallace reader's digest fund"", ""reader's legacy underwriter elly sturgis"", 'faegre and benson foundation', 'general mills foundation', ""marshall field's project imagine with support from the target foundation"", 'target', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'norwest foundation', 'oswald family foundation', 'ritz foundation', None, 'st. paul companies', 'u.s. bancorp piper jaffray foundation']"
mdp.39015053747658,0,ic,4213359,,MIU,990042133590106381,46732251,"1571310363,9781571310361",,2001030966,"Hell's Bottom, Colorado / Laura Pritchett.","Milkweed Editions, 2001.",bib,2012-03-12 19:31:04,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Pritchett, Laura, 1971-",https://catalog.hathitrust.org/Record/4213359,https://hdl.handle.net/2027/mdp.39015053747658,Milkweed Editions,True,True,"['jerome foundation', 'bush foundation', 'faegre and benson foundation', 'general mills foundation', ""marshall field's project imagine with support from the target foundation"", 'target', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'norwest foundation', 'oswald family foundation', 'ritz foundation', None, 'st. paul companies', 'u.s. bancorp piper jaffray foundation']"
mdp.39015054164432,0,ic,4238377,,MIU,990042383770106381,45257595,"1571312463,9781571312464",,,"Planning to stay : a collaborative project / by William R. Morrish and Catherine R. Brown ; with Michael Robinson, Charlie Quimby and Susan Braun ; with a foreword by Neal Peirce.","Milkweed Editions, 2000.",bib,2018-08-28 03:25:38,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Morrish, William R., 1948-",https://catalog.hathitrust.org/Record/4238377,https://hdl.handle.net/2027/mdp.39015054164432,Milkweed Editions,True,True,[]
mdp.39015055102340,0,ic,4255309,,MIU,990042553090106381,49312870,"1571312668,9781571312662",,2002002014,Winter creek : one writer's natural history / John Daniel.,"Milkweed Editions, 2002.",bib,2008-11-01 21:30:25,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Daniel, John, 1948-",https://catalog.hathitrust.org/Record/4255309,https://hdl.handle.net/2027/mdp.39015055102340,Milkweed Editions,True,True,"['bush foundation', 'general mills foundation', ""marshall field's project imagine with support from the target foundation"", 'target', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'wells fargo foundation minnesota', 'st. paul companies']"
mdp.39015055865987,0,ic,4287805,,MIU,990042878050106381,49679373,"1571310398,9781571310392",,2002006096,Roofwalker / Susan Power.,"Milkweed Editions, 2002.",bib,2012-04-04 19:32:42,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Power, Susan, 1961-",https://catalog.hathitrust.org/Record/4287805,https://hdl.handle.net/2027/mdp.39015055865987,Milkweed Editions,True,True,"['bush foundation', 'general mills foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'wells fargo foundation minnesota', 'st. paul companies', 'target', 'national endowment for the arts']"
mdp.39015055909629,0,ic,4279790,,MIU,990042797900106381,49276633,"1571312676,9781571312679",,2002002391,"The colors of nature : culture, identity, and the natural world / edited by Alison H. Deming and Lauret E. Savoy.","Milkweed Editions, 2002.",bib,2009-08-24 22:30:19,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/4279790,https://hdl.handle.net/2027/mdp.39015055909629,Milkweed Editions,True,True,"['eyewire collection / getty images', 'bush foundation', 'general mills foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'wells fargo foundation minnesota', 'national endowment for the arts', 'st. paul companies', 'target']"
mdp.39015056169686,0,ic,4301832,,MIU,990043018320106381,47667233,"1571314148,9781571314147",,2001044365,The porcelain apes of Moses Mendelssohn / Jean Nordhaus.,"Milkweed Editions, 2002.",bib,2012-09-07 19:31:28,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Nordhaus, Jean, 1939-",https://catalog.hathitrust.org/Record/4301832,https://hdl.handle.net/2027/mdp.39015056169686,Milkweed Editions,True,True,"['bush foundation', 'general mills foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'wells fargo foundation minnesota', 'national endowment for the arts', 'st. paul companies', 'target']"
mdp.39015056259370,0,ic,2518418,,MIU,990025184180106381,23462280,"0915943514,9780915943517",,91012967,Cracking India : a novel / Bapsi Sidhwa.,"Milkweed Editions, 1991.",bib,2013-05-15 04:25:07,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Sidhwa, Bapsi.",https://catalog.hathitrust.org/Record/2518418,https://hdl.handle.net/2027/mdp.39015056259370,Milkweed Editions,True,True,"['national endowment for the arts', 'star tribune foundation', 'target', 'target', 'first bank system foundation', ""i. a. o'shaughnessy foundation"", 'jerome foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation']"
mdp.39015056483038,0,ic,2518418,,MIU,990025184180106381,23462280,"0915943514,9780915943517",,91012967,Cracking India : a novel / Bapsi Sidhwa.,"Milkweed Editions, 1991.",bib,2012-08-01 19:30:34,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Sidhwa, Bapsi.",https://catalog.hathitrust.org/Record/2518418,https://hdl.handle.net/2027/mdp.39015056483038,Milkweed Editions,True,True,"['national endowment for the arts', 'star tribune foundation', 'target', 'target', 'first bank system foundation', ""i. a. o'shaughnessy foundation"", 'jerome foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation']"
mdp.39015056838470,0,ic,4337198,,MIU,990043371980106381,50919938,"1571314164,9781571314161",,2002152809,Morning earth : field notes in poetry / John Caddy.,"Milkweed Editions, c2003.",bib,2012-09-07 19:31:30,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Caddy, John.",https://catalog.hathitrust.org/Record/4337198,https://hdl.handle.net/2027/mdp.39015056838470,Milkweed Editions,True,True,"['bush foundation', 'joe b. foster family foundation', 'j. m. kaplan fund', 'general mills foundation', 'jerome foundation', 'dorothy kaplan light', ""lila wallace reader's digest fund"", ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'kate and stuart nielsen', 'surdna foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'united arts', 'xcel energy foundation', None, None]"
mdp.39015056899068,0,ic,4325523,,MIU,990043255230106381,50960832,"1571312722,9781571312723",,2002152810,Wild card quilt : taking a chance on home / Janisse Ray.,"Milkweed Editions, 2003.",bib,2010-03-19 20:30:09,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Ray, Janisse, 1962-",https://catalog.hathitrust.org/Record/4325523,https://hdl.handle.net/2027/mdp.39015056899068,Milkweed Editions,True,True,['del corazón family fund']
mdp.39015057621271,0,ic,4353698,,MIU,990043536980106381,51460949,"1571312730,9781571312730",,2003000530,Every war has two losers : William Stafford on peace and war / edited and with an introduction by Kim Stafford.,"Milkweed Editions, 2003.",bib,2012-03-18 19:30:24,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Stafford, William, 1914-1993.",https://catalog.hathitrust.org/Record/4353698,https://hdl.handle.net/2027/mdp.39015057621271,Milkweed Editions,True,True,"['bush foundation', 'dougherty family foundation', 'joe b. foster family foundation', 'j. m. kaplan fund', 'general mills foundation', 'jerome foundation', 'dorothy kaplan light', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'navarre corporation', 'surdna foundation', 'target', 'gertrude', 'debbie reynolds', None]"
mdp.39015058210173,0,ic,4367324,,MIU,990043673240106381,52757575,"1571314172,9781571314178",,2003016855,Playing the black piano / Bill Holm.,"Milkweed Editions, 2004.",bib,2009-03-25 23:30:05,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Holm, Bill, 1943-2009.",https://catalog.hathitrust.org/Record/4367324,https://hdl.handle.net/2027/mdp.39015058210173,Milkweed Editions,True,True,"['bush foundation', None, 'del corazón family fund', 'dougherty family foundation', 'ecolab foundation', 'joe b. foster family foundation', 'general mills foundation', 'jerome foundation', 'kathleen jones', 'constance b. kunin', 'd. k. light', 'chris and ann malecek', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'sheila c. morgan', 'laura jane musser fund', 'national endowment for the arts', 'navarre corporation', 'kate and stuart nielsen', 'qwest foundation', 'surdna foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'xcel energy foundation', 'debbie reynolds', None]"
mdp.39015058713218,0,ic,4363662,,MIU,990043636620106381,52208601,"1571312714,9781571312716",,2003010374,Toward the livable city / edited by Emilie Buchwald.,"Milkweed Editions, 2003.",bib,2012-07-07 19:30:24,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/4363662,https://hdl.handle.net/2027/mdp.39015058713218,Milkweed Editions,True,True,"[None, None, 'jerome foundation']"
mdp.39015059259443,0,ic,4961472,,MIU,990049614720106381,56591245,"1571314180,9781571314185",,2004021883,For my father falling asleep at Saint Mary's Hospital / Dennis Sampson.,"Milkweed Editions, 2005.",bib,2012-05-16 19:30:41,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Sampson, Dennis.",https://catalog.hathitrust.org/Record/4961472,https://hdl.handle.net/2027/mdp.39015059259443,Milkweed Editions,True,True,"['bush foundation', None, 'del corazón family fund', 'dougherty family foundation', 'ecolab foundation', 'joe b. foster family foundation', 'general mills foundation', 'jerome foundation', 'kathleen jones', 'constance b. kunin', 'd. k. light', 'chris and ann malecek', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'sheila c. morgan', 'laura jane musser fund', 'national endowment for the arts', 'navarre corporation', 'kate and stuart nielsen', 'outagamie charitable foundation', 'qwest foundation', 'surdna foundation', 'target', 'gertrude sexton thompson charitable trust', 'toro foundation', 'weyerhaeuser family foundation', 'xcel energy foundation', 'debbie reynolds', None]"
mdp.39015060102954,0,ic,4768768,,MIU,990047687680106381,52334929,"1571312706,9781571312709",,2003011419,Cross-pollinations : the marriage of science and poetry / Gary Paul Nabhan,"Milkweed Editions, 2004",bib,2012-06-25 19:30:19,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Nabhan, Gary Paul",https://catalog.hathitrust.org/Record/4768768,https://hdl.handle.net/2027/mdp.39015060102954,Milkweed Editions,True,True,"['the butterfly migration', 'toro foundation', 'bush foundation', None, 'del corazón family fund', 'dougherty family foundation', 'ecolab foundation', 'joe b. foster family foundation', 'general mills foundation', 'jerome foundation', 'kathleen jones', 'constance b. kunin', 'd. k. light', 'chris and ann malecek', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'sheila c. morgan', 'laura jane musser fund', 'national endowment for the arts', 'navarre corporation', 'kate and stuart nielsen', 'outagamie charitable foundation', 'qwest foundation', 'debbie reynolds', None]"
mdp.39015060620617,0,ic,4929488,,MIU,990049294880106381,54024071,"1571312692,9781571312693",,2004000560,"Transforming a rape culture / edited by Emilie Buchwald, Pamela Fletcher, and Martha Roth.","Milkweed Editions, 2004.",bib,2011-11-29 19:31:13,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/4929488,https://hdl.handle.net/2027/mdp.39015060620617,Milkweed Editions,True,True,"['bush foundation', None, 'del corazón family fund', 'dougherty family foundation', 'ecolab foundation', 'joe b. foster family foundation', 'general mills foundation', 'jerome foundation', 'kathleen jones', 'constance b. kunin', 'd. k. light', 'chris and ann malecek', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'sheila c. morgan', 'laura jane musser fund', 'national endowment for the arts', 'navarre corporation', 'kate and stuart nielsen', 'qwest foundation', 'surdna foundation', 'target', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'weyerhaeuser family foundation', 'xcel energy foundation', 'mcknight foundation', 'debbie reynolds', None]"
mdp.39015060839522,0,ic,4987781,,MIU,990049877810106381,56591246,"1571310428,9781571310422",,2004021884,Crossing Bully Creek / Margaret Erhart.,"Milkweed Editions, 2005.",bib,2012-05-16 19:30:43,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Erhart, Margaret.",https://catalog.hathitrust.org/Record/4987781,https://hdl.handle.net/2027/mdp.39015060839522,Milkweed Editions,True,True,"['bush foundation', None, 'del corazón family fund', 'dougherty family foundation', 'ecolab foundation', 'joe b. foster family foundation', 'general mills foundation', 'jerome foundation', 'kathleen jones', 'constance b. kunin', 'd. k. light', 'chris and ann malecek', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'sheila c. morgan', 'laura jane musser fund', 'national endowment for the arts', 'navarre corporation', 'kate and stuart nielsen', 'outagamie charitable foundation', 'qwest foundation', 'surdna foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'weyerhaeuser family foundation', 'xcel energy foundation', 'debbie reynolds', None]"
mdp.39015060839530,0,ic,4987785,,MIU,990049877850106381,57069606,"1571314202,9781571314208",,2004027353,Furia / Orlando Ricardo Menes.,"Milkweed Editions, 2005.",bib,2012-08-03 19:30:20,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Menes, Orlando Ricardo.",https://catalog.hathitrust.org/Record/4987785,https://hdl.handle.net/2027/mdp.39015060839530,Milkweed Editions,True,True,"['bush foundation', None, 'del corazón family fund', 'dougherty family foundation', 'ecolab foundation', 'joe b. foster family foundation', 'general mills foundation', 'jerome foundation', 'kathleen jones', 'constance b. kunin', 'd. k. light', 'chris and ann malecek', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'sheila c. morgan', 'laura jane musser fund', 'national endowment for the arts', 'navarre corporation', 'kate and stuart nielsen', 'outagamie charitable foundation', 'qwest foundation', 'surdna foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'weyerhaeuser family foundation', 'xcel energy foundation', 'debbie reynolds', None]"
mdp.39015061159821,0,ic,4729903,,MIU,990047426720106381,53356631,"1571312765,9781571312761",,2003024028,The Pine Island paradox / Kathleen Dean Moore.,"Milkweed Editions, 2004.",bib,2012-08-06 19:30:17,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Moore, Kathleen Dean.",https://catalog.hathitrust.org/Record/4729903,https://hdl.handle.net/2027/mdp.39015061159821,Milkweed Editions,True,True,"['bush foundation', None, 'dougherty family foundation', 'ecolab foundation', 'joe b. foster family foundation', 'general mills foundation', 'kathleen jones', 'constance b. kunin', 'd. k. light', 'chris and ann malecek', 'mcknight foundation', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'sheila c. morgan', 'jane musser fund', 'national endowment for the arts', 'navarre corporation', 'kate and stuart nielsen', 'outagamie charitable foundation', 'surdna foundation', 'target', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'weyerhaeuser family foundation', 'xcel energy foundation', 'debbie reynolds', None, 'toro foundation']"
mdp.39015061423094,0,ic,5038450,,MIU,990050384500106381,57008014,"1571310460,9781571310460",,2004027334,Sky bridge / Laura Pritchett.,"Milkweed Editions, c2005.",bib,2008-11-14 22:30:32,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Pritchett, Laura, 1971-",https://catalog.hathitrust.org/Record/5038450,https://hdl.handle.net/2027/mdp.39015061423094,Milkweed Editions,True,True,"['bush foundation', None, 'del corazón family fund', 'dougherty family foundation', 'ecolab foundation', 'joe b. foster family foundation', 'general mills foundation', 'kathleen jones', 'constance b. kunin', 'd. k. light', 'chris and ann malecek', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'sheila c. morgan', 'laura jane musser fund', 'national endowment for the arts', 'navarre corporation', 'kate and stuart nielsen', 'outagamie charitable foundation', 'surdna foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'weyerhaeuser family foundation', 'xcel energy foundation', 'debbie reynolds', None]"
mdp.39015061751437,0,ic,4380034,,MIU,990043800340106381,53434724,"1571310444,9781571310446",,2003024025,Ordinary wolves / Seth Kantner.,"Milkweed Editions, 2004.",bib,2012-09-07 19:31:44,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Kantner, Seth, 1965-",https://catalog.hathitrust.org/Record/4380034,https://hdl.handle.net/2027/mdp.39015061751437,Milkweed Editions,True,True,"['bush foundation', None, 'del corazón family fund', 'dougherty family foundation', 'ecolab foundation', 'joe b. foster family foundation', 'general mills foundation', 'kathleen jones', 'constance b. kunin', 'd. k. light', 'chris and ann malecek', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'sheila c. morgan', 'laura jane musser fund', 'national endowment for the arts', 'navarre corporation', 'stuart nielsen', 'outagamie charitable foundation', 'qwest foundation', 'surdna foundation', 'target', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'weyerhaeuser family foundation', 'xcel energy foundation', 'denis felix/getty images author', 'debbie reynolds', None]"
mdp.39015062546570,0,ic,5071295,,MIU,990050712950106381,58728989,"1571310452,9781571310453",,2005008404,Gardenias / Faith Sullivan.,"Milkweed Editions, c2005.",bib,2008-11-13 22:30:29,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Sullivan, Faith.",https://catalog.hathitrust.org/Record/5071295,https://hdl.handle.net/2027/mdp.39015062546570,Milkweed Editions,True,True,"['bush foundation', None, 'del corazón family fund', 'dougherty family foundation', 'ecolab foundation', 'joe b. foster family foundation', 'general mills foundation', 'jerome foundation', 'kathleen jones', 'constance b. kunin', 'd. k. light', 'chris and ann malecek', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'sheila c. morgan', 'laura jane musser fund', 'national endowment for the arts', 'navarre corporation', 'kate and stuart nielsen', 'outagamie charitable foundation', 'qwest foundation', 'surdna foundation', 'target', 'james r. thorpe foundation', 'toro foundation', 'weyerhaeuser family foundation', 'xcel energy foundation', 'debbie reynolds', None, 'gertrude sexton thompson charitable trust']"
mdp.39015062593986,0,ic,5083038,,MIU,990050830380106381,62073230,"1571314210,9781571314215",,,Firekeeper : selected poems / Pattiann Rogers.,"Milkweed Editions, c2005.",bib,2012-06-18 19:30:24,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Rogers, Pattiann.",https://catalog.hathitrust.org/Record/5083038,https://hdl.handle.net/2027/mdp.39015062593986,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', None, 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'd. k. light', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'sheila c. morgan', 'laura jane musser fund', 'national endowment for the arts', 'navarre corporation', 'st. paul travelers foundation', 'surdna foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'weyerhaeuser family foundation', 'xcel energy foundation']"
mdp.39015062836245,0,ic,5097171,,MIU,990050971710106381,61261277,"157131282X,9781571312822",,2005023103,"On the ice : an intimate portrait of life in McMurdo Station, Antarctica / Gretchen Legler.","Milkweed Editions, c2005.",bib,2012-07-01 19:30:26,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Legler, Gretchen.",https://catalog.hathitrust.org/Record/5097171,https://hdl.handle.net/2027/mdp.39015062836245,Milkweed Editions,True,True,[None]
mdp.39015062896819,0,ic,5110420,,MIU,990051104200106381,58728963,"1571314229,9781571314222",,2005008403,Some church / David Romtvedt.,"Milkweed Editions, 2005.",bib,2012-05-16 19:30:44,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Romtvedt, David.",https://catalog.hathitrust.org/Record/5110420,https://hdl.handle.net/2027/mdp.39015062896819,Milkweed Editions,True,True,"['navarre corporation', 'kate and stuart nielsen', 'outagamie charitable foundation', 'qwest foundation', 'surdna foundation', 'target', 'james r. thorpe foundation', 'xcel energy foundation', 'bush foundation', None, 'del corazón family fund', 'dougherty family foundation', 'ecolab foundation', 'joe b. foster family foundation', 'general mills foundation', 'jerome foundation', 'constance b. kunin', 'd. k. light', 'chris and ann malecek', 'mcknight foundation', 'minnesota state legislature', 'national endowment for the arts', 'sheila c. morgan', 'laura jane musser fund', 'national endowment for the arts', 'debbie reynolds', None, 'gertrude sexton thompson charitable trust', 'weyerhaeuser family foundation']"
mdp.39015064680088,0,ic,5222262,,MIU,990052222620106381,61694790,"1571314245,9781571314246",,2005027356,Blue lash / James Armstrong,"Milkweed Editions, 2006",bib,2012-06-25 19:30:23,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Armstrong, James, Ph. D.",https://catalog.hathitrust.org/Record/5222262,https://hdl.handle.net/2027/mdp.39015064680088,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', None, 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'greystone foundation', 'constance b. kunin', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'serene and christopher warren', 'xcel energy foundation', 'george hoeylaerts/istockphoto author', ""marshall field's gives"", None, 'debbie reynolds', None]"
mdp.39015064689261,0,ic,5225926,,MIU,990052259260106381,62281507,"1571314237,9781571314239",,2005031215,Wu wei / Tom Crawford,"Milkweed Editions, c2006",bib,2012-05-16 19:30:45,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Crawford, Tom, 1939-",https://catalog.hathitrust.org/Record/5225926,https://hdl.handle.net/2027/mdp.39015064689261,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', None, 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'greystone foundation', 'constance b. kunin', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'target', 'james r. thorpe foundation', 'toro foundation', 'w. m. foundation', 'xcel energy foundation', ""marshall field's gives"", None, 'debbie reynolds', None, 'gertrude sexton thompson charitable trust']"
mdp.39015064689659,0,ic,5225815,,MIU,990052258150106381,61703914,"1571310517,9781571310514",,2005027264,Visigoth : stories / Gary Amdahl,"Milkweed Editions, c2006",bib,2008-11-20 22:30:15,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Amdahl, Gary, 1956-",https://catalog.hathitrust.org/Record/5225815,https://hdl.handle.net/2027/mdp.39015064689659,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', 'patrick and aimee butler family foundation', None, 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'greystone foundation', 'constance b. kunin', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'w. m. foundation', 'xcel energy foundation', ""marshall field's gives"", 'debbie reynolds', None]"
mdp.39015064700647,0,ic,5243607,,MIU,990052436070106381,62282223,"1571312838,9781571312839",,2005032434,The love of impermanent things : a threshold ecology / Mary Rose O'Reilley.,"Milkweed Editions, 2006.",bib,2012-07-06 20:18:55,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"O'Reilley, Mary Rose.",https://catalog.hathitrust.org/Record/5243607,https://hdl.handle.net/2027/mdp.39015064700647,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', None, 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'constance b. kunin', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'serene and christopher warren', 'w. m. foundation', 'xcel energy foundation', ""marshall field's gives"", None, 'debbie reynolds', None, 'st. paul (minn.)—biography. i. title']"
mdp.39015064915211,0,ic,5283935,,MIU,990052839350106381,63178974,"1571312846,9781571312846",,2006002354,Postcards from Ed : dispatches and salvos from an American iconoclast / edited and with an introduction by David Petersen,"Milkweed Editions, 2006",bib,2008-09-24 21:30:15,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Abbey, Edward, 1927-1989",https://catalog.hathitrust.org/Record/5283935,https://hdl.handle.net/2027/mdp.39015064915211,Milkweed Editions,True,True,"['w. m. foundation', 'xcel energy foundation', 'bush foundation', 'patrick and aimee butler family foundation', None, 'dougherty family foundation', 'ecolab foundation', 'greystone foundation', 'constance b. kunin', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'target', 'gertrude sexton thompson charitable trust', 'toro foundation', ""marshall field's gives"", 'debbie reynolds', None]"
mdp.39015064984183,0,ic,5579932,,MIU,990055799320106381,84903942,"1571313036,9781571313034",,2007007232,The wet collection / Joni Tevis,"Milkweed Editions, 2007",bib,2012-06-25 19:30:24,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Tevis, Joni",https://catalog.hathitrust.org/Record/5579932,https://hdl.handle.net/2027/mdp.39015064984183,Milkweed Editions,True,True,"['jerome foundation', 'bush foundation', 'patrick and aimee butler family foundation', 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'claire giannini fund', 'jerome foundation', 'dorothy kaplan light', 'ernest light', 'constance b. kunin', 'marshall bankfirst corp.', None, 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'w. m. foundation', 'xcel energy foundation', 'debbie reynolds', None]"
mdp.39015066896351,0,ic,5408791,,MIU,990054087910106381,70158488,"1571314253,9781571314253",,2006020273,Uncoded woman / Anne-Marie Oomen,"Milkweed Editions, 2006",bib,2012-06-26 19:30:22,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Oomen, Anne-Marie",https://catalog.hathitrust.org/Record/5408791,https://hdl.handle.net/2027/mdp.39015066896351,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', None, 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'kathleen jones', 'd. k. light', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'sheila c. morgan', 'laura jane musser fund', 'national endowment for the arts', 'navarre corporation', 'st. paul travelers foundation', 'surdna foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'weyerhaeuser family foundation', 'xcel energy foundation', 'debbie reynolds', None]"
mdp.39015066900773,0,ic,5616474,,MIU,990056164740106381,124039137,"1571310576,9781571310576",,2007017509,The farther shore / Matthew Eck,"Milkweed Editions, 2007",bib,2012-06-25 19:30:25,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Eck, Matthew, 1974-",https://catalog.hathitrust.org/Record/5616474,https://hdl.handle.net/2027/mdp.39015066900773,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'claire giannini fund', 'jerome foundation', 'dorothy kaplan light', 'ernest light', 'constance b. kunin', 'marshall bankfirst corp.', 'department stores company foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'st. paul travelers foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'united parcel service', 'kathleen and bill wanner', 'w. m. foundation', 'xcel energy foundation', 'debbie reynolds']"
mdp.39015068803231,0,ic,5560244,,MIU,990055602440106381,73993115,"1571314288,9781571314284",,2006033341,Music for landing planes by / Éireann Lorsung.,"Milkweed Editions, 2007.",bib,2012-07-01 19:30:29,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Lorsung, Éireann, 1980-",https://catalog.hathitrust.org/Record/5560244,https://hdl.handle.net/2027/mdp.39015068803231,Milkweed Editions,True,True,"['jerome foundation', 'bush foundation', 'patrick and aimee butler family foundation', 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'claire giannini fund', 'jerome foundation', 'dorothy kaplan light', 'constance b. kunin', 'marshall bankfirst corp.', None, 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'moira and john turner', 'united parcel service', 'w. m. foundation', 'xcel energy foundation', 'debbie reynolds', None]"
mdp.39015070729853,0,ic,5596474,,MIU,990055964740106381,73993111,"1571314261,9781571314260",,2006033339,"Willow room, green door : new and selected poems / Deborah Keenan","Milkweed Editions, 2007",bib,2012-06-25 19:30:26,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Keenan, Deborah",https://catalog.hathitrust.org/Record/5596474,https://hdl.handle.net/2027/mdp.39015070729853,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'claire giannini fund', 'jerome foundation', 'ernest light', 'constance b. kunin', 'marshall bankfirst corp.', None, 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'united parcel service', 'w. m. foundation', 'xcel energy foundation', 'the fathers walking away from', 'debbie reynolds', None]"
mdp.39015074223523,0,ic,5699255,,MIU,990056992550106381,181072694,"157131427X,9781571314277",,2007046471,With mouths open wide : new & selected poems / John Caddy.,"Milkweed Editions, 2008.",bib,2008-08-20 22:30:15,0,2008,mnu,eng,BK,MIU,umich,umich,google,google,"Caddy, John.",https://catalog.hathitrust.org/Record/5699255,https://hdl.handle.net/2027/mdp.39015074223523,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'claire giannini fund', 'jerome foundation', 'dorothy kaplan light', 'ernest light', 'constance b. kunin', 'marshall bankfirst corp.', None, 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', None, 'st. paul travelers foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'united parcel service', 'w. m. foundation', 'xcel energy foundation']"
mdp.39015074235766,0,ic,5654351,,MIU,990056543510106381,86037861,"1571316760,9781571316769",,2007003917,"The cat, or, how I lost eternity / Jutta Richter ; translated by Anna Brailovsky.","Milkweed Editions, 2007.",bib,2010-07-07 20:30:25,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Richter, Jutta, 1955-",https://catalog.hathitrust.org/Record/5654351,https://hdl.handle.net/2027/mdp.39015074235766,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'claire giannini fund', 'jerome foundation', 'dorothy kaplan light', 'ernest light', 'constance b. kunin', 'marshall bankfirst corp.', None, 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'target', 'james r. thorpe foundation', 'toro foundation', 'united parcel service', 'w. m. foundation', 'xcel energy foundation', 'carl hanser verlag', 'debbie reynolds', None, 'gertrude sexton thompson charitable trust']"
mdp.39015078775932,0,ic,5978201,,MIU,990059782010106381,229749284,"1571314350,9781571314352",,2008023327,The book of props : poems / Wayne Miller.,"Milkweed Editions, 2009.",bib,2010-07-09 19:30:15,0,2009,mnu,eng,BK,MIU,umich,umich,google,google,"Miller, Wayne, 1976-",https://catalog.hathitrust.org/Record/5978201,https://hdl.handle.net/2027/mdp.39015078775932,Milkweed Editions,True,True,"['patrick and aimee butler family foundation', 'dougherty family foundation', 'ecolab foundation', 'claire giannini fund', 'jerome foundation', 'lerner family foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'target', 'james r. thorpe foundation', None, 'u. s. trust company', 'joanne and phil von blon', 'w. m. foundation', 'target']"
mdp.39015078792234,0,ic,6769391,,MIU,990067693910106381,233030409,"1571314326,9781571314321",,2008029321,Rooms and their airs / Jody Gladding.,"Milkweed Editions, 2009.",bib,2010-07-10 20:31:40,0,2009,mnu,eng,BK,MIU,umich,umich,google,google,"Gladding, Jody, 1955-",https://catalog.hathitrust.org/Record/6769391,https://hdl.handle.net/2027/mdp.39015078792234,Milkweed Editions,True,True,"['patrick and aimee butler family foundation', 'patrick and aimee butler family foundation', 'dougherty family foundation', 'ecolab foundation', 'claire giannini fund', 'constance b. kunin', 'lerner family foundation', 'sanders and tasha marvin', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'ann and doug ness', 'target', None, 'target', 'mcknight foundation']"
mdp.39015078806356,0,ic,6804087,,MIU,990068040870106381,262431123,"1571310746,9781571310743",,2008047008,The hospital for bad poets / J.C. Hallman.,"Milkweed Editions, 2009.",bib,2010-07-09 20:30:42,0,2009,mnu,eng,BK,MIU,umich,umich,google,google,"Hallman, J. C.",https://catalog.hathitrust.org/Record/6804087,https://hdl.handle.net/2027/mdp.39015078806356,Milkweed Editions,True,True,"['patrick and aimee butler family foundation', 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'claire giannini fund', 'jerome foundation', 'constance', 'daniel kunin', 'lerner family foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'ann and doug ness', 'target', None, None, 'target']"
mdp.39015082643589,0,ic,5879031,,MIU,990058790310106381,162507361,"1571310630,9781571310637",,2007032041,The Pakistani bride / Bapsi Sidhwa.,"Milkweed Editions, 2008.",bib,2010-07-09 19:30:24,0,2008,mnu,eng,BK,MIU,umich,umich,google,google,"Sidhwa, Bapsi.",https://catalog.hathitrust.org/Record/5879031,https://hdl.handle.net/2027/mdp.39015082643589,Milkweed Editions,True,True,"['national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'st. paul travelers foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'moira and john turner', 'united parcel service', 'kathleen and bill wanner', 'w. m. foundation', 'xcel energy foundation', 'bush foundation', 'patrick and aimee butler family foundation', 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'claire giannini fund', 'jerome foundation', 'constance b. kunin', None, 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature']"
mdp.49015002558865,0,ic,4580029,,MIU,990045800290106381,44676084,"1571312390,9781571312396",,00060091,A wing in the door : life with a red-tailed hawk / Peri Phillips McQuay.,"Milkweed Editions, 2001.",bib,2010-09-17 20:31:38,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"McQuay, Peri Phillips, 1945-",https://catalog.hathitrust.org/Record/4580029,https://hdl.handle.net/2027/mdp.49015002558865,Milkweed Editions,True,True,"['james ford bell foundation', 'bush foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'norwest foundation', 'oswald family foundation', 'ritz foundation', 'st. paul companies', 'star tribune foundation', 'target', 'target', 'u.s. bancorp piper jaffray foundation']"
mdp.49015003392629,0,ic,2533390,,MIU,990025333900106381,23583668,"0915943670,0915943824,9780915943678,9780915943821",,91015082,Mixed voices : contemporary poems about music / edited by Emilie Buchwald and Ruth Roston ; design and graphics by R.W. Scholes.,"Milkweed Editions, 1991.",bib,2012-01-14 04:30:04,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2533390,https://hdl.handle.net/2027/mdp.49015003392629,Milkweed Editions,True,True,"['national endowment for the arts', 'star tribune foundation', 'target', 'target', 'first bank system foundation', 'general mills foundation', 'jerome foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation']"
pst.000044294649,0,ic,4038479,,PST,a1921465,40354778,"1571312242,1571312277,9781571312242,9781571312273",,98050947,Brown dog of the Yaak : essays on art and activism / Rick Bass.,"Milkweed Editions, 1999.",bib,2014-11-12 03:27:18,0,1999,mnu,eng,BK,PST,psu,psu,google,google,"Bass, Rick, 1958-",https://catalog.hathitrust.org/Record/4038479,https://hdl.handle.net/2027/pst.000044294649,Milkweed Editions,True,True,"['national endowment for the arts', 'james ford bell foundation', 'target', 'target', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'norwest foundation', 'oswald family foundation', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'u.s. bancorp piper jaffray foundation']"
pst.000054547193,0,ic,7057220,,PST,a2848093,56615705,"157131654X,9781571316547",,2004021885,The Great Lakes / edited by Sara St. Antoine ; maps by Paul Mirocha ; illustrations by Trudy Nicholson.,"Milkweed Editions, 2005, c2003.",bib,2014-11-07 03:33:59,0,2005,mnu,eng,BK,PST,psu,psu,google,google,,https://catalog.hathitrust.org/Record/7057220,https://hdl.handle.net/2027/pst.000054547193,Milkweed Editions,True,True,"['bush foundation', None, 'del corazón family fund', 'dougherty family foundation', 'ecolab foundation', 'joe b. foster family foundation', 'general mills foundation', 'jerome foundation', 'kathleen jones', 'constance b. kunin', 'd. k. light', 'chris and ann malecek', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'sheila c. morgan', 'laura jane musser fund', 'national endowment for the arts', 'navarre corporation', 'stuart nielsen', 'outagamie charitable foundation', 'qwest foundation', 'surdna foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'weyerhaeuser family foundation', 'xcel energy foundation', 'debbie reynolds', None]"
pst.000056307061,0,ic,7041789,,PST,a2747455,45831529,"1571312471,9781571312471",,,Ecology of a Cracker childhood / Janisse Ray.,"Milkweed Editions, 1999.",bib,2014-11-08 03:25:34,0,1999,mnu,eng,BK,PST,psu,psu,google,google,"Ray, Janisse, 1962-",https://catalog.hathitrust.org/Record/7041789,https://hdl.handle.net/2027/pst.000056307061,Milkweed Editions,True,True,"['creation and presentation programs of the national endowment for the arts', 'james ford bell foundation', 'bush foundation', 'general mills foundation', 'honeywell foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'norwest foundation', 'oswald family foundation', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'target', 'target', 'u.s. bancorp piper jaffray foundation']"
pst.000065243954,0,ic,12270460,,PST,a4825950,212897030,"1571313087,9781571313089",,,Being caribou : five months on foot with an Arctic herd / Karsten Heuer.,"Milkweed Editions, 2008, c2005.",bib,2014-11-05 10:29:39,0,2008,mnu,eng,BK,PST,psu,psu,google,google,"Heuer, Karsten.",https://catalog.hathitrust.org/Record/12270460,https://hdl.handle.net/2027/pst.000065243954,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', 'dougherty family foundation', 'ecolab foundation', 'claire giannini fund', 'jerome foundation', 'dorothy kaplan light', 'ernest light', 'constance b. kunin', None, 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'st. paul travelers foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'united parcel service', 'w. m. foundation', 'xcel energy foundation', 'debbie reynolds', None]"
txu.059173000076834,0,ic,2615285,,TXU,b37864920,25130676,"0915943743,9780915943746",,91045672,"The boy without a flag : tales of the South Bronx / by Abraham Rodriguez, Jr.","Milkweed Editions, 1992.",bib,2016-04-23 03:27:55,0,1992,mnu,eng,BK,TXU,utexas,utexas,google,google,"Rodriguez, Abraham, 1961-",https://catalog.hathitrust.org/Record/2615285,https://hdl.handle.net/2027/txu.059173000076834,Milkweed Editions,True,True,[]
txu.059173004366825,0,ic,3172515,,TXU,b4316285x,36074376,"1571310134,9781571310132",,"96040156,96040156 //r97",The tree of red stars / Tessa Bridal.,"Milkweed Editions ; Distributed by Publishers Group West, 1997.",bib,2016-04-23 03:28:45,0,1997,mnu,eng,BK,TXU,utexas,utexas,google,google,"Bridal, Tessa, 1947-",https://catalog.hathitrust.org/Record/3172515,https://hdl.handle.net/2027/txu.059173004366825,Milkweed Editions,True,True,[]
txu.059173005574840,0,ic,2615285,,TXU,b37864920,25130676,"0915943743,9780915943746",,91045672,"The boy without a flag : tales of the South Bronx / by Abraham Rodriguez, Jr.","Milkweed Editions, 1992.",bib,2016-04-23 03:27:55,0,1992,mnu,eng,BK,TXU,utexas,utexas,google,google,"Rodriguez, Abraham, 1961-",https://catalog.hathitrust.org/Record/2615285,https://hdl.handle.net/2027/txu.059173005574840,Milkweed Editions,True,True,[]
txu.059173023657472,0,ic,1074822,,TXU,b25566933,17949923,"0915943263,9780915943265",,87063531,Ganado Red : a novella and stories / Susan Lowell ; foreword by Phillip Lopate ; designed and illustrated by R.W. Scholes.,"Milkweed Editions, 1988.",bib,2016-04-30 03:26:23,0,1988,mnu,eng,BK,TXU,utexas,utexas,google,google,"Lowell, Susan, 1950-",https://catalog.hathitrust.org/Record/1074822,https://hdl.handle.net/2027/txu.059173023657472,Milkweed Editions,True,True,[]
txu.059173031152733,0,ic,101175235,,TXU,b69723618,166269068,"1571316752,9781571316752",,,No place / Kay Haugaard.,"Milkweed Editions, 2007.",bib,2016-05-10 03:32:24,0,2007,mnu,eng,BK,TXU,utexas,utexas,google,google,"Haugaard, Kay.",https://catalog.hathitrust.org/Record/101175235,https://hdl.handle.net/2027/txu.059173031152733,Milkweed Editions,True,True,[]
uc1.31822002932390,0,ic,2884030,,UC,b21090798,15901520,"0915943166,0915943174,0915943182,9780915943166,9780915943173,9780915943180",,86060749,Spillville / text by Patricia Hampl ; engravings by Steven Sorman,"Milkweed Editions, 1987",bib,2010-10-22 20:32:00,0,1987,mnu,eng,BK,UCSD,universityofcalifornia,universityofcalifornia,google,google,"Hampl, Patricia, 1946-",https://catalog.hathitrust.org/Record/2884030,https://hdl.handle.net/2027/uc1.31822002932390,Milkweed Editions,True,True,[]
uc1.31822029698537,0,ic,7239510,,UC,b42136106,43333554,"1571312447,9781571312440",,00021056,"Swimming with giants : my encounters with whales, dolphins, and seals / Anne Collet with Marc Sich ; translated by Gayle Wurst","Milkweed Editions, 2000",bib,2009-11-29 22:30:05,0,2000,mnu,eng,BK,UCSD,universityofcalifornia,universityofcalifornia,google,google,"Collet, Anne",https://catalog.hathitrust.org/Record/7239510,https://hdl.handle.net/2027/uc1.31822029698537,Milkweed Editions,True,True,"['national endowment for the arts', 'bell foundation', 'bush foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'norwest foundation', 'oswald family foundation', 'ritz foundation', 'st. paul companies', 'star tribune foundation', 'target', 'target', 'target', 'u.s. bancorp piper jaffray foundation']"
uc1.32106007887364,0,ic,2884030,,UC,b10799631,15901520,"0915943166,0915943174,0915943182,9780915943166,9780915943173,9780915943180",,86060749,Spillville / text by Patricia Hampl ; engravings by Steven Sorman,"Milkweed Editions, 1987",bib,2010-09-17 20:32:07,0,1987,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Hampl, Patricia, 1946-",https://catalog.hathitrust.org/Record/2884030,https://hdl.handle.net/2027/uc1.32106007887364,Milkweed Editions,True,True,"['national endowment for the arts', 'northwest area foundation', 'target']"
uc1.32106009681195,0,ic,2551337,,UC,b11889925,22549654,,,"90-4119,90004119","The passionate, accurate story : making your heart's truth into literature / Carol Bly.","Milkweed Editions, [1990].",bib,2010-12-23 20:32:52,0,1990,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Bly, Carol.",https://catalog.hathitrust.org/Record/2551337,https://hdl.handle.net/2027/uc1.32106009681195,Milkweed Editions,True,True,"['national endowment for the arts', None, 'target', 'general mills foundation', 'jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation']"
uc1.32106009789527,0,ic,7109360,,UC,b12238120,22890074,"091594362X,9780915943623",,"90-25970,90025970",The art of writing : Lu Chi's Wen fu / translated by Sam Hamill.,"Milkweed Editions, 1991.",bib,2010-09-10 20:30:54,0,1991,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Lu, Chi, 261-303.",https://catalog.hathitrust.org/Record/7109360,https://hdl.handle.net/2027/uc1.32106009789527,Milkweed Editions,True,True,"['national endowment for the arts', 'star tribune foundation', 'target', 'target', 'general mills foundation', ""i. a. o'shaughnessy foundation"", 'jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation']"
uc1.32106010567581,0,ic,7107869,,UC,b11491516,20013759,"0915943441,9780915943449",,89036395,Ballroom : photographs / by Ken Graves and Eva Lipman.,"Milkweed Editions, 1989.",bib,2010-09-16 19:32:24,0,1989,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Graves, Ken, 1942-",https://catalog.hathitrust.org/Record/7107869,https://hdl.handle.net/2027/uc1.32106010567581,Milkweed Editions,True,True,"['bush foundation', 'star tribune foundation', 'target', 'target', 'jerome foundation', 'national endowment for the arts', 'minnesota state arts board', 'minnesota state legislature', 'minnesota state arts board', 'national endowment for the arts', 'mcknight foundation', 'minnesota state arts board']"
uc1.32106010600325,0,ic,7110480,,UC,b12737227,25316160,"0915943840,9780915943845",,92004371,Minnesota gothic / poems by Mark Vinz ; photographs by Wayne Gudmundson.,"Milkweed Editions, 1992.",bib,2009-12-07 22:30:13,0,1992,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Vinz, Mark, 1943-",https://catalog.hathitrust.org/Record/7110480,https://hdl.handle.net/2027/uc1.32106010600325,Milkweed Editions,True,True,"['national endowment for the arts', 'star tribune foundation', 'target', 'target', 'ecolab foundation', 'first bank system foundation', 'general mills foundation', ""i. a. o'shaughnessy foundation"", 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation']"
uc1.32106011830277,0,ic,2880012,,UC,b12982878,25369158,"0915943859,9780915943852",,92004153,Clay & star : contemporary Bulgarian poets / translated and edited by Lisa Sapinkopf and Georgi Belev ; introduction by Charles A. Moser.,"Milkweed Editions, 1992.",bib,2010-09-07 20:32:42,0,1992,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/2880012,https://hdl.handle.net/2027/uc1.32106011830277,Milkweed Editions,True,True,"[None, 'national endowment for the arts', 'star tribune foundation', 'target', 'target', 'ecolab foundation', 'first bank system foundation', ""i. a. o'shaughnessy foundation"", 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation']"
uc1.32106013075426,0,ic,8326981,,UC,b19185182,34590879,"1571312145,9781571312143",,96008264,Chasing hellhounds : a teacher learns from his students / Marvin Hoffman,"Milkweed Editions ; Distributed by Publishers Group West, 1996",bib,2010-07-20 08:59:13,0,1996,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Hoffman, Marvin, 1939-",https://catalog.hathitrust.org/Record/8326981,https://hdl.handle.net/2027/uc1.32106013075426,Milkweed Editions,True,True,"['bush foundation', 'target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', None, 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'ritz foundation', 'st. paul companies', None, 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund"", None, None]"
uc1.32106013439036,0,ic,8323505,,UC,b19306180,35223134,"157131010X,9781571310101",,96034814,Sacred ground : writings about home / [edited by] Barbara Bonner,"Milkweed Editions : Distributed by Publishers Group West, c1996",bib,2010-07-20 08:57:50,0,1996,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/8323505,https://hdl.handle.net/2027/uc1.32106013439036,Milkweed Editions,True,True,"['bush foundation', 'target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', None, 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'piper jaffray companies, inc.', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', 'u.s. west foundation', ""lila wallace reader's digest fund""]"
uc1.32106015457523,0,ic,7474628,,UC,b12945808,27429979,"0915943654,9780915943654",,93016148,Basic needs : a year with street kids in a city school / by Julie Landsman.,"Milkweed Editions, 1993.",bib,2010-07-20 09:04:16,0,1993,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Landsman, Julie.",https://catalog.hathitrust.org/Record/7474628,https://hdl.handle.net/2027/uc1.32106015457523,Milkweed Editions,True,True,"['jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'general mills foundation', 'honeywell foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'northwest area foundation', ""i. a. o'shaughnessy foundation"", 'star tribune foundation', 'surdna foundation', ""lila wallace reader's digest fund""]"
uc1.32106015487181,0,ic,7138004,,UC,b20641047,40776883,"1571312293,1571312307,9781571312297,9781571312303",,99018336,The country of language / Scott Russell Sanders,"Milkweed Editions : Distributed by Publishers Group West, 1999",bib,2010-09-19 20:33:06,0,1999,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Sanders, Scott R. 1945-",https://catalog.hathitrust.org/Record/7138004,https://hdl.handle.net/2027/uc1.32106015487181,Milkweed Editions,True,True,"['digest fund', 'creation and presentation programs of the national endowment for the arts', 'james ford bell foundation', 'target', 'target', 'dorsey and whitney foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'norwest foundation', 'norwest foundation', 'oswald family foundation', 'ritz foundation', None, 'st. paul companies', 'u.s. bancorp piper jaffray foundation']"
uc1.32106015830091,0,ic,7129974,,UC,b18002754,28854443,"0915943875,9780915943876",,93033206,"The phoenix gone, the terrace empty / Marilyn Chin.","Milkweed Editions, 1994.",bib,2010-09-13 19:30:14,0,1994,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Chin, Marilyn.",https://catalog.hathitrust.org/Record/7129974,https://hdl.handle.net/2027/uc1.32106015830091,Milkweed Editions,True,True,"['jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'general mills foundation', 'honeywell foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'national endowment for the arts', 'northwest area foundation', ""i. a. o'shaughnessy foundation"", None, 'piper jaffray companies, inc.', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', 'unity avenue foundation', 'the terrace empty / by marilyn chin.—1st ed', ""lila wallace reader's digest fund"", 'council of literary magazines and presses', None]"
uc1.32106016689710,0,ic,5807236,,UC,b2933097x,176988920,"1571310711,9781571310712",,2008000365,I am death : two novellas / by Gary Amdahl,"Milkweed Editions, 2008",bib,2010-07-20 08:54:58,0,2008,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Amdahl, Gary, 1956-",https://catalog.hathitrust.org/Record/5807236,https://hdl.handle.net/2027/uc1.32106016689710,Milkweed Editions,True,True,"['minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', None, 'st. paul travelers foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'united parcel service', 'w. m. foundation', 'bush foundation', 'patrick and aimee butler family foundation', 'dougherty family foundation', 'ecolab foundation', 'claire giannini fund', 'jerome foundation', 'ernest light', 'constance b. kunin', 'marshall bankfirst corp.', None, 'mcknight foundation', 'debbie reynolds']"
uc1.32106017007920,0,ic,7143409,,UC,b22815041,51937048,"1571312749,9781571312747",,2003006784,Back under sail : recovering the spirit of adventure / Migael Scherer,"Milkweed Editions, 2003",bib,2010-09-17 20:30:49,0,2003,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Scherer, Migael",https://catalog.hathitrust.org/Record/7143409,https://hdl.handle.net/2027/uc1.32106017007920,Milkweed Editions,True,True,"['emilie and henry buchwald', 'dougherty family foundation', 'joe b. foster family foundation', 'j. m. kaplan fund', 'general mills foundation', 'jerome foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'navarre corporation', 'surdna foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'united arts', 'xcel energy foundation', 'debbie reynolds', None]"
uc1.32106017373165,0,ic,4768768,,UC,b22957650,52334929,"1571312706,9781571312709",,2003011419,Cross-pollinations : the marriage of science and poetry / Gary Paul Nabhan,"Milkweed Editions, 2004",bib,2010-10-22 20:31:27,0,2004,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Nabhan, Gary Paul",https://catalog.hathitrust.org/Record/4768768,https://hdl.handle.net/2027/uc1.32106017373165,Milkweed Editions,True,True,"['the butterfly migration', 'toro foundation', 'bush foundation', None, 'del corazón family fund', 'dougherty family foundation', 'ecolab foundation', 'joe b. foster family foundation', 'general mills foundation', 'jerome foundation', 'kathleen jones', 'constance b. kunin', 'd. k. light', 'chris and ann malecek', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'sheila c. morgan', 'laura jane musser fund', 'national endowment for the arts', 'navarre corporation', 'kate and stuart nielsen', 'outagamie charitable foundation', 'qwest foundation', 'debbie reynolds', None]"
uc1.32106017777639,0,ic,7144560,,UC,b23412628,54759289,"1571310436,9781571310439",,2004005288,Katya / Sandra Birdsell,"Milkweed Editions, 2004",bib,2010-09-04 20:30:15,0,2004,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Birdsell, Sandra, 1942-",https://catalog.hathitrust.org/Record/7144560,https://hdl.handle.net/2027/uc1.32106017777639,Milkweed Editions,True,True,"['bush foundation', None, 'del corazón family fund', 'dougherty family foundation', 'ecolab foundation', 'joe b. foster family foundation', 'general mills foundation', 'kathleen jones', 'constance b. kunin', 'd. k. light', 'chris and ann malecek', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'sheila c. morgan', 'laura jane musser fund', 'national endowment for the arts', 'navarre corporation', 'kate and stuart nielsen', 'outagamie charitable foundation', 'surdna foundation', 'target', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'weyerhaeuser family foundation', 'xcel energy foundation', 'debbie reynolds', None]"
uc1.32106017878049,0,ic,7145123,,UC,b23752762,56591247,"1571312757,9781571312754",,2004021888,At the end of Ridge Road / Joseph Bruchac,"Milkweed Editions, c2005",bib,2010-09-10 20:30:16,0,2005,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Bruchac, Joseph, 1942-",https://catalog.hathitrust.org/Record/7145123,https://hdl.handle.net/2027/uc1.32106017878049,Milkweed Editions,True,True,"['bush foundation', None, 'del corazón family fund', 'dougherty family foundation', 'ecolab foundation', 'joe b. foster family foundation', 'general mills foundation', 'kathleen jones', 'constance b. kunin', 'd. k. light', 'chris and ann malecek', 'mcknight foundation', 'minnesota state legislature', 'national endowment for the arts', 'sheila c. morgan', 'laura jane musser fund', 'national endowment for the arts', 'navarre corporation', 'kate and stuart nielsen', 'qwest foundation', 'surdna foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'weyerhaeuser family foundation', 'xcel energy foundation', 'debbie reynolds', None]"
uc1.32106018445467,0,ic,5225815,,UC,b24758097,61703914,"1571310517,9781571310514",,2005027264,Visigoth : stories / Gary Amdahl,"Milkweed Editions, c2006",bib,2009-11-24 22:30:19,0,2006,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Amdahl, Gary, 1956-",https://catalog.hathitrust.org/Record/5225815,https://hdl.handle.net/2027/uc1.32106018445467,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', 'patrick and aimee butler family foundation', None, 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'greystone foundation', 'constance b. kunin', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'debbie reynolds; st. paul travelers foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'w. m. foundation', 'xcel energy foundation', ""marshall field's gives""]"
uc1.32106018463395,0,ic,7147125,,UC,b25954295,70407811,"157131055X,9781571310552",,2006022865,The blue sky : a novel / Galsan Tschinag ; translated from the German by Katharina Rout,"Milkweed Editions, 2006",bib,2009-12-05 23:30:11,0,2006,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Tschinag, Galsan, 1943-",https://catalog.hathitrust.org/Record/7147125,https://hdl.handle.net/2027/uc1.32106018463395,Milkweed Editions,True,True,"['st. paul travelers foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'w. m. foundation', 'xcel energy foundation', 'bush foundation', 'patrick and aimee butler family foundation', None, 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'the liberal arts', 'constance b. kunin', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'patrick and aimee butler family foundation', 'debbie reynolds', None]"
uc1.32106018474822,0,ic,5283935,,UC,b24964013,63178974,"1571312846,9781571312846",,2006002354,Postcards from Ed : dispatches and salvos from an American iconoclast / edited and with an introduction by David Petersen,"Milkweed Editions, 2006",bib,2010-09-13 19:30:06,0,2006,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Abbey, Edward, 1927-1989",https://catalog.hathitrust.org/Record/5283935,https://hdl.handle.net/2027/uc1.32106018474822,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', None, 'dougherty family foundation', 'ecolab foundation', 'greystone foundation', 'constance b. kunin', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'target', 'gertrude sexton thompson charitable trust', 'toro foundation', 'w. m. foundation', 'xcel energy foundation', ""marshall field's gives"", 'debbie reynolds', None]"
uc1.32106018535960,0,ic,5222262,,UC,b2472354x,61694790,"1571314245,9781571314246",,2005027356,Blue lash / James Armstrong,"Milkweed Editions, 2006",bib,2009-12-07 22:30:16,0,2006,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Armstrong, James, Ph. D.",https://catalog.hathitrust.org/Record/5222262,https://hdl.handle.net/2027/uc1.32106018535960,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', None, 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'greystone foundation', 'constance b. kunin', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'serene and christopher warren', 'xcel energy foundation', 'george hoeylaerts/istockphoto author', ""marshall field's gives"", None, 'debbie reynolds', None]"
uc1.32106018721727,0,ic,5225926,,UC,b24758164,62281507,"1571314237,9781571314239",,2005031215,Wu wei / Tom Crawford,"Milkweed Editions, c2006",bib,2010-09-16 19:32:30,0,2006,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Crawford, Tom, 1939-",https://catalog.hathitrust.org/Record/5225926,https://hdl.handle.net/2027/uc1.32106018721727,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', None, 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'greystone foundation', 'constance b. kunin', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'target', 'james r. thorpe foundation', 'toro foundation', 'w. m. foundation', 'xcel energy foundation', ""marshall field's gives"", None, 'debbie reynolds', None, 'gertrude sexton thompson charitable trust']"
uc1.32106018766417,0,ic,5579932,,UC,b26617961,84903942,"1571313036,9781571313034",,2007007232,The wet collection / Joni Tevis,"Milkweed Editions, 2007",bib,2010-09-21 19:30:11,0,2007,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Tevis, Joni",https://catalog.hathitrust.org/Record/5579932,https://hdl.handle.net/2027/uc1.32106018766417,Milkweed Editions,True,True,"['jerome foundation', 'bush foundation', 'patrick and aimee butler family foundation', 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'claire giannini fund', 'jerome foundation', 'dorothy kaplan light', 'ernest light', 'constance b. kunin', 'marshall bankfirst corp.', None, 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'w. m. foundation', 'xcel energy foundation', 'debbie reynolds', None]"
uc1.32106018799418,0,ic,5616474,,UC,b27415570,124039137,"1571310576,9781571310576",,2007017509,The farther shore / Matthew Eck,"Milkweed Editions, 2007",bib,2010-09-22 20:33:26,0,2007,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Eck, Matthew, 1974-",https://catalog.hathitrust.org/Record/5616474,https://hdl.handle.net/2027/uc1.32106018799418,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'claire giannini fund', 'jerome foundation', 'dorothy kaplan light', 'ernest light', 'constance b. kunin', 'marshall bankfirst corp.', 'department stores company foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'st. paul travelers foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'united parcel service', 'kathleen and bill wanner', 'w. m. foundation', 'xcel energy foundation', 'debbie reynolds']"
uc1.32106019145504,0,ic,7147983,,UC,b26389101,73742978,"1571310622,9781571310620",,2006034773,The song of Kahunsha / Anosh Irani,"Milkweed Editions, 2007",bib,2010-09-04 19:31:45,0,2007,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Irani, Anosh, 1974-",https://catalog.hathitrust.org/Record/7147983,https://hdl.handle.net/2027/uc1.32106019145504,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'claire giannini fund', 'jerome foundation', 'ernest light', 'constance b. kunin', 'marshall bankfirst corp.', None, 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'w. m. foundation', 'xcel energy foundation', 'debbie reynolds', None]"
uc1.32106019168902,0,ic,5408791,,UC,b26069180,70158488,"1571314253,9781571314253",,2006020273,Uncoded woman / Anne-Marie Oomen,"Milkweed Editions, 2006",bib,2009-11-24 22:30:19,0,2006,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Oomen, Anne-Marie",https://catalog.hathitrust.org/Record/5408791,https://hdl.handle.net/2027/uc1.32106019168902,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', None, 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'kathleen jones', 'd. k. light', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'sheila c. morgan', 'laura jane musser fund', 'national endowment for the arts', 'navarre corporation', 'st. paul travelers foundation', 'surdna foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'weyerhaeuser family foundation', 'xcel energy foundation', 'debbie reynolds', None]"
uc1.32106019179743,0,ic,5596474,,UC,b26367282,73993111,"1571314261,9781571314260",,2006033339,"Willow room, green door : new and selected poems / Deborah Keenan","Milkweed Editions, 2007",bib,2009-12-08 00:30:24,0,2007,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Keenan, Deborah",https://catalog.hathitrust.org/Record/5596474,https://hdl.handle.net/2027/uc1.32106019179743,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'claire giannini fund', 'jerome foundation', 'ernest light', 'constance b. kunin', 'marshall bankfirst corp.', None, 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'united parcel service', 'w. m. foundation', 'xcel energy foundation', 'debbie reynolds', None]"
uc1.32106019282869,0,ic,5667810,,UC,b29009200,137325182,"1571313028,9781571313027",,2007022209,The windows of Brimnes : an American in Iceland / Bill Holm,"Milkweed Editions, 2007",bib,2010-07-20 08:55:31,0,2007,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Holm, Bill, 1943-2009",https://catalog.hathitrust.org/Record/5667810,https://hdl.handle.net/2027/uc1.32106019282869,Milkweed Editions,True,True,"['patrick and aimee butler family foundation', 'dougherty family foundation', 'ecolab foundation', 'claire giannini fund', 'jerome foundation', 'ernest light', 'constance b. kunin', 'marshall bankfirst corp.', None, 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'target', 'gertrude sexton thompson charitable trust', 'toro foundation', 'united parcel service', 'w. m. foundation', 'debbie reynolds', None]"
uc1.32106019486247,0,ic,5812180,,UC,b29293182,179787416,"157131301X,9781571313010",,2007046477,Shopping for porcupine : a life in arctic Alaska / Seth Kantner,"Milkweed Editions, 2008",bib,2010-07-20 08:55:02,0,2008,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Kantner, Seth, 1965-",https://catalog.hathitrust.org/Record/5812180,https://hdl.handle.net/2027/uc1.32106019486247,Milkweed Editions,True,True,"['bush foundation', 'patrick and aimee butler family foundation', 'dougherty family foundation', 'ecolab foundation', 'claire giannini fund', 'jerome foundation', 'dorothy kaplan light', 'ernest light', 'constance b. kunin', 'marshall bankfirst corp.', None, 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'st. paul travelers foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'united parcel service', 'w. m. foundation', 'xcel energy foundation', 'debbie reynolds', None]"
uc1.32106019574372,0,ic,8325872,,UC,b29023798,166390026,"1571314318,9781571314314",,2007046469,Hallelujah blackout / Alex Lemon,"Milkweed Editions, 2008",bib,2010-07-20 08:54:37,0,2008,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Lemon, Alex",https://catalog.hathitrust.org/Record/8325872,https://hdl.handle.net/2027/uc1.32106019574372,Milkweed Editions,True,True,"['national endowment for the arts', 'navarre corporation', None, 'st. paul travelers foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'moira and john turner', 'united parcel service', 'kathleen and bill wanner', 'xcel energy foundation', 'jerome foundation', 'patrick and aimee butler family foundation', 'patrick and aimee butler family foundation', 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'claire giannini fund', 'jerome foundation', 'ernest light', 'constance b. kunin', None, 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'debbie reynolds']"
uc1.32106019714713,0,ic,5938644,,UC,b29736055,225090853,"1571314296,9781571314291",,2008017064,Reading Novalis in Montana / Melissa Kwasny,"Milkweed Editions, 2009",bib,2010-07-20 08:55:02,0,2009,mnu,eng,BK,UCSC,universityofcalifornia,universityofcalifornia,google,google,"Kwasny, Melissa, 1954-",https://catalog.hathitrust.org/Record/5938644,https://hdl.handle.net/2027/uc1.32106019714713,Milkweed Editions,True,True,"['patrick and aimee butler family foundation', 'dougherty family foundation', 'ecolab foundation', 'general mills foundation', 'claire giannini fund', 'jerome foundation', 'lerner family foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'national endowment for the arts', 'navarre corporation', 'target', 'james r. thorpe foundation', None, 'target']"
uc1.b3462550,0,ic,950669,,UC,GLAD67185118-B,14241562,"0915943190,9780915943197",,86062393,Eating the sting : including The heronry / by John Caddy.,"Milkweed Editions, 1986.",bib,2009-10-11 22:30:24,0,1986,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Caddy, John.",https://catalog.hathitrust.org/Record/950669,https://hdl.handle.net/2027/uc1.b3462550,Milkweed Editions,True,True,[]
uc1.b3633396,0,ic,2877912,,UC,GLAD117780257-B,20994081,"0915943468,9780915943463",,"90005432,90005432 //r91",Circe's mountain / stories by Marie Luise Kaschnitz ; translated by Lisel Mueller.,"Milkweed Editions, c1990.",bib,2009-07-01 22:30:35,0,1990,miu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Kaschnitz, Marie Luise, 1901-1974.",https://catalog.hathitrust.org/Record/2877912,https://hdl.handle.net/2027/uc1.b3633396,Milkweed Editions,True,True,"['national endowment for the arts', 'target', 'target', 'first bank system foundation', 'star tribune/cowles media company', 'minnesota state arts board', 'minnesota state legislature', 'mcknight foundation', 'minnesota state arts board', 'northwest area foundation', 'eines mittages, mitte juni', 'arts development fund of united arts', 'general mills foundation']"
uc1.b4356136,0,ic,1074822,,UC,GLAD50895436-B,17949923,"0915943263,9780915943265",,87063531,Ganado Red : a novella and stories / Susan Lowell ; foreword by Phillip Lopate ; designed and illustrated by R.W. Scholes.,"Milkweed Editions, 1988.",bib,2010-09-16 20:32:55,0,1988,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Lowell, Susan, 1950-",https://catalog.hathitrust.org/Record/1074822,https://hdl.handle.net/2027/uc1.b4356136,Milkweed Editions,True,True,"['target', 'target', 'jerome foundation', None, 'united arts', None]"
uc1.b4358812,0,ic,1835799,,UC,GLAD50904175-B,18065541,"0915943247,9780915943241",,87063529,Sweet ones : poems / by Len Roberts.,"Milkweed Editions, c1988.",bib,2010-09-15 19:31:19,0,1988,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Roberts, Len, 1947-2007.",https://catalog.hathitrust.org/Record/1835799,https://hdl.handle.net/2027/uc1.b4358812,Milkweed Editions,True,True,"['national endowment for the arts', None, 'target', 'target', 'first bank system foundation', 'jerome foundation', 'metropolitan regional arts council', 'minnesota state legislature', 'mcknight foundation', None]"
uc1.b4361102,0,ic,2182298,,UC,b167881814,20994292,"0915943484,9780915943487",,"90-5457,90005457",Passages north anthology / edited by Elinor Benedict ; introduction by Charles Baxter.,"Milkweed Editions, 1990.",bib,2011-03-10 20:31:35,0,1990,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/2182298,https://hdl.handle.net/2027/uc1.b4361102,Milkweed Editions,True,True,"['the arts foundation of michigan, bay de noc com', None]"
uc1.b4394126,0,ic,1954928,,UC,GLAD51032932-B,20013713,"0915943409,9780915943401",,89036393,The color of Mesabi bones : poems and prose poems / by John Caddy ; designed and illustrated by R.W. Scholes.,"Milkweed Editions, 1989.",bib,2010-09-03 20:33:54,0,1989,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Caddy, John.",https://catalog.hathitrust.org/Record/1954928,https://hdl.handle.net/2027/uc1.b4394126,Milkweed Editions,True,True,"['national endowment for the arts', 'target', 'target', 'first bank system foundation', 'jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'minnesota state arts board', 'the arts de', 'united arts']"
uc1.b4397903,0,ic,1820878,,UC,GLAD51050157-B,19325146,"0915943352,9780915943357",,89003106,"Twin sons of different mirrors : poems in dialogue / Jack Driscoll, Bill Meissner ; photographs by nanct Campbell.","Milkweed Editions, 1989.",bib,2010-09-03 20:31:15,0,1989,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Driscoll, Jack, 1946-",https://catalog.hathitrust.org/Record/1820878,https://hdl.handle.net/2027/uc1.b4397903,Milkweed Editions,True,True,"['first bank system foundation', 'target', None, 'united arts', 'through the arts development', 'national endowment for the arts']"
uc1.b4397954,0,ic,858513,,UC,GLAD51050248-B,14214752,"0915943204,9780915943203",,86062394,One age in a dream / Diane Glancy ; illustrations by Jay Moon,"Milkweed Editions, 1986",bib,2010-09-03 20:31:16,0,1986,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Glancy, Diane.",https://catalog.hathitrust.org/Record/858513,https://hdl.handle.net/2027/uc1.b4397954,Milkweed Editions,True,True,[]
uc1.b4402397,0,ic,9514432,,UC,b168125705,20994132,"0915943476,9780915943470",,"90-5438,90005438",Tokens of grace / by Shiela O'Connor.,"Milkweed Editions, c1990.",bib,2011-03-14 21:33:44,0,1990,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"O'Connor, Sheila.",https://catalog.hathitrust.org/Record/9514432,https://hdl.handle.net/2027/uc1.b4402397,Milkweed Editions,True,True,"['national endowment for the arts', 'united arts', 'first bank system foundation', 'general mills foundation', 'jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'mcknight foundation', 'minnesota state arts board', 'northwest area foundation', ""dayton hudson foundation for dayton's and target stores""]"
uc1.b4402422,0,ic,2477159,,UC,b168125894,22906179,"0915943557,9780915943555",,"90-26153,90026153",The dead get by with everything : poems / by Bill Holm.,"Milkweed Editions, 1990.",bib,2011-03-15 21:33:28,0,1990,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Holm, Bill, 1943-2009",https://catalog.hathitrust.org/Record/2477159,https://hdl.handle.net/2027/uc1.b4402422,Milkweed Editions,True,True,"['national endowment for the arts', 'star tribune foundation', 'target', 'target', 'first bank system foundation', 'general mills foundation', 'jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation']"
uc1.b4411784,0,ic,1091012,,UC,GLAD51094732-B,18770598,"0915943328,9780915943326",,88042975,The freedom of history : poems / by Jim Moore.,"Milkweed Editions, c1988.",bib,2010-08-27 20:31:58,0,1988,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Moore, James, 1943-",https://catalog.hathitrust.org/Record/1091012,https://hdl.handle.net/2027/uc1.b4411784,Milkweed Editions,True,True,"['national endowment for the arts', 'target', 'jerome foundation', 'minnesota state legislature', 'mcknight foundation', 'united arts']"
uc1.b4421420,0,ic,2879832,,UC,GLAD51127519-B,14081544,"0915943093,0915943107,9780915943098,9780915943104",,"86060097,86060097 //r90",Civil blood : poems and prose / by Jill Breckenridge ; engravings by R.W. Scholes.,"Milkweed Editions, c1986.",bib,2010-08-27 20:30:36,0,1986,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Breckenridge, Jill.",https://catalog.hathitrust.org/Record/2879832,https://hdl.handle.net/2027/uc1.b4421420,Milkweed Editions,True,True,"['first bank system foundation', 'jerome foundation', 'regional arts council', 'minnesota state legislature', 'mcknight foundation', None, 'bush foundation', 'minnesota state arts board', None]"
uc1.b4439251,0,ic,2879949,,UC,b168333284,23463170,"0915943867,9780915943869",,91013673,"Winter roads, summer fields / Marjorie Dorner.","Milkweed Editions, c1992.",bib,2011-03-15 21:32:00,0,1992,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Dorner, Marjorie.",https://catalog.hathitrust.org/Record/2879949,https://hdl.handle.net/2027/uc1.b4439251,Milkweed Editions,True,True,"['national endowment for the arts', 'star tribune foundation', 'target', 'first bank system foundation', 'general mills foundation', ""i. a. o'shaughnessy foundation"", 'jerome foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'northwest area foundation']"
uc1.b4973143,0,ic,1096540,,UC,b167599331,18695045,"0915943336,9780915943333",,88042977,The country I come from / by Maura Stanton.,"Milkweed Editions, 1988.",bib,2011-12-05 19:31:11,0,1988,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Stanton, Maura.",https://catalog.hathitrust.org/Record/1096540,https://hdl.handle.net/2027/uc1.b4973143,Milkweed Editions,True,True,"['national endowment for the arts', 'jerome foundation', None, ""dayton hudson foundation for dayton's and target stores"", ""first bank system foundation's small arts funding program""]"
uc1.b4975653,0,ic,1072216,,UC,b167608903,13674493,"0915943115,9780915943111",,85063725,The man with red suspenders : poems / by Philip Dacey ; [designed and illustrated by R.W. Scholes].,"Milkweed Editions, 1986.",bib,2015-05-15 03:25:24,0,1986,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Dacey, Philip.",https://catalog.hathitrust.org/Record/1072216,https://hdl.handle.net/2027/uc1.b4975653,Milkweed Editions,True,True,"['first bank system foundation', 'metropolitan regional arts council', 'minnesota state legislature', 'mcknight foundation', None, 'minnesota state arts board', 'mcknight foundation', 'the corporation of yaddo and the ragdale foundation']"
uc1.b4975706,0,ic,9491078,,UC,b167607303,16199757,"0915943212,9780915943210",,87200754,Minnesota writes : poetry / edited by Jim Moore and Cary Waterman.,"Milkweed Editions : Nodin Press, c1987.",bib,2011-12-09 19:31:07,0,1987,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,,https://catalog.hathitrust.org/Record/9491078,https://hdl.handle.net/2027/uc1.b4975706,Milkweed Editions,True,True,"['national endowment for the arts', 'first bank system foundation', None, 'united arts', 'mcknight foundation']"
uc1.b4975923,0,ic,1298503,,UC,b167610454,18472022,,,87063533,This error is the sign of love : poems / by Lewis Hyde.,"Milkweed Editions, 1988.",bib,2012-02-04 19:30:25,0,1988,mnu,eng,BK,NRLF,universityofcalifornia,universityofcalifornia,google,google,"Hyde, Lewis, 1945-",https://catalog.hathitrust.org/Record/1298503,https://hdl.handle.net/2027/uc1.b4975923,Milkweed Editions,True,True,"['national endowment for the arts', 'united arts', 'target', 'target', 'first bank system foundation', 'jerome foundation', None, 'mcknight foundation', 'national endowment for the arts', None]"
umn.31951001088001f,0,ic,7470134,,UMN,000041097,11227352,"0915943026,9780915943029",,84060838,How we missed Belgium / by Deborah Keenan & Jim Moore.,"Milkweed Editions, 1984.",bib,2015-02-09 03:27:17,0,1984,mnu,eng,BK,UMN,umn,umn,google,google,"Keenan, Deborah.",https://catalog.hathitrust.org/Record/7470134,https://hdl.handle.net/2027/umn.31951001088001f,Milkweed Editions,True,True,"['northwest area foundation', 'metropolitan regional arts council', 'minnesota state legislature']"
umn.31951001293613p,0,ic,7472154,,UMN,000756717,13054335,"0915943069,9780915943067",,85061616,Boxelder bug variations : a meditation on an idea in language and music / Bill Holm.,"Milkweed Editions, c1985.",bib,2015-01-10 03:25:27,0,1985,mnu,eng,BK,UMN,umn,umn,google,google,"Holm, Bill, 1943-2009.",https://catalog.hathitrust.org/Record/7472154,https://hdl.handle.net/2027/umn.31951001293613p,Milkweed Editions,True,True,[]
umn.31951001340708g,0,ic,7477164,,UMN,002712481,12491955,"0915943085,9780915943081",,85061269,Sacred hearts : poems / by Phebe Hanson ; [illustrations by R.W. Scholes],"Milkweed Editions, 1985.",bib,2015-01-10 03:25:25,0,1985,mnu,eng,BK,UMN,umn,umn,google,google,"Hanson, Phebe.",https://catalog.hathitrust.org/Record/7477164,https://hdl.handle.net/2027/umn.31951001340708g,Milkweed Editions,True,True,[]
umn.31951002453546g,0,ic,3351825,,UMN,001638931,18327882,"0915943271,9780915943272",,87042896,A male grief : notes on pornography and addiction : an essay / by David Mura.,"Milkweed Editions, c1987.",bib,2015-01-11 03:25:47,0,1987,mnu,eng,BK,UMN,umn,umn,google,google,"Mura, David.",https://catalog.hathitrust.org/Record/3351825,https://hdl.handle.net/2027/umn.31951002453546g,Milkweed Editions,True,True,"['the spring/summer 1985 issue of milkweed chronicle', 'target', 'jerome foundation', None, 'metropolitan council from funds appropriated to the minnesota state arts board']"
umn.31951d02351518g,0,ic,4038479,,UMN,003193026,40354778,"1571312242,1571312277,9781571312242,9781571312273",,98050947,Brown dog of the Yaak : essays on art and activism / Rick Bass.,"Milkweed Editions, 1999.",bib,2015-01-08 03:25:25,0,1999,mnu,eng,BK,UMN,umn,umn,google,google,"Bass, Rick, 1958-",https://catalog.hathitrust.org/Record/4038479,https://hdl.handle.net/2027/umn.31951d02351518g,Milkweed Editions,True,True,"['national endowment for the arts', 'james ford bell foundation', 'target', 'target', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'norwest foundation', 'oswald family foundation', 'ritz foundation', None, 'st. paul companies', 'star tribune foundation', 'u.s. bancorp piper jaffray foundation']"
umn.31951p001791405,0,ic,3096333,,UMN,000546386,34115434,"1571312056,9781571312051",,96000403,Changing the bully who rules the world : reading and thinking about ethics / [compiled by] Carol Bly.,"Milkweed Editions, 1996.",bib,2015-01-13 03:25:15,0,1996,mnu,eng,BK,UMN,umn,umn,google,google,,https://catalog.hathitrust.org/Record/3096333,https://hdl.handle.net/2027/umn.31951p001791405,Milkweed Editions,True,True,"['bush foundation', 'target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'andrew w. mellon foundation', None, 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""i. a. o'shaughnessy foundation"", 'piper jaffray companies, inc.', None, 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', ""lila wallace reader's digest fund""]"
umn.31951p002563627,0,ic,7474628,,UMN,001770714,27429979,"0915943654,9780915943654",,93016148,Basic needs : a year with street kids in a city school / by Julie Landsman.,"Milkweed Editions, 1993.",bib,2015-01-08 03:25:21,0,1993,mnu,eng,BK,UMN,umn,umn,google,google,"Landsman, Julie.",https://catalog.hathitrust.org/Record/7474628,https://hdl.handle.net/2027/umn.31951p002563627,Milkweed Editions,True,True,"['jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'general mills foundation', 'honeywell foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'northwest area foundation', ""i. a. o'shaughnessy foundation"", 'star tribune foundation', 'surdna foundation', ""lila wallace reader's digest fund""]"
umn.31951p00262194g,0,ic,7472969,,UMN,001141458,30078454,"1571312013,9781571312013",,94003812,"What makes pornography ""sexy""? / John Stoltenberg.","Milkweed Editions, c1994.",bib,2015-02-12 03:27:00,0,1994,mnu,eng,BK,UMN,umn,umn,google,google,"Stoltenberg, John.",https://catalog.hathitrust.org/Record/7472969,https://hdl.handle.net/2027/umn.31951p00262194g,Milkweed Editions,True,True,"['target', 'target', 'ecolab foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'knight foundation', 'mcknight foundation', 'andrew w. mellon foundation', 'minnesota state arts board', 'minnesota state legislature', 'musser fund', 'national endowment for the arts', ""i. a. o'shaughnessy foundation"", 'st. paul companies', 'st. paul companies', 'star tribune foundation', 'surdna foundation', 'james r. thorpe foundation', 'unity avenue foundation', ""lila wallace reader's digest fund"", None]"
uva.x004478567,0,ic,102012949,,UVA,u3590692,45056337,"1571314121,9781571314123",,,The art of writing : Lu Chi's Wen fu / translated from the chinese by Sam Hamill.,"Milkweed Editions, 2000.",bib,2017-06-01 03:26:26,0,2000,mnu,eng,BK,UVA,virginia,virginia,google,google,"Lu, Ji, 261-303.",https://catalog.hathitrust.org/Record/102012949,https://hdl.handle.net/2027/uva.x004478567,Milkweed Editions,True,True,"['james ford bell foundation', 'bush foundation', 'general mills foundation', 'honeywell foundation', 'jerome foundation', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'norwest foundation', 'oswald family foundation', 'ritz foundation', None, 'st. paul companies', 'target', 'target', 'u.s. bancorp piper jaffray foundation']"
uva.x004919907,0,ic,102041732,,UVA,u4338682,57002452,"1571312803,9781571312808",,2004027345,North to Katahdin / Eric Pinder.,"Milkweed Editions, 2005.",bib,2018-01-22 03:25:39,0,2005,mnu,eng,BK,UVA,virginia,virginia,google,google,"Pinder, Eric, 1970-",https://catalog.hathitrust.org/Record/102041732,https://hdl.handle.net/2027/uva.x004919907,Milkweed Editions,True,True,"['bush foundation', None, 'del corazón family fund', 'dougherty family foundation', 'ecolab foundation', 'joe b. foster family foundation', 'general mills foundation', 'jerome foundation', 'kathleen jones', 'constance b. kunin', 'd. k. light', 'chris and ann malecek', 'mcknight foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'sheila c. morgan', 'laura jane musser fund', 'national endowment for the arts', 'navarre corporation', 'kate and stuart nielsen', 'outagamie charitable foundation', 'qwest foundation', 'surdna foundation', 'target', 'gertrude sexton thompson charitable trust', 'james r. thorpe foundation', 'toro foundation', 'weyerhaeuser family foundation', 'xcel energy foundation', 'katahdin / eric pinder', 'debbie reynolds', None]"
hvd.32044131732349,0,ic,102324850,,HVD,014131809,857967487,"1555976824,9781555976828",,2013958013,Second childhood / Fanny Howe.,"Graywolf Press, [2014]",bib,2019-01-10 03:26:02,0,2014,mnu,eng,BK,HVD,harvard,harvard,harvard,open,"Howe, Fanny,",https://catalog.hathitrust.org/Record/102324850,https://hdl.handle.net/2027/hvd.32044131732349,Graywolf Press,True,True,"['minnesota state arts board', 'national endowment for the arts', 'wells fargo foundation minnesota', 'target', 'mcknight foundation']"
inu.30000001261688,0,ic,1537758,v.6 1989,INU,4066846,10666837,,07437471,86658048,The Graywolf annual.,"Graywolf Press, 1985-1993.",bib,2014-09-26 03:28:12,0,1989,mnu,eng,SE,INU,iu,iu,google,google,,https://catalog.hathitrust.org/Record/1537758,https://hdl.handle.net/2027/inu.30000001261688,Graywolf Press,True,True,"['northwest area foundation', 'national endowment for the arts', 'minnesota state arts board', 'mcknight foundation', 'minnesota state arts board', 'united arts']"
inu.30000004455584,0,ic,1537758,v.5 1988,INU,4066846,10666837,,07437471,86658048,The Graywolf annual.,"Graywolf Press, 1985-1993.",bib,2014-10-01 03:28:01,0,1988,mnu,eng,SE,INU,iu,iu,google,google,,https://catalog.hathitrust.org/Record/1537758,https://hdl.handle.net/2027/inu.30000004455584,Graywolf Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'united arts']"
inu.30000009957618,0,ic,1537758,v.7 1990,INU,4066846,10666837,,07437471,86658048,The Graywolf annual.,"Graywolf Press, 1985-1993.",bib,2014-10-01 03:28:01,0,1990,mnu,eng,SE,INU,iu,iu,google,google,,https://catalog.hathitrust.org/Record/1537758,https://hdl.handle.net/2027/inu.30000009957618,Graywolf Press,True,True,"['national endowment for the arts', None, 'minnesota state arts board', 'mcknight foundation', 'minnesota state arts board', 'united arts']"
inu.30000011370792,0,ic,4504688,,INU,392431,13615324,"0915308762,0915308770,9780915308767,9780915308774",,85080979,The lay of the love and death of Cornet Christoph Rilke / Rainer Maria Rilke ; translated by Stephen Mitchell.,"Graywolf Press, 1985.",bib,2014-10-01 03:29:28,0,1985,mnu,eng,BK,INU,iu,iu,google,google,"Rilke, Rainer Maria, 1875-1926.",https://catalog.hathitrust.org/Record/4504688,https://hdl.handle.net/2027/inu.30000011370792,Graywolf Press,True,True,[]
inu.30000011854258,0,ic,1537758,v.2 1986,INU,4066846,10666837,,07437471,86658048,The Graywolf annual.,"Graywolf Press, 1985-1993.",bib,2014-10-01 03:28:01,0,1986,mnu,eng,SE,INU,iu,iu,google,google,,https://catalog.hathitrust.org/Record/1537758,https://hdl.handle.net/2027/inu.30000011854258,Graywolf Press,True,True,[]
inu.30000028446254,0,ic,1537758,v.9 1992,INU,4066846,10666837,,07437471,86658048,The Graywolf annual.,"Graywolf Press, 1985-1993.",bib,2014-10-01 03:28:01,0,1992,mnu,eng,SE,INU,iu,iu,google,google,,https://catalog.hathitrust.org/Record/1537758,https://hdl.handle.net/2027/inu.30000028446254,Graywolf Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'minnesota state legislature', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
inu.30000028478901,0,ic,1537758,v.10 1993,INU,4066846,10666837,,07437471,86658048,The Graywolf annual.,"Graywolf Press, 1985-1993.",bib,2014-10-01 03:28:01,0,1993,mnu,eng,SE,INU,iu,iu,google,google,,https://catalog.hathitrust.org/Record/1537758,https://hdl.handle.net/2027/inu.30000028478901,Graywolf Press,True,True,"['minnesota state arts board', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'united arts']"
inu.30000042653521,0,ic,7581484,,INU,673489,28222288,"1555972039,9781555972035",,"93002161,93002161 //r95",All the world's mornings : a novel / by Pascal Quignard ; translated by James Kirkup.,"Graywolf Press, 1993.",bib,2014-10-01 03:26:36,0,1993,mnu,eng,BK,INU,iu,iu,google,google,"Quignard, Pascal.",https://catalog.hathitrust.org/Record/7581484,https://hdl.handle.net/2027/inu.30000042653521,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'northwest area foundation', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'target', 'target', 'star tribune foundation', 'general mills foundation', 'united arts']"
inu.30000084047087,0,ic,1537758,v.3 1987,INU,4066846,10666837,,07437471,86658048,The Graywolf annual.,"Graywolf Press, 1985-1993.",bib,2014-10-02 03:26:25,0,1987,mnu,eng,SE,INU,iu,iu,google,google,,https://catalog.hathitrust.org/Record/1537758,https://hdl.handle.net/2027/inu.30000084047087,Graywolf Press,True,True,[]
inu.30000092689623,0,ic,7588377,,INU,6116160,57535638,"1555974155,9781555974152",,,Stump / Niall Griffiths.,"Graywolf Press, 2005.",bib,2014-09-30 03:27:14,0,2005,mnu,eng,BK,INU,iu,iu,google,google,"Griffiths, Niall, 1966-",https://catalog.hathitrust.org/Record/7588377,https://hdl.handle.net/2027/inu.30000092689623,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""target and mervyn's with support from the target foundation"", 'mcknight foundation', 'minnesota state arts board']"
inu.30000095814590,0,ic,7587849,,INU,6120971,57584645,"1555974171,9781555974176",,,Landing light : poems / Don Paterson.,"Graywolf Press, c2005.",bib,2014-10-02 03:26:12,0,2005,mnu,eng,BK,INU,iu,iu,google,google,"Paterson, Don, 1963-",https://catalog.hathitrust.org/Record/7587849,https://hdl.handle.net/2027/inu.30000095814590,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""target and mervyn's with support from the target foundation"", 'mcknight foundation', 'minnesota state arts board']"
inu.30000107397808,0,ic,6924646,,INU,8398035,317929047,"1555975372,9781555975371",,2009926847,The man from Kinvara : selected stories / Tess Gallagher.,"Graywolf Press, c2009.",bib,2014-09-29 03:26:20,0,2009,mnu,eng,BK,INU,iu,iu,google,google,"Gallagher, Tess.",https://catalog.hathitrust.org/Record/6924646,https://hdl.handle.net/2027/inu.30000107397808,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'wells fargo national endowment for the arts']"
inu.30000111497941,0,ic,7019684,,INU,6791177,77562156,"1555974589,9781555974589",,2006924342,"Meanwhile, take my hand / Kirmen Uribe ; translated from the Basque by Elizabeth Macklin.","Graywolf press, 2007.",bib,2009-11-14 22:30:41,0,2007,mnu,eng,BK,INU,iu,iu,google,google,"Uribe Urbieta, Kirmen, 1970-",https://catalog.hathitrust.org/Record/7019684,https://hdl.handle.net/2027/inu.30000111497941,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'minnesota state arts board', 'target', 'lannan translation selection']"
inu.30000114301108,0,ic,10558693,,INU,1794214,4267612,,,,Smoke's way : poems / by William Stafford.,"Graywolf Press, c1978.",bib,2014-09-28 03:26:56,0,1978,wau,eng,BK,INU,iu,iu,google,google,"Stafford, William, 1914-1993",https://catalog.hathitrust.org/Record/10558693,https://hdl.handle.net/2027/inu.30000114301108,Graywolf Press,False,False,[]
inu.30000124543400,0,ic,8573007,,INU,8254725,263983718,"1555975291,9781555975296",,,Fugitive visions : an adoptee's return to Korea / Jane Jeong Trenka.,"Graywolf Press, 2009.",bib,2014-09-27 03:28:39,0,2009,mnu,eng,BK,INU,iu,iu,google,google,"Trenka, Jane Jeong, 1972-",https://catalog.hathitrust.org/Record/8573007,https://hdl.handle.net/2027/inu.30000124543400,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'target']"
inu.30000124821053,0,ic,11811111,,INU,7697899,219997008,"1555974996,9781555974992",,2007940216,Confessions of a former child : a therapist's memoir / Daniel J. Tomasulo.,"Graywolf Press ; Turnaround [distributor], c2008.",bib,2014-09-27 03:28:33,0,2008,mnu,eng,BK,INU,iu,iu,google,google,"Tomasulo, Daniel J.",https://catalog.hathitrust.org/Record/11811111,https://hdl.handle.net/2027/inu.30000124821053,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'minnesota state arts board', 'target']"
inu.30000125847669,0,ic,1537758,v.4 1988,INU,4066846,10666837,,07437471,86658048,The Graywolf annual.,"Graywolf Press, 1985-1993.",bib,2014-10-03 03:26:43,0,1988,mnu,eng,SE,INU,iu,iu,google,google,,https://catalog.hathitrust.org/Record/1537758,https://hdl.handle.net/2027/inu.30000125847669,Graywolf Press,True,True,[]
inu.32000007927835,0,und,1537758,v.1 11985,INU,4066846,10666837,,07437471,86658048,The Graywolf annual.,"Graywolf Press, 1985-1993.",bib,2014-10-03 03:26:43,0,1993,mnu,eng,SE,INU,iu,iu,google,google,,https://catalog.hathitrust.org/Record/1537758,https://hdl.handle.net/2027/inu.32000007927835,Graywolf Press,True,True,[]
inu.39000001777130,0,ic,4243789,,INU,1679367,8900226,"0915308363,9780915308361",,82082327,The woe shirt : Caribbean folk tales / by Paulé Bartón as translated by Howard A. Norman ; with drawings by Norman Laliberté.,"Graywolf Press, 1982.",bib,2014-10-03 03:25:45,0,1982,wau,eng,BK,INU,iu,iu,google,google,"Bartón, Paulé.",https://catalog.hathitrust.org/Record/4243789,https://hdl.handle.net/2027/inu.39000001777130,Graywolf Press,False,False,[]
inu.39000002638653,0,ic,7593720,,INU,1800935,4472922,,,,Tapwater : poems / by Laura Jensen ; with two drawings by the author.,"Graywolf Press, 1978.",bib,2014-10-03 03:25:35,0,1978,wau,eng,BK,INU,iu,iu,google,google,"Jensen, Laura, 1948-",https://catalog.hathitrust.org/Record/7593720,https://hdl.handle.net/2027/inu.39000002638653,Graywolf Press,False,False,[]
inu.39000002751753,0,ic,5995325,,INU,1815525,4848404,,,,The Lincoln relics : a poem / by Stanley Kunitz.,"Graywolf Press, 1978.",bib,2014-10-03 03:25:33,0,1978,wau,eng,BK,INU,iu,iu,google,google,"Kunitz, Stanley, 1905-2006",https://catalog.hathitrust.org/Record/5995325,https://hdl.handle.net/2027/inu.39000002751753,Graywolf Press,False,False,['national endowment for the arts']
mdp.39015000619562,0,ic,224112,,MIU,990002241120106381,7534170,"0915308274,0915308282,9780915308279,9780915308286",,80067983,Too bright to see : poems / by Linda Gregg.,"Graywolf Press, c1981.",bib,2012-09-04 19:30:05,0,1981,wau,eng,BK,MIU,umich,umich,google,google,"Gregg, Linda.",https://catalog.hathitrust.org/Record/224112,https://hdl.handle.net/2027/mdp.39015000619562,Graywolf Press,False,False,"[""goethe's death mask' and 'a game called fear"", 'national endowment for the arts']"
mdp.39015001184806,0,ic,228348,,MIU,990002283480106381,8832770,"0915308355,9780915308354",,82080422,"Astonishment of origins : French sequences / by Rainer Maria Rilke ; translated by A. Poulin, Jr.","Graywolf Press, c1982.",bib,2012-04-10 19:30:16,0,1982,wau,eng,BK,MIU,umich,umich,google,google,"Rilke, Rainer Maria, 1875-1926.",https://catalog.hathitrust.org/Record/228348,https://hdl.handle.net/2027/mdp.39015001184806,Graywolf Press,False,False,[]
mdp.39015004713486,0,ic,479444,,MIU,990004794440106381,1580585,"0915308010,9780915308019",,"75321386,75321386//r76",Rain five days and I love it / Richard Hugo.,"Graywolf Press, 1975.",bib,2012-09-03 19:30:03,0,1975,wau,eng,BK,MIU,umich,umich,google,google,"Hugo, Richard, 1923-1982.",https://catalog.hathitrust.org/Record/479444,https://hdl.handle.net/2027/mdp.39015004713486,Graywolf Press,False,False,[]
mdp.39015005280188,0,ic,690305,,MIU,990006903050106381,4689089,"0915308193,0915308207,9780915308194,9780915308200",,77095331,Under stars : poems / by Tess Gallagher.,"Graywolf Press, c1978.",bib,2008-06-12 00:30:02,0,1978,wau,eng,BK,MIU,umich,umich,google,google,"Gallagher, Tess.",https://catalog.hathitrust.org/Record/690305,https://hdl.handle.net/2027/mdp.39015005280188,Graywolf Press,False,False,"[""the same kiss after many years' were printed in portable kisses (sea pen press"", 'national endowment for the arts']"
mdp.39015008512454,0,ic,107659,,MIU,990001076590106381,9271342,"0915308339,9780915308330",,82081874,"Orchards : a sequence of French poems / by Rainer Maria Rilke ; translated by A. Poulin, Jr.","Graywolf Press, c1982.",bib,2012-06-10 19:30:15,0,1982,wau,eng,BK,MIU,umich,umich,google,google,"Rilke, Rainer Maria, 1875-1926.",https://catalog.hathitrust.org/Record/107659,https://hdl.handle.net/2027/mdp.39015008512454,Graywolf Press,False,False,['national endowment for the arts']
mdp.39015009072532,0,ic,714089,,MIU,990007140890106381,4857948,"0915308215,9780915308217",,79012328,"The roses & The windows / Rainer Maria Rilke ; translated from the French by A. Poulin, Jr. ; foreword by W. D. Snodgrass.","Graywolf Press, [1979]",bib,2006-11-17 13:48:31,0,1979,wau,eng,BK,MIU,umich,umich,google,google,"Rilke, Rainer Maria, 1875-1926.",https://catalog.hathitrust.org/Record/714089,https://hdl.handle.net/2027/mdp.39015009072532,Graywolf Press,False,False,[]
mdp.39015009127013,0,ic,2811814,,MIU,990028118140106381,28337399,"1555971903,1555972012,9781555971908,9781555972011",,93023114,The misunderstanding of nature : poetry / by Sophie Cabot Black.,"Graywolf Press, 1994.",bib,2008-11-02 22:30:15,0,1994,mnu,eng,BK,MIU,umich,umich,google,google,"Black, Sophie Cabot.",https://catalog.hathitrust.org/Record/2811814,https://hdl.handle.net/2027/mdp.39015009127013,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'target', 'target', 'star tribune foundation', 'general mills foundation', 'united arts']"
mdp.39015010432352,0,ic,86741,,MIU,990000867410106381,2597983,,,76378309,Instructions to the double / Tess Gallagher.,"Graywolf Press, c1976.",bib,2012-03-21 09:30:45,0,1976,wau,eng,BK,MIU,umich,umich,google,google,"Gallagher, Tess.",https://catalog.hathitrust.org/Record/86741,https://hdl.handle.net/2027/mdp.39015010432352,Graywolf Press,False,False,"[None, 'national endowment for the arts']"
mdp.39015011498253,0,ic,346498,,MIU,990003464980106381,11872077,"0915308479,9780915308477",,83082865,"The migration of powers : French poems / by Rainer Maria Rilke ; translated by A. Poulin, Jr.","Graywolf Press, 1984.",bib,2008-07-02 00:30:06,0,1984,wau,eng,BK,MIU,umich,umich,google,google,"Rilke, Rainer Maria, 1875-1926.",https://catalog.hathitrust.org/Record/346498,https://hdl.handle.net/2027/mdp.39015011498253,Graywolf Press,False,False,"['national endowment for the arts', None, 'the migration of powers']"
mdp.39015013417640,0,ic,903724,,MIU,990009037240106381,17312955,"1555970990,9781555970994",,87081375,Amplitude : new and selected poems / Tess Gallagher.,"Graywolf Press, c1987.",bib,2008-07-23 01:30:29,0,1987,mnu,eng,BK,MIU,umich,umich,google,google,"Gallagher, Tess.",https://catalog.hathitrust.org/Record/903724,https://hdl.handle.net/2027/mdp.39015013417640,Graywolf Press,True,True,"['national endowment for the arts', 'united arts']"
mdp.39015013955896,0,ic,1946982,,MIU,990019469820106381,20452634,"1555971245,9781555971243",,89027450,The saddest pleasure : a journey on two rivers : a memoir / by Moritz Thomsen.,"Graywolf Press, c1990.",bib,2012-07-14 19:30:56,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Thomsen, Moritz.",https://catalog.hathitrust.org/Record/1946982,https://hdl.handle.net/2027/mdp.39015013955896,Graywolf Press,True,True,"['bush foundation', 'national endowment for the arts', 'minnesota state arts board', 'mcknight foundation', 'minnesota state arts board', 'united arts']"
mdp.39015013960078,0,ic,1833043,,MIU,990018330430106381,15088999,"0915308908,9780915308903",,86081784,Fair Augusto and other stories / Laura Kalpakian.,"Graywolf Press, c1986.",bib,2012-09-06 19:30:52,0,1986,mnu,eng,BK,MIU,umich,umich,google,google,"Kalpakian, Laura.",https://catalog.hathitrust.org/Record/1833043,https://hdl.handle.net/2027/mdp.39015013960078,Graywolf Press,True,True,"['northwest area foundation', 'united arts']"
mdp.39015014512951,0,ic,87656,,MIU,990000876560106381,3483761,,,77153718,In a dusty light / John Haines ; [ill. by Gue Walker].,"Graywolf Press, c1977.",bib,2009-06-19 22:30:36,0,1977,wau,eng,BK,MIU,umich,umich,google,google,"Haines, John, 1924-2011.",https://catalog.hathitrust.org/Record/87656,https://hdl.handle.net/2027/mdp.39015014512951,Graywolf Press,False,False,['national endowment for the arts']
mdp.39015014626363,0,ic,944731,,MIU,990009447310106381,17546945,"1555971091,9781555971090",,87083084,Diminishing fictions : essays on the modern American novel and its critics / Bruce Bawer.,"Graywolf Press, c1988.",bib,2012-03-13 19:30:11,0,1988,mnu,eng,BK,MIU,umich,umich,google,google,"Bawer, Bruce, 1956-",https://catalog.hathitrust.org/Record/944731,https://hdl.handle.net/2027/mdp.39015014626363,Graywolf Press,True,True,"['the new criterion', 'national endowment for the arts', 'bush foundation', 'united arts']"
mdp.39015014717352,0,ic,1817884,,MIU,990018178840106381,10081246,"0915308401,091530841X,9780915308408,9780915308415",,83080525,"Smoke's way : poems from limited editions, 1968-1981 / William Stafford.","Graywolf Press, c1983.",bib,2012-03-12 19:30:17,0,1983,wau,eng,BK,MIU,umich,umich,google,google,"Stafford, William, 1914-1993.",https://catalog.hathitrust.org/Record/1817884,https://hdl.handle.net/2027/mdp.39015014717352,Graywolf Press,False,False,[]
mdp.39015014751229,0,ic,1537758,v.5 1988,MIU,990015377580106381,10666837,,07437471,86658048,The Graywolf annual.,"Graywolf Press, 1985-1993.",bib,2012-05-11 04:30:09,0,1988,mnu,eng,SE,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/1537758,https://hdl.handle.net/2027/mdp.39015014751229,Graywolf Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'united arts']"
mdp.39015014891041,0,ic,1301761,,MIU,990013017610106381,17983415,"1555971113,9781555971113",,88015621,Feeding the eagles : short stories / by Paulette Bates Alden.,"Graywolf Press, 1988.",bib,2007-01-22 09:29:16,0,1988,mnu,eng,BK,MIU,umich,umich,google,google,"Alden, Paulette Bates, 1947-",https://catalog.hathitrust.org/Record/1301761,https://hdl.handle.net/2027/mdp.39015014891041,Graywolf Press,True,True,"['bush foundation', None, 'jerome foundation', 'general mills foundation', 'national endowment for the arts', 'minnesota state arts board', 'united arts']"
mdp.39015015233920,0,ic,1537758,v.6 1989,MIU,990015377580106381,10666837,,07437471,86658048,The Graywolf annual.,"Graywolf Press, 1985-1993.",bib,2012-06-21 19:30:12,0,1989,mnu,eng,SE,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/1537758,https://hdl.handle.net/2027/mdp.39015015233920,Graywolf Press,True,True,"['northwest area foundation', 'national endowment for the arts', 'minnesota state arts board', 'mcknight foundation', 'minnesota state arts board', 'united arts']"
mdp.39015015447439,0,ic,1826669,,MIU,990018266690106381,5650835,"0915308177,0915308185,9780915308170,9780915308187",,"77095332,77095332 //r84",The man who kept cigars in his cap / Jim Heynen ; with ill. by Tom Pohrt,"Graywolf Press, c1979",bib,2012-09-06 19:30:58,0,1979,wau,eng,BK,MIU,umich,umich,google,google,"Heynen, Jim, 1940-",https://catalog.hathitrust.org/Record/1826669,https://hdl.handle.net/2027/mdp.39015015447439,Graywolf Press,False,False,[]
mdp.39015015504171,0,ic,1833101,,MIU,990018331010106381,13640127,"0915308843,9780915308842",,85082574,Friday night at Silver Star : stories / by Patricia Henley.,"Graywolf Press, c1986.",bib,2012-09-06 19:30:59,0,1986,mnu,eng,BK,MIU,umich,umich,google,google,"Henley, Patricia.",https://catalog.hathitrust.org/Record/1833101,https://hdl.handle.net/2027/mdp.39015015504171,Graywolf Press,True,True,"['montana arts council first book award', None, 'national endowment for the arts', 'jerome foundation']"
mdp.39015016968466,0,ic,1843454,,MIU,990018434540106381,18960580,"1555971172,9781555971175",,88037719,"The stars, the snow, the fire : twenty-five years in the northern wilderness : a memoir / by John Haines.","Graywolf Press, 1989.",bib,2012-09-06 19:31:01,0,1989,mnu,eng,BK,MIU,umich,umich,google,google,"Haines, John, 1924-2011.",https://catalog.hathitrust.org/Record/1843454,https://hdl.handle.net/2027/mdp.39015016968466,Graywolf Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'bush foundation', 'united arts']"
mdp.39015017436588,0,ic,2906584,,MIU,990029065840106381,28799240,"1555972071,155597208X,9781555972073,9781555972080",,93034062,Chosen by the lion : poems / by Linda Gregg.,"Graywolf Press, 1994.",bib,2008-11-01 23:30:13,0,1994,mnu,eng,BK,MIU,umich,umich,google,google,"Gregg, Linda.",https://catalog.hathitrust.org/Record/2906584,https://hdl.handle.net/2027/mdp.39015017436588,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'target', 'target', 'star tribune foundation', 'general mills foundation', 'united arts']"
mdp.39015017685051,0,ic,947974,,MIU,990009479740106381,17546946,"1555971083,9781555971083",,87083085,A guide to forgetting : poems / by Jeffrey Skinner ; [selected by Tess Gallagher].,"Graywolf Press, c1988.",bib,2012-06-17 19:30:07,0,1988,mnu,eng,BK,MIU,umich,umich,google,google,"Skinner, Jeffrey.",https://catalog.hathitrust.org/Record/947974,https://hdl.handle.net/2027/mdp.39015017685051,Graywolf Press,True,True,['united arts']
mdp.39015018484165,0,ic,2181089,,MIU,990021810890106381,20854072,"155597130X,1555971318,9781555971304,9781555971311",,89077979,Let evening come : poems / by Jane Kenyon.,"Graywolf Press, 1990.",bib,2012-09-06 19:31:05,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Kenyon, Jane.",https://catalog.hathitrust.org/Record/2181089,https://hdl.handle.net/2027/mdp.39015018484165,Graywolf Press,True,True,"['joyce peseroff and alice mattison', 'national endowment for the arts', 'minnesota state arts board', 'mcknight foundation', 'minnesota state arts board', 'united arts']"
mdp.39015018496367,0,ic,2182314,,MIU,990021823140106381,20562689,"1555971237,9781555971236",,89025957,Mottetti : poems of love : the motets of Eugenio Montale / translated & with an introduction by Dana Gioia.,"Graywolf Press, 1990.",bib,2012-06-09 19:30:18,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Montale, Eugenio, 1896-1981.",https://catalog.hathitrust.org/Record/2182314,https://hdl.handle.net/2027/mdp.39015018496367,Graywolf Press,True,True,"[None, 'national endowment for the arts', 'minnesota state arts board', 'mcknight foundation', 'united arts']"
mdp.39015018640279,0,ic,407719,,MIU,990004077190106381,12080164,"0915308649,0915308657,9780915308644,9780915308651",,84081629,My Christina & other stories / Mercè Rodoreda; translated and with an introduction by David H. Rosenthal.,"Graywolf Press, 1984.",bib,2012-04-05 19:30:23,0,1984,wau,eng,BK,MIU,umich,umich,google,google,"Rodoreda, Mercè, 1908-1983.",https://catalog.hathitrust.org/Record/407719,https://hdl.handle.net/2027/mdp.39015018640279,Graywolf Press,False,False,['national endowment for the arts']
mdp.39015018906555,0,ic,2213594,,MIU,990022135940106381,19629537,"1555971210,9781555971212",,89033226,In the North : poetry / by Nina Bogin.,"Graywolf Press, 1989.",bib,2007-03-17 09:28:23,0,1989,mnu,eng,BK,MIU,umich,umich,google,google,"Bogin, Nina.",https://catalog.hathitrust.org/Record/2213594,https://hdl.handle.net/2027/mdp.39015018906555,Graywolf Press,True,True,"['minnesota state arts board', 'national endowment for the arts', 'united arts', 'mcknight foundation']"
mdp.39015018999113,0,ic,2231812,,MIU,990022318120106381,21117251,"1555971296,9781555971298",,90031855,The cardboard house / by Martín Adán ; translated & with an introduction by Katherine Silver.,"Graywolf Press, c1990.",bib,2012-12-04 19:30:38,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Adán, Martín, 1908-1985.",https://catalog.hathitrust.org/Record/2231812,https://hdl.handle.net/2027/mdp.39015018999113,Graywolf Press,True,True,"['national endowment for the arts', 'minnesota state arts board', None, 'mcknight foundation', 'minnesota state arts board', 'united arts', 'national endowment for the arts']"
mdp.39015019042046,0,ic,1817645,,MIU,990018176450106381,12865389,"091530872X,9780915308729",,"85080545,85080545//r86",Buying time : an anthology celebrating 20 years of the literature program of the National Endowment for the Arts / edited by Scott Walker ; introduction by Ralph Ellison.,"Graywolf Press, c1985.",bib,2007-07-04 09:30:07,0,1985,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/1817645,https://hdl.handle.net/2027/mdp.39015019042046,Graywolf Press,True,True,"['new york community trust', None]"
mdp.39015019174450,0,ic,918102,,MIU,990009181020106381,17018661,"0915308924,9780915308927",,87080009,"A momentary order : poems / by A. Poulin, Jr.","Graywolf Press, 1987.",bib,2006-09-13 17:18:28,0,1987,mnu,eng,BK,MIU,umich,umich,google,google,"Poulin, A., Jr., 1938-1996.",https://catalog.hathitrust.org/Record/918102,https://hdl.handle.net/2027/mdp.39015019174450,Graywolf Press,True,True,"['national endowment for the arts', 'united arts']"
mdp.39015019186645,0,ic,827852,,MIU,990008278520106381,14925197,"0915308835,9780915308835",,86081786,"The complete French poems of Rainer Maria Rilke / translated by A. Poulin, Jr.","Graywolf Press, [1986]",bib,2008-07-02 00:30:14,0,1986,mnu,eng,BK,MIU,umich,umich,google,google,"Rilke, Rainer Maria, 1875-1926.",https://catalog.hathitrust.org/Record/827852,https://hdl.handle.net/2027/mdp.39015019186645,Graywolf Press,True,True,[]
mdp.39015019612418,0,ic,2435435,,MIU,990024354350106381,21668805,"1555971377,9781555971373",,90003652,Licorice : a novel / by Abby Frucht.,"Graywolf Press, 1990.",bib,2009-03-25 21:30:14,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Frucht, Abby.",https://catalog.hathitrust.org/Record/2435435,https://hdl.handle.net/2027/mdp.39015019612418,Graywolf Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015019964538,0,ic,847727,,MIU,990008477270106381,15227467,"091530886X,0915308878,9780915308866,9780915308873",,86081787,The boat of quiet hours : poems / by Jane Kenyon.,"Graywolf Press, 1986.",bib,2012-09-06 19:31:14,0,1986,mnu,eng,BK,MIU,umich,umich,google,google,"Kenyon, Jane.",https://catalog.hathitrust.org/Record/847727,https://hdl.handle.net/2027/mdp.39015019964538,Graywolf Press,True,True,[]
mdp.39015020635812,0,ic,2372192,,MIU,990023721920106381,21335159,"1555971288,9781555971281",,90003162,An autobiography / Edwin Muir.,"Graywolf Press, [1990]",bib,2012-03-18 19:30:12,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Muir, Edwin, 1887-1959.",https://catalog.hathitrust.org/Record/2372192,https://hdl.handle.net/2027/mdp.39015020635812,Graywolf Press,True,True,"['minnesota state arts board', 'bush foundation', 'mcknight foundation', 'minnesota state arts board', 'united arts']"
mdp.39015020755057,0,ic,2208559,,MIU,990022085590106381,20893093,"1555971326,9781555971328",,"89-77990,89077990",Name and tears and other stories : forty years of Italian fiction / edited and translated by Kathrine Jason.,"Graywolf Press, 1990.",bib,2012-04-05 19:30:24,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2208559,https://hdl.handle.net/2027/mdp.39015020755057,Graywolf Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'national endowment for the arts', 'united arts', 'elena andrenelli']"
mdp.39015020838838,0,ic,2591566,,MIU,990025915660106381,25411832,"1555971652,9781555971656",,92007759,"The Horse has six legs : an anthology of Serbian poetry / edited, translated, and with an introduction by Charles Simic.","Graywolf Press, 1992.",bib,2012-06-25 19:30:11,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2591566,https://hdl.handle.net/2027/mdp.39015020838838,Graywolf Press,True,True,"['light (charioteer', 'the present (yale center for international and art studies', 'minnesota state arts board', 'national endowment for the arts', 'united arts']"
mdp.39015020840149,0,ic,2602537,,MIU,990026025370106381,25676449,"1555971768,9781555971762",,92010550,Can poetry matter? : essays on poetry and culture / by Dana Gioia.,"Graywolf Press, c1992.",bib,2012-09-06 19:31:16,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,"Gioia, Dana.",https://catalog.hathitrust.org/Record/2602537,https://hdl.handle.net/2027/mdp.39015020840149,Graywolf Press,True,True,"['minnesota state arts board', 'national endowment for the arts', 'united arts']"
mdp.39015021615920,0,und,1537758,,MIU,990015377580106381,10666837,,07437471,86658048,The Graywolf annual.,"Graywolf Press, 1985-1993.",bib,2010-02-05 21:30:04,0,1993,mnu,eng,SE,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/1537758,https://hdl.handle.net/2027/mdp.39015021615920,Graywolf Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'united arts']"
mdp.39015021846608,0,ic,2469586,,MIU,990024695860106381,22661810,"1555971334,9781555971335",,90021205,Nearsights : selected poems / Valerio Magrelli ; edited and translated by Anthony Molino.,"Graywolf Press, c1991.",bib,2007-11-30 09:30:02,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Magrelli, Valerio, 1957-",https://catalog.hathitrust.org/Record/2469586,https://hdl.handle.net/2027/mdp.39015021846608,Graywolf Press,True,True,"[None, 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'northwest area foundation', 'united arts', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015021862852,0,ic,2473828,,MIU,990024738280106381,22860613,"1555971431,9781555971434",,90024675,Vital signs : international stories on aging / edited by Dorothy Sennett with Anne Czarniecki ; introduction by Robertson Davies.,"Graywolf Press, 1991.",bib,2012-06-21 19:30:16,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2473828,https://hdl.handle.net/2027/mdp.39015021862852,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'minnesota state arts board', 'united arts']"
mdp.39015021863389,0,ic,2473752,,MIU,990024737520106381,22625152,"1555971512,9781555971519",,90021206,The sacraments of desire / Linda Gregg.,"Graywolf Press, 1991.",bib,2012-04-19 19:30:35,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Gregg, Linda.",https://catalog.hathitrust.org/Record/2473752,https://hdl.handle.net/2027/mdp.39015021863389,Graywolf Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'minnesota state legislature', 'mcknight foundation', 'minnesota state arts board', 'united arts']"
mdp.39015021905578,0,ic,2480035,,MIU,990024800350106381,22625147,"155597144X,9781555971441",,90021203,The house tibet / Georgia Savage.,"Graywolf Press, 1991.",bib,2012-03-17 19:30:18,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Savage, Georgia.",https://catalog.hathitrust.org/Record/2480035,https://hdl.handle.net/2027/mdp.39015021905578,Graywolf Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'mcknight foundation', 'minnesota state arts board', 'united arts']"
mdp.39015022058781,0,ic,2495108,,MIU,990024951080106381,23582880,"1555971466,9781555971465",,91015298,The subversive scribe : translating Latin American fiction / by Suzanne Jill Levine.,"Graywolf Press, 1991.",bib,2012-04-04 19:32:02,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Levine, Suzanne Jill.",https://catalog.hathitrust.org/Record/2495108,https://hdl.handle.net/2027/mdp.39015022058781,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'northwest area foundation', 'united arts']"
mdp.39015023662714,0,ic,1537758,v.9 1992,MIU,990015377580106381,10666837,,07437471,86658048,The Graywolf annual.,"Graywolf Press, 1985-1993.",bib,2012-07-24 19:30:05,0,1992,mnu,eng,SE,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/1537758,https://hdl.handle.net/2027/mdp.39015023662714,Graywolf Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'minnesota state legislature', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015024931944,0,ic,2514274,,MIU,990025142740106381,22811855,"1555971474,1555971482,9781555971472,9781555971489",,90024790,The gods of winter : poems / by Dana Gioia.,"Graywolf Press, 1991.",bib,2008-11-01 23:30:13,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Gioia, Dana.",https://catalog.hathitrust.org/Record/2514274,https://hdl.handle.net/2027/mdp.39015024931944,Graywolf Press,True,True,"['the new criterion', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'northwest area foundation', 'united arts', 'minnesota state arts board', 'mcknight foundation']"
mdp.39015024955000,0,ic,2516026,,MIU,990025160260106381,22811340,"1555971504,9781555971502",,"90024659,90024659 //r91",Ten seconds / Louis Edwards.,"Graywolf Press, c1991.",bib,2012-09-06 19:31:29,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Edwards, Louis, 1962-",https://catalog.hathitrust.org/Record/2516026,https://hdl.handle.net/2027/mdp.39015024955000,Graywolf Press,True,True,"['jerome foundation', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'mcknight foundation', 'minnesota state arts board', 'united arts', 'jerome foundation']"
mdp.39015024987599,0,ic,2525312,,MIU,990025253120106381,23583153,"1555971571,9781555971571",,91015574,The loom and other stories / R.A. Sasaki.,"Graywolf Press, c1991.",bib,2013-04-23 19:25:08,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Sasaki, Ruth A., 1952-",https://catalog.hathitrust.org/Record/2525312,https://hdl.handle.net/2027/mdp.39015024987599,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'jerome foundation', 'northwest area foundation', 'united arts']"
mdp.39015025194229,0,ic,2566290,,MIU,990025662900106381,21675203,"1555971350,9781555971359",,90038118,Through and through : Toledo stories / Joseph Geha.,"Graywolf Press, c1990.",bib,2012-06-11 19:30:16,0,1990,mnu,eng,BK,MIU,umich,umich,google,google,"Geha, Joseph.",https://catalog.hathitrust.org/Record/2566290,https://hdl.handle.net/2027/mdp.39015025194229,Graywolf Press,True,True,[]
mdp.39015025195457,0,ic,2566238,,MIU,990025662380106381,17652123,"1555971016,9781555971014",,87081373,The book of seeing with one's own eyes : short stories / by Sharon Doubiago.,"Graywolf Press, c1988.",bib,2010-07-03 20:30:25,0,1988,mnu,eng,BK,MIU,umich,umich,google,google,"Doubiago, Sharon.",https://catalog.hathitrust.org/Record/2566238,https://hdl.handle.net/2027/mdp.39015025195457,Graywolf Press,True,True,"['entertainment magazine', None, 'jerome foundation', 'national endowment for the arts', 'minnesota state arts board', 'united arts']"
mdp.39015025229488,0,ic,2559132,,MIU,990025591320106381,22661818,"1555971393,9781555971397",,90021207,"Cave dwellers : poems / A. Poulin, Jr.","Graywolf Press, 1991.",bib,2012-03-12 19:30:33,0,1991,mnu,eng,BK,MIU,umich,umich,google,google,"Poulin, A., Jr., 1938-1996.",https://catalog.hathitrust.org/Record/2559132,https://hdl.handle.net/2027/mdp.39015025229488,Graywolf Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'mcknight foundation', 'united arts']"
mdp.39015025299697,0,ic,2548304,,MIU,990025483040106381,24379660,"1555971563,9781555971564",,91032695,Moon crossing bridge : poetry / by Tess Gallagher.,"Graywolf Press, 1992.",bib,2012-09-06 19:31:31,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,"Gallagher, Tess.",https://catalog.hathitrust.org/Record/2548304,https://hdl.handle.net/2027/mdp.39015025299697,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'jerome foundation', 'northwest area foundation', 'united arts']"
mdp.39015025301436,0,ic,2548302,,MIU,990025483020106381,24378224,"1555971547,1555971555,9781555971540,9781555971557",,91029626,As if it matters / Eamon Grennan.,"Graywolf Press, c1992.",bib,2009-07-14 22:30:13,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,"Grennan, Eamon, 1941-",https://catalog.hathitrust.org/Record/2548302,https://hdl.handle.net/2027/mdp.39015025301436,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'jerome foundation', 'northwest area foundation', 'united arts']"
mdp.39015025359194,0,ic,1537758,v.7 1990,MIU,990015377580106381,10666837,,07437471,86658048,The Graywolf annual.,"Graywolf Press, 1985-1993.",bib,2012-05-09 04:30:27,0,1990,mnu,eng,SE,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/1537758,https://hdl.handle.net/2027/mdp.39015025359194,Graywolf Press,True,True,"['national endowment for the arts', None, 'minnesota state arts board', 'mcknight foundation', 'minnesota state arts board', 'united arts']"
mdp.39015026832660,0,ic,2784015,,MIU,990027840150106381,27726546,"1555971849,9781555971847",,93014645,The owl in the mask of the dreamer : collected poems / by John Haines.,"Graywolf Press, c1993.",bib,2012-09-08 19:30:28,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,"Haines, John, 1924-2011.",https://catalog.hathitrust.org/Record/2784015,https://hdl.handle.net/2027/mdp.39015026832660,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'jerome foundation', None, ""lila wallace reader's digest fund"", 'mcknight foundation', 'target', 'target', 'star tribune foundation', 'general mills foundation', 'united arts']"
mdp.39015026957996,0,ic,2534570,,MIU,990025345700106381,25201408,"1555971644,9781555971649",,92002513,Beyond PC : toward a politics of understanding / edited and with an introduction by Patricia Aufderheide.,"Graywolf Press, c1992.",bib,2009-02-07 22:30:31,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2534570,https://hdl.handle.net/2027/mdp.39015026957996,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'jerome foundation', 'northwest area foundation', 'united arts']"
mdp.39015026959794,0,ic,2700722,,MIU,990027007220106381,27012363,"1555971873,9781555971878",,92038919,The aspect of eternity : essays / by Bruce Bawer.,"Graywolf Press, 1993.",bib,2012-03-22 19:30:08,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,"Bawer, Bruce, 1956-",https://catalog.hathitrust.org/Record/2700722,https://hdl.handle.net/2027/mdp.39015026959794,Graywolf Press,True,True,"['the new criterion', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'united arts']"
mdp.39015026970478,0,ic,2585921,,MIU,990025859210106381,24793732,"155597158X,9781555971588",,"91042208,91042208 //r92",Cloudstreet / Tim Winton.,"Graywolf Press, c1992.",bib,2012-04-19 19:30:41,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,"Winton, Tim.",https://catalog.hathitrust.org/Record/2585921,https://hdl.handle.net/2027/mdp.39015026970478,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'jerome foundation', 'northwest area foundation', 'united arts']"
mdp.39015028424607,0,ic,2581465,,MIU,990025814650106381,24954062,"1555971660,9781555971663",,91044630,Unravelling words and weaving water / Cecilia Vicuña ; translated by Eliot Weinberger and Suzanne Jill Levine ; edited and introduced by Eliot Weinberger.,"Graywolf Press, 1992.",bib,2012-06-04 19:30:13,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,"Vicuña, Cecilia.",https://catalog.hathitrust.org/Record/2581465,https://hdl.handle.net/2027/mdp.39015028424607,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'jerome foundation', 'northwest area foundation', 'united arts']"
mdp.39015029187567,0,ic,2604288,,MIU,990026042880106381,25712232,"1555971687,9781555971687",,92014989,The secret of cartwheels : short stories / by Patricia Henley.,"Graywolf Press, c1992.",bib,2012-09-08 19:30:34,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,"Henley, Patricia.",https://catalog.hathitrust.org/Record/2604288,https://hdl.handle.net/2027/mdp.39015029187567,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'jerome foundation', 'northwest area foundation', None, ""lila wallace reader's digest fund"", 'united arts']"
mdp.39015029446781,0,ic,2627809,,MIU,990026278090106381,26400520,"1555971725,9781555971724",,92030147,The estuary / Georgia Savage.,"Graywolf Press, [1993], c1987.",bib,2012-08-20 19:30:13,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,"Savage, Georgia.",https://catalog.hathitrust.org/Record/2627809,https://hdl.handle.net/2027/mdp.39015029446781,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'jerome foundation', 'northwest area foundation', None, ""lila wallace reader's digest fund"", 'united arts']"
mdp.39015029458489,0,ic,2622032,,MIU,990026220320106381,24871502,"1555971598,9781555971595",,91040758,Sweet & sour milk / Nuruddin Farah.,"Graywolf Press, c1992.",bib,2010-01-31 22:30:03,0,1992,mnu,eng,BK,MIU,umich,umich,google,google,"Farah, Nuruddin, 1945-",https://catalog.hathitrust.org/Record/2622032,https://hdl.handle.net/2027/mdp.39015029458489,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'jerome foundation', 'northwest area foundation', 'united arts']"
mdp.39015029866830,0,ic,2700156,,MIU,990027001560106381,19512987,"1555971180,9781555971182",,89031690,The Invisible enemy / edited by Miriam Dow & Jennifer Regan.,"Graywolf Press, 1989.",bib,2012-07-23 19:30:10,0,1989,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2700156,https://hdl.handle.net/2027/mdp.39015029866830,Graywolf Press,True,True,"['minnesota state arts board', 'national endowment for the arts', 'united arts']"
mdp.39015029958546,0,ic,2718057,,MIU,990027180570106381,27264761,"1555971814,9781555971816",,92043508,The True subject : writers on life and craft / [by Jane Smiley ... and others] ; edited by Kurt Brown.,"Graywolf Press, c1993.",bib,2012-03-23 19:30:13,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/2718057,https://hdl.handle.net/2027/mdp.39015029958546,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'jerome foundation', None, ""lila wallace reader's digest fund"", 'united arts']"
mdp.39015029985515,0,ic,2717937,,MIU,990027179370106381,26672215,"1555971792,9781555971793",,"92034193,92034193 //r93",The body in four parts / by Janet Kauffman.,"Graywolf Press, c1993.",bib,2009-03-25 22:30:26,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,"Kauffman, Janet.",https://catalog.hathitrust.org/Record/2717937,https://hdl.handle.net/2027/mdp.39015029985515,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'jerome foundation', 'northwest area foundation', None, ""lila wallace reader's digest fund"", 'united arts']"
mdp.39015030717469,0,ic,715532,,MIU,990007155320106381,2913886,,,,Travelling light : poems / by David Wagoner.,"Graywolf Press, c1976.",bib,2012-03-11 19:30:26,0,1976, ,eng,BK,MIU,umich,umich,google,google,"Wagoner, David.",https://catalog.hathitrust.org/Record/715532,https://hdl.handle.net/2027/mdp.39015030717469,Graywolf Press,False,False,[]
mdp.39015032331277,0,ic,1537758,v.8 1992,MIU,990015377580106381,10666837,,07437471,86658048,The Graywolf annual.,"Graywolf Press, 1985-1993.",bib,2012-05-09 04:30:29,0,1992,mnu,eng,SE,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/1537758,https://hdl.handle.net/2027/mdp.39015032331277,Graywolf Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'united arts']"
mdp.39015032505896,0,ic,2896688,,MIU,990028966880106381,30892928,"1555972187,9781555972189",,94029928,Rainy Lake : a novel / Mary François Rockcastle.,"Graywolf Press, c1994.",bib,2012-04-19 19:30:53,0,1994,mnu,eng,BK,MIU,umich,umich,google,google,"Rockcastle, Mary François, 1952-",https://catalog.hathitrust.org/Record/2896688,https://hdl.handle.net/2027/mdp.39015032505896,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015032752456,0,ic,2797604,,MIU,990027976040106381,27726273,"155597192X,9781555971922",,93012588,Camellia street / Mercé Rodoreda ; translated and with an introduction by David H. Rosenthal ; foreword by Sandra Cisneros.,"Graywolf Press, c1993.",bib,2008-10-20 23:30:06,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,"Rodoreda, Mercè, 1908-1983.",https://catalog.hathitrust.org/Record/2797604,https://hdl.handle.net/2027/mdp.39015032752456,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015032846985,0,ic,1537758,v.10 1993,MIU,990015377580106381,10666837,,07437471,86658048,The Graywolf annual.,"Graywolf Press, 1985-1993.",bib,2012-07-21 19:30:12,0,1993,mnu,eng,SE,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/1537758,https://hdl.handle.net/2027/mdp.39015032846985,Graywolf Press,True,True,"['minnesota state arts board', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'united arts']"
mdp.39015032938154,0,ic,2817929,,MIU,990028179290106381,28801524,"1555971989,9781555971984",,"93011803,93011803 //r94",South wind changing / Jade Ngoc Quang Huynh.,"Graywolf Press, 1994.",bib,2009-01-07 21:30:08,0,1994,mnu,eng,BK,MIU,umich,umich,google,google,"Huỳnh, Jade Ngọc Quang, 1957-",https://catalog.hathitrust.org/Record/2817929,https://hdl.handle.net/2027/mdp.39015032938154,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015032976543,0,ic,2857869,,MIU,990028578690106381,27429632,"1555971954,1555971962,9781555971953,9781555971960",,93000242,Constance : poems / by Jane Kenyon.,"Graywolf Press, c1993.",bib,2008-11-01 22:30:36,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,"Kenyon, Jane.",https://catalog.hathitrust.org/Record/2857869,https://hdl.handle.net/2027/mdp.39015032976543,Graywolf Press,True,True,"['the new criterion', 'donald hall, alice mattison,', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'target', None, 'star tribune foundation', 'united arts']"
mdp.39015033088074,0,ic,3016895,,MIU,990030168950106381,33390656,"1555972292,9781555972295",,95077951,Yolk : short stories / by Josip Novakovich.,"Graywolf Press, c1995.",bib,2008-06-03 09:30:18,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Novakovich, Josip, 1956-",https://catalog.hathitrust.org/Record/3016895,https://hdl.handle.net/2027/mdp.39015033088074,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015033119689,0,ic,2752787,,MIU,990027527870106381,27011037,"1555971806,9781555971809",,92039957,Episodes / Pierre Delattre.,"Graywolf Press, c1993.",bib,2012-03-21 09:30:53,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,"Delattre, Pierre, 1930-",https://catalog.hathitrust.org/Record/2752787,https://hdl.handle.net/2027/mdp.39015033119689,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'northwest area foundation', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'united arts']"
mdp.39015034206469,0,ic,2979312,,MIU,990029793120106381,32192548,"1555972225,9781555972226",,94073113,Stonework of the sky : poetry / by Joseph A. Enzweiler.,"Graywolf Press, c1994.",bib,2012-09-06 19:31:39,0,1994,mnu,eng,BK,MIU,umich,umich,google,google,"Enzweiler, Joseph A.",https://catalog.hathitrust.org/Record/2979312,https://hdl.handle.net/2027/mdp.39015034206469,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015034243546,0,ic,2981729,,MIU,990029817290106381,29028477,"1555972128,9781555972127",,93035921,Apricots from Chernobyl / narratives by Josip Novakovich.,"Graywolf Press, c1995.",bib,2008-11-01 23:30:07,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Novakovich, Josip, 1956-",https://catalog.hathitrust.org/Record/2981729,https://hdl.handle.net/2027/mdp.39015034243546,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015034282999,0,ic,2991417,,MIU,990029914170106381,32587945,"1555972241,9781555972240",,95075326,Jack and Rochelle : a Holocaust story of love and resistance / by Jack and Rochelle Sutin ; edited by Lawrence Sutin.,"Graywolf Press, c1995.",bib,2012-06-04 10:29:15,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Sutin, Jack.",https://catalog.hathitrust.org/Record/2991417,https://hdl.handle.net/2027/mdp.39015034282999,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015034900186,0,ic,3012277,,MIU,990030122770106381,33153801,"1555972306,9781555972301",,,Cortège / Carl Phillips.,"Graywolf Press, 1995.",bib,2012-04-19 19:30:56,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Phillips, Carl, 1959-",https://catalog.hathitrust.org/Record/3012277,https://hdl.handle.net/2027/mdp.39015034900186,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015034927437,0,ic,3015429,,MIU,990030154290106381,33252613,"1555972314,9781555972318",,95077949,Little / by David Treuer.,"Graywolf Press, 1995.",bib,2012-04-19 19:30:56,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Treuer, David.",https://catalog.hathitrust.org/Record/3015429,https://hdl.handle.net/2027/mdp.39015034927437,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015035020893,0,ic,3019934,,MIU,990030199340106381,33411019,"1555972349,9781555972349",,95077952,English papers : a teaching life / William H. Pritchard,"Graywolf Press, 1995",bib,2012-05-30 19:31:58,0,1995,mnu,eng,BK,MIU,umich,umich,google,google,"Pritchard, William H",https://catalog.hathitrust.org/Record/3019934,https://hdl.handle.net/2027/mdp.39015035020893,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015037311274,0,ic,3049932,,MIU,990030499320106381,34131349,"1555972276,9781555972271",,95080236,Fables and distances : new and selected essays / John Haines.,"Graywolf Press, c1996.",bib,2012-03-12 19:30:58,0,1996,miu,eng,BK,MIU,umich,umich,google,google,"Haines, John, 1924-2011.",https://catalog.hathitrust.org/Record/3049932,https://hdl.handle.net/2027/mdp.39015037311274,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015037411678,0,ic,3059531,,MIU,990030595310106381,34519440,"1555972365,9781555972363",,95080895,Wild kingdom : poems / by Vijay Seshadri.,"Graywolf Press, c1996.",bib,2012-06-17 19:30:13,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Seshadri, Vijay.",https://catalog.hathitrust.org/Record/3059531,https://hdl.handle.net/2027/mdp.39015037411678,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015037434241,0,ic,3063137,,MIU,990030631370106381,34519741,"1555972403,9781555972400",,95080894,Otherwise : new and selected poems / Jane Kenyon.,"Graywolf Press, c1996.",bib,2012-09-07 19:30:24,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Kenyon, Jane.",https://catalog.hathitrust.org/Record/3063137,https://hdl.handle.net/2027/mdp.39015037434241,Graywolf Press,True,True,"['the estate of jane kenyon afterword ©', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015037456418,0,ic,3067634,,MIU,990030676340106381,34658778,"1555972381,9781555972387",,95080897,Big picture : stories / by Percival Everett.,"Graywolf Press, c1996.",bib,2012-09-07 19:30:24,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Everett, Percival.",https://catalog.hathitrust.org/Record/3067634,https://hdl.handle.net/2027/mdp.39015037456418,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015037756999,0,ic,3076244,,MIU,990030762440106381,34651755,"1555972373,9781555972370",,95080896,Watershed / Percival Everett.,"Graywolf Press, c1996.",bib,2012-09-07 19:30:25,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Everett, Percival.",https://catalog.hathitrust.org/Record/3076244,https://hdl.handle.net/2027/mdp.39015037756999,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015037767137,0,ic,3079607,,MIU,990030796070106381,34503967,"155597239X,9781555972394",,95081003,Take three.,"Graywolf Press, 1996.",bib,2012-03-21 19:30:09,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/3079607,https://hdl.handle.net/2027/mdp.39015037767137,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015038139419,0,ic,3104397,,MIU,"990031043970106381,990038896270106381",35254119,"1555972454,9781555972455",,96075789,The apprentice / by Lewis Libby.,"Graywolf Press, c1996.",bib,2008-06-02 09:30:11,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Libby, Lewis.",https://catalog.hathitrust.org/Record/3104397,https://hdl.handle.net/2027/mdp.39015038139419,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015038896695,0,ic,3168879,,MIU,990031688790106381,36897268,"1555972527,9781555972523",,96078745,Characters on the loose : stories / by Janet Kauffman.,"Graywolf Press, c1997.",bib,2008-11-01 22:30:36,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Kauffman, Janet.",https://catalog.hathitrust.org/Record/3168879,https://hdl.handle.net/2027/mdp.39015038896695,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015040050273,0,ic,3958569,,MIU,990039585690106381,38269684,"1555972632,9781555972639",,97070218,From the devotions : poems / by Carl Phillips.,"Graywolf Press, c1998.",bib,2012-04-19 19:31:03,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Phillips, Carl, 1959-",https://catalog.hathitrust.org/Record/3958569,https://hdl.handle.net/2027/mdp.39015040050273,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'andrew w. mellon foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies']"
mdp.39015040053004,0,ic,3975666,,MIU,990039756660106381,38365899,"1555972659,9781555972653",,97070219,A four-sided bed : a novel / Elizabeth Searle.,"Graywolf Press, c1998.",bib,2012-03-17 19:30:28,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Searle, Elizabeth, 1962-",https://catalog.hathitrust.org/Record/3975666,https://hdl.handle.net/2027/mdp.39015040053004,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'andrew w. mellon foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies']"
mdp.39015040053913,0,ic,3975663,,MIU,990039756630106381,29026393,"1555972713,9781555972714",,93033606,Salvation and other disasters : short stories / by Josip Novakovich,"Graywolf Press, c1998",bib,2008-11-01 23:30:09,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Novakovich, Josip, 1956-",https://catalog.hathitrust.org/Record/3975663,https://hdl.handle.net/2027/mdp.39015040053913,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'andrew w. mellon foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies', 'jerome foundation']"
mdp.39015040054093,0,ic,3976161,,MIU,990039761610106381,39016609,"1555972683,1555972764,9781555972684,9781555972769",,97080081,Donkey gospel : poems / Tony Hoagland.,"Graywolf Press, c1998.",bib,2012-05-24 19:30:37,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Hoagland, Tony.",https://catalog.hathitrust.org/Record/3976161,https://hdl.handle.net/2027/mdp.39015040054093,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'andrew w. mellon foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies']"
mdp.39015040060637,0,ic,3950596,,MIU,990039505960106381,37903646,"1555972594,9781555972592",,97070217,One crossed out / Fanny Howe.,"Graywolf Press, c1997.",bib,2012-09-07 19:30:31,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Howe, Fanny.",https://catalog.hathitrust.org/Record/3950596,https://hdl.handle.net/2027/mdp.39015040060637,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation']"
mdp.39015040070867,0,ic,3947100,,MIU,990039471000106381,37611618,"1555972616,9781555972615",,97070215,Raised in captivity : why does America fail its children? / Lucia Hodgson.,"Graywolf Press, c1997.",bib,2012-06-28 19:30:28,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Hodgson, Lucia.",https://catalog.hathitrust.org/Record/3947100,https://hdl.handle.net/2027/mdp.39015040070867,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation']"
mdp.39015040378047,0,ic,3978830,,MIU,990039788300106381,39284340,"155597273X,9781555972738",,97080078,Except by nature / Sandra Alcosser.,"Graywolf Press, 1998.",bib,2012-03-21 09:30:54,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Alcosser, Sandra, 1944-",https://catalog.hathitrust.org/Record/3978830,https://hdl.handle.net/2027/mdp.39015040378047,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'andrew w. mellon foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies']"
mdp.39015040534995,0,ic,3949498,,MIU,990039494980106381,37713769,"1555972675,9781555972677",,97071190,Night talk / by Elizabeth Cox.,"Graywolf Press, 1997.",bib,2008-11-02 21:30:16,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Cox, Elizabeth, 1942-",https://catalog.hathitrust.org/Record/3949498,https://hdl.handle.net/2027/mdp.39015040534995,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation']"
mdp.39015040647094,0,ic,3124893,,MIU,990031248930106381,35793151,"1555972470,1555972519,9781555972479,9781555972516",,96077469,Wise poison : poems / David Rivard.,"Graywolf Press, c1996.",bib,2012-06-18 19:30:20,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Rivard, David, 1953-",https://catalog.hathitrust.org/Record/3124893,https://hdl.handle.net/2027/mdp.39015040647094,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015040709811,0,ic,3146576,,MIU,990031465760106381,36380927,"1555972357,9781555972356",,96075891,North enough : AIDS and other clear-cuts / Jan Zita Grover.,"Graywolf Press, c1997.",bib,2009-08-24 23:30:08,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Grover, Janice Zita, 1945-",https://catalog.hathitrust.org/Record/3146576,https://hdl.handle.net/2027/mdp.39015040709811,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'jerome foundation']"
mdp.39015040723499,0,ic,3146697,,MIU,990031466970106381,36714294,"155597256X,9781555972561",,96078742,Burning down the house : essays on fiction / Charles Baxter.,"Graywolf Press, c1997.",bib,2012-05-29 19:30:33,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Baxter, Charles, 1947-",https://catalog.hathitrust.org/Record/3146697,https://hdl.handle.net/2027/mdp.39015040723499,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'jerome foundation']"
mdp.39015040748983,0,ic,3144522,,MIU,990031445220106381,36149633,"1555972446,9781555972448",,96075787,Frenzy / Percival Everett.,"Graywolf Press, c1997.",bib,2012-06-18 19:30:20,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Everett, Percival.",https://catalog.hathitrust.org/Record/3144522,https://hdl.handle.net/2027/mdp.39015040748983,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation']"
mdp.39015041008635,0,ic,3159843,,MIU,990031598430106381,36716274,"1555972543,9781555972547",,96078739,Take three 2.,"Graywolf Press, c1997.",bib,2012-03-21 19:30:10,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/3159843,https://hdl.handle.net/2027/mdp.39015041008635,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation']"
mdp.39015041015481,0,ic,3159759,,MIU,990031597590106381,36627724,"1555972535,9781555972530",,96078740,The risk of his music : stories / by Peter Weltner.,"Graywolf Press, c1997.",bib,2012-04-19 19:31:05,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Weltner, Peter.",https://catalog.hathitrust.org/Record/3159759,https://hdl.handle.net/2027/mdp.39015041015481,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', ""lila wallace reader's digest fund"", 'mcknight foundation']"
mdp.39015041027783,0,ic,3163926,,MIU,990031639260106381,36918985,"1555972578,9781555972578",,96078744,Idle curiosity / by Martha Bergland.,"Graywolf Press, c1997.",bib,2012-09-07 19:30:33,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Bergland, Martha, 1945-",https://catalog.hathitrust.org/Record/3163926,https://hdl.handle.net/2027/mdp.39015041027783,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation']"
mdp.39015041101182,0,ic,3165861,,MIU,990031658610106381,36781947,"1555972551,9781555972554",,96078741,Red signature : poems / by Mary Leader.,"Graywolf Press, c1997.",bib,2012-09-07 19:30:34,0,1997,mnu,eng,BK,MIU,umich,umich,google,google,"Leader, Mary.",https://catalog.hathitrust.org/Record/3165861,https://hdl.handle.net/2027/mdp.39015041101182,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation']"
mdp.39015042482839,0,ic,4100541,,MIU,990041005410106381,43965670,"1555973000,9781555973001",,99067241,Ana imagined / Perrin Ireland.,"Graywolf Press, c2000.",bib,2012-06-18 19:30:20,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Ireland, Perrin.",https://catalog.hathitrust.org/Record/4100541,https://hdl.handle.net/2027/mdp.39015042482839,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation']"
mdp.39015043090367,0,ic,3342524,,MIU,990033425240106381,41394077,"155597290X,9781555972905",,98088488,The wedding jester / Steve Stern.,"Graywolf Press, c1999.",bib,2012-06-18 19:30:20,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Stern, Steve, 1947-",https://catalog.hathitrust.org/Record/3342524,https://hdl.handle.net/2027/mdp.39015043090367,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'bush foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies']"
mdp.39015043116519,0,ic,3982217,,MIU,990039822170106381,39012791,"1555972721,9781555972721",,97080077,New York literary lights / William Corbett.,"Graywolf Press, c1998.",bib,2012-04-19 19:31:08,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Corbett, William, 1942-",https://catalog.hathitrust.org/Record/3982217,https://hdl.handle.net/2027/mdp.39015043116519,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'andrew w. mellon foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies', 'lannan foundation', 'j. m. kaplan fund']"
mdp.39015043178121,0,ic,3315739,,MIU,990033157390106381,29253572,"1555972020,9781555972028",,,The Graywolf annual ten : Changing community / edited and with an introduction by Scott Walker.,"Graywolf Press, 1993.",bib,2012-04-26 19:30:13,0,1993,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/3315739,https://hdl.handle.net/2027/mdp.39015043178121,Graywolf Press,True,True,"['minnesota state arts board', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'united arts']"
mdp.39015043288565,0,ic,763038,,MIU,990007630380106381,8330163,"0915308312,0915308320,9780915308316,9780915308323",,81082140,The salt ecstasies : poems / by James L. White.,"Graywolf Press, 1982.",bib,2012-04-19 19:31:08,0,1982,wau,eng,BK,MIU,umich,umich,google,google,"White, James L., 1936-1981.",https://catalog.hathitrust.org/Record/763038,https://hdl.handle.net/2027/mdp.39015043288565,Graywolf Press,False,False,"[None, 'national endowment for the arts']"
mdp.39015043779514,0,ic,4033712,,MIU,990040337120106381,41289740,"1555972888,9781555972882",,98088486,How the body prays : a novel / by Peter Weltner,"Graywolf Press, c1990",bib,2008-11-01 22:30:04,0,1999,cau,eng,BK,MIU,umich,umich,google,google,"Weltner, Peter",https://catalog.hathitrust.org/Record/4033712,https://hdl.handle.net/2027/mdp.39015043779514,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'bush foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies']"
mdp.39015045679779,0,ic,3997899,,MIU,990039978990106381,39946628,"1555972772,9781555972776",,98084450,Central square : a novel / by George Packer.,"Graywolf Press, 1998.",bib,2012-06-18 19:30:21,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Packer, George.",https://catalog.hathitrust.org/Record/3997899,https://hdl.handle.net/2027/mdp.39015045679779,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'bush foundation', 'andrew w. mellon foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies']"
mdp.39015045699348,0,ic,4002448,,MIU,990040024480106381,40214630,"1555972810,9781555972813",,98084457,How the dead live / stories by Alvin Greenberg.,"Graywolf Press, c1998.",bib,2012-09-07 19:30:42,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Greenberg, Alvin.",https://catalog.hathitrust.org/Record/4002448,https://hdl.handle.net/2027/mdp.39015045699348,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'bush foundation', 'andrew w. mellon foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies', 'jerome foundation']"
mdp.39015046473842,0,ic,4013717,,MIU,990040137170106381,39966480,"1555972799,9781555972790",,98084452,Crossing the expendable landscape / Bettina Drew.,"Graywolf Press, 1998.",bib,2008-01-30 09:30:14,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Drew, Bettina, 1956-",https://catalog.hathitrust.org/Record/4013717,https://hdl.handle.net/2027/mdp.39015046473842,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'bush foundation', 'andrew w. mellon foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies']"
mdp.39015046852060,0,ic,353246,,MIU,"990044991690106381,990003532460106381",10987637,"0915308452,0915308460,9780915308453,9780915308460",,83083186,"The ceremony, & other stories / Weldon Kees ; edited & with an introduction by Dana Gioia.","Graywolf Press, 1984.",bib,2008-11-01 22:30:35,0,1984,wau,eng,BK,MIU,umich,umich,google,google,"Kees, Weldon, 1914-1955?",https://catalog.hathitrust.org/Record/353246,https://hdl.handle.net/2027/mdp.39015046852060,Graywolf Press,False,False,[None]
mdp.39015046881523,0,ic,4001802,,MIU,990040018020106381,40389747,"1555972829,9781555972820",,,Take three: 3.,"Graywolf Press, c1998.",bib,2012-03-13 19:30:25,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/4001802,https://hdl.handle.net/2027/mdp.39015046881523,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'bush foundation', 'andrew w. mellon foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies']"
mdp.39015046912674,0,ic,4180572,,MIU,990041805720106381,47264428,"1555973175,9781555973179",,00105070,De/Compositions : 101 good poems gone wrong / W. D. Snodgrass,"Graywolf Press, c2001",bib,2012-06-21 19:30:37,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Snodgrass, W. D. 1926-2009",https://catalog.hathitrust.org/Record/4180572,https://hdl.handle.net/2027/mdp.39015046912674,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', None]"
mdp.39015047067387,0,ic,3976171,,MIU,990039761710106381,38694550,"1555972691,9781555972691",,97080082,The way it is : new & selected poems / by William Stafford.,"Graywolf Press, [1998]",bib,2012-03-18 19:30:19,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Stafford, William, 1914-1993.",https://catalog.hathitrust.org/Record/3976171,https://hdl.handle.net/2027/mdp.39015047067387,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'andrew w. mellon foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies']"
mdp.39015047442036,0,ic,4041630,,MIU,990040416300106381,36192522,"1555972497,9781555972493",,96075792,Kabloona / Gontran de Poncins in collaboration with Lewis Galantière ; illustrated by the author.,"Graywolf Press, [1996], c1972.",bib,2012-06-30 19:30:23,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Poncins, Gontran de, 1900-1962.",https://catalog.hathitrust.org/Record/4041630,https://hdl.handle.net/2027/mdp.39015047442036,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015047444677,0,ic,4035302,,MIU,990040353020106381,41352467,"1555972853,9781555972851",,98088483,Tug / G.E. Patterson.,"Graywolf Press, c1999.",bib,2008-07-23 01:30:26,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Patterson, G. E.",https://catalog.hathitrust.org/Record/4035302,https://hdl.handle.net/2027/mdp.39015047444677,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'bush foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies']"
mdp.39015047478907,0,ic,4037679,,MIU,990040376790106381,41960984,"1555972896,9781555972899",,98088487,The Graywolf silver anthology : a rare breed of publisher for 25 years.,"Graywolf Press, c1999.",bib,2012-06-25 19:30:15,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/4037679,https://hdl.handle.net/2027/mdp.39015047478907,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'bush foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies']"
mdp.39015047484475,0,ic,4013734,,MIU,990040137340106381,39856183,"1555972780,9781555972783",,98084451,"Nola : a memoir of faith, art, and madness / by Robin Hemley.","Graywolf Press, 1998.",bib,2009-08-24 23:30:10,0,1998,mnu,eng,BK,MIU,umich,umich,google,google,"Hemley, Robin, 1958-",https://catalog.hathitrust.org/Record/4013734,https://hdl.handle.net/2027/mdp.39015047484475,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'andrew w. mellon foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies']"
mdp.39015047538825,0,ic,4055353,,MIU,990040553530106381,42190491,"1555972918,9781555972912",,99060732,"A hundred white daffodils : essays, the Akhmatova translations, newspaper columns, notes, interviews, and one poem / Jane Kenyon.","Graywolf Press, c1999.",bib,2008-06-03 09:30:03,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Kenyon, Jane.",https://catalog.hathitrust.org/Record/4055353,https://hdl.handle.net/2027/mdp.39015047538825,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'bush foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies']"
mdp.39015047577617,0,ic,4055402,,MIU,990040554020106381,42520436,"1555972934,9781555972936",,99060734,Things and flesh : poems / by Linda Gregg.,"Graywolf Press, c1999.",bib,2008-11-01 22:30:40,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Gregg, Linda.",https://catalog.hathitrust.org/Record/4055402,https://hdl.handle.net/2027/mdp.39015047577617,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'bush foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies']"
mdp.39015047587756,0,ic,4060736,,MIU,990040607360106381,42884649,"1555972950,9781555972950",,99060736,The delinquent virgin / Laura Kalpakian.,"Graywolf Press, c1999.",bib,2008-07-23 01:30:21,0,1999,miu,eng,BK,MIU,umich,umich,google,google,"Kalpakian, Laura.",https://catalog.hathitrust.org/Record/4060736,https://hdl.handle.net/2027/mdp.39015047587756,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'bush foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies']"
mdp.39015047599702,0,ic,4098843,,MIU,990040988430106381,43893130,"1555973019,9781555973018",,99067242,Graveyard of the Atlantic : short stories / by Alyson Hagy.,"Graywolf Press, c2000.",bib,2012-09-07 19:30:45,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Hagy, Alyson Carol.",https://catalog.hathitrust.org/Record/4098843,https://hdl.handle.net/2027/mdp.39015047599702,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation']"
mdp.39015047655967,0,ic,573221,,MIU,990005732210106381,11065625,"0915308487,0915308495,9780915308484,9780915308491",,83083009,Across the mutual landscape / Christopher Gilbert.,"Graywolf Press, c1984.",bib,2007-07-15 09:25:32,0,1984,wau,eng,BK,MIU,umich,umich,google,google,"Gilbert, Christopher, 1949-2007.",https://catalog.hathitrust.org/Record/573221,https://hdl.handle.net/2027/mdp.39015047655967,Graywolf Press,False,False,"['national endowment for the arts', None, None]"
mdp.39015047840064,0,ic,4069762,,MIU,990040697620106381,45025329,"1555972985,9781555972981",,98060738,Pastoral : poems / by Carl Phillips,"Graywolf Press, c2000",bib,2012-06-18 19:30:21,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Phillips, Carl, 1959-",https://catalog.hathitrust.org/Record/4069762,https://hdl.handle.net/2027/mdp.39015047840064,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'bush foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies']"
mdp.39015048828258,0,ic,4055403,,MIU,990040554030106381,42520394,"1555972942,9781555972943",,99060735,Northern waters / Jan Zita Grover.,"Graywolf Press, 1999.",bib,2009-08-24 10:31:07,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Grover, Janice Zita, 1945-",https://catalog.hathitrust.org/Record/4055403,https://hdl.handle.net/2027/mdp.39015048828258,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'bush foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies']"
mdp.39015048949567,0,ic,4057866,,MIU,990040578660106381,42806624,"1555972969,9781555972967",,,Glyph : a novel / by Percival Everett.,"Graywolf Press, 1999.",bib,2012-09-07 19:30:52,0,1999,mnu,eng,BK,MIU,umich,umich,google,google,"Everett, Percival.",https://catalog.hathitrust.org/Record/4057866,https://hdl.handle.net/2027/mdp.39015048949567,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'target', 'bush foundation', 'mcknight foundation', 'general mills foundation', 'st. paul companies']"
mdp.39015049545570,0,ic,4133120,,MIU,990041331200106381,45278892,"1555973116,9781555973117",,,Full moon boat : poems / Fred Marchant.,"Graywolf Press, 2000.",bib,2008-11-01 22:30:17,0,2000,miu,eng,BK,MIU,umich,umich,google,google,"Marchant, Fred.",https://catalog.hathitrust.org/Record/4133120,https://hdl.handle.net/2027/mdp.39015049545570,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation']"
mdp.39015049549986,0,ic,4138133,,MIU,990041381330106381,45125487,"1555973124,9781555973124",,00101777,War memorials / Clint McCown.,"Graywolf Press, c2000.",bib,2012-09-07 19:30:58,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"McCown, Clint, 1952-",https://catalog.hathitrust.org/Record/4138133,https://hdl.handle.net/2027/mdp.39015049549986,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation']"
mdp.39015049863262,0,ic,631587,,MIU,990006315870106381,12160436,"0915308681,091530869X,9780915308682,9780915308699",,84073376,Wild onion : poems / by Robert L. Jones.,"Graywolf Press, 1985.",bib,2007-07-13 09:29:50,0,1985,wau,eng,BK,MIU,umich,umich,google,google,"Jones, Robert L.",https://catalog.hathitrust.org/Record/631587,https://hdl.handle.net/2027/mdp.39015049863262,Graywolf Press,True,True,[]
mdp.39015049970307,0,ic,4133128,,MIU,990041331280106381,45017709,"1555973094,9781555973094",,,Domestic work : poems / by Natasha Trethewey ; selected and introduced by Rita Dove.,"Graywolf Press, 2000.",bib,2012-06-18 19:30:22,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Trethewey, Natasha D., 1966-",https://catalog.hathitrust.org/Record/4133128,https://hdl.handle.net/2027/mdp.39015049970307,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'jerome foundation']"
mdp.39015049991337,0,ic,4156421,,MIU,990041564210106381,45605399,"1555973159,9781555973155",,00101778,And give you peace : a novel / by Jessica Treadway.,"Graywolf Press, c2001.",bib,2012-06-17 19:30:14,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Treadway, Jessica, 1961-",https://catalog.hathitrust.org/Record/4156421,https://hdl.handle.net/2027/mdp.39015049991337,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', None]"
mdp.39015050105041,0,ic,4100546,,MIU,990041005460106381,43990668,"1555973027,9781555973025",,99067239,Bewitched playground / David Rivard.,"Graywolf Press, 2000.",bib,2012-03-18 19:30:20,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Rivard, David, 1953-",https://catalog.hathitrust.org/Record/4100546,https://hdl.handle.net/2027/mdp.39015050105041,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation']"
mdp.39015050120198,0,ic,4102500,,MIU,990041025000106381,44477502,"1555973035,9781555973032",,,Some ether / Nick Flynn.,"Graywolf Press, 2000.",bib,2012-09-07 19:31:01,0,2000,mnu,eng,BK,MIU,umich,umich,google,google,"Flynn, Nick, 1960-",https://catalog.hathitrust.org/Record/4102500,https://hdl.handle.net/2027/mdp.39015050120198,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'jerome foundation']"
mdp.39015050476442,0,ic,4181198,,MIU,990041811980106381,47144016,"155597323X,9781555973230",,,My favorite apocalypse : poems / by Catie Rosemurgy.,"Graywolf Press, c2001.",bib,2012-04-19 19:31:13,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Rosemurgy, Catherine Jeanne.",https://catalog.hathitrust.org/Record/4181198,https://hdl.handle.net/2027/mdp.39015050476442,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', None]"
mdp.39015050549883,0,ic,4146310,,MIU,990041463100106381,45770561,"1555973140,9781555973148",,00101780,Halls of fame : essays / by John D'Agata.,"Graywolf Press, c2001.",bib,2008-11-02 23:30:05,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"D'Agata, John, 1974-",https://catalog.hathitrust.org/Record/4146310,https://hdl.handle.net/2027/mdp.39015050549883,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', None, ""the darger estate for the excerpts from henry darger's unpublished novel. excerpts from the deep springs alumni newsletter""]"
mdp.39015050742470,0,ic,4181200,,MIU,990041812000106381,47102618,"1555973248,9781555973247",,,Celebrities in disgrace : a novella and stories / Elizabeth Searle.,"Graywolf Press, c2001.",bib,2012-03-18 19:30:21,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Searle, Elizabeth, 1962-",https://catalog.hathitrust.org/Record/4181200,https://hdl.handle.net/2027/mdp.39015050742470,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', None]"
mdp.39015050774770,0,ic,4169298,,MIU,990041692980106381,46778968,"1555973213,9781555973216",,00105088,Many circles : new & selected essays / by Albert Goldbarth.,"Graywolf Press, c2001.",bib,2012-09-07 19:31:04,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Goldbarth, Albert.",https://catalog.hathitrust.org/Record/4169298,https://hdl.handle.net/2027/mdp.39015050774770,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', None]"
mdp.39015050804726,0,ic,4177772,,MIU,990041777720106381,47262243,"1555973205,9781555973209",,,Among women : poems / Jason Shinder.,"Graywolf Press, c2001.",bib,2012-06-18 19:30:22,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Shinder, Jason, 1955-2008.",https://catalog.hathitrust.org/Record/4177772,https://hdl.handle.net/2027/mdp.39015050804726,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', None]"
mdp.39015051278318,0,ic,4176528,,MIU,990041765280106381,46664552,"1555973221,9781555973223",,,Loverboy : a novel / by Victoria Redel.,"Graywolf Press, c2001.",bib,2008-07-23 02:30:07,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Redel, Victoria.",https://catalog.hathitrust.org/Record/4176528,https://hdl.handle.net/2027/mdp.39015051278318,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', None, None]"
mdp.39015053478973,0,ic,4206487,,MIU,990042064870106381,47990136,"155597354X,9781555973544",,2001088670,Antebellum dream book : poems / by Elizabeth Alexander.,"Graywolf Press, c2001.",bib,2008-05-28 09:30:05,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Alexander, Elizabeth.",https://catalog.hathitrust.org/Record/4206487,https://hdl.handle.net/2027/mdp.39015053478973,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', None]"
mdp.39015053479625,0,ic,3589381,,MIU,990035893810106381,48001858,"1555973558,9781555973551",,2001088671,After confession : poetry as autobiography / [edited by Kate Sontag & David Graham].,"Graywolf Press, c2001.",bib,2012-06-21 19:30:40,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/3589381,https://hdl.handle.net/2027/mdp.39015053479625,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', None]"
mdp.39015053576982,0,ic,27772,,MIU,990000277720106381,4811826,,,79102121,Crossing the Phantom River / James Masao Mitsui.,"Graywolf Press, c1978.",bib,2007-06-29 09:29:27,0,1978,wau,eng,BK,MIU,umich,umich,google,google,"Mitsui, James Masao, 1940-",https://catalog.hathitrust.org/Record/27772,https://hdl.handle.net/2027/mdp.39015053576982,Graywolf Press,False,False,"['the new york quar terly, pacific search, raven', 'national endowment for the arts']"
mdp.39015054129138,0,ic,4239505,,MIU,990042395050106381,48934650,"1555973574,9781555973575",,2001088676,Too bright to see & Alma : poems / by Linda Gregg.,"Graywolf Press, c2002.",bib,2012-03-12 19:31:05,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Gregg, Linda.",https://catalog.hathitrust.org/Record/4239505,https://hdl.handle.net/2027/mdp.39015054129138,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation', 'jerome foundation']"
mdp.39015054134542,0,ic,4209069,,MIU,990042090690106381,47966229,"1555973566,9781555973568",,20108867,Interesting monsters : fictions / by Aldo Alvarez.,"Graywolf Press, c2001.",bib,2012-03-21 19:30:14,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Alvarez, Aldo.",https://catalog.hathitrust.org/Record/4209069,https://hdl.handle.net/2027/mdp.39015054134542,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', None]"
mdp.39015054134989,0,ic,4209081,,MIU,990042090810106381,47901698,"1555973523,9781555973520",,2001088661,The ghost of Bridgetown / Debra Spark.,"Graywolf Press, 2001.",bib,2012-03-12 19:31:05,0,2001,mnu,eng,BK,MIU,umich,umich,google,google,"Spark, Debra, 1962-",https://catalog.hathitrust.org/Record/4209081,https://hdl.handle.net/2027/mdp.39015054134989,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', None, 'jumbie music (ascap)']"
mdp.39015054449288,0,ic,4216518,,MIU,990042165180106381,48615396,"1555973582,9781555973582",,,Crying at the movies : a film memoir / Madelon Sprengnether.,"Graywolf Press, c2002.",bib,2012-05-21 19:30:21,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Sprengnether, Madelon.",https://catalog.hathitrust.org/Record/4216518,https://hdl.handle.net/2027/mdp.39015054449288,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation', 'jerome foundation']"
mdp.39015054459113,0,ic,4253760,,MIU,990042537600106381,49644070,"1555973620,9781555973629",,2001096556,Heart-side up / Barbara Dimmick.,"Graywolf Press, c2002.",bib,2012-09-07 19:31:13,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Dimmick, Barbara, 1954-",https://catalog.hathitrust.org/Record/4253760,https://hdl.handle.net/2027/mdp.39015054459113,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation']"
mdp.39015055088408,0,ic,4256564,,MIU,990042565640106381,49845542,"1555973647,9781555973643",,2001096558,Trespass / Grace Dane Mazur.,"Graywolf Press, c2002.",bib,2012-09-07 19:31:13,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Mazur, Grace Dane.",https://catalog.hathitrust.org/Record/4256564,https://hdl.handle.net/2027/mdp.39015055088408,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation']"
mdp.39015055183951,0,ic,4247741,,MIU,990042477410106381,49752930,"1555973604,9781555973605",,2001096551,No shelter : the selected poems of Pura López-Colomé / translated by Forrest Gander.,"Graywolf Press, 2002.",bib,2012-07-23 19:30:18,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"López Colomé, Pura, 1952-",https://catalog.hathitrust.org/Record/4247741,https://hdl.handle.net/2027/mdp.39015055183951,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'bush foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation', 'lannan translation selection', 'jubilat (from aurora)']"
mdp.39015055185188,0,ic,4248746,,MIU,990042487460106381,49381405,"1555973590,9781555973599",,2001096552,Bellocq's Ophelia : poems / by Natasha Trethewey.,"Graywolf Press, c2002.",bib,2012-04-19 19:31:17,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Trethewey, Natasha D., 1966-",https://catalog.hathitrust.org/Record/4248746,https://hdl.handle.net/2027/mdp.39015055185188,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation']"
mdp.39015055612066,0,ic,4291642,,MIU,990042916420106381,50822004,"1555973698,9781555973698",,2002103513,Famous builder / Paul Lisicky.,"Graywolf Press, 2002.",bib,2012-04-19 19:31:18,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Lisicky, Paul.",https://catalog.hathitrust.org/Record/4291642,https://hdl.handle.net/2027/mdp.39015055612066,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation', 'jerome foundation']"
mdp.39015055802956,0,ic,4257385,,MIU,990042573850106381,50868113,"1555973655,9781555973650",,2001096559,Eat quite everything you see : poems / by Leslie Adrienne Miller.,"Graywolf Press, c2002.",bib,2012-09-07 19:31:24,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Miller, Leslie Adrienne.",https://catalog.hathitrust.org/Record/4257385,https://hdl.handle.net/2027/mdp.39015055802956,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation']"
mdp.39015055859360,0,ic,4282213,,MIU,990042822130106381,50904147,"1555973728,9781555973728",,2002102959,"Early morning : remembering my father, William Stafford / Kim Stafford.","Graywolf Press, c2002.",bib,2012-04-19 19:31:18,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Stafford, Kim Robert.",https://catalog.hathitrust.org/Record/4282213,https://hdl.handle.net/2027/mdp.39015055859360,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation']"
mdp.39015056156360,0,ic,4263230,,MIU,990042632300106381,50117928,"1555973663,9781555973667",,,Owning it all : essays / by William Kittredge.,"Graywolf Press, c2002.",bib,2012-07-15 19:31:18,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Kittredge, William.",https://catalog.hathitrust.org/Record/4263230,https://hdl.handle.net/2027/mdp.39015056156360,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation']"
mdp.39015056249843,0,ic,4281108,,MIU,990042811080106381,50542203,"155597368X,9781555973681",,2002102972,The House on Eccles Road / Judith Kitchen.,"Graywolf Press, 2002.",bib,2012-03-12 19:31:08,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Kitchen, Judith.",https://catalog.hathitrust.org/Record/4281108,https://hdl.handle.net/2027/mdp.39015056249843,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation', 'the literary arts', None]"
mdp.39015056254348,0,ic,4290869,,MIU,990042908690106381,50845332,"1555973736,9781555973735",,2002102973,Blind Huber : poems / by Nick Flynn.,"Graywolf Press, c2002.",bib,2008-08-06 22:30:04,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Flynn, Nick, 1960-",https://catalog.hathitrust.org/Record/4290869,https://hdl.handle.net/2027/mdp.39015056254348,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation', 'jerome foundation']"
mdp.39015056678264,0,ic,4318164,,MIU,990043181640106381,51996860,"1555973787,9781555973780",,,Pieces of Payne / Albert Goldbarth.,"Graywolf Press, c2003.",bib,2008-05-26 09:30:05,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Goldbarth, Albert.",https://catalog.hathitrust.org/Record/4318164,https://hdl.handle.net/2027/mdp.39015056678264,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation']"
mdp.39015056679247,0,ic,4321494,,MIU,990043214940106381,52112994,"1555973795,9781555973797",,2002111716,Kissing you : stories / Daniel Hayes.,"Graywolf Press, 2003.",bib,2012-09-07 19:31:29,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Hayes, Daniel, 1955-",https://catalog.hathitrust.org/Record/4321494,https://hdl.handle.net/2027/mdp.39015056679247,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation']"
mdp.39015056684742,0,ic,4303169,,MIU,990043031690106381,51900075,"155597371X,9781555973711",,2002102976,"Without an alphabet, without a face : selected poems / by Saadi Youssef ; translated from the Arabic by Khaled Mattawa.","Graywolf Press, c2002.",bib,2012-05-19 19:30:24,0,2002,mnu,eng,BK,MIU,umich,umich,google,google,"Yūsuf, Saʻdī.",https://catalog.hathitrust.org/Record/4303169,https://hdl.handle.net/2027/mdp.39015056684742,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation', 'lannan translation selection']"
mdp.39015056906988,0,ic,4321503,,MIU,990043215030106381,52100323,"1555973760,9781555973766",,,The bullet collection / by Patricia Sarrafian Ward.,"Graywolf Press, c2003.",bib,2012-04-19 19:31:19,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Ward, Patricia Sarrafian.",https://catalog.hathitrust.org/Record/4321503,https://hdl.handle.net/2027/mdp.39015056906988,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation', 'the creative arts']"
mdp.39015056944013,0,ic,4321504,,MIU,990043215040106381,52298877,"1555973817,9781555973810",,2002111718,Barter / Monica Youn.,"Graywolf Press, c2003.",bib,2012-06-18 19:30:23,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Youn, Monica.",https://catalog.hathitrust.org/Record/4321504,https://hdl.handle.net/2027/mdp.39015056944013,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation', 'jerome foundation']"
mdp.39015058079966,0,ic,4351742,,MIU,990043517420106381,53437665,"1555973868,9781555973865",,,What narcissism means to me / Tony Hoagland,"Graywolf Press, c2003.",bib,2008-06-04 09:30:08,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Hoagland, Tony.",https://catalog.hathitrust.org/Record/4351742,https://hdl.handle.net/2027/mdp.39015058079966,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015058117535,0,ic,3104397,,MIU,"990031043970106381,990038896270106381",35254119,"1555972454,9781555972455",,96075789,The apprentice / by Lewis Libby.,"Graywolf Press, c1996.",bib,2012-09-08 19:31:05,0,1996,mnu,eng,BK,MIU,umich,umich,google,google,"Libby, Lewis.",https://catalog.hathitrust.org/Record/3104397,https://hdl.handle.net/2027/mdp.39015058117535,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'national endowment for the arts', 'andrew w. mellon foundation', ""lila wallace reader's digest fund"", 'mcknight foundation', 'united arts']"
mdp.39015058246821,0,ic,4364362,,MIU,990043643620106381,54445899,"1555973957,9781555973957",,2003111078,Cocktails / D.A. Powell.,"Graywolf Press, c2004.",bib,2012-05-16 19:30:41,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Powell, D. A.",https://catalog.hathitrust.org/Record/4364362,https://hdl.handle.net/2027/mdp.39015058246821,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015058822746,0,ic,4372523,,MIU,990043725230106381,54754894,"1555973949,9781555973940",,2003111080,New British poetry / edited by Don Paterson and Charles Simic.,"Graywolf Press, c2004.",bib,2012-07-24 19:30:18,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,,https://catalog.hathitrust.org/Record/4372523,https://hdl.handle.net/2027/mdp.39015058822746,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'national endowment for the arts']"
mdp.39015059164445,0,ic,4737097,,MIU,990047370970106381,55873189,"1555974031,9781555974039",,2003112164,On the ground / Fanny Howe.,"Graywolf Press, c2004.",bib,2012-09-07 19:31:38,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Howe, Fanny.",https://catalog.hathitrust.org/Record/4737097,https://hdl.handle.net/2027/mdp.39015059164445,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015059276736,0,ic,4961464,,MIU,990049614640106381,57706062,"1555974163,9781555974169",,2004109268,Budget travel through space and time / Albert Goldbarth.,"Graywolf Press, c2005.",bib,2008-09-24 23:30:06,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Goldbarth, Albert.",https://catalog.hathitrust.org/Record/4961464,https://hdl.handle.net/2027/mdp.39015059276736,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""target and mervyn's with support from the target foundation"", 'mcknight foundation', 'minnesota state arts board']"
mdp.39015059285976,0,ic,4937506,,MIU,990049375060106381,57394894,"1555974147,9781555974145",,2004109265,The maverick room : poems / Thomas Sayers Ellis.,"Graywolf Press, c2005.",bib,2012-06-25 19:30:19,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Ellis, Thomas Sayers.",https://catalog.hathitrust.org/Record/4937506,https://hdl.handle.net/2027/mdp.39015059285976,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""target and mervyn's with support from the target foundation"", 'mcknight foundation', 'minnesota state arts board', 'jerome foundation']"
mdp.39015059301575,0,ic,4937508,,MIU,990049375080106381,57443636,"1555974139,9781555974138",,2004109264,The complete history of New Mexico : stories / by Kevin McIlvoy.,"Graywolf Press, c2005.",bib,2012-06-25 19:30:19,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"McIlvoy, Kevin, 1953-",https://catalog.hathitrust.org/Record/4937508,https://hdl.handle.net/2027/mdp.39015059301575,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""target and mervyn's with support from the target foundation"", 'mcknight foundation', 'minnesota state arts board']"
mdp.39015059993520,0,ic,4345085,,MIU,990043450850106381,53221272,"1555973884,9781555973889",,2003101171,Seven-star bird : poems / by David Daniel.,"Graywolf Press, c2003.",bib,2008-11-01 23:30:13,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Daniel, David, 1960-",https://catalog.hathitrust.org/Record/4345085,https://hdl.handle.net/2027/mdp.39015059993520,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015060009084,0,ic,4331828,,MIU,990043318280106381,51678649,"1555973841,9781555973841",,2002111861,The best short stories of William Kittredge.,"Graywolf Press, c2003.",bib,2012-04-19 19:31:22,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Kittredge, William.",https://catalog.hathitrust.org/Record/4331828,https://hdl.handle.net/2027/mdp.39015060009084,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation', 'minnesota state arts board']"
mdp.39015060024513,0,ic,4331982,,MIU,990043319820106381,52916668,"1555973833,9781555973834",,2002111719,She says / Vénus Khoury-Ghata ; translated by Marilyn Hacker.,"Graywolf Press, c2003.",bib,2010-03-19 05:30:57,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Khoury-Ghata, Vénus.",https://catalog.hathitrust.org/Record/4331982,https://hdl.handle.net/2027/mdp.39015060024513,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation', 'minnesota state arts board', 'lannan translation selection', None]"
mdp.39015060039107,0,ic,4339417,,MIU,990043394170106381,52875790,"155597385X,9781555973858",,,One vacant chair / Joe Coomer.,"Graywolf Press, 2003.",bib,2012-09-08 19:31:14,0,2003,mnu,eng,BK,MIU,umich,umich,google,google,"Coomer, Joe.",https://catalog.hathitrust.org/Record/4339417,https://hdl.handle.net/2027/mdp.39015060039107,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'minnesota state arts board', 'the literary arts']"
mdp.39015060064600,0,ic,4753454,,MIU,990047534540106381,56406172,"1555974058,9781555974053",,2004104185,The weatherman: a novel / by Clint McCown,"Graywolf Press, c2004",bib,2012-08-03 19:30:19,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"McCown, Clint, 1952-",https://catalog.hathitrust.org/Record/4753454,https://hdl.handle.net/2027/mdp.39015060064600,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'minnesota state arts board', 'the literary arts']"
mdp.39015060065128,0,ic,4753455,,MIU,990047534550106381,56417032,"1555974074,9781555974077",,2004104187,Don't let me be lonely : an American lyric / Claudia Rankine.,"Graywolf Press, c2004.",bib,2012-05-17 19:30:42,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Rankine, Claudia, 1963-",https://catalog.hathitrust.org/Record/4753455,https://hdl.handle.net/2027/mdp.39015060065128,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'jerome foundation', 'minnesota state arts board']"
mdp.39015060067298,0,ic,4763534,,MIU,990047635340106381,56596717,"1555974066,9781555974060",,,The descent : poetry / by Sophie Cabot Black.,"Graywolf Press, c2004.",bib,2018-08-28 03:25:48,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Black, Sophie Cabot.",https://catalog.hathitrust.org/Record/4763534,https://hdl.handle.net/2027/mdp.39015060067298,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'jerome foundation', 'minnesota state arts board']"
mdp.39015060111070,0,ic,4913602,,MIU,990049136020106381,56661230,"1555974112,9781555974114",,2004104191,Damned if I do : stories / Percival Everett.,"Graywolf Press, c2004.",bib,2012-06-25 19:30:19,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Everett, Percival.",https://catalog.hathitrust.org/Record/4913602,https://hdl.handle.net/2027/mdp.39015060111070,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015060121632,0,ic,4769197,,MIU,990047691970106381,56749280,"1555974082,9781555974084",,,Voluntary servitude : poems / by Mark Wunderlich.,"Graywolf Press, c2004.",bib,2012-05-16 19:30:42,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Wunderlich, Mark, 1968-",https://catalog.hathitrust.org/Record/4769197,https://hdl.handle.net/2027/mdp.39015060121632,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'jerome foundation', 'minnesota state arts board']"
mdp.39015060397802,0,ic,4913504,,MIU,990049135040106381,56636968,"1555974090,9781555974091",,2004104189,Tearjerker : a novel / by Daniel Hayes.,"Graywolf Press, c2004.",bib,2012-05-16 19:30:42,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Hayes, Daniel, 1955-",https://catalog.hathitrust.org/Record/4913504,https://hdl.handle.net/2027/mdp.39015060397802,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', ""marshall field's project imagine with support from the target foundation"", 'mcknight foundation', 'minnesota state arts board']"
mdp.39015060823468,0,ic,5021481,,MIU,990050214810106381,60426083,"1555974236,9781555974237",,2004116115,Pocketful of names / Joe Coomer.,"Graywolf Press, c2005.",bib,2012-05-16 19:30:43,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Coomer, Joe.",https://catalog.hathitrust.org/Record/5021481,https://hdl.handle.net/2027/mdp.39015060823468,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""target and mervyn's with support from the target foundation"", 'mcknight foundation', 'minnesota state arts board']"
mdp.39015060839241,0,ic,4987911,,MIU,990049879110106381,59226654,"1555974201,9781555974206",,,Record palace / Susan Wheeler.,"Graywolf Press, c2005.",bib,2012-06-25 19:30:20,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Wheeler, Susan, 1936-",https://catalog.hathitrust.org/Record/4987911,https://hdl.handle.net/2027/mdp.39015060839241,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""target and mervyn's with support from the target foundation"", 'mcknight foundation', 'minnesota state arts board']"
mdp.39015061103696,0,ic,4377664,,MIU,990043776640106381,54883350,"1555973973,9781555973971",,,Potential weapons : a novella and stories / Jocelyn Lieu.,"Graywolf Press, c2004.",bib,2008-11-01 22:30:37,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Lieu, Jocelyn.",https://catalog.hathitrust.org/Record/4377664,https://hdl.handle.net/2027/mdp.39015061103696,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015061103746,0,ic,4377670,,MIU,990043776700106381,54829727,"1555974007,9781555974008",,,The Long meadow : poems / by Vijay Seshadri.,"Graywolf Press, c2004.",bib,2012-06-18 19:30:24,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Seshadri, Vijay.",https://catalog.hathitrust.org/Record/4377670,https://hdl.handle.net/2027/mdp.39015061103746,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'minnesota state arts board', 'jerome foundation']"
mdp.39015061175975,0,ic,5061982,,MIU,990050619820106381,61286565,"1555974279,9781555974275",,,Wounded : a novel / Percival Everett.,"Graywolf Press, c2005.",bib,2012-06-26 19:30:20,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Everett, Percival.",https://catalog.hathitrust.org/Record/5061982,https://hdl.handle.net/2027/mdp.39015061175975,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015061190230,0,ic,5059465,,MIU,990050594650106381,61227228,"1555974252,9781555974251",,2004116117,Lightning at dinner : poems / by Jim Moore.,"Graywolf Press, c2005.",bib,2012-06-25 19:30:20,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Moore, James, 1943-",https://catalog.hathitrust.org/Record/5059465,https://hdl.handle.net/2027/mdp.39015061190230,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""target and mervyn's with support from the target foundation"", 'mcknight foundation', None]"
mdp.39015061323856,0,ic,4722156,,MIU,990047221560106381,55140217,"1555974015,9781555974015",,2003112163,Coin of the realm : essays on the life and art of poetry / Carl Phillips.,"Graywolf Press, c2004.",bib,2008-06-06 00:30:09,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Phillips, Carl, 1959-",https://catalog.hathitrust.org/Record/4722156,https://hdl.handle.net/2027/mdp.39015061323856,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015061323989,0,ic,4722710,,MIU,990047227100106381,55537367,"1555974023,9781555974022",,,A table of content : poems / Dorothea Tanning.,"Graywolf Press, c2004.",bib,2012-03-12 19:31:32,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Tanning, Dorothea, 1910-2012.",https://catalog.hathitrust.org/Record/4722710,https://hdl.handle.net/2027/mdp.39015061323989,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'jerome foundation']"
mdp.39015061469030,0,ic,4988321,,MIU,990049883210106381,12893679,"0915308673,9780915308675",,84073375,In Shelly's Leg : a novel / by Sara Vogan.,"Graywolf Press, 1985, c1981.",bib,2012-08-03 19:30:20,0,1981,mnu,eng,BK,MIU,umich,umich,google,google,"Vogan, Sara.",https://catalog.hathitrust.org/Record/4988321,https://hdl.handle.net/2027/mdp.39015061469030,Graywolf Press,False,False,"['national endowment for the arts', None, 'national endowment for the arts']"
mdp.39015061751601,0,ic,4380012,,MIU,990043800120106381,55055950,"155597399X,9781555973995",,2003112160,Sea dogs : stories / by John Bensko.,"Graywolf Press, c2004.",bib,2012-07-25 19:30:12,0,2004,mnu,eng,BK,MIU,umich,umich,google,google,"Bensko, John, 1949-",https://catalog.hathitrust.org/Record/4380012,https://hdl.handle.net/2027/mdp.39015061751601,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'jerome foundation', 'minnesota state arts board']"
mdp.39015062594018,0,ic,5083036,,MIU,990050830360106381,61697732,"1555974317,9781555974312",,2005925169,Times like these : stories / by Rachel Ingalls.,"Graywolf Press, 2005.",bib,2012-05-16 19:30:44,0,2005,mnu,eng,BK,MIU,umich,umich,google,google,"Ingalls, Rachel.",https://catalog.hathitrust.org/Record/5083036,https://hdl.handle.net/2027/mdp.39015062594018,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'national endowment for the arts']"
mdp.39015063246865,0,ic,5211335,,MIU,990052113350106381,63790477,"1555974392,9781555974398",,2005932355,In the middle distance : poems / Linda Gregg,"Graywolf Press, c2006",bib,2012-06-25 19:30:22,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Gregg, Linda",https://catalog.hathitrust.org/Record/5211335,https://hdl.handle.net/2027/mdp.39015063246865,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'national endowment for the arts']"
mdp.39015063261344,0,ic,5131691,,MIU,990051316910106381,62938522,"1555974376,9781555974374",,2005932353,Parallel play : poems / Stephen Burt.,"Graywolf Press, 2006.",bib,2012-05-16 19:30:45,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Burt, Stephanie, 1971-",https://catalog.hathitrust.org/Record/5131691,https://hdl.handle.net/2027/mdp.39015063261344,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'national endowment for the arts', 'jerome foundation']"
mdp.39015063330255,0,ic,102042206,,MIU,990051242280106381,71580824,"1555974368,9781555974367",,2005925174,Look there : new and selected poems / of Agi Mishol ; translated from the Hebrew by Lisa Katz.,"Graywolf Press, c2006.",bib,2012-06-07 19:30:35,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Mishʻol, Agi.",https://catalog.hathitrust.org/Record/102042206,https://hdl.handle.net/2027/mdp.39015063330255,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', ""target and mervyn's with support from the target foundation"", 'mcknight foundation', 'national endowment for the arts']"
mdp.39015063682606,0,ic,5122645,,MIU,990051226450106381,63127020,"1555974384,9781555974381",,,Frantic transmissions to and from Los Angeles : an accidental memoir / Kate Braverman.,"Graywolf Press, c2006.",bib,2012-06-25 19:30:23,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Braverman, Kate.",https://catalog.hathitrust.org/Record/5122645,https://hdl.handle.net/2027/mdp.39015063682606,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'national endowment for the arts']"
mdp.39015064689352,0,ic,5225931,,MIU,990052259310106381,65431615,"1555974406,9781555974404",,,Interview with a ghost : essays / Tom Sleigh,"Graywolf Press, c2006",bib,2012-08-03 19:30:22,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Sleigh, Tom",https://catalog.hathitrust.org/Record/5225931,https://hdl.handle.net/2027/mdp.39015064689352,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'national endowment for the arts']"
mdp.39015064689667,0,ic,5222270,,MIU,990052222700106381,64386039,"1555974422,9781555974428",,2005926374,When all is said and done : a novel / Robert Hill,"Graywolf Press, c2006",bib,2008-11-18 22:30:05,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Hill, Robert",https://catalog.hathitrust.org/Record/5222270,https://hdl.handle.net/2027/mdp.39015064689667,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015064703211,0,ic,5243801,,MIU,990052438010106381,67711651,"1555974430,9781555974435",,2005938149,Dear ghosts : poems / by Tess Gallagher,"Graywolf Press, c2006",bib,2012-06-25 19:30:23,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Gallagher, Tess",https://catalog.hathitrust.org/Record/5243801,https://hdl.handle.net/2027/mdp.39015064703211,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015064730065,0,ic,5287572,,MIU,990052875720106381,71801240,"1555974554,9781555974558",,2006924335,Real sofistikashun : essays on poetry and craft / Tony Hoagland,"Graywolf Press, 2006",bib,2008-09-25 23:30:09,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Hoagland, Tony",https://catalog.hathitrust.org/Record/5287572,https://hdl.handle.net/2027/mdp.39015064730065,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015064761722,0,ic,5288284,,MIU,990052882840106381,70914385,"1555974511,9781555974510",,2006924339,The translation of Dr. Apelles : a love story / David Treuer,"Graywolf Press, c2006",bib,2012-06-25 19:30:24,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Treuer, David",https://catalog.hathitrust.org/Record/5288284,https://hdl.handle.net/2027/mdp.39015064761722,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015064876488,0,ic,5283437,,MIU,990052834370106381,71224864,"155597452X,9781555974527",,,Native American fiction : a user's manual / David Treuer.,"Graywolf Press, c2006.",bib,2012-05-16 19:30:46,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Treuer, David.",https://catalog.hathitrust.org/Record/5283437,https://hdl.handle.net/2027/mdp.39015064876488,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015064913216,0,ic,5247332,,MIU,990052473320106381,"69997187,72986963","155597449X,9781555974497",,2005938152,Blue front / Martha Collins,"Graywolf Press, 2006",bib,2012-06-25 19:30:24,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Collins, Martha, 1940-",https://catalog.hathitrust.org/Record/5247332,https://hdl.handle.net/2027/mdp.39015064913216,Graywolf Press,True,True,[]
mdp.39015064952677,0,ic,5579931,,MIU,990055799310106381,123434845,"1555974708,9781555974701",,2006938263,Out stealing horses / Per Petterson ; translated by Anne Born.,"Graywolf Press, [2007]",bib,2012-06-30 19:30:28,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Petterson, Per, 1952-",https://catalog.hathitrust.org/Record/5579931,https://hdl.handle.net/2027/mdp.39015064952677,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'national endowment for the arts']"
mdp.39015064984035,0,ic,5576085,,MIU,990055760850106381,137341168,"1555974759,9781555974756",,2006938264,Duende : poems / by Tracy K. Smith,"Graywolf Press, c2007",bib,2012-06-25 19:30:24,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Smith, Tracy K.",https://catalog.hathitrust.org/Record/5576085,https://hdl.handle.net/2027/mdp.39015064984035,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'national endowment for the arts']"
mdp.39015066741151,0,ic,5398087,,MIU,990053980870106381,,"1555974546,9781555974541",,,Lions don't eat us.,"Graywolf Press, c2006.",bib,2012-05-16 19:30:47,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Bridges, Constance Quarterman.",https://catalog.hathitrust.org/Record/5398087,https://hdl.handle.net/2027/mdp.39015066741151,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'national endowment for the arts', 'jerome foundation']"
mdp.39015066741219,0,ic,5398091,,MIU,990053980910106381,,"1555974538,9781555974534",,,"Everything preserved : poems, 1955-2005.","Graywolf Press, c2006.",bib,2012-06-25 19:30:24,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Everson, Landis.",https://catalog.hathitrust.org/Record/5398091,https://hdl.handle.net/2027/mdp.39015066741219,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015066844500,0,ic,5407245,,MIU,990054072450106381,76701699,"1555974570,9781555974572",,2006924338,Collected poems / Lynda Hull ; [edited with Mark Doty ; introduction by Yusef Komunyakaa].,"Graywolf Press, c2006.",bib,2012-06-25 19:30:25,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Hull, Lynda, 1954-",https://catalog.hathitrust.org/Record/5407245,https://hdl.handle.net/2027/mdp.39015066844500,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015066877104,0,ic,5422511,,MIU,990054225110106381,"76167891,78892048","1555974562,9781555974565",,2006924337,"Recyclopedia : Trimmings, S*PeRM**K*T, and Muse & Drudge / Harryette Mullen","Graywolf Press, 2006",bib,2009-10-27 21:30:18,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Mullen, Harryette Romell",https://catalog.hathitrust.org/Record/5422511,https://hdl.handle.net/2027/mdp.39015066877104,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015066900716,0,ic,5616472,,MIU,990056164720106381,148824842,"1555974775,9781555974770",,2007924765,Ron Carlson writes a story / Ron Carlson.,"Graywolf Press, c2007.",bib,2012-05-17 19:30:49,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Carlson, Ron.",https://catalog.hathitrust.org/Record/5616472,https://hdl.handle.net/2027/mdp.39015066900716,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'national endowment for the arts']"
mdp.39015067678972,0,ic,5546070,,MIU,990055460700106381,82672187,"1555974643,9781555974640",,2006929504,Reading life : books for the ages / Sven Birkerts.,"Graywolf Press, c2007.",bib,2010-01-30 22:30:03,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Birkerts, Sven.",https://catalog.hathitrust.org/Record/5546070,https://hdl.handle.net/2027/mdp.39015067678972,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'minnesota state arts board', 'target']"
mdp.39015068794034,0,ic,5560234,,MIU,990055602340106381,85786336,"1555974627,9781555974626",,2006929502,"The kitchen sink : new and selected poems, 1972-2007 / Albert Goldbarth","Graywolf Press, c2007",bib,2012-05-16 19:30:48,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Goldbarth, Albert",https://catalog.hathitrust.org/Record/5560234,https://hdl.handle.net/2027/mdp.39015068794034,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'target']"
mdp.39015068816803,0,ic,5557938,,MIU,990055579380106381,85810284,"1555974635,9781555974633",,2006929503,The resurrection trade / Leslie Adrienne Miller.,"Graywolf Press, 2007.",bib,2012-06-25 19:30:25,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Miller, Leslie Adrienne.",https://catalog.hathitrust.org/Record/5557938,https://hdl.handle.net/2027/mdp.39015068816803,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015068817033,0,ic,5557939,,MIU,990055579390106381,77257496,"1555974597,9781555974596",,2006929500,Neck deep and other predicaments / Ander Monson,"Graywolf, 2007",bib,2012-06-13 19:30:25,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Monson, Ander, 1975-",https://catalog.hathitrust.org/Record/5557939,https://hdl.handle.net/2027/mdp.39015068817033,Graywolf Press,True,True,"[None, 'ruth easton trust of the edelstein family foundation', 'ruth easton trust of the edelstein family foundation']"
mdp.39015069154915,0,ic,5225163,,MIU,990052251630106381,68810506,"1555974449,9781555974442",,,Turning life into fiction / Robin Hemley.,"Graywolf Press, c2006.",bib,2012-06-05 04:30:03,0,2006,mnu,eng,BK,MIU,umich,umich,google,google,"Hemley, Robin, 1958-",https://catalog.hathitrust.org/Record/5225163,https://hdl.handle.net/2027/mdp.39015069154915,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015069338062,0,ic,5554195,,MIU,990055541950106381,99875568,"1555974651,9781555974657",,2006929505,Waterlight : selected poems / Kathleen Jamie.,"Graywolf Press, 2007.",bib,2012-05-15 19:31:11,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Jamie, Kathleen, 1962-",https://catalog.hathitrust.org/Record/5554195,https://hdl.handle.net/2027/mdp.39015069338062,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015069338112,0,ic,5554194,,MIU,990055541940106381,86079521,"1555974457,9781555974459",,2006929506,Findings : essays on the natural and unnatural world / Kathleen Jamie.,"Graywolf Press, 2007.",bib,2012-05-15 19:31:11,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Jamie, Kathleen, 1962-",https://catalog.hathitrust.org/Record/5554194,https://hdl.handle.net/2027/mdp.39015069338112,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'national endowment for the arts', 'target']"
mdp.39015070702405,0,ic,5595401,,MIU,990055954010106381,148677515,"1555974724,9781555974725",,2006938266,The lyrics / Fanny Howe.,"Graywolf Press, 2007",bib,2012-10-04 04:30:05,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Howe, Fanny",https://catalog.hathitrust.org/Record/5595401,https://hdl.handle.net/2027/mdp.39015070702405,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'minnesota state arts board', 'target']"
mdp.39015073963145,0,ic,5656577,,MIU,990056565770106381,153578916,"1555974899,9781555974893",,2007924774,"The art of time in memoir : then, again / Sven Birkerts.","Graywolf Press, c2008.",bib,2013-05-07 04:25:06,0,2008,mnu,eng,BK,MIU,umich,umich,google,google,"Birkerts, Sven.",https://catalog.hathitrust.org/Record/5656577,https://hdl.handle.net/2027/mdp.39015073963145,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015074040851,0,ic,5623187,,MIU,990056231870106381,173844274,"1555974805,9781555974800",,2007924767,Modern life : poems / by Matthea Harvey.,"Graywolf Press, c2007.",bib,2012-05-16 19:30:50,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Harvey, Matthea, 1973-",https://catalog.hathitrust.org/Record/5623187,https://hdl.handle.net/2027/mdp.39015074040851,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'minnesota state arts board', 'target']"
mdp.39015074235428,0,ic,5654405,,MIU,990056544050106381,153578871,"1555974791,9781555974794",,2007924770,The next rodeo : new and selected essays / William Kittredge.,"Graywolf Press, c2007.",bib,2010-08-26 04:30:14,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Kittredge, William.",https://catalog.hathitrust.org/Record/5654405,https://hdl.handle.net/2027/mdp.39015074235428,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'minnesota state arts board']"
mdp.39015074248520,0,ic,5626409,,MIU,990056264090106381,144596554,"1555974732,9781555974732",,2006938267,The art of subtext : beyond plot / Charles Baxter,"Graywolf Press ; Turnaround, distributor], 2007",bib,2012-07-01 19:30:30,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Baxter, Charles, 1947-",https://catalog.hathitrust.org/Record/5626409,https://hdl.handle.net/2027/mdp.39015074248520,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'minnesota state arts board', 'target']"
mdp.39015074271365,0,ic,5617815,,MIU,990056178150106381,144596555,"1555974740,9781555974749",,2006938268,The art of attention : a poet's eye / Donald Revell,"Graywolf Press, c2007",bib,2012-05-28 19:30:51,0,2007,mnu,eng,BK,MIU,umich,umich,google,google,"Revell, Donald, 1954-",https://catalog.hathitrust.org/Record/5617815,https://hdl.handle.net/2027/mdp.39015074271365,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'national endowment for the arts', 'target']"
mdp.39015076167579,0,ic,5690663,,MIU,990056906630106381,166378132,"1555974910,9781555974916",,2007925193,The house of widows : an oral history / Askold Melnyczuk.,"Graywolf Press, c2008.",bib,2012-05-10 19:30:38,0,2008,mnu,eng,BK,MIU,umich,umich,google,google,"Melnyczuk, Askold.",https://catalog.hathitrust.org/Record/5690663,https://hdl.handle.net/2027/mdp.39015076167579,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'tot national endowment for the arts minnesota state arts board', 'target']"
mdp.39015076175275,0,ic,5754150,,MIU,990057541500106381,176972585,"1555974988,9781555974985",,2007938134,The end / Salvatore Scibona.,"Graywolf Press, c2008.",bib,2010-07-20 09:05:56,0,2008,mnu,eng,BK,MIU,umich,umich,google,google,"Scibona, Salvatore.",https://catalog.hathitrust.org/Record/5754150,https://hdl.handle.net/2027/mdp.39015076175275,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'minnesota state arts board', 'target', 'jerome foundation']"
mdp.39015076176950,0,ic,5698824,,MIU,990056988240106381,156832569,"1555974902,9781555974909",,2007925191,Black glasses like Clark Kent : a GI's secret from postwar Japan / Terese Svoboda.,"Graywolf Press, c2008.",bib,2012-06-30 19:30:31,0,2008,mnu,eng,BK,MIU,umich,umich,google,google,"Svoboda, Terese.",https://catalog.hathitrust.org/Record/5698824,https://hdl.handle.net/2027/mdp.39015076176950,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'minnesota state arts board', 'target', None]"
mdp.39015078785287,0,ic,6305031,,MIU,990063050310106381,243544514,"1555975208,9781555975203",,2008935600,The winter sun : notes on a vocation / Fanny Howe.,"Graywolf Press, c2009.",bib,2010-07-10 21:30:40,0,2009,mnu,eng,BK,MIU,umich,umich,google,google,"Howe, Fanny.",https://catalog.hathitrust.org/Record/6305031,https://hdl.handle.net/2027/mdp.39015078785287,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'ru wells fargo national endowment for the arts lv/lv', 'minnesota state arts board']"
mdp.39015078796540,0,ic,6769346,,MIU,990067693460106381,243544788,"1555975224,9781555975227",,2008935603,Castle : a novel / J. Robert Lennon.,"Graywolf Press, c2009.",bib,2010-07-10 19:30:35,0,2009,mnu,eng,BK,MIU,umich,umich,google,google,"Lennon, J. Robert, 1970-",https://catalog.hathitrust.org/Record/6769346,https://hdl.handle.net/2027/mdp.39015078796540,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'wells fargo national endowment for the arts']"
mdp.39015080726055,0,ic,6821598,,MIU,990068215980106381,243544511,"1555975194,9781555975197",,2008935601,The scattered papers of Penelope : new and selected poems / Katerina Anghelaki-Rooke ; edited [and translated] by Karen Van Dyck.,"Graywolf Press, c2009.",bib,2011-10-07 04:30:04,0,2009,mnu,eng,BK,MIU,umich,umich,google,google,"Angelakē-Rouk, Katerina.",https://catalog.hathitrust.org/Record/6821598,https://hdl.handle.net/2027/mdp.39015080726055,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'national endowment for the arts']"
mdp.39015080841227,0,ic,6778104,,MIU,990067781040106381,243544785,"1555975216,9781555975210",,2008935602,Close calls with nonsense : reading new poetry / Stephen Burt..,"Graywolf Press, c2009.",bib,2010-07-10 21:32:06,0,2009,mnu,eng,BK,MIU,umich,umich,google,google,"Burt, Stephanie, 1971-",https://catalog.hathitrust.org/Record/6778104,https://hdl.handle.net/2027/mdp.39015080841227,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'ta wells fargo national endowment for the arts ../../../.... a']"
mdp.39015080865176,0,ic,6839492,,MIU,990068394920106381,259266726,"1555975259,9781555975258",,2008941965,To be read in 500 years : poems / Albert Goldbarth.,"Graywolf Press, c2009.",bib,2010-07-10 21:30:52,0,2009,mnu,eng,BK,MIU,umich,umich,google,google,"Goldbarth, Albert.",https://catalog.hathitrust.org/Record/6839492,https://hdl.handle.net/2027/mdp.39015080865176,Graywolf Press,True,True,"['minnesota state arts board', 'minnesota state legislature', 'wells fargo foundation minnesota', 'national endowment for the arts', 'bush foundation', 'target', 'mcknight foundation', 'national endowment for the arts', 'target']"
mdp.39076000651674,0,ic,1537758,1985,MIU,990015377580106381,10666837,,07437471,86658048,The Graywolf annual.,"Graywolf Press, 1985-1993.",bib,2011-08-12 19:30:05,0,1985,mnu,eng,SE,UMDB,umich,umich,google,google,,https://catalog.hathitrust.org/Record/1537758,https://hdl.handle.net/2027/mdp.39076000651674,Graywolf Press,True,True,[]
mdp.39076000796628,0,ic,1537758,1988,MIU,990015377580106381,10666837,,07437471,86658048,The Graywolf annual.,"Graywolf Press, 1985-1993.",bib,2011-08-12 19:30:05,0,1988,mnu,eng,SE,UMDB,umich,umich,google,google,,https://catalog.hathitrust.org/Record/1537758,https://hdl.handle.net/2027/mdp.39076000796628,Graywolf Press,True,True,"['national endowment for the arts', 'minnesota state arts board', 'united arts']"
mdp.39076001091623,0,ic,1537758,1986,MIU,990015377580106381,10666837,,07437471,86658048,The Graywolf annual.,"Graywolf Press, 1985-1993.",bib,2011-08-12 19:30:05,0,1986,mnu,eng,SE,UMDB,umich,umich,google,google,,https://catalog.hathitrust.org/Record/1537758,https://hdl.handle.net/2027/mdp.39076001091623,Graywolf Press,True,True,[]
mdp.49015001162867,0,ic,353246,,MIU,"990044991690106381,990003532460106381",10987637,"0915308452,0915308460,9780915308453,9780915308460",,83083186,"The ceremony, & other stories / Weldon Kees ; edited & with an introduction by Dana Gioia.","Graywolf Press, 1984.",bib,2010-11-07 20:30:47,0,1984,wau,eng,BK,MIU,umich,umich,google,google,"Kees, Weldon, 1914-1955?",https://catalog.hathitrust.org/Record/353246,https://hdl.handle.net/2027/mdp.49015001162867,Graywolf Press,False,False,[None]