-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path11836.xml
4991 lines (4991 loc) · 293 KB
/
11836.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.plante">beinecke.plante</recordid>
<otherrecordid localtype="BIB">16143011</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the David Plante Papers </titleproper>
<titleproper localtype="filing">Plante (David) Papers</titleproper>
<author>by Brooke McManus</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>January 2022</date>
<num>OSB MSS 308</num>
</publicationstmt>
<notestmt>
<controlnote localtype="offsite">
<p>Boxes: 1-13</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-09T00:07:33-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 00:07</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/11836" level="collection">
<did>
<unittitle>David Plante papers</unittitle>
<unitid>OSB MSS 308</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<languageset>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<descriptivenote>
<p>Primarily in English, with some material in Greek, French, and Italian.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>11.34</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">13 boxes</physdesc>
<unitdatestructured altrender="1927-2014" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1927">1927</fromdate>
<todate standarddate="2014">2014</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_eb8d5f1ba0ac9b9d5c7f875426703543">The collection contains correspondence, writings, artwork, and other papers by or relating to the writer David Plante. The bulk of the collection consists of letters to Plante from authors, artists, critics, editors, and film directors, as well as correspondence with Plante's partner, Nikos Stangos, and family members.</abstract>
<origination label="Creator">
<persname relator="aut">
<part localtype="agent_person">Plante, David</part>
</persname>
</origination>
<origination label="Creator">
<persname>
<part localtype="agent_person">Stangos, Nikos</part>
</persname>
</origination>
<origination label="Creator">
<persname>
<part localtype="agent_person">Spender, Stephen, 1909-1995</part>
</persname>
</origination>
</did>
<accessrestrict id="aspace_2fa08142052133005e0beadd017c1129">
<head>Conditions Governing Access</head>
<p>This collection is open for research.</p>
<p>Box 13 (computer disk): Restricted fragile material. Reference copies of electronic files may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<acqinfo id="aspace_2907cad94a067bcc6716e9d317613a97">
<head>Immediate Source of Acquisition</head>
<p>Purchased from David Plante on the James Marshall and Marie-Louise Osborn Collection Fund, 2019.</p>
</acqinfo>
<arrangement id="aspace_203e095399a2028b6572681357c3ec00">
<head>Arrangement</head>
<p>Organized into four series: I. Correspondence, 1957-2014. II. Personal Papers, 1961-2014. III. Nikos Stangos Correspondence, 1956-2007. IV. Stephen Spender Papers, 1927-2004.</p>
</arrangement>
<bioghist id="aspace_02fe6ef38c0438bbfe2d3281f38f63f0">
<head>David Plante (1940-)</head>
<p>David Robert Plante is a novelist, diarist, memoirist, and educator. He is a retired professor of creative writing at Columbia University, where he taught from 1998 to 2010. Plante is the author of <title>
<part>Difficult Women</part>
</title> (1983), a memoir of his relationships with Jean Rhys, Sonia Orwell, and Germaine Greer; and the Francoeur Trilogy, consisting of <title>
<part>The Family</part>
</title> (1978), which was nominated for a National Book Award, <title>
<part>The Country</part>
</title> (1980), and <title>
<part>The Woods</part>
</title> (1982). Plante's work has appeared in <title>
<part>The New Yorker</part>
</title>, <title>
<part>The Paris Review</part>
</title>, <title>
<part>New York Times</part>
</title>, <title>
<part>Esquire</part>
</title>, and <title>
<part>Vogue</part>
</title>. Born in Providence, Rhode Island, Plante moved to London in 1966 and holds dual American-British citizenship. He now lives in Lucca, Italy, and Athens, Greece. Plante was in a relationship with Greek editor and poet Nikos Stangos for over forty years until Stangos's death in 2004. Stangos was the subject of Plante's memoir <title>
<part>The Pure Lover</part>
</title> (2009).</p>
</bioghist>
<prefercite id="aspace_61311d81b40c92ba240a3bd13b393529">
<head>Preferred Citation</head>
<p>David Plante Papers. James Marshall and Marie-Louise Osborn Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<processinfo id="aspace_5c6f835ad9e39f22367c87ec8f6f6a46">
<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_721a8efdfbf85d79232c3c302564c1a8">
<head>Scope and Contents</head>
<p>The collection contains correspondence, writings, artwork, and other papers by or relating to the writer David Plante. The bulk of the collection consists of letters to Plante from authors, artists, critics, editors, and film directors, as well as correspondence with Plante's partner, Nikos Stangos, and family members.</p>
<p>Correspondents include W. H. Auden, John Ashbery, John Berger, Raymond Carver, Alfred Corn, Margaret Drabble, Kenward Elmslie, Nuruddin Farah, Suzi Gablik, Derek Jarman, Jill Johnston, R. B. Kitaj, Ann Lauterbach, John Lehmann, Harold Norse, A. Poulin, Hilary Spurling, Jerl Surratt, Diana Trilling, and Jonathan Williams. Among the other correspondents are the three subjects of Plante's <title>
<part>Difficult Women</part>
</title>, Jean Rhys, Sonia Orwell, and Germaine Greer. The collection additionally contains letters and artwork by David Hockney; letters and writings of Mary Gordon and Steven Runciman; and photographs by Fay Godwin. Also present are professional and personal correspondence of art editor Nikos Stangos, and papers of English author Stephen Spender, which include letters to Plante and Stangos, writings, photographs, materials related to his copyright infringement lawsuit against David Leavitt, several original poems by Auden, and ephemera.</p>
</scopecontent>
<userestrict id="aspace_7b247018e96794aba963eeef71b79bfd">
<head>Conditions Governing Use</head>
<p>The David Plante 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>
<occupation source="local_beinecke">
<part localtype="occupation">Authors</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Authors</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">21st century</part>
</occupation>
<occupation source="local_beinecke">
<part localtype="occupation">College teachers</part>
<part localtype="geographic">New York</part>
<part localtype="temporal">21st century</part>
</occupation>
<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>
<subject source="local">
<part localtype="topical">Authors, American</part>
<part localtype="temporal">20th Century</part>
<part localtype="topical">Archives</part>
</subject>
<subject source="local">
<part localtype="topical">Authors, American</part>
<part localtype="temporal">21st century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85009858"
source="lcsh">
<part localtype="topical">Authors, English</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject source="local">
<part localtype="topical">Authors, Expatriate</part>
</subject>
<subject source="local">
<part localtype="topical">Editors</part>
<part localtype="geographic">Great Britain</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2003005955"
source="lcsh">
<part localtype="topical">Gay authors</part>
</subject>
<subject source="local">
<part localtype="topical">LGBTQ resource</part>
</subject>
<genreform identifier="http://vocab.getty.edu/aat/300374824" source="aat">
<part localtype="genre_form">Born digital</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300033973" source="aat">
<part localtype="genre_form">Drawings (visual works)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300265621" source="aat">
<part localtype="genre_form">Inkjet prints</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300046300" source="aat">
<part localtype="genre_form">Photographs</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300026816" source="aat">
<part localtype="genre_form">Postcards</part>
</genreform>
<persname>
<part localtype="agent_person">Ashbery, John, 1927-2017</part>
</persname>
<persname>
<part localtype="agent_person">Auden, W. H. (Wystan Hugh), 1907-1973</part>
</persname>
<persname>
<part localtype="agent_person">Berger, John, 1926-2017</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Corn, Alfred, 1943-</part>
</persname>
<persname>
<part localtype="agent_person">Drabble, Margaret, 1939-</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Elmslie, Kenward, 1929-</part>
</persname>
<persname>
<part localtype="agent_person">Farah, Nuruddin, 1945- </part>
</persname>
<persname>
<part localtype="agent_person">Gablik, Suzi</part>
</persname>
<persname>
<part localtype="agent_person">Godwin, Fay</part>
</persname>
<persname>
<part localtype="agent_person">Gordon, Mary, 1949-</part>
</persname>
<persname>
<part localtype="agent_person">Greer, Germaine, 1939-</part>
</persname>
<persname>
<part localtype="agent_person">Hockney, David</part>
</persname>
<persname>
<part localtype="agent_person">Jarman, Derek, 1942-1994</part>
</persname>
<persname>
<part localtype="agent_person">Johnston, Jill</part>
</persname>
<persname>
<part localtype="agent_person">Kitaj, R. B.</part>
</persname>
<persname>
<part localtype="agent_person">Lauterbach, Ann, 1942-</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Leavitt, David, 1961-</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Lehmann, John, 1907-1987</part>
</persname>
<persname>
<part localtype="agent_person">Norse, Harold</part>
</persname>
<persname>
<part localtype="agent_person">Orwell, Sonia</part>
</persname>
<persname>
<part localtype="agent_person">Poulin, A., Jr., 1938-1996</part>
</persname>
<persname>
<part localtype="agent_person">Rhys, Jean</part>
</persname>
<persname>
<part localtype="agent_person">Runciman, Steven, 1903-2000</part>
</persname>
<persname>
<part localtype="agent_person">Spender, Stephen, 1909-1995</part>
</persname>
<persname>
<part localtype="agent_person">Spurling, Hilary</part>
</persname>
<persname>
<part localtype="agent_person">Stangos, Nikos</part>
</persname>
<persname rules="rda" source="local_beinecke">
<part localtype="agent_person">Surratt, Jerl</part>
</persname>
<persname>
<part localtype="agent_person">Trilling, Diana, 1905-1996</part>
</persname>
<persname>
<part localtype="agent_person">Williams, Jonathan, 1929-2008</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/3396176"
id="aspace_e74fd5f9901c3c5045ef90db8d8074c0"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>6.92</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">7 boxes</physdesc>
<unitdatestructured altrender="1957–2014" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1957">1957</fromdate>
<todate standarddate="2014">2014</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_b6d35c0e53c6adfbfeab9cfb6f087b01">
<head>Scope and Contents</head>
<p>This series consists of letters and postcards to David Plante from friends, family, and colleagues, as well as professional correspondence with agents, editors, publishers. A number of letters are addressed to both Plante and Nikos Stangos, or to Stangos alone. Also included are writings, photographs, artwork, and financial and legal records.</p>
</scopecontent>
<arrangement id="aspace_8322aed8557159597db1c25b4481c0bd">
<head>Arrangement</head>
<p>Organized into three subseries: General Correspondence, Publishing Correspondence, and Family Correspondence.</p>
</arrangement>
<relatedmaterial id="aspace_7145f9cf8717212cf0d85ac133fb9c88">
<head>Related Materials</head>
<p>Associated materials: Correspondence can also be found in Series II. Personal Papers.</p>
</relatedmaterial>
<c altrender="/repositories/11/archival_objects/3396180"
id="aspace_a473bb3c370b7974c7ceca81a8449332"
level="subseries">
<did>
<unittitle>General Correspondence</unittitle>
</did>
<scopecontent id="aspace_8aa36e50b2270c8dcf1cef157c0a5643">
<head>Scope and Contents</head>
<p>This subseries consists primarily of personal correspondence to Plante from literary and publishing figures, artists, dramatists, educators, and other acquaintances and friends, as well as letters from students and fan mail. Correspondents include a number of prominent American poets, writers, editors, and publishers, such as Edward Albee, W. H. Auden, John Ashbery, Raymond Carver, Alfred Corn, Kenward Elmslie, Allen Ginsberg, Mary Gordon, Ann Lauterbach, J. D. McClatchy, Harold Norse, A. Poulin, Philip Roth, Jerl Surratt, Diana Trilling, and Jonathan Williams. Among the other correspondents are Nigerian diplomat Audrey Ajose; British poets and authors John Berger, Margaret Drabble, John Lehmann, Jean Rhys, and Hilary Spurling; Somali novelist Nuruddin Farah; feminist authors and critics Germaine Greer and Jill Johnston; artists Suzi Gablik, David Hockney, and R. B. Kitaj; British film director and gay rights activist Derek Jarman; British art historian and curator Richard Morphet; and British historian Steven Runciman. Occasionally, files contain draft letters or printed emails from Plante, in addition to writings, artwork, photographs, and clippings from correspondents. Certain correspondents can be located in both individual postcard files and letter general files. The subseries additionally contains letters of condolence following Stangos's death and a small amount of letters from Russian writers Plante met in Moscow.</p>
</scopecontent>
<arrangement id="aspace_0596ee24f7809e8dbcc491d99c382862">
<head>Arrangement</head>
<p>Arranged alphabetically by correspondent, with unidentified correspondence and unsorted postcards filed at the end of the sequence.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/3396203"
id="aspace_5ab1677040a9c6204db312fd60560d79"
level="file">
<did>
<unittitle>"A" General</unittitle>
<unitdatestructured altrender="1963–2014" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1963">1963</fromdate>
<todate standarddate="2014">2014</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_5ab1677040a9c6204db312fd60560d79_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_5ab1677040a9c6204db312fd60560d79_c2"
localtype="folder"
parent="aspace_5ab1677040a9c6204db312fd60560d79_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396204"
id="aspace_cbfa17494aee291d60b0bb8ae0d78373"
level="file">
<did>
<unittitle>Ajose, Audrey</unittitle>
<unitdatestructured altrender="1959–1990" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1959">1959</fromdate>
<todate standarddate="1990">1990</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_cbfa17494aee291d60b0bb8ae0d78373_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_cbfa17494aee291d60b0bb8ae0d78373_c2"
localtype="folder"
parent="aspace_cbfa17494aee291d60b0bb8ae0d78373_c1">2</container>
</did>
<scopecontent id="aspace_a907874ecda6256a4728fa658451e4f9">
<head>Scope and Contents</head>
<p>Topics include Nigerian independence and Nelson Mandela; included is a holiday card with a photograph of Ajose meeting Mandela in Sweden, where she was stationed as a Nigerian diplomat.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3396205"
id="aspace_c665970647c39b1d8475a25a9b5dd1ae"
level="file">
<did>
<unittitle>Angier, Carole, postcards</unittitle>
<unitdatestructured altrender="1984–1989" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1984">1984</fromdate>
<todate standarddate="1989">1989</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_c665970647c39b1d8475a25a9b5dd1ae_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_c665970647c39b1d8475a25a9b5dd1ae_c2"
localtype="folder"
parent="aspace_c665970647c39b1d8475a25a9b5dd1ae_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396206"
id="aspace_1b94f6a96bc334e6e89bc2fc8894f0a0"
level="file">
<did>
<unittitle>Arlotto, Anthony</unittitle>
<unitdatestructured altrender="1959–1967" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1959">1959</fromdate>
<todate standarddate="1967">1967</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_1b94f6a96bc334e6e89bc2fc8894f0a0_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_1b94f6a96bc334e6e89bc2fc8894f0a0_c2"
localtype="folder"
parent="aspace_1b94f6a96bc334e6e89bc2fc8894f0a0_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396207"
id="aspace_52e72a1e4fb92463235947a9dda9cc32"
level="file">
<did>
<unittitle>Auden, W. H. (Wystan Hugh)</unittitle>
<unitdatestructured altrender="1970–1972" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1972">1972</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_52e72a1e4fb92463235947a9dda9cc32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_52e72a1e4fb92463235947a9dda9cc32_c2"
localtype="folder"
parent="aspace_52e72a1e4fb92463235947a9dda9cc32_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396208"
id="aspace_9266a38101240bf3475428cac14c732d"
level="file">
<did>
<unittitle>Aylward, Susan</unittitle>
<unitdatestructured altrender="1997–2013" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1997">1997</fromdate>
<todate standarddate="2013">2013</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_9266a38101240bf3475428cac14c732d_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_9266a38101240bf3475428cac14c732d_c2"
localtype="folder"
parent="aspace_9266a38101240bf3475428cac14c732d_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396209"
id="aspace_5334b58ac72d3904256c48c070eccd57"
level="file">
<did>
<unittitle>"B" General</unittitle>
<unitdatestructured altrender="1963–2004" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1963">1963</fromdate>
<todate standarddate="2004">2004</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_5334b58ac72d3904256c48c070eccd57_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_5334b58ac72d3904256c48c070eccd57_c2"
localtype="folder"
parent="aspace_5334b58ac72d3904256c48c070eccd57_c1">7-9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396210"
id="aspace_2394db19a6ecbdb31b43b341ce5c752c"
level="file">
<did>
<unittitle>Bartlett, Jennifer</unittitle>
<unitdatestructured altrender="1972–1988" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1972">1972</fromdate>
<todate standarddate="1988">1988</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_2394db19a6ecbdb31b43b341ce5c752c_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_2394db19a6ecbdb31b43b341ce5c752c_c2"
localtype="folder"
parent="aspace_2394db19a6ecbdb31b43b341ce5c752c_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396211"
id="aspace_292f49d56be61341fb604ee87fac6ecb"
level="file">
<did>
<unittitle>Belben, Rosalind, letters</unittitle>
<unitdatestructured altrender="1972–2004" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1972">1972</fromdate>
<todate standarddate="2004">2004</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_292f49d56be61341fb604ee87fac6ecb_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_292f49d56be61341fb604ee87fac6ecb_c2"
localtype="folder"
parent="aspace_292f49d56be61341fb604ee87fac6ecb_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396212"
id="aspace_95a004c8d8e795d33144a8950ac7bd64"
level="file">
<did>
<unittitle>Belben, Rosalind, postcards</unittitle>
<unitdatestructured altrender="1980–2004" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="2004">2004</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_95a004c8d8e795d33144a8950ac7bd64_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_95a004c8d8e795d33144a8950ac7bd64_c2"
localtype="folder"
parent="aspace_95a004c8d8e795d33144a8950ac7bd64_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396213"
id="aspace_a18528548781d066f90405d90d48632c"
level="file">
<did>
<unittitle>Bromberg, Ruth and Joseph, postcards</unittitle>
<unitdatestructured altrender="1982–2010" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1982">1982</fromdate>
<todate standarddate="2010">2010</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_a18528548781d066f90405d90d48632c_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_a18528548781d066f90405d90d48632c_c2"
localtype="folder"
parent="aspace_a18528548781d066f90405d90d48632c_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396214"
id="aspace_011fcf30fddb3708b90a4cfce6382ad2"
level="file">
<did>
<unittitle>Buckley, Stephen, postcards</unittitle>
<unitdatestructured altrender="1971–2000" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1971">1971</fromdate>
<todate standarddate="2000">2000</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_011fcf30fddb3708b90a4cfce6382ad2_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_011fcf30fddb3708b90a4cfce6382ad2_c2"
localtype="folder"
parent="aspace_011fcf30fddb3708b90a4cfce6382ad2_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396215"
id="aspace_02d8f99db84e48918932dc99d18feba3"
level="file">
<did>
<unittitle>"C" General</unittitle>
<unitdatestructured altrender="1959–2004" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1959">1959</fromdate>
<todate standarddate="2004">2004</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_02d8f99db84e48918932dc99d18feba3_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_02d8f99db84e48918932dc99d18feba3_c2"
localtype="folder"
parent="aspace_02d8f99db84e48918932dc99d18feba3_c1">15-16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396216"
id="aspace_820b644e38efaf983b2de02310c214c6"
level="file">
<did>
<unittitle>Carver, Catharine, letters</unittitle>
<unitdatestructured altrender="1967–1990" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1967">1967</fromdate>
<todate standarddate="1990">1990</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_820b644e38efaf983b2de02310c214c6_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_820b644e38efaf983b2de02310c214c6_c2"
localtype="folder"
parent="aspace_820b644e38efaf983b2de02310c214c6_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396217"
id="aspace_2b5b0661aae470095cb20e5f0cc39345"
level="file">
<did>
<unittitle>Carver, Catharine, postcards</unittitle>
<unitdatestructured altrender="1970–1990" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1990">1990</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_2b5b0661aae470095cb20e5f0cc39345_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_2b5b0661aae470095cb20e5f0cc39345_c2"
localtype="folder"
parent="aspace_2b5b0661aae470095cb20e5f0cc39345_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396218"
id="aspace_e99c07533c5884ae3e4aa0d9eebeb2be"
level="file">
<did>
<unittitle>Chadwick, Whitney and Bob Bechtle, postcards</unittitle>
<unitdatestructured altrender="1994–2004" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1994">1994</fromdate>
<todate standarddate="2004">2004</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_e99c07533c5884ae3e4aa0d9eebeb2be_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_e99c07533c5884ae3e4aa0d9eebeb2be_c2"
localtype="folder"
parent="aspace_e99c07533c5884ae3e4aa0d9eebeb2be_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396219"
id="aspace_39602df45844b49d03a64e8f06b38fac"
level="file">
<did>
<unittitle>Coles, Stephen, postcards</unittitle>
<unitdatestructured altrender="1985–2012" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1985">1985</fromdate>
<todate standarddate="2012">2012</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_39602df45844b49d03a64e8f06b38fac_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_39602df45844b49d03a64e8f06b38fac_c2"
localtype="folder"
parent="aspace_39602df45844b49d03a64e8f06b38fac_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396220"
id="aspace_012e62e89cffc201fd1387068a68bfa3"
level="file">
<did>
<unittitle>Condolences</unittitle>
<unitdatestructured altrender="2003–2005" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2003">2003</fromdate>
<todate standarddate="2005">2005</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_012e62e89cffc201fd1387068a68bfa3_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_012e62e89cffc201fd1387068a68bfa3_c2"
localtype="folder"
parent="aspace_012e62e89cffc201fd1387068a68bfa3_c1">21-22</container>
</did>
<scopecontent id="aspace_2bb940d98f84048116ec325b1b72464a">
<head>Scope and Contents</head>
<p>The file also contains birthday and "get well" cards to Nikos Stangos during his illness, including two handmade booklets: "Old Possum's Book of How to Get Well for Nikos," with multiple signatures of friends; and a "Get Well!" photo album of cats from an unknown friend in Greece.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3396221"
id="aspace_9d6ae8ff4ef935eb3c22c71a2ee6920b"
level="file">
<did>
<unittitle>Corn, Alfred</unittitle>
<unitdatestructured altrender="1987–2001" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1987">1987</fromdate>
<todate standarddate="2001">2001</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_9d6ae8ff4ef935eb3c22c71a2ee6920b_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_9d6ae8ff4ef935eb3c22c71a2ee6920b_c2"
localtype="folder"
parent="aspace_9d6ae8ff4ef935eb3c22c71a2ee6920b_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396222"
id="aspace_e62617f356a62437cb5e0d0bdc1eff07"
level="file">
<did>
<unittitle>"D" General</unittitle>
<unitdatestructured altrender="1958–2004" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1958">1958</fromdate>
<todate standarddate="2004">2004</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_e62617f356a62437cb5e0d0bdc1eff07_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_e62617f356a62437cb5e0d0bdc1eff07_c2"
localtype="folder"
parent="aspace_e62617f356a62437cb5e0d0bdc1eff07_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396223"
id="aspace_02340b97d6ab8e22b7451465d9dc545a"
level="file">
<did>
<unittitle>DeLuca, Donna</unittitle>
<unitdatestructured altrender="1962–1967" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1962">1962</fromdate>
<todate standarddate="1967">1967</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_02340b97d6ab8e22b7451465d9dc545a_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_02340b97d6ab8e22b7451465d9dc545a_c2"
localtype="folder"
parent="aspace_02340b97d6ab8e22b7451465d9dc545a_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396224"
id="aspace_a2a6585026fbf9a8f7d12af7a6d30356"
level="file">
<did>
<unittitle>"E-F" General</unittitle>
<unitdatestructured altrender="1965–2005" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1965">1965</fromdate>
<todate standarddate="2005">2005</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_a2a6585026fbf9a8f7d12af7a6d30356_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_a2a6585026fbf9a8f7d12af7a6d30356_c2"
localtype="folder"
parent="aspace_a2a6585026fbf9a8f7d12af7a6d30356_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396225"
id="aspace_252d1ab04f7d03d2f5b732702d51b346"
level="file">
<did>
<unittitle>Flanagan, Mary, postcards</unittitle>
<unitdatestructured altrender="1996–2005" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1996">1996</fromdate>
<todate standarddate="2005">2005</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382059 /locations/9"
containerid="39002140989709"
encodinganalog="Paige 15"
id="aspace_252d1ab04f7d03d2f5b732702d51b346_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_252d1ab04f7d03d2f5b732702d51b346_c2"
localtype="folder"
parent="aspace_252d1ab04f7d03d2f5b732702d51b346_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396226"
id="aspace_42059606c9dea6c001ea1553ade945ff"
level="file">
<did>
<unittitle>Fleming, John, letters</unittitle>
<unitdatestructured altrender="1969–1994" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1969">1969</fromdate>
<todate standarddate="1994">1994</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382060 /locations/9"
containerid="39002140989717"
encodinganalog="Paige 15"
id="aspace_42059606c9dea6c001ea1553ade945ff_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_42059606c9dea6c001ea1553ade945ff_c2"
localtype="folder"
parent="aspace_42059606c9dea6c001ea1553ade945ff_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396227"
id="aspace_31f2c57dfc351eb952877cb298ccb1d5"
level="file">
<did>
<unittitle>Fleming, John and Hugh Honour, postcards</unittitle>
<unitdatestructured altrender="1976–1998" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1976">1976</fromdate>
<todate standarddate="1998">1998</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382060 /locations/9"
containerid="39002140989717"
encodinganalog="Paige 15"
id="aspace_31f2c57dfc351eb952877cb298ccb1d5_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_31f2c57dfc351eb952877cb298ccb1d5_c2"
localtype="folder"
parent="aspace_31f2c57dfc351eb952877cb298ccb1d5_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396228"
id="aspace_a64c269a2a912c5e69c7c9627ffb270f"
level="file">
<did>
<unittitle>"G" General</unittitle>
<unitdatestructured altrender="1960–2004" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="2004">2004</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382060 /locations/9"
containerid="39002140989717"
encodinganalog="Paige 15"
id="aspace_a64c269a2a912c5e69c7c9627ffb270f_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_a64c269a2a912c5e69c7c9627ffb270f_c2"
localtype="folder"
parent="aspace_a64c269a2a912c5e69c7c9627ffb270f_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396229"
id="aspace_bea6268a340bb8f0e52cfd72e59b4ab4"
level="file">
<did>
<unittitle>Gablik, Suzi, letters</unittitle>
<unitdatestructured altrender="1977–2004" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
<todate standarddate="2004">2004</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382060 /locations/9"
containerid="39002140989717"
encodinganalog="Paige 15"
id="aspace_bea6268a340bb8f0e52cfd72e59b4ab4_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_bea6268a340bb8f0e52cfd72e59b4ab4_c2"
localtype="folder"
parent="aspace_bea6268a340bb8f0e52cfd72e59b4ab4_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3396230"
id="aspace_406220398aa3a03c955d7cf8c397e6ea"
level="file">
<did>
<unittitle>Gablik, Suzi, postcards</unittitle>
<unitdatestructured altrender="1972–1989" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1972">1972</fromdate>
<todate standarddate="1989">1989</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382060 /locations/9"
containerid="39002140989717"