-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1540.xml
2354 lines (2354 loc) · 129 KB
/
1540.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.tcwilson">beinecke.tcwilson</recordid>
<otherrecordid localtype="BIB">3439582</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the T.C. Wilson Papers
</titleproper>
<titleproper localtype="filing">Wilson (T.C.) Papers</titleproper>
<author>by William K. Finley</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 1989</date>
<num>YCAL MSS 36</num>
</publicationstmt>
<notestmt>
<controlnote>
<p>This finding aid, which is compliant with the Yale EAD Best Practice Guidelines, Version 1.0., has a MARC record in Yale's ILS with the following bib number: <num localtype="Orbis-bib">3439582</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-6</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="4">4</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="34">34</num> digital files.</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>beinecke manuscript unit archival processing manual</abbr>
<citation>translation missing: en.enumerations.resource_finding_aid_description_rules.beinecke manuscript unit archival processing manual</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>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T01:11:47-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:11</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1540" level="collection">
<did>
<unittitle>T. C. Wilson Papers</unittitle>
<unitid>YCAL MSS 36</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>2.25</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">6 boxes</physdesc>
<unitdatestructured altrender="(1928-1947)" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1928">1928</fromdate>
<todate standarddate="1947">1947</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_ef5010cbd048978eed0376808e8e2f4d">The T. C. Wilson Papers consist of correspondence, writings, and personal papers relating to the life and career of American poet-critic Theodore Carl Wilson.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Wilson, T. C. (Theodore Carl), 1912-1950</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_e25e5503a86c60f35b7e2b777abe2b9d">
<head>Immediate Source of Acquisition</head>
<p>The T. C. Wilson Papers were presented to Yale University in 1951 by Horace Gregory, Wilson's literary executor.</p>
</acqinfo>
<userestrict id="aspace_95736a4549ba3d0b1ed13139425cd08e">
<head>Conditions Governing Use</head>
<p>The T. C. Wilson Papers are 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>
<prefercite id="aspace_8ce0bce72bf8d141ac6429786f85c75e">
<head>Preferred Citation</head>
<p>T. C. Wilson Papers. Yale Collection of American Literature. Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_8f61761a21c6b2785707bfec3d1b2a20">
<head>Conditions Governing Access</head>
<p>Restricted Fragile Papers in box 6 may only be consulted with permission of the appropriate curator. Preservation photocopies for reference use have been substituted in the main files.</p>
</accessrestrict>
<bioghist id="aspace_5218a5de696b54205100252245c63f7d">
<head>THEODORE CARL WILSON</head>
<p>Theodore Carl Wilson, the son of Mr. and Mrs. Walter E. Wilson, was reared in Columbus, Ohio, where he attended public schools. A voracious reader at an early age, Wilson wrote book reviews for a local newspaper while still in high school and had several juvenile poems published by the time he was sixteen.</p>
<p>Wilson graduated from Ohio State University in 1932 with a major in English. He subsequently enrolled in a Master's program in English at the University of Michigan (1933-1935) and presumably completed this degree. While at Michigan, he won the Hopwood Award for literary merit.</p>
<p>Serving with Ezra Pound, James Laughlin, and several others as editor of the <title localtype="simple" render="italic">
<part>Bozart-Westminster</part>
</title> poetry anthology of Oglethorpe College for 1935, Wilson began an exchange of letters with Pound, who greatly influenced his early conception of poetical style and the social obligations of the creative author.</p>
<p>During the 1930s Wilson published poems, reviews, and articles in leading journals such as <title localtype="simple" render="italic">
<part>The Nation</part>
</title>, <title localtype="simple" render="italic">
<part>Hound and Horn</part>
</title>, <title localtype="simple" render="italic">
<part>Poetry</part>
</title>, and <title localtype="simple" render="italic">
<part>The Saturday Review of Literature</part>
</title>. His poetry of this period often reflects his interest and involvement in socialism. In 1937 he served as American representative for the British publication <title localtype="simple" render="italic">
<part>Life and Letters Today</part>
</title>.</p>
<p>Wilson counted among his friends and advisors such well-known authors as Elizabeth Bishop, Horace Gregory, Marianne Moore, and William Carlos Williams. His poetry and prose won the praise of Pound, T. S. Eliot, Morton Zabel, and other prominent literary figures.</p>
<p>After serving in the U. S. Army in World War II, Wilson found it difficult to pick up his literary career, although he worked on both poetry and a projected book of literary criticism. He died while living at the Marlton Hotel in New York City in 1950 at the age of thirty-eight.</p>
</bioghist>
<scopecontent id="aspace_ac6ceec40ffaba4a3020f8f50f15e3f0">
<head>Scope and Contents</head>
<p>The T. C. Wilson Papers consist mainly of professional and personal correspondence between poet-critic Theodore Carl Wilson (1912-1950) and many prominent writers, critics, and editors in the 1930s and copies of Wilson's poems, essays, and miscellaneous notes. The correspondence dates between 1928 and 1950, with the majority of letters dated between 1934 and 1940. Wilson's own writings are largely undated, but the bulk appear to have been written in the 1930s.</p>
<p>The collection is composed of three series: I. <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>, II. <title localtype="simple" render="italic">
<part>Writings</part>
</title>, and III. <title localtype="simple" render="italic">
<part>Papers</part>
</title>.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref10">Series I, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>
</ref> (Boxes 1-2), is alphabetically arranged and contains letters from such prominent authors, critics, and editors as Elizabeth Bishop, Henry Seidel Canby, Richard Eberhart, T. S. Eliot, Horace Gregory, Arthur Machen, Harriet Monroe, Marianne Moore, Kenneth Patchen, Ezra Pound, Muriel Rukeyser, Wallace Stevens, Allen Tate, William Carlos Williams, Edmund Wilson, Yvor Winters, and Morton Zabel. Many of these letters offer illuminating comments on works of literature, authors, publishing, and artistic concerns and problems during the Depression years.</p>
<p>Elizabeth Bishop's letters discuss her travels in the United States and abroad, her readings, and her tastes in music, with occasional brief comments on her writing and that of others. Richard Eberhart comments on several of his own early poems and on the stances of various literary journals in the 1930s. His evaluations of poems appearing in a special poetry issue of <title localtype="simple" render="italic">
<part>Bozart-Westminster</part>
</title> (1935) reveal his criteria for good poetry. Poet-professor Horace Gregory comments on leftist writing, trends in poetical styles, and prominent critics (especially Malcolm Cowley). Marianne Moore gives advice to a young poet on writing and on life, comments on poetic style and her own readings, and offers brief evaluations of such writers as Stevens, Cummings, Pound, and Bishop.</p>
<p>Letters and notes from Ezra Pound to Wilson reveal Pound's views on style and trends in poetry, politics and economic issues (Roosevelt's New Deal, communism, the political situation in Russia and Italy, etc.), responsibilities of the creative writer in the 1930s, and the relationship of poetry and music. Pound offers his own unreserved evaluations of many literary publications, authors, and editors, among them Eliot, Amy Lowell, William Carlos Williams, and Louis Untermeyer. Many letters reveal Pound's disgust with American writing and politics in the 1930s. A letter of December 4, 1933 gives Pound's definition of "modernist verse."</p>
<p>The letters of Edmund Wilson, Morton Zabel, Marya Zaturenska, and Canadian poet W. W. E. Ross comment on Pound, while Wallace Stevens briefly evaluates the poetry of Marianne Moore, and in a short 1933 letter Yvor Winters compares the merits of Pound, Williams, Stevens, Moore, and Robert Bridges.</p>
<p>Among other topics, William Carlos Williams comments on <title localtype="simple" render="italic">
<part>Blast</part>
</title>, the question of emotion in poetry, the lack of quality writing in the United States in the 1930s, and his difficulties in getting his work published. His letter of July 12, 1933 offers an evaluation of Eliot as editor and writer and discusses the necessity of capturing the "New World" American experience in literature. Several letters consider appropriate subject matter for poetry, especially a letter of December 23, 1933, where he mentions his interest in "objects" as poetical subjects.</p>
<p>From various editors of <title localtype="simple" render="italic">
<part>Poetry</part>
</title>, <title localtype="simple" render="italic">
<part>The American Scholar</part>
</title>, and <title localtype="simple" render="italic">
<part>The Saturday Review</part>
</title> come revealing letters on current literary trends as seen from an editor's viewpoint. In addition, numerous minor poets and prose writers comment on their art, the problems of getting published, and the general literary scene in the 1930s. Taken as a whole, the letters reveal much about artistic life during the Depression years.</p>
<p>Included with the correspondence are holograph or typescript poems from many prominent poets: Elizabeth Bishop (3), E. E. Cummings (2), Richard Eberhart (1), Robert Fitzgerald (1), Robert Frost (1), Marianne Moore (4), Kenneth Patchen (7), Muriel Rukeyser (3), and William Carlos Williams (6).</p>
<p>
<ref actuate="onrequest" show="replace" target="ref112">Series II, <title localtype="simple" render="italic">
<part>Writings</part>
</title>
</ref> (Boxes 3-4), is composed of six alphabetically arranged subseries: Essays, Notebooks, Notes, Poems, Poetry Notebooks, and Projected Book of Literary Criticism. The subseries Essays contains Wilson's complete or fragmentary writings on such authors as Eliot, Melville, Marianne Moore, Pound, Rimbaud, and William Carlos Williams. The subseries Poems, arranged alphabetically by title or first line, contains some eighty apparently complete poems and numerous fragments. The poems are either in holograph or typescript, many with several drafts and most containing some authorial corrections. There are also five notebooks of poems and fragments dated between 1934 and 1939. The subseries Notes contains interpretations (taken mainly from other sources) of such writers as Cocteau, Eliot, James, Melville, Pound, Rilke, Rimbaud, and Valery. The notebooks contain Wilson's observations on the works of such writers as Conrad, Rilke, Melville, James, Kafka, Tolstoi, Turgenev, and Marianne Moore.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref121">Series III, <title localtype="simple" render="italic">
<part>Other Papers</part>
</title>
</ref> (Box 5), is divided into typescript submissions to the Spring-Summer, 1935 issue of the <title localtype="simple" render="italic">
<part>Bozart-Westminster</part>
</title> anthology, which Wilson coedited with Ezra Pound and four others; other typescripts or printed poems by various authors; three typescript literary essays by Pound, two of which served, in shortened form, as a foreword to the <title localtype="simple" render="italic">
<part>Bozart-Westminster</part>
</title> anthology; and miscellaneous papers, which include a photograph of Wilson, transcripts of his academic work at Ohio State and the University of Michigan, and copies of photographs by Walker Evans, Bernice Abbot, and Sylvia Saunders.</p>
<p>The <ref actuate="onrequest" show="replace" target="ref129">fragile papers</ref> in Box 6 consist of originals for which preservation photocopies have been made.</p>
</scopecontent>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85034149"
source="lcsh">
<part localtype="topical">Criticism</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85077519"
source="lcsh">
<part localtype="topical">Literature</part>
<part localtype="topical">History and criticism</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85077552"
source="lcsh">
<part localtype="topical">Literature, Modern</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85103704"
source="lcsh">
<part localtype="topical">Poetry</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85124131"
source="lcsh">
<part localtype="topical">Socialism and literature</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85129379"
source="lcsh">
<part localtype="topical">Literary style</part>
</subject>
<occupation identifier="http://id.loc.gov/authorities/subjects/sh85009793"
source="lcsh">
<part localtype="occupation">Authors</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Critics</part>
</occupation>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85040976"
source="lcsh">
<part localtype="topical">Editors</part>
</subject>
<occupation source="local">
<part localtype="occupation">Poets</part>
</occupation>
<persname>
<part localtype="agent_person">Bishop, Elizabeth, 1911-1979</part>
</persname>
<persname>
<part localtype="agent_person">Canby, Henry Seidel, 1878-1961</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Cross, Wilbur L. (Wilbur Lucius), 1862-1948</part>
</persname>
<persname>
<part localtype="agent_person">Cummings, E. E. (Edward Estlin), 1894-1962</part>
</persname>
<persname>
<part localtype="agent_person">Eberhart, Richard, 1904-2005</part>
</persname>
<persname>
<part localtype="agent_person">Eliot, T. S. (Thomas Stearns), 1888-1965</part>
</persname>
<persname>
<part localtype="agent_person">Fitzgerald, Robert, 1910-1985</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Gregory, Horace, 1898-1982</part>
</persname>
<persname>
<part localtype="agent_person">Laughlin, James, 1914-1997</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Monroe, Harriet, 1860-1936</part>
</persname>
<persname>
<part localtype="agent_person">Moore, Marianne, 1887-1972</part>
</persname>
<persname>
<part localtype="agent_person">Patchen, Kenneth, 1911-1972</part>
</persname>
<persname>
<part localtype="agent_person">Pound, Ezra, 1885-1972</part>
</persname>
<persname>
<part localtype="agent_person">Prokosch, Frederic, 1908-1989</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Ross, W. W. E. (William Wrightson Eustace), 1894-1966</part>
</persname>
<persname>
<part localtype="agent_person">Rukeyser, Muriel, 1913-1980</part>
</persname>
<persname>
<part localtype="agent_person">Tate, Allen, 1899-1979</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Williams, William Carlos, 1883-1963</part>
</persname>
<persname>
<part localtype="agent_person">Wilson, Edmund, 1895-1972</part>
</persname>
<persname>
<part localtype="agent_person">Wilson, T. C. (Theodore Carl), 1912-1950</part>
</persname>
<persname>
<part localtype="agent_person">Winters, Yvor, 1900-1968</part>
</persname>
<persname>
<part localtype="agent_person">Zabel, Morton Dauwen, 1901-1964</part>
</persname>
<persname>
<part localtype="agent_person">Zaturenska, Marya, 1902-1982</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Zukovsky, Louis</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">Yaddo (Artists' colony)</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/595751"
id="ref10"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.75</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">2 boxes</physdesc>
<unitdatestructured altrender="1928-50" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1928">1928</fromdate>
<todate standarddate="1950">1950</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_4c8659ef06b66d8e951b18fb4fbd8150">
<head>Scope and Contents</head>
<p>Series I, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>, is arranged alphabetically by surname. Unidentified correspondence has been placed at the end of the series.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/595752"
id="ref12"
level="file">
<did>
<unittitle>Abbott, C. D.</unittitle>
<unitdatestructured altrender="1939" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1939">1939</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref12_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref12_c2" localtype="folder" parent="aspace_ref12_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595753"
id="ref13"
level="file">
<did>
<unittitle>Ames, Elizabeth</unittitle>
<unitdatestructured altrender="1936-39" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936">1936</fromdate>
<todate standarddate="1939">1939</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595754"
id="ref14"
level="file">
<did>
<unittitle>Anderson-Gillespie, Marie</unittitle>
<unitdatestructured altrender="1933, n.d." label="creation" unitdatetype="inclusive">
<datesingle standarddate="1933">1933, n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595755"
id="ref15"
level="file">
<did>
<unittitle>Barnard, Mary</unittitle>
<unitdatestructured altrender="1934-39" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934">1934</fromdate>
<todate standarddate="1939">1939</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595756"
id="ref16"
level="file">
<did>
<unittitle>Bird, Otto</unittitle>
<unitdatestructured altrender="1934-36, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934">1934</fromdate>
<todate standarddate="1936">1936</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595757"
id="ref17"
level="file">
<did>
<unittitle>Bishop, Elizabeth</unittitle>
<unitdatestructured altrender="1934-48, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934">1934</fromdate>
<todate standarddate="1948">1948</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">6-7</container>
<daoset altrender="/repositories/11/digital_objects/230441">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2000055"
identifier="oid:2000055"
linktitle="8 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1003453/full/!150,150/0/default.jpg"
identifier="oid:2000055"
linktitle="recto"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2000055"
identifier="oid:2000055"
linktitle="recto"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Bishop, Elizabeth</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595758"
id="ref18"
level="file">
<did>
<unittitle>Boyle, Kay</unittitle>
<unitdatestructured altrender="1932" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1932">1932</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595759"
id="ref19"
level="file">
<did>
<unittitle>Bridson, D. G.</unittitle>
<unitdatestructured altrender="1935" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1935">1935</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595760"
id="ref20"
level="file">
<did>
<unittitle>Bryher</unittitle>
</did>
<relatedmaterial id="aspace_4494d7b4308795e4b5b3710fcc9988b2">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref60">See: Winifred Macpherson, Box 1, folder 47</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/595761"
id="ref22"
level="file">
<did>
<unittitle>Campbell, Ruth E. (<title localtype="simple" render="italic">
<part>The American Scholar</part>
</title>)</unittitle>
<unitdatestructured altrender="1937" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1937">1937</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595762"
id="ref23"
level="file">
<did>
<unittitle>Canby, Henry Seidel (<title localtype="simple" render="italic">
<part>The Saturday Review</part>
</title>)</unittitle>
<unitdatestructured altrender="1932-33" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1932">1932</fromdate>
<todate standarddate="1933">1933</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595763"
id="ref24"
level="file">
<did>
<unittitle>College Poetry Society</unittitle>
<unitdatestructured altrender="1934" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1934">1934</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595764"
id="ref25"
level="file">
<did>
<unittitle>Cowden, R. W. (Hopwood Awards)</unittitle>
<unitdatestructured altrender="1939" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1939">1939</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595765"
id="ref26"
level="file">
<did>
<unittitle>Crane, Louise</unittitle>
<unitdatestructured altrender="1938, n.d." label="creation" unitdatetype="inclusive">
<datesingle standarddate="1938">1938, n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595766"
id="ref27"
level="file">
<did>
<unittitle>Cross, Wilbur (<title localtype="simple" render="italic">
<part>The Yale Review</part>
</title>)</unittitle>
<unitdatestructured altrender="1937" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1937">1937</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595767"
id="ref28"
level="file">
<did>
<unittitle>Cummings, E. E.</unittitle>
<unitdatestructured altrender="1935" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1935">1935</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595768"
id="ref29"
level="file">
<did>
<unittitle>Davis, Paul Bernard</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595769"
id="ref30"
level="file">
<did>
<unittitle>DeJong, David C.</unittitle>
<unitdatestructured altrender="1934" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1934">1934</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595770"
id="ref31"
level="file">
<did>
<unittitle>DeVoto, Bernard</unittitle>
<unitdatestructured altrender="1937" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1937">1937</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595771"
id="ref32"
level="file">
<did>
<unittitle>DeVries, Peter</unittitle>
</did>
<relatedmaterial id="aspace_003901626c6bb3754bae3c090af6ed47">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref74"> See: <title localtype="simple" render="italic">
<part>Poetry</part>
</title>, Box 1, folder 61 </ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/595772"
id="ref34"
level="file">
<did>
<unittitle>Dillon, George</unittitle>
</did>
<relatedmaterial id="aspace_9733d0eac9c8df2aba8bbce69ab4e651">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref74"> See: <title localtype="simple" render="italic">
<part>Poetry</part>
</title>, Box 1, folder 61 </ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/595773"
id="ref36"
level="file">
<did>
<unittitle>Dollinger, Verona Mae</unittitle>
<unitdatestructured altrender="1928-38, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1928">1928</fromdate>
<todate standarddate="1938">1938</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">20-22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595774"
id="ref37"
level="file">
<did>
<unittitle>Drummond, John</unittitle>
<unitdatestructured altrender="1934-35" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934">1934</fromdate>
<todate standarddate="1935">1935</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595775"
id="ref38"
level="file">
<did>
<unittitle>Dupee, F. W.</unittitle>
<unitdatestructured altrender="1937, n.d." label="creation" unitdatetype="inclusive">
<datesingle standarddate="1937">1937, n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595776"
id="ref39"
level="file">
<did>
<unittitle>Eberhart, Richard</unittitle>
<unitdatestructured altrender="1935" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1935">1935</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595777"
id="ref40"
level="file">
<did>
<unittitle>Eliot, T. S.</unittitle>
<unitdatestructured altrender="1934" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1934">1934</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595778"
id="ref41"
level="file">
<did>
<unittitle>England, Robert</unittitle>
<unitdatestructured altrender="1934-35" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934">1934</fromdate>
<todate standarddate="1935">1935</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595779"
id="ref42"
level="file">
<did>
<unittitle>Fearing, Kenneth</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595780"
id="ref43"
level="file">
<did>
<unittitle>Fitzgerald, Robert</unittitle>
<unitdatestructured altrender="1934-35" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934">1934</fromdate>
<todate standarddate="1935">1935</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595781"
id="ref44"
level="file">
<did>
<unittitle>Foerster, Norman</unittitle>
<unitdatestructured altrender="1935" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1935">1935</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595782"
id="ref45"
level="file">
<did>
<unittitle>Frost, Robert</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595783"
id="ref46"
level="file">
<did>
<unittitle>Ginsberg, Bernard M.</unittitle>
<unitdatestructured altrender="1934-37, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934">1934</fromdate>
<todate standarddate="1937">1937</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">32-33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595784"
id="ref47"
level="file">
<did>
<unittitle>Gregory, Horace</unittitle>
<unitdatestructured altrender="1934-48" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934">1934</fromdate>
<todate standarddate="1948">1948</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">34-35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595785"
id="ref48"
level="file">
<did>
<unittitle>Hatfield, W. Wilbur</unittitle>
<unitdatestructured altrender="1936" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1936">1936</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595786"
id="ref49"
level="file">
<did>
<unittitle>Hays, H. R.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">37</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595787"
id="ref50"
level="file">
<did>
<unittitle>Healy, J. V.</unittitle>
<unitdatestructured altrender="1935" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1935">1935</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/595788"
id="ref51"
level="file">
<did>
<unittitle>Herring, Robert</unittitle>
</did>
<relatedmaterial id="aspace_5aa91d27bd030d187188cf5fee3ad7b4">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref56"> See: <title localtype="simple" render="italic">
<part>Life and Letters Today</part>
</title>, Box 1, folder 43 </ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/595789"
id="ref53"
level="file">
<did>
<unittitle>Jenkins, Brooks</unittitle>
<unitdatestructured altrender="1938" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1938">1938</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71655 /locations/9"
containerid="39002075036062"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">39</container>
</did>