-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path5886.xml
9099 lines (9099 loc) · 536 KB
/
5886.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.benetfamily">beinecke.benetfamily</recordid>
<otherrecordid localtype="BIB">3659302</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Benét Family Papers </titleproper>
<titleproper localtype="filing">Benét Family Papers</titleproper>
<author>Michael L. Forstrom</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>2017</date>
<num>YCAL MSS 1107</num>
</publicationstmt>
<notestmt>
<controlnote localtype="offsite">
<p>Boxes: 1-51, 55-56</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 52, 53-54 (Oversize)</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="10">10</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="151">151</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>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>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2024-11-28T01:00:15-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday November 28, 2024 at 01:00</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/5886" level="collection">
<did>
<unittitle>Benét Family Papers</unittitle>
<unitid>YCAL MSS 1107</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>26.65</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">56 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1836">1836</fromdate>
<todate standarddate="1994">1994</todate>
</daterange>
</unitdatestructured>
<origination label="Source">
<persname rules="aacr">
<part localtype="agent_person">Benét, James, 1914-</part>
</persname>
</origination>
<origination label="Creator">
<famname source="local">
<part localtype="agent_family">Benét Family</part>
</famname>
</origination>
<origination label="Source">
<persname rules="local" source="local">
<part localtype="agent_person">Benet, James Walker, 1914-</part>
</persname>
</origination>
<origination label="Source">
<persname rules="aacr">
<part localtype="agent_person">Benét, Laura</part>
</persname>
</origination>
<origination label="Source">
<persname rules="aacr">
<part localtype="agent_person">Benét, Rosemary, 1900-1962</part>
</persname>
</origination>
<origination label="Source">
<persname rules="dacs">
<part localtype="agent_person">Benét, Frances Rose, 1860-1940</part>
</persname>
</origination>
<origination label="Source">
<persname rules="aacr">
<part localtype="agent_person">Benét, S. V. (Stephen Vincent), 1827-1895</part>
</persname>
</origination>
<origination label="Source">
<persname>
<part localtype="agent_person">Benét, Stephen Vincent, 1898-1943</part>
</persname>
</origination>
<origination label="Source">
<persname rules="local" source="local">
<part localtype="agent_person">Benet, Thomas</part>
</persname>
</origination>
<origination label="Source">
<persname rules="aacr">
<part localtype="agent_person">Benét, William Rose, 1886-1950</part>
</persname>
</origination>
<origination label="Source">
<famname rules="dacs">
<part localtype="agent_family">Benét family</part>
</famname>
</origination>
</did>
<acqinfo id="aspace_e9794cb289c2d3c88a776749063aa2c2">
<head>Immediate Source of Acquisition</head>
<p>Acquired through gift and purchase from Laura Benét, Thomas Benét, and Rebecca (Benét) Sawyer, 1977-2017.</p>
</acqinfo>
<accessrestrict id="aspace_7109169c45a50206494f8473290136b2">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Box 55: Restricted fragile material. Reference surrogates have been substituted in the main files. For further information consult the appropriate curator.</p>
<p>Box 56 (videocassette): Restricted fragile material. Reference copy may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<userestrict id="aspace_7f88788677de191f83e694a9a6950713">
<head>Conditions Governing Use</head>
<p>The Benét Family 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>
<prefercite id="aspace_82dded0e1533ed4d8a19bebc9e5e556f">
<head>Preferred Citation</head>
<p>Benét Family Papers. Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_f485b5cecf59abd8fab67f923b272fa6">
<head>Processing Information</head>
<p>The Benét Family Papers contains material acquired by the library through gift and purchase from Laura Benét, Thomas Benét, and Rebecca (Benét) Sawyer from 1977 through 2017. Manuscript material formerly classified under multiple call numbers, as well as printed ephemera that had been cataloged separately, was brought together and processed during 2016-2017.</p>
<p>Former call numbers: Za Benét, Uncat Za Ms 261, Uncat Za Ms 359, Uncat Za Ms 361, Uncat Za Ms 628, Uncat Za File 386, Uncat Za File 392, Uncat Mss 53, Uncat Mss 65, Uncat Mss 651, Uncat Mss 821, Uncat Mss 1256,and Za B434 +1.</p>
</processinfo>
<bioghist id="aspace_ecfc039011218fa908aa84a711db2ae7">
<head>Benét family</head>
<p>Brigadier General S. V. (Stephen Vincent) Benét was born 22 January 1827 in St. Augustine, Florida. He studied at Hallowell's school in Alexandria, Virginia and then at the University of Georgia and the United States Military Academy, where he graduated in 1849. He was appointed to the Ordnance Corps, and served at the Watervliet Arsenal, at Washington, at Frankford Arsenal, again at Washington, and then at the St. Louis Arsenal. In 1859 he became Assistant Professor of Geography, History, and Ethics at West Point, and from 1861 until 1864 was instructor of Ordnance and the Science of Gunnery. From 1865 until 1869 he was in command of Frankford arsenal. In 1869 he became Assistant to the Chief of Ordnance, and in 1874 he succeeded to Chief of Ordnance with the rank of Brigadier General. He translated Jomini's <title>
<part>Political and Military History of the Campaign of Waterloo</part>
</title> (New York, 1853) and he is the author of a treatise on "Military Law and the Practice of Courts-Martial" (1862) and "Electro-Ballistic Machines and the Schultze Chronoscope" (1866).</p>
<p>He married Laura Amanda Walker and together they had two sons, James Walker Benét and Laurence Vincent Benét.</p>
<p>James Walker Benét (1857-1928), a Colonel in the U.S. Army, was born 16 July, 1857 in Richmond, Kentucky. He graduated from West Point Academy in 1880 and went on to serve most of his military career in the Army Ordnance Department. From 1890 until his retirement in 1921, he served at the Frankford Arsenal, Philadelphia (1890-1984); Bethlehem Iron Works, South Bethlehem, Pennsylvania (1894-1898); Ordnance Headquarters, Buffalo, New York (1898-1899); Watervliet Arsenal, New York (1904-1905, 1919-1921); Rock Island Arsenal, Illinois (1904-1905), Benicia Arsenal, California (1905-1911), and Augusta Arsenal, Georgia (1911-1918).</p>
<p>James Walker Benét married Frances Neill Rose (1860-1940) of Philadelphia, Pennsylvania in 1883. Ms. Rose, born 23 October, 1860 in Washington, D.C., was the child of William John Rose and Mary Lee Mahon. She attended Mrs. Sutton's School for Girls. Their children include authors Laura Benét, William Rose Benét, and Stephen Vincent Benét.</p>
<p>Laura Benét (1884-1979) was educated at the Emma Willard School in Troy, New York, and at Vassar and Moravian colleges. She worked at the Spring Street Settlement in New York City from 1915 to 1917 and at the American Red Cross in Augusta, Georgia from 1917 to 1919. She later took on editorial and free-lance writing assignments. She was the author of several poetry collections, fiction, and biographical works.</p>
<p>William Rose Benét (1886-1950) was educated at Albany Academy and Yale College (1903-1907). After college, Benét worked for <title>
<part>Century Magazine</part>
</title> as a reader. He served in the U.S. Air Services during the First World War, and after the war took work as a copy writer for an advertising firm. In 1920, Henry Seidel Canby brought Benét on as an assistant editor at the <title>
<part>New York Evening Post</part>
</title> and in 1923, Canby, Benét, and their fellow editors left the <title>
<part>Post</part>
</title> to form the <title>
<part>Saturday Review</part>
</title>.</p>
<p>William Rose Benét was the author of several collections of poetry, a novel, and a collection of essays. His autobiography in verse, <title>
<part>The Dust Which Is God</part>
</title> (1941), was awarded a Pulitzer Prize in 1942. In addition to his long-standing (1923-1950) position with the <title>
<part>Saturday Review</part>
</title>, Benét contributed to several compilations of English-language poetry and literature.</p>
<p>William Rose Benét married four times, to: Teresa Frances Thomson (1912-1919), with whom he had three children, James Walker Benét (1914-2012), Kathleen Anne (Benét) Fry, and Frances Rosemary (Benét) Dawson; poet Elinor Wylie (1923-1928); actress Lora Baxter (1932-1937); and children's book author Majorie Flack (1941-1950).</p>
<p>Stephen Vincent Benét (1898-1943), educated at Summerville Academy and Yale College (1915-1919), was a well known and widely read author in the United States during the 1930s and 1940s. After the success of his long poem, <title>
<part>John Brown's Body</part>
</title> (1928), for which he was awarded a Pulitzer Prize in 1929, he regularly published poems, short stories, and other work in popular magazines such as <title>
<part>The Atlantic Monthly</part>
</title>, <title>
<part>The New Yorker</part>
</title>, and <title>
<part>The Saturday Evening Post</part>
</title>. His short story, "The Devil and Daniel Webster" (1936) was awarded the O. Henry Memorial Award in 1937. In addition to poetry and short stories, he is the author of novels, book reviews, essays, radio and stage plays, screenplays, and speeches.</p>
<p>Stephen Vincent Benét and Rosemary Carr married in 1921. They had three children, Thomas, Stephanie Jane, and Rachel.</p>
<p>Biographical information taken from Arlington National Cemetary website and other sources.</p>
</bioghist>
<scopecontent id="aspace_684db85a9ef53d68887e776c4f034f17">
<head>Scope and Contents</head>
<p>The Benét family papers consists of correspondence, manuscripts, and other papers documenting the lives and activities of four generations of the Benét family. Material relating to members of the Rose, Mahon, and Carr families can also be found. The collection spans the years from 1849 to 1994.</p>
<p>The defining thread to the collection runs from Brigadier General Stephen Vincent Benét and his wife Laura Amanda (Walker) Benét through their son James Walker Benét and his wife Frances Neill (Rose) Benét, through their three children, Laura, William Rose, and Stephen Vincent, to the children of William Rose and Stephen Vincent Benét.</p>
<p>The three siblings, Laura, William Rose, and Stephen Vincent established the Benét family's literary reputation in the early to mid-20th century. The papers of Laura Benét are particularly well represented here. The Correspondence series includes large files of letters to Laura Benét from her mother and her two brothers. The Writings series includes over 50 examples of her work, with drafts and printed versions of short forms such as poems, reviews, stories, and essays. And the Other Papers series includes 26 diary volumes dating from 1922 to 1978, as well as scrapbooks and other material.</p>
<p>Collection material is chiefly in English; with some material in French.</p>
</scopecontent>
<arrangement id="aspace_b6378036b7e26df931e11a2563e37614">
<head>Arrangement</head>
<p>Organized into three series: I. Correspondence, 1854-1994. II. Writings, 1849-1973. III. Other Papers, 1871-1994.</p>
</arrangement>
<relatedmaterial id="aspace_f947a5d42939a099c46dfdcbd27d495d">
<head>Related Materials</head>
<p>Material by or relating to the Benét family acquired by the library from non-family sources is located in the Benét Family Collection (YCAL MSS 1108). Additional material by or relating to Stephen Vincent and Rosemary Benét can be found in the Stephen Vincent Benét and Rosemary Benét Papers (YCAL MSS 1046). Additional material by or relating to William Rose Benét can be found in the William Rose Benét Papers (YCAL MSS 1100).</p>
</relatedmaterial>
<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 source="local">
<part localtype="topical">Authors, American</part>
<part localtype="temporal">20th Century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject source="local">
<part localtype="topical">Poets, American</part>
<part localtype="temporal">20th Century</part>
<part localtype="genre_form">Archives</part>
</subject>
<genreform identifier="http://vocab.getty.edu/aat/300127104" source="aat">
<part localtype="genre_form">Photographic prints</part>
</genreform>
<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">Poets</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<persname rules="dacs">
<part localtype="agent_person">Benét, Frances Rose, 1860-1940</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Benét, James, 1914-</part>
</persname>
<persname rules="local" source="local">
<part localtype="agent_person">Benet, James Walker, 1914-</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Benét, Laura</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Benét, Rosemary, 1900-1962</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Benét, S. V. (Stephen Vincent), 1827-1895</part>
</persname>
<persname>
<part localtype="agent_person">Benét, Stephen Vincent, 1898-1943</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Benét, William Rose, 1886-1950</part>
</persname>
<famname>
<part localtype="agent_family">Carr family</part>
</famname>
<famname rules="aacr">
<part localtype="agent_family">Mahan family</part>
</famname>
<famname>
<part localtype="agent_family">Rose family</part>
</famname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/2639626"
id="aspace_3b93852fc924e404dcb43e827ee2b50c"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>13.34</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">32 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1854">1854</fromdate>
<todate standarddate="1994">1994</todate>
</daterange>
</unitdatestructured>
<unitdatestructured altrender="1880-1940s" label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1880">1880</fromdate>
<todate standarddate="1949">1949</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_6117b947203db5b9cef43240b8ca9956">
<head>Arrangement</head>
<p>Organized into 28 subseries. Correspondence is arranged alphabetically first by correspondent (recipient) and then by sender. Letters are arranged chonologically within files.</p>
</arrangement>
<scopecontent id="aspace_9fe20726e8bb81b4c0fa39416c451d9c">
<head>Scope and Contents</head>
<p>Series I. Correspondence is the largest component of the Benét family papers. The correspondence covers four generations of the family, almost 150 years, dating from the mid-19th century (1854) to the end of the 20th century (1994). The defining thread of the series, and indeed the entire collection, runs from Brigadier General Stephen Vincent Benét and his wife Laura Amanda (Walker) Benét through their son James Walker Benét and his wife Frances Neill (Rose) Benét, through their three children, Laura, William Rose, and Stephen Vincent, to, finally, the children of William Rose and Stephen Vincent Benét.</p>
<p>The three siblings, Laura, William Rose, and Stephen Vincent established the family's literary reputation in the early to mid-20th century, and there are large files of letters from the three children to their mother, Frances Rose Benét. There are also large files of letters to Laura Benét from her mother and from her brother William Rose. Additionally, there are letters to and from more extended members of the family, including the Rose, Mahon, and Carr families. Other noteworthy files exist for Rosemary Benét and her mother, Dr. Rachel H. Carr of Chicago, Illinois.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/2639630"
id="aspace_dd650b7d2176a9996c811d23d5010e49"
level="subseries">
<did>
<unittitle>Frances Rose Benét Correspondence</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/2639666"
id="aspace_a83b48e19b781185113bf0c6f99de770"
level="file">
<did>
<unittitle>Baxter, Lora</unittitle>
<unitdatestructured altrender="1933 March 20" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1933-03-20">1933 March 20</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304740 /locations/9"
containerid="39002091285883"
id="aspace_a83b48e19b781185113bf0c6f99de770_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_a83b48e19b781185113bf0c6f99de770_c2"
localtype="folder"
parent="aspace_a83b48e19b781185113bf0c6f99de770_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639667"
id="aspace_49f017eed4140509633810d4b616106b"
level="file">
<did>
<unittitle>Benét, James Walker</unittitle>
<unitdatestructured altrender="1922 November 16"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1922-11-16">1922 November 16</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304740 /locations/9"
containerid="39002091285883"
id="aspace_49f017eed4140509633810d4b616106b_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_49f017eed4140509633810d4b616106b_c2"
localtype="folder"
parent="aspace_49f017eed4140509633810d4b616106b_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639668"
id="aspace_df0f97e1475bf78224fcdcc6731b069e"
level="file">
<did>
<unittitle>Benét, James, 1914-</unittitle>
<unitdatestructured altrender="1928, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1928">1928, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304740 /locations/9"
containerid="39002091285883"
id="aspace_df0f97e1475bf78224fcdcc6731b069e_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_df0f97e1475bf78224fcdcc6731b069e_c2"
localtype="folder"
parent="aspace_df0f97e1475bf78224fcdcc6731b069e_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639669"
id="aspace_2053ac155aa974d87ee47c43197e67ca"
level="file">
<did>
<unittitle>Benét, Laura</unittitle>
<unitdatestructured altrender="1907-1933, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1907">1907</fromdate>
<todate standarddate="1933">1933</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304740 /locations/9"
containerid="39002091285883"
id="aspace_2053ac155aa974d87ee47c43197e67ca_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_2053ac155aa974d87ee47c43197e67ca_c2"
localtype="folder"
parent="aspace_2053ac155aa974d87ee47c43197e67ca_c1">4-6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639670"
id="aspace_bb49634fa578a929d2bd0887eee7692a"
level="file">
<did>
<unittitle>Benét, Laurence Vincent</unittitle>
<unitdatestructured altrender="1928 April 3" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1928-04-03">1928 April 3</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304740 /locations/9"
containerid="39002091285883"
id="aspace_bb49634fa578a929d2bd0887eee7692a_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_bb49634fa578a929d2bd0887eee7692a_c2"
localtype="folder"
parent="aspace_bb49634fa578a929d2bd0887eee7692a_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639671"
id="aspace_47db2b8954cd8dd6bc41f080861c6e11"
level="file">
<did>
<unittitle>Benét, Margaret Cox</unittitle>
<unitdatestructured altrender="1928" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1928">1928</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304740 /locations/9"
containerid="39002091285883"
id="aspace_47db2b8954cd8dd6bc41f080861c6e11_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_47db2b8954cd8dd6bc41f080861c6e11_c2"
localtype="folder"
parent="aspace_47db2b8954cd8dd6bc41f080861c6e11_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639672"
id="aspace_6bdb64093012bcf034c6d835a8323b35"
level="file">
<did>
<unittitle>Benét, Rosemary</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/304740 /locations/9"
containerid="39002091285883"
id="aspace_6bdb64093012bcf034c6d835a8323b35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_6bdb64093012bcf034c6d835a8323b35_c2"
localtype="folder"
parent="aspace_6bdb64093012bcf034c6d835a8323b35_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639673"
id="aspace_1183fc0bf0ac5bc18a73568463535501"
level="file">
<did>
<unittitle>Benét, Stephen Vincent</unittitle>
<unitdatestructured altrender="1909–1936" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1909">1909</fromdate>
<todate standarddate="1936">1936</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304740 /locations/9"
containerid="39002091285883"
id="aspace_1183fc0bf0ac5bc18a73568463535501_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_1183fc0bf0ac5bc18a73568463535501_c2"
localtype="folder"
parent="aspace_1183fc0bf0ac5bc18a73568463535501_c1">10-17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639674"
id="aspace_8c9fb493d536d97844d1687e9984056d"
level="file">
<did>
<unittitle>Benét, Stephen Vincent</unittitle>
<unitdatestructured altrender="1936-1940, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936">1936</fromdate>
<todate standarddate="1940">1940</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304741 /locations/9"
containerid="39002091285891"
id="aspace_8c9fb493d536d97844d1687e9984056d_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_8c9fb493d536d97844d1687e9984056d_c2"
localtype="folder"
parent="aspace_8c9fb493d536d97844d1687e9984056d_c1">18-28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639675"
id="aspace_e409a6e9730afb8a32e74da9b5ee6097"
level="file">
<did>
<unittitle>Benét, William Rose</unittitle>
<unitdatestructured altrender="1905–1916" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1905">1905</fromdate>
<todate standarddate="1916">1916</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304741 /locations/9"
containerid="39002091285891"
id="aspace_e409a6e9730afb8a32e74da9b5ee6097_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_e409a6e9730afb8a32e74da9b5ee6097_c2"
localtype="folder"
parent="aspace_e409a6e9730afb8a32e74da9b5ee6097_c1">29-30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639676"
id="aspace_4446c619e90cb14168eb00db8f0b61ec"
level="file">
<did>
<unittitle>Benét, William Rose</unittitle>
<unitdatestructured altrender="1917-1940, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1917">1917</fromdate>
<todate standarddate="1940">1940</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304742 /locations/9"
containerid="39002091285909"
id="aspace_4446c619e90cb14168eb00db8f0b61ec_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_4446c619e90cb14168eb00db8f0b61ec_c2"
localtype="folder"
parent="aspace_4446c619e90cb14168eb00db8f0b61ec_c1">31-33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639677"
id="aspace_f14a47e6847ccb88d9b90198628f2e1c"
level="file">
<did>
<unittitle>Carr, Rachel H.</unittitle>
<unitdatestructured altrender="1928" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1928">1928</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304742 /locations/9"
containerid="39002091285909"
id="aspace_f14a47e6847ccb88d9b90198628f2e1c_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_f14a47e6847ccb88d9b90198628f2e1c_c2"
localtype="folder"
parent="aspace_f14a47e6847ccb88d9b90198628f2e1c_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639678"
id="aspace_91041369806c84dfef8bc148e5376ee0"
level="file">
<did>
<unittitle>Dawson, Frances Rosemary (Benét)</unittitle>
<unitdatestructured altrender="1927-1939, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1927">1927</fromdate>
<todate standarddate="1939">1939</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304742 /locations/9"
containerid="39002091285909"
id="aspace_91041369806c84dfef8bc148e5376ee0_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_91041369806c84dfef8bc148e5376ee0_c2"
localtype="folder"
parent="aspace_91041369806c84dfef8bc148e5376ee0_c1">35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639679"
id="aspace_ac06e7dcc98a94a090d0aef9a923a202"
level="file">
<did>
<unittitle>Fry, Kathleen Anne (Benét)</unittitle>
<unitdatestructured altrender="1928, undated" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1928">1928</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304742 /locations/9"
containerid="39002091285909"
id="aspace_ac06e7dcc98a94a090d0aef9a923a202_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ac06e7dcc98a94a090d0aef9a923a202_c2"
localtype="folder"
parent="aspace_ac06e7dcc98a94a090d0aef9a923a202_c1">36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639680"
id="aspace_3c24248a79689894883bf8ad60e9b8a8"
level="file">
<did>
<unittitle>Mahon, John M.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/304742 /locations/9"
containerid="39002091285909"
id="aspace_3c24248a79689894883bf8ad60e9b8a8_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_3c24248a79689894883bf8ad60e9b8a8_c2"
localtype="folder"
parent="aspace_3c24248a79689894883bf8ad60e9b8a8_c1">37</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639681"
id="aspace_4575044ffe5ac9acd07b229639c3e3e8"
level="file">
<did>
<unittitle>Mahon, Mary</unittitle>
<unitdatestructured altrender="1925–1928" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1925">1925</fromdate>
<todate standarddate="1928">1928</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304742 /locations/9"
containerid="39002091285909"
id="aspace_4575044ffe5ac9acd07b229639c3e3e8_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_4575044ffe5ac9acd07b229639c3e3e8_c2"
localtype="folder"
parent="aspace_4575044ffe5ac9acd07b229639c3e3e8_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639682"
id="aspace_3f349ac80420b85cc03a9b40896467f8"
level="file">
<did>
<unittitle>[Norris?], Kathleen Thompson</unittitle>
<unitdatestructured altrender="1918 August" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1918-08">1918 August</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304742 /locations/9"
containerid="39002091285909"
id="aspace_3f349ac80420b85cc03a9b40896467f8_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_3f349ac80420b85cc03a9b40896467f8_c2"
localtype="folder"
parent="aspace_3f349ac80420b85cc03a9b40896467f8_c1">39</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639683"
id="aspace_389bc1e34bcfc16de1437b65f4c3de8b"
level="file">
<did>
<unittitle>Peterson, Anne</unittitle>
<unitdatestructured altrender="1928 April 8" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1928-04-08">1928 April 8</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304742 /locations/9"
containerid="39002091285909"
id="aspace_389bc1e34bcfc16de1437b65f4c3de8b_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_389bc1e34bcfc16de1437b65f4c3de8b_c2"
localtype="folder"
parent="aspace_389bc1e34bcfc16de1437b65f4c3de8b_c1">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639684"
id="aspace_457f95d73c30c7651578b575ddd488aa"
level="file">
<did>
<unittitle>Rose, Elizabeth Neill</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/304742 /locations/9"
containerid="39002091285909"
id="aspace_457f95d73c30c7651578b575ddd488aa_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_457f95d73c30c7651578b575ddd488aa_c2"
localtype="folder"
parent="aspace_457f95d73c30c7651578b575ddd488aa_c1">41</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639685"
id="aspace_840cf0ca9a5fed8edf302e3772e1de6f"
level="file">
<did>
<unittitle>[Rose?], Genevieve</unittitle>
<unitdatestructured altrender="1928 April 24" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1928-04-24">1928 April 24</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304742 /locations/9"
containerid="39002091285909"
id="aspace_840cf0ca9a5fed8edf302e3772e1de6f_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_840cf0ca9a5fed8edf302e3772e1de6f_c2"
localtype="folder"
parent="aspace_840cf0ca9a5fed8edf302e3772e1de6f_c1">42</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639686"
id="aspace_c6a0f3e8f1da10cc773520e237c90024"
level="file">
<did>
<unittitle>Rose, Mary Lee (Mahon)</unittitle>
<unitdatestructured altrender="1906" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1906">1906</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304742 /locations/9"
containerid="39002091285909"
id="aspace_c6a0f3e8f1da10cc773520e237c90024_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_c6a0f3e8f1da10cc773520e237c90024_c2"
localtype="folder"
parent="aspace_c6a0f3e8f1da10cc773520e237c90024_c1">43</container>
<daoset altrender="/repositories/11/digital_objects/185912">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/32251781"
identifier="oid:32251781"
linktitle="12 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/32251782/full/!150,150/0/default.jpg"
identifier="oid:32251781"
linktitle="12 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/32251781"
identifier="oid:32251781"
linktitle="12 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Rose, Mary Lee (Mahon)</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639687"
id="aspace_10c3280ab6af36a3f186d5ccf878559a"
level="file">
<did>
<unittitle>Rose, Mary</unittitle>
<unitdatestructured altrender="1935 September 24"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1935-09-24">1935 September 24</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304742 /locations/9"
containerid="39002091285909"
id="aspace_10c3280ab6af36a3f186d5ccf878559a_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_10c3280ab6af36a3f186d5ccf878559a_c2"
localtype="folder"
parent="aspace_10c3280ab6af36a3f186d5ccf878559a_c1">44</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639688"
id="aspace_4fe945dfdd441917268252148b1cfe64"
level="file">
<did>
<unittitle>Rose, William John</unittitle>
<unitdatestructured altrender="1928 April 10" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1928-04-10">1928 April 10</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304742 /locations/9"
containerid="39002091285909"
id="aspace_4fe945dfdd441917268252148b1cfe64_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_4fe945dfdd441917268252148b1cfe64_c2"
localtype="folder"
parent="aspace_4fe945dfdd441917268252148b1cfe64_c1">45</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639689"
id="aspace_7a897ecc69373200fe5e786c3029c3e8"
level="file">
<did>
<unittitle>Others</unittitle>
<unitdatestructured altrender="1910–1937" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1910">1910</fromdate>
<todate standarddate="1937">1937</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304742 /locations/9"
containerid="39002091285909"
id="aspace_7a897ecc69373200fe5e786c3029c3e8_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_7a897ecc69373200fe5e786c3029c3e8_c2"
localtype="folder"
parent="aspace_7a897ecc69373200fe5e786c3029c3e8_c1">46-51</container>
</did>
<scopecontent id="aspace_8ae329b52c8c90a1dd29a36c556a1dd5">
<head>Scope and Contents</head>
<p>Includes letters from Frances Rose Benét</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2639690"
id="aspace_49a78a8d29503a0da7542edb1e535dbf"
level="file">
<did>
<unittitle>Others</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/304743 /locations/9"
containerid="39002091285917"
id="aspace_49a78a8d29503a0da7542edb1e535dbf_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_49a78a8d29503a0da7542edb1e535dbf_c2"
localtype="folder"
parent="aspace_49a78a8d29503a0da7542edb1e535dbf_c1">52-53</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639691"
id="aspace_18abfa1dc0773afc5609a6bd8f49ab83"
level="file">
<did>
<unittitle>Empty envelopes</unittitle>
<unitdatestructured altrender="1906-1936, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1906">1906</fromdate>
<todate standarddate="1926">1926</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304743 /locations/9"
containerid="39002091285917"
id="aspace_18abfa1dc0773afc5609a6bd8f49ab83_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_18abfa1dc0773afc5609a6bd8f49ab83_c2"
localtype="folder"
parent="aspace_18abfa1dc0773afc5609a6bd8f49ab83_c1">54-56</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2639631"
id="aspace_6dac861fc957bbc5e300e66dd52f5072"
level="subseries">
<did>
<unittitle>James Walker Benét Correspondence</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/2639692"
id="aspace_e705a7a7ea2bac18fd32e0ac174b57da"
level="file">
<did>
<unittitle>Benét, Frances Rose</unittitle>
<unitdatestructured altrender="1893-1927, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1893">1893</fromdate>
<todate standarddate="1927">1927</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304743 /locations/9"
containerid="39002091285917"
id="aspace_e705a7a7ea2bac18fd32e0ac174b57da_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_e705a7a7ea2bac18fd32e0ac174b57da_c2"
localtype="folder"
parent="aspace_e705a7a7ea2bac18fd32e0ac174b57da_c1">57-59</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639693"
id="aspace_ee85cb323ad0d39650ded06a092acc2f"
level="file">
<did>
<unittitle>Benét, James, 1914-</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/304743 /locations/9"
containerid="39002091285917"
id="aspace_ee85cb323ad0d39650ded06a092acc2f_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ee85cb323ad0d39650ded06a092acc2f_c2"
localtype="folder"
parent="aspace_ee85cb323ad0d39650ded06a092acc2f_c1">60</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639694"
id="aspace_21d752c2e49da623c8440a7278fa7a85"
level="file">
<did>
<unittitle>Benét, Laura</unittitle>
<unitdatestructured altrender="1925-1927, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1925">1925</fromdate>
<todate standarddate="1927">1927</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304743 /locations/9"
containerid="39002091285917"
id="aspace_21d752c2e49da623c8440a7278fa7a85_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_21d752c2e49da623c8440a7278fa7a85_c2"
localtype="folder"
parent="aspace_21d752c2e49da623c8440a7278fa7a85_c1">61</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639695"
id="aspace_338f15b9114fd564c789f49bb76b8a54"
level="file">
<did>
<unittitle>Benét, Laura Amanda (Walker)</unittitle>
<unitdatestructured altrender="1876" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1876">1876</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304743 /locations/9"
containerid="39002091285917"
id="aspace_338f15b9114fd564c789f49bb76b8a54_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_338f15b9114fd564c789f49bb76b8a54_c2"
localtype="folder"
parent="aspace_338f15b9114fd564c789f49bb76b8a54_c1">62</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2639696"
id="aspace_5abb59abe1052e1abf10805f27eaf6e3"
level="file">
<did>
<unittitle>Benét, Laurence Vincent</unittitle>
<unitdatestructured altrender="1900-1919, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1900">1900</fromdate>
<todate standarddate="1919">1919</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304743 /locations/9"
containerid="39002091285917"
id="aspace_5abb59abe1052e1abf10805f27eaf6e3_c1"
label="Mixed Materials"