-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path11582.xml
2968 lines (2968 loc) · 178 KB
/
11582.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="https://raw.githubusercontent.com/YaleArchivesSpace/EAD3-to-PDF-UA/master/ead3-yale.sch" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<?xml-model href="https://raw.githubusercontent.com/SAA-SDT/EAD3/master/ead3.rng"
type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<ead xmlns="http://ead3.archivists.org/schema/">
<control countryencoding="iso3166-1"
dateencoding="iso8601"
langencoding="iso639-2b"
relatedencoding="marc"
repositoryencoding="iso15511"
scriptencoding="iso15924">
<recordid instanceurl="https://hdl.handle.net/10079/fa/beinecke.lehman">beinecke.lehman</recordid>
<otherrecordid localtype="BIB">11196773</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the David Lehman Papers </titleproper>
<titleproper localtype="filing">Lehman (David) Papers</titleproper>
<author>by Beinecke staff</author>
</titlestmt>
<publicationstmt>
<publisher>Beinecke Rare Book and Manuscript Library</publisher>
<address>
<addressline>P. O. Box 208330</addressline>
<addressline>New Haven, CT 06520-8330</addressline>
<addressline localtype="telephone">(203) 432-2977 </addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://beinecke.library.yale.edu/"
linktitle="http://beinecke.library.yale.edu/"
show="new">http://beinecke.library.yale.edu/</ref>
</addressline>
</address>
<date>December 2019</date>
<num>YCAL MSS 704</num>
</publicationstmt>
<notestmt>
<controlnote localtype="offsite">
<p>Boxes: 1-113</p>
</controlnote>
<controlnote localtype="onsite">
<p>Box: 114</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>completed</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T01:38:50-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday January 9, 2025 at 01:38</eventdescription>
</maintenanceevent>
<maintenanceevent>
<eventtype value="revised"/>
<eventdatetime>February 2020</eventdatetime>
<agenttype value="unknown"/>
<agent/>
<eventdescription>Added 2016 and 2018 additions.</eventdescription>
</maintenanceevent>
<maintenanceevent>
<eventtype value="revised"/>
<eventdatetime>February 2024</eventdatetime>
<agenttype value="unknown"/>
<agent/>
<eventdescription>Finding aid updated by Elise Riley to describe May 2023 addition. </eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/11582" level="collection">
<did>
<unittitle>David Lehman papers</unittitle>
<unitid>YCAL MSS 704</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>108.18</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">114 boxes</physdesc>
<unitdatestructured altrender="circa 1961-2010"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1961">1961</fromdate>
<todate standarddate="2021">2021</todate>
</daterange>
</unitdatestructured>
<origination label="Creator">
<persname relator="aut">
<part localtype="agent_person">Lehman, David, 1948-</part>
</persname>
</origination>
</did>
<accessrestrict id="aspace_3e4bb993563171812b5a14910a7a2582">
<head>Conditions Governing Access</head>
<p>This collection is open for research.</p>
<p>Boxes 109, 110 (audiovisual material): Restricted fragile material. Reference copies may be requested. Consult Access Services for further information.</p>
<p>Box 111 (computer media): Restricted fragile material. Access copies of digital files may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<acqinfo id="aspace_15b2011e616638608127b93788e4035e">
<head>Immediate Source of Acquisition</head>
<p>Purchased from James S. Jaffee Rare Books on the Edwin J. Beinecke Book Fund, 2012, and gift of David Lehman, 2012, 2016, and 2018, and 2023.</p>
</acqinfo>
<arrangement id="aspace_ce06a042fae42374067eafedb3a001b3">
<head>Arrangement</head>
<p>Organized in ten series: I: Writings, 1970s-2000s; II: Writings of others, 1970s-2000s; III: Correspondence, 1960s-2000s; IV: Notebooks, 1970s-2000s; V: Best American Poetry records, 1980s-2010s; VI: Work files, 1970s-2000s; VII: Personal papers and artwork, 1965 - 1991; VIII: Printed material, 1970s-2000s; IX: Audiovisual materials, 1975-2000s; X: Computer media, 2000s; XI: August 2016 acquisition, 1978-1999; XII: April 2018 acquisition, 2003, 2006; XIII: May 2023 acquisition, 1973-2021.</p>
</arrangement>
<bioghist id="aspace_c7b9ddbc388a82bec51de158f6306b0e">
<head>David Lehman</head>
<p>David Lehman is an American poet and the editor of the Best American Poetry series. He teaches at The New School in New York City.</p>
</bioghist>
<prefercite id="aspace_3aefe884d7b1ef7c1394b0935d4dc665">
<head>Preferred Citation</head>
<p>David Lehman Papers. Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_34b8ff65522fb8cdd55f73d3f81125a4">
<head>Processing Information</head>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library attempts to provide a basic level of preservation and access for all collections as they are acquired, and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>This collection received a basic level of processing, including rehousing and minimal organization.</p>
<p>Information included in the Description of Papers note and Collection Contents section is drawn from information supplied with the collection and from an initial survey of the contents. Folder titles appearing in the contents list below are often based on those provided by the creator or previous custodian. Titles have not been verified against the contents of the folders in all cases. Otherwise, folder titles are supplied by staff during initial processing.</p>
<p>This finding aid may be updated periodically to account for new acquisitions to the collection and/or revisions in arrangement and description.</p>
</processinfo>
<scopecontent id="aspace_3273555c9429209a98305c3a40d5b237">
<head>Content Description</head>
<p>Contains correspondence, writings, notebooks, journals, calendars, school papers, teaching materials, photographs, artwork, and other papers by, to, or relating to David Lehman.</p>
</scopecontent>
<userestrict id="aspace_c26ee248b4b79e07401fd4853d9ce516">
<head>Conditions Governing Use</head>
<p>The David Lehman Papers is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85004341"
source="lcsh">
<part localtype="topical">American literature</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2008117581"
source="lcsh">
<part localtype="topical">American literature</part>
<part localtype="temporal">21st century</part>
</subject>
<occupation source="local">
<part localtype="occupation">Editors</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<subject source="local">
<part localtype="topical">Editors</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">21st century</part>
</subject>
<subject source="local">
<part localtype="topical">Poets, American</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject source="local">
<part localtype="topical">Poets, American</part>
<part localtype="temporal">21st century</part>
</subject>
<genreform identifier="http://vocab.getty.edu/aat/300028045" source="aat">
<part localtype="genre_form">Audiovisual materials</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300374824" source="aat">
<part localtype="genre_form">Born digital</part>
</genreform>
<persname>
<part localtype="agent_person">Lehman, David, 1948-</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/3590764"
id="aspace_c84c1b08a41e88f7d381c2f5cbb0585b"
level="series">
<did>
<unittitle>May 2023 acquisition</unittitle>
<unitid>Series XIII</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.42</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 box</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1973">1973</fromdate>
<todate standarddate="2021">2021</todate>
</daterange>
</unitdatestructured>
</did>
<acqinfo id="aspace_50287fb30049908ebc6cc150b52dcadb">
<head>Immediate Source of Acquisition</head>
<p>Gift of David Lehman, 2023.</p>
</acqinfo>
<arrangement id="aspace_a630d0e4e4fd81a6a635ac5227058bf5">
<head>Arrangement</head>
<p>Materials in this series maintain order found at time of acquisition.</p>
</arrangement>
<scopecontent id="aspace_8951f2e24f1a3cb1406a94a5bc35dec7">
<head>Scope and Contents</head>
<p>This accession contains correspondence and printed material by, to, or relating to David Lehman.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/3187398"
id="aspace_8d8c8e5b0e383807e770231f34d01ac5"
level="file">
<did>
<unittitle>Ecstatic Occasions, Expedient Forms, drafts; The Presidential Years and other Poems, drafts;</unittitle>
<unitdatestructured altrender="1960s-1983" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="1983">1983</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365372 /locations/9"
containerid="39002091421868"
encodinganalog="archive legal"
id="aspace_8d8c8e5b0e383807e770231f34d01ac5_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187399"
id="aspace_d500c2389a6a4fc450a8b789ddf17697"
level="file">
<did>
<unittitle>Presidential Years and other Poems, draft; Ecstatic Occasions, Expedient Forms - miscellaneous correspondence (post-publication) & reviews; Ecstatic Occasions, Expedient Forms - contributor's notes, archive files, and correspondence.</unittitle>
<unitdatestructured altrender="1960s-1983" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="1983">1983</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365373 /locations/9"
containerid="39002091421934"
encodinganalog="archive legal"
id="aspace_d500c2389a6a4fc450a8b789ddf17697_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187400"
id="aspace_83a46e86efe05a909567daf67e185d4b"
level="file">
<did>
<unittitle>E. Richie to D. Lehman - correspondence and writings 1994; Aaron Fogel to D. Lehman - correspondence and writings 1997; Leigh to D. Lehman, containing Fairfield Porter correspondence to James Schuyler; Estatic Occasions, Expedient Forms - photocopies; Sprial binder - Houghton Library, Harvard, May 1994; Houghton Library photocopies; Ashbery interview by Bill Berkson 1969; Ashbery manuscripts - Houghton Library; John Ashbery to James Schuyler - photocopies 1956-1969; Marc Cohen 4/14/98; Letters to Schuyler - Ashbery, Auden, Freilicher, Alex Katz; Koch; Ashbery - Joe Brainard, San Diego March 1997.</unittitle>
<unitdatestructured altrender="1960s-1997" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="1997">1997</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365374 /locations/9"
containerid="39002091421371"
encodinganalog="Paige 15"
id="aspace_83a46e86efe05a909567daf67e185d4b_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187401"
id="aspace_4389f55c15d826aa56d6d0166146878f"
level="file">
<did>
<unittitle>Notebooks, school writings and other writings</unittitle>
<unitdatestructured altrender="1970s-1980s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1989">1989</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365375 /locations/9"
containerid="39002091421942"
encodinganalog="archive legal"
id="aspace_4389f55c15d826aa56d6d0166146878f_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187402"
id="aspace_c3a8786843c78714589ea639568a5282"
level="file">
<did>
<unittitle>James Merrill: Essays in Criticism - drafts; corrected proofs; correspondence 1977-1994; David Kalstone draft 1981; Elemental Bravery read by John Mathews 1981; Cornell, J.M. Author's questionnaire 2/82, reviews of book; Charles Berger 1981; Willard Spiegelman; Stephen Yenser; Nadel; The Angelic Secretariat; On, and of, James Merrill; Merrill prospectus; James Merrill - preface; Merrill - Elemental Bravery final; Essay on James Merrill, revised; Merrill - Elemental Bravery, original; Merrill - my essay.</unittitle>
<unitdatestructured altrender="1970s-1990s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365376 /locations/9"
containerid="39002091421561"
encodinganalog="Paige 15"
id="aspace_c3a8786843c78714589ea639568a5282_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187403"
id="aspace_ca5958e2313d199c1986f0afa2f6baca"
level="file">
<did>
<unittitle>Ph.D. Dissertation - David Lehman, Columbia 1978; Brooklyn College - student evaluations 1975-1976.</unittitle>
<unitdatestructured altrender="1975-1978" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1975">1975</fromdate>
<todate standarddate="1978">1978</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365377 /locations/9"
containerid="39002091421728"
encodinganalog="archive half legal"
id="aspace_ca5958e2313d199c1986f0afa2f6baca_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187404"
id="aspace_132e38559320b6244394e36164413038"
level="file">
<did>
<unittitle>Proofs "The last Avant-Garde: The Making of the New York School of Poetry", "Signs of the Times", "The Perfect Murder", "An Alternative to Speech","The Marriage of Poetry and Prose"</unittitle>
<unitdatestructured altrender="circa 1978-1997"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1978">1978</fromdate>
<todate standarddate="1997">1997</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365378 /locations/9"
containerid="39002091421389"
encodinganalog="Paige 15"
id="aspace_132e38559320b6244394e36164413038_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187405"
id="aspace_9cf4fd0bac29d5fcf02611539b056ff0"
level="file">
<did>
<unittitle>Left over poems from "The Daily Mirror" and proofs;The Break Up; Renga; "An Alternative to Speech"</unittitle>
<unitdatestructured altrender="1980s-2009" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365379 /locations/9"
containerid="39002091421710"
encodinganalog="archive half legal"
id="aspace_9cf4fd0bac29d5fcf02611539b056ff0_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187406"
id="aspace_464b8a8ac7354b7ec028ac53b677ef35"
level="file">
<did>
<unittitle>Ecstatic Occasions, Expedient Forms - reviews and review lists</unittitle>
<unitdatestructured altrender="1983" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1983">1983</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365380 /locations/9"
containerid="39002091421843"
encodinganalog="archive half legal"
id="aspace_464b8a8ac7354b7ec028ac53b677ef35_c1"
label="Mixed Materials"
localtype="box">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187407"
id="aspace_617d2551028d572af95878f49afbc202"
level="file">
<did>
<unittitle>Master Proofs "An Alternative to Speech", "Operation Memory"</unittitle>
<unitdatestructured altrender="1986" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1986">1986</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1990" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1990">1990</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365381 /locations/9"
containerid="39002093716802"
encodinganalog="flat box (14d 3h 18w)"
id="aspace_617d2551028d572af95878f49afbc202_c1"
label="Mixed Materials"
localtype="box">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187408"
id="aspace_5c1b5db980cd6ede749826129d3401f7"
level="file">
<did>
<unittitle>"The Line Forms Here", working poems, Erotic Poems, Hitchcock and others; corresspondence</unittitle>
<unitdatestructured altrender="1986-1992" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1986">1986</fromdate>
<todate standarddate="1992">1992</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365382 /locations/9"
containerid="39002091421512"
encodinganalog="Paige 15"
id="aspace_5c1b5db980cd6ede749826129d3401f7_c1"
label="Mixed Materials"
localtype="box">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187409"
id="aspace_d1844e4b12a07b4afc54f55ee131bd3b"
level="file">
<did>
<unittitle>Research, notes, proposals and drafts for "Deconstruction in America",</unittitle>
<unitdatestructured altrender="circa 1988" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1988">circa 1988</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365383 /locations/9"
containerid="39002091421454"
encodinganalog="Paige 15"
id="aspace_d1844e4b12a07b4afc54f55ee131bd3b_c1"
label="Mixed Materials"
localtype="box">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187410"
id="aspace_4073f0a6d1359db3420c126568bef234"
level="file">
<did>
<unittitle>"Signs of the Times" drafts and research and related material</unittitle>
<unitdatestructured altrender="circa 1990" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1990">circa 1990</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365384 /locations/9"
containerid="39002091421496"
encodinganalog="Paige 15"
id="aspace_4073f0a6d1359db3420c126568bef234_c1"
label="Mixed Materials"
localtype="box">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187411"
id="aspace_19a379a1525049529c4e4ddec9fa17b9"
level="file">
<did>
<unittitle>Writings, poems and prose; Best American Poetry Material; Writings of others include, Karl Shapiro, Tom Disch</unittitle>
<unitdatestructured altrender="1993-2001" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1993">1993</fromdate>
<todate standarddate="2001">2001</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365385 /locations/9"
containerid="39002091421306"
encodinganalog="Paige 15"
id="aspace_19a379a1525049529c4e4ddec9fa17b9_c1"
label="Mixed Materials"
localtype="box">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187412"
id="aspace_5416b39e501b00e5f4f63e2c55111802"
level="file">
<did>
<unittitle>"Selected Letters of Fairfield Porter" by Ted Leigh corrected drafts, notes and correspondence.</unittitle>
<unitdatestructured altrender="1994-1995" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1994">1994</fromdate>
<todate standarddate="1995">1995</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365386 /locations/9"
containerid="39002091421678"
encodinganalog="Paige 15"
id="aspace_5416b39e501b00e5f4f63e2c55111802_c1"
label="Mixed Materials"
localtype="box">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187413"
id="aspace_a1ad23f8a36e883f1841e919a36087e5"
level="file">
<did>
<unittitle>Writings, writings of others, notes, correspondence</unittitle>
<unitdatestructured altrender="1995-2004" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1995">1995</fromdate>
<todate standarddate="2004">2004</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365387 /locations/9"
containerid="39002091421058"
encodinganalog="Paige 15"
id="aspace_a1ad23f8a36e883f1841e919a36087e5_c1"
label="Mixed Materials"
localtype="box">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187414"
id="aspace_0e969abc73332e87084a8f9709f3e2ee"
level="file">
<did>
<unittitle>Proofs and drafts "The Last Avant-Garde"</unittitle>
<unitdatestructured altrender="1998" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1998">1998</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365388 /locations/9"
containerid="39002091421017"
encodinganalog="Paige 15"
id="aspace_0e969abc73332e87084a8f9709f3e2ee_c1"
label="Mixed Materials"
localtype="box">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187415"
id="aspace_b5299e54b71743ac97c7987c56522645"
level="file">
<did>
<unittitle>Poetry by others for Bennington Review and Seminars</unittitle>
<unitdatestructured altrender="1998-2004" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1998">1998</fromdate>
<todate standarddate="2004">2004</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365389 /locations/9"
containerid="39002091421355"
encodinganalog="Paige 15"
id="aspace_b5299e54b71743ac97c7987c56522645_c1"
label="Mixed Materials"
localtype="box">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187416"
id="aspace_61218027bbb279b51fa57e25c7b930f8"
level="file">
<did>
<unittitle>Material from Jane Hammond; "Great American Prose and Poems", some BAP 2003 and 2004 material</unittitle>
<unitdatestructured altrender="2000s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2000">2000</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365390 /locations/9"
containerid="39002091421686"
encodinganalog="Paige 15"
id="aspace_61218027bbb279b51fa57e25c7b930f8_c1"
label="Mixed Materials"
localtype="box">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187417"
id="aspace_41c6ec09ebf7cb9ee676f547e7f9b709"
level="file">
<did>
<unittitle>Various drafts of "A Fine Romance" and related material</unittitle>
<unitdatestructured altrender="2008-2009" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2008">2008</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365391 /locations/9"
containerid="39002091420985"
encodinganalog="Paige 15"
id="aspace_41c6ec09ebf7cb9ee676f547e7f9b709_c1"
label="Mixed Materials"
localtype="box">20</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3187388"
id="aspace_b56eb23a913aed92469c7b75949ff6ab"
level="series">
<did>
<unittitle>Writings</unittitle>
<unitid>Series I</unitid>
<unitdatestructured altrender="1970s-2000s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_4b517ff1960ad2b1fb8e2aa42e73142c">
<head>Scope and Contents</head>
<p>This series contains writings by David Lehman, and includes typescripts of his published and unpublished works, galleys of his published books, and related materials such as notes, correspondence, and research materials.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/3187418"
id="aspace_c9b8ae03111b1639a55a1c1689cd365e"
level="file">
<did>
<unittitle>Materialism - Poems by Jorie Graham; Alice Fulton; Dear Utopia, circa 1989; Nothing Heavy; Nevins Street: 1991; The Silver Figures, 1983; Dear X; Poems from the West Side: 1981-1987; Aaron Fogel; Leaves that Grow Inward, Susan Mitchell; A Poet's Alphabet of Influences; Last Times, Robert Polito; The Continuous Life, Mark Strand; Dark Harbor, Mark Strand; Edwin Denby; Hard Food for Midas, Paul Stellato; Fearing, 1989; Eagle Pond Farm, 1988; Morning Poems, Robert Bly; From Frank Bidart, 7 May 1994; Desire, Frank Bidart; The Reading of an Ever Changing Tale, John Yau; Michael Burkard, 1977; John Yau, 1976-1977; Strange Bedfellows, Mary Morris; Some Time in the Winter, Michael Burkard; The Mind-Body Problem, Katha Pollitt, 2008; From A Compeddium of Butterflies Nails and Wild Gresses, Catherine Bowman; China and Mongolia (Poems), 2008.</unittitle>
<unitdatestructured altrender="1976-2008" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1976">1976</fromdate>
<todate standarddate="2008">2008</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365392 /locations/9"
containerid="39002091421124"
encodinganalog="Paige 15"
id="aspace_c9b8ae03111b1639a55a1c1689cd365e_c1"
label="Mixed Materials"
localtype="box">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187419"
id="aspace_3b1cc82d0baa1c569b8f6e53b5bc3e6b"
level="file">
<did>
<unittitle>Writings of others; John Yau, West Point Class of 2009, Vincent Katz, Elizabeth Converse. Shannon Holman, H.L. Hix, Charles Simic, Holaday Mason, James Tate, A.R. Ammons, David Galenson, William Craig Rice, Aaron Fogel, Ron Horning, Tony Paradise, Rick Arnold, Frank Bidart, Rebecca Mostov, John Black, Robin Neidorf, Peter Gizzi, Paul Alexander, Roger Gilbert; collected works; "The Dilation of David's Pupils, The Whole Works Too, As the Gray Mist Rises</unittitle>
<unitdatestructured altrender="1977-2009" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365393 /locations/9"
containerid="39002091421447"
encodinganalog="Paige 15"
id="aspace_3b1cc82d0baa1c569b8f6e53b5bc3e6b_c1"
label="Mixed Materials"
localtype="box">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187420"
id="aspace_660d7da6cdf1d6afb4f8192b7d3e30d4"
level="file">
<did>
<unittitle>Chinese "Junes", 6/3/08; Alice Fulton, 2003; Koethe; Poems by Douglas Crase; Night and Day; Glenn Horowitz, 1994-1995; China & Mongolia, 5/08; Elizabeth Foster, 1979.</unittitle>
<unitdatestructured altrender="1979-2008" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1979">1979</fromdate>
<todate standarddate="2008">2008</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365394 /locations/9"
containerid="39002091421819"
encodinganalog="archive half legal"
id="aspace_660d7da6cdf1d6afb4f8192b7d3e30d4_c1"
label="Mixed Materials"
localtype="box">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187421"
id="aspace_f48d6e69d3a311ba9411acde2b3bd2d2"
level="file">
<did>
<unittitle>The Hasty Papers, Alfred Leslie, circa 1994.</unittitle>
<unitdatestructured altrender="circa 1994" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1994">circa 1994</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365395 /locations/9"
containerid="39002093716810"
encodinganalog="flat box (16d 1h 20w)"
id="aspace_f48d6e69d3a311ba9411acde2b3bd2d2_c1"
label="Mixed Materials"
localtype="box">24</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3187389"
id="aspace_18eaf5d4444dd59f20b07247831d9f83"
level="series">
<did>
<unittitle>Writings of others</unittitle>
<unitid>Series II</unitid>
<unitdatestructured altrender="1970s-2000s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_0940e52c220a00f8b4587867488fff1f">
<head>Scope and Contents</head>
<p>This series consists of typescripts, photocopies, and published editions writings by others, submitted to David Lehman for his comment. Some of the writings include inscriptions, or accompanying correspondence by their authors.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/3187422"
id="aspace_cb210f30e403aa3d718f9f221978747a"
level="file">
<did>
<unittitle>Postcards and letters</unittitle>
<unitdatestructured altrender="1960s-1990s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365396 /locations/9"
containerid="39002091421785"
encodinganalog="archive half legal"
id="aspace_cb210f30e403aa3d718f9f221978747a_c1"
label="Mixed Materials"
localtype="box">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187423"
id="aspace_bd24d4b15d511e52663986e3fa0aa92a"
level="file">
<did>
<unittitle>Correspondence, including letters from college; Also includes work files and clippings, including: Boston Globe 1996; NBCC 1997; Recommendations '94-95; DL's introductions, CSMA Fall 1994; Internet print outs, Sept '94; The Sequence - Valentine Place; Washington Post; Newsweek; Ithaca clips: Fall 1994; Essays and Annotations; Wiliam Everson to Richard Howard, 1979; DL's Poems in Spanish and French; Poems about DL, 2003-2004; Poems to DL, 2003-2004; Photographs - Florida December 1999, KGB Bar Book of Poems, 2000.</unittitle>
<unitdatestructured altrender="1960s-2004" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="2004">2004</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365397 /locations/9"
containerid="39002091421538"
encodinganalog="Paige 15"
id="aspace_bd24d4b15d511e52663986e3fa0aa92a_c1"
label="Mixed Materials"
localtype="box">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187424"
id="aspace_c6f24dd211285ebb5418eccbda8e9259"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1968-2005" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1968">1968</fromdate>
<todate standarddate="2005">2005</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365398 /locations/9"
containerid="39002091420977"
encodinganalog="Paige 15"
id="aspace_c6f24dd211285ebb5418eccbda8e9259_c1"
label="Mixed Materials"
localtype="box">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187425"
id="aspace_710e887c76b56143b3391ec3e6063ee1"
level="file">
<did>
<unittitle>Correspondence and writings; "Beyond Amazement" materials include correspondence, drafts, proofs</unittitle>
<unitdatestructured altrender="1969-1978" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1969">1969</fromdate>
<todate standarddate="1978">1978</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365399 /locations/9"
containerid="39002091420969"
encodinganalog="Paige 15"
id="aspace_710e887c76b56143b3391ec3e6063ee1_c1"
label="Mixed Materials"
localtype="box">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187426"
id="aspace_d3aad9610ebc3b116b36bda76de1ae3d"
level="file">
<did>
<unittitle>Correspondence, photographs, address books</unittitle>
<unitdatestructured altrender="1969-2000" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1969">1969</fromdate>
<todate standarddate="2000">2000</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365400 /locations/9"
containerid="39002091420951"
encodinganalog="Paige 15"
id="aspace_d3aad9610ebc3b116b36bda76de1ae3d_c1"
label="Mixed Materials"
localtype="box">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187427"
id="aspace_a2813620f9391caabcdf46c91be5ca10"
level="file">
<did>
<unittitle>Correspondence; poetry magazine, Nin Andrews, Beth, Marjorie Perloff, Horning, Darryl Pinckney, Trevor Winkfield, Anne Lehman, D. Shapiro, Cornell Alumni News, Dana Gioria, Carolyn Kizer, Joe Brainard, Simic, Connell, Alice Fulton, Disch, Harry Mathews, Susan Wheeler, Aaren Fegel, Don Hall, John Ashberrry,and others</unittitle>
<unitdatestructured altrender="1969-2010" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1969">1969</fromdate>
<todate standarddate="2010">2010</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365401 /locations/9"
containerid="39002091420936"
encodinganalog="Paige 15"
id="aspace_a2813620f9391caabcdf46c91be5ca10_c1"
label="Mixed Materials"
localtype="box">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187428"
id="aspace_9998f2e6e42c826fa88d08837cbd79b7"
level="file">
<did>
<unittitle>Correspondence includes Thomas Disch, Kay Ryan, Robert Bly, Elain Equi, Charles Reznikoff, John Updike,Geoff Young, Ed White and others</unittitle>
<unitdatestructured altrender="1979-1996" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1979">1979</fromdate>
<todate standarddate="1996">1996</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365402 /locations/9"
containerid="39002091421777"
encodinganalog="archive half legal"
id="aspace_9998f2e6e42c826fa88d08837cbd79b7_c1"
label="Mixed Materials"
localtype="box">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187429"
id="aspace_c65cf42dc3852236b9589de4d6313594"
level="file">
<did>
<unittitle>Correspondence and business card binders</unittitle>
<unitdatestructured altrender="1980s-1990s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365403 /locations/9"
containerid="39002091421421"
encodinganalog="Paige 15"
id="aspace_c65cf42dc3852236b9589de4d6313594_c1"
label="Mixed Materials"
localtype="box">32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187430"
id="aspace_835789be7e46a2041720e3d3de073341"
level="file">
<did>
<unittitle>Correspondence, assorted clips, NYFTA, Poems, AARP, Fellowships, Bellagio, Collages, New School, Financial, BAP</unittitle>
<unitdatestructured altrender="1992-2010" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1992">1992</fromdate>
<todate standarddate="2010">2010</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365404 /locations/9"
containerid="39002091421520"
encodinganalog="Paige 15"
id="aspace_835789be7e46a2041720e3d3de073341_c1"
label="Mixed Materials"
localtype="box">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187431"
id="aspace_bb3ddbdf01f1c9c3ce65e2ba1f13825d"
level="file">
<did>
<unittitle>Correspondence, drafts, writings of others, printed materials, calendars, contacts list, teaching material</unittitle>
<unitdatestructured altrender="1993-2003" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1993">1993</fromdate>
<todate standarddate="2003">2003</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365405 /locations/9"
containerid="39002091421116"
encodinganalog="Paige 15"
id="aspace_bb3ddbdf01f1c9c3ce65e2ba1f13825d_c1"
label="Mixed Materials"
localtype="box">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187432"
id="aspace_9946a9a431c30ab052bec27e22ebd759"
level="file">
<did>
<unittitle>Correspondence, 2002.</unittitle>
<unitdatestructured altrender="2002" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2002">2002</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365406 /locations/9"
containerid="39002091421835"
encodinganalog="archive half legal"
id="aspace_9946a9a431c30ab052bec27e22ebd759_c1"
label="Mixed Materials"
localtype="box">35</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3187390"
id="aspace_2d2ddeefebd48538d2fcb1807d5bd74d"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series III</unitid>
<unitdatestructured altrender="1960s-2000s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="2010">2010</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_6fe56614de763a5212829ee94f05e492">
<head>Scope and Contents</head>
<p>This series contains David Lehman's correspondence, dating from the 1960s to the 2010s.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/3187433"
id="aspace_396a281816c35082be5e1d52e6758ab2"
level="file">
<did>
<unittitle>Notebooks and calendars</unittitle>
<unitdatestructured altrender="1974-1995" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1974">1974</fromdate>
<todate standarddate="1995">1995</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365407 /locations/9"
containerid="39002091421587"
encodinganalog="Paige 15"
id="aspace_396a281816c35082be5e1d52e6758ab2_c1"
label="Mixed Materials"
localtype="box">36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187434"
id="aspace_45ec2228dd2945f9a4698dd09860c6ec"
level="file">
<did>
<unittitle>Notebooks</unittitle>
<unitdatestructured altrender="1986-2000s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1986">1986</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365408 /locations/9"
containerid="39002091421629"
encodinganalog="Paige 15"
id="aspace_45ec2228dd2945f9a4698dd09860c6ec_c1"
label="Mixed Materials"
localtype="box">37</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187435"
id="aspace_1b077620a6662f70b15e74e7f12912e7"
level="file">
<did>
<unittitle>Notebooks and calendars</unittitle>
<unitdatestructured altrender="1990s-2000s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1990">1990</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/365409 /locations/9"
containerid="39002091421439"
encodinganalog="Paige 15"
id="aspace_1b077620a6662f70b15e74e7f12912e7_c1"
label="Mixed Materials"
localtype="box">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3187436"
id="aspace_22115edd3f6475814cb7ab21daa0b3f4"
level="file">
<did>
<unittitle>Notebooks and calendars, greeting cards</unittitle>
<unitdatestructured altrender="1990s-2000s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1990">1990</fromdate>