-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1185.xml
982 lines (982 loc) · 54.6 KB
/
1185.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
<?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.rbsage">beinecke.rbsage</recordid>
<otherrecordid localtype="BIB">3168414</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Rufus B. Sage Papers
</titleproper>
<titleproper localtype="filing">Sage (Rufus B.) Papers</titleproper>
<author>by Beinecke staff</author>
</titlestmt>
<publicationstmt>
<publisher>Beinecke Rare Book and Manuscript Library</publisher>
<address>
<addressline>P. O. Box 208330</addressline>
<addressline>New Haven, CT 06520-8330</addressline>
<addressline localtype="telephone">(203) 432-2977 </addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://beinecke.library.yale.edu/"
linktitle="http://beinecke.library.yale.edu/"
show="new">http://beinecke.library.yale.edu/</ref>
</addressline>
</address>
<num>WA MSS 414</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">3168414</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Box: 1</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="1">1</num> published digital object. And that object are comprised of <num localtype="files" altrender="4">4</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>
<localcontrol localtype="findaidstatus">
<term>in_progress</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:14:29-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday January 9, 2025 at 00:14</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1185" level="collection">
<did>
<unittitle>Rufus B. Sage papers</unittitle>
<unitid>WA MSS 414</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>0.42</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 box</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1778">1778</fromdate>
<todate standarddate="1864">1864</todate>
</daterange>
</unitdatestructured>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Sage, Rufus B., 1817-1893</part>
</persname>
</origination>
</did>
<bioghist id="aspace_bd624ac1eb2da6e7adbbc92dc35f4bb2">
<head>Rufus B. Sage, 1817-1893</head>
<p>Rufus B. Sage left his home in Upper Middletown, Connecticut, in 1836
for Marietta, Ohio, where his sister Jerusha Sage Gear, lived. Except for the
winter of 1837-38 when he was in West Virginia and made a voyage down the
Ohio and Mississippi to Natchez and Fort Gibson, Sage spent most of the
period between 1836 and 1840 in Marietta, Circleville, and Columbus, Ohio,
where he engaged in the printing and newspaper business. In 1840, he decided
to go to the Rocky Mountains and Oregon, and travelled with some friends to
Independence, Missouri, to join a fur-trading party. The party left
Independence on September 2, 1841, spent the winter in the mountains,
returned to Independence, and went west again in 1842. By 1844, Sage was back
in Ohio, editing <title render="italic">
<part>The Whig Battering-Ram</part>
</title> from August 9 to October 25 and
preparing to write an account of his travels, which was published by Carey &
Hart of Philadelphia in 1846 with the following title: <title render="italic">
<part>Scenes in the Rocky
Mountains, and in Oregon, California, New Mexico, Texas, and the Grand
Prairies</part>
</title>.</p>
</bioghist>
<scopecontent id="aspace_65e63f4498979e794c22c7e14cbe4a99">
<head>Scope and Contents</head>
<p>The Rufus B. Sage Papers include correspondence of Rufus B. Sage's
grandfather Elisha Sage, his father Rufus Sage, and other members of the
family, concerning the family's personal affairs and life in Connecticut,
1789-1828. In addition, the collection consists of letters and papers of
Rufus B. Sage about his life in Ohio, his travels in the West and the
publication of his book, <title render="italic">
<part>Scenes in the Rocky Mountains, and in Oregon,
California, New Mexico, Texas, and the Grand Prairies</part>
</title>.</p>
<p>One of the original poems in the collection, "Night on the Prairie," is
printed in <title render="italic">
<part>Scenes in the Rocky Mountains</part>
</title>.</p>
<p>The collection consists of 108 letters and papers, 268 pages in all.</p>
</scopecontent>
<processinfo id="aspace_8aa3c6b5dd20e9ccff27868e7753a559">
<head>Processing Information</head>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library attempts to provide a basic level of preservation and access for all collections [as they are acquired], and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>This finding aid, created before the advent of computer-generated files, has been converted into a ASCII data file by means of scanning and Optical Character Recognition software. While attempts have been made to retain the complete information from the original document a number of format changes have been made to present the structure of this archive in accordance with current practice.</p>
<p>This finding aid may be updated periodically to account for new acquisitions to the collection and/or revisions in arrangement and description.</p>
</processinfo>
<userestrict id="aspace_7afda0810efeeda03c3de64532453adc">
<head>Conditions Governing Use</head>
<p>The Rufus B. Sage papers collection 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>
<accessrestrict id="aspace_9458313bb51c899443fc2141bc70748e">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<prefercite id="aspace_bf7ce468fe8a00dfda574ca7a328283e">
<head>Preferred Citation</head>
<p>Rufus B. Sage Papers. Yale Collection of Western Americana, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<controlaccess>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85146142"
source="lcsh">
<part localtype="geographic">West (U.S.)</part>
<part localtype="topical">Description and travel</part>
</geogname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Gear, Frances S.</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Gear, Jerusha S, 1806-</part>
</persname>
<persname source="local">
<part localtype="agent_person">Sage, Edmund, 1804-</part>
</persname>
<persname source="local">
<part localtype="agent_person">Sage, Elisha, 1755-1801</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Sage, Jerusha Butler</part>
</persname>
<persname source="local">
<part localtype="agent_person">Sage, Rufus, 1777-1826</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Sage, Rufus B., 1817-1893</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">Carey & Hart</part>
</corpname>
<famname>
<part localtype="agent_family">Sage family</part>
</famname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/433229"
id="ref7"
level="series">
<did>
<unittitle>Papers</unittitle>
<unitdatestructured altrender="1789-1864" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1789">1789</fromdate>
<todate standarddate="1864">1864</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_5b3e81024c29be63827aed8287a50083">
<head>Scope and Contents</head>
<p>The family papers include correspondence of Rufus B. Sage's grandfather Elisha Sage, his father Rufus Sage, and other members of the family, about their personal affairs and life in Connecticut, 1789-1828; and the following letters and papers of Rufus B. Sage about his life in Ohio, his travels in the West and the publication of his book.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/433230"
id="ref8"
level="file">
<did>
<unittitle>[Photocopies of previous organizational scheme]</unittitle>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref8_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref8_c2" localtype="folder" parent="aspace_ref8_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433231"
id="ref11"
level="file">
<did>
<unittitle>Genealogical Record</unittitle>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref11_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref11_c2" localtype="folder" parent="aspace_ref11_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433232"
id="ref12"
level="file">
<did>
<unittitle>Clippings concerning Rufus B. Sage's <title render="italic">
<part>Three Years in the Rockies.</part>
</title> 11 clippings. </unittitle>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref12_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref12_c2" localtype="folder" parent="aspace_ref12_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433233"
id="ref13"
level="file">
<did>
<unittitle>Beardslee, Nezekiah [?]. Letter to Elisha Sage. 1pp.</unittitle>
<unitdatestructured altrender="February 15, 1778."
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1778-02-15">February 15, 1778.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433234"
id="ref14"
level="file">
<did>
<unittitle>Butler, Charles W. Poem: "My Mother's Grave". Undated. 1pp. </unittitle>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433235"
id="ref15"
level="file">
<did>
<unittitle>Carey & Hart. 14 letters to R. B. Sage. 19 pp.</unittitle>
<unitdatestructured altrender="April 7, 1846-March 15, 1847"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1846-04-07">1846 April 7</fromdate>
<todate standarddate="1847-03-15">1847 March 15</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433236"
id="ref16"
level="file">
<did>
<unittitle>Dowd, Lewis B. Letter to R. B. Sage. 3 pp. </unittitle>
<unitdatestructured altrender="July 24, 1837" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1837-07-24">July 24, 1837</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433237"
id="ref17"
level="file">
<did>
<unittitle>Gear, Mrs. Frances S. Five letters to her brother, R. B. Sage. 11 pp.</unittitle>
<unitdatestructured altrender="May 17, 1837- January 11, 1847"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1837-05-17">1837 May 17</fromdate>
<todate standarddate="1847-01-11">1847 January 11</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433238"
id="ref18"
level="file">
<did>
<unittitle>Sage, Mrs. Jerusha Butler. Five letters to her son, R. B. Sage. 8 pp.</unittitle>
<unitdatestructured altrender="July 3 [1836?]-August 25, 1844"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1836-07-03">1836 July 3</fromdate>
<todate standarddate="1844-08-25">1844 August 25</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433239"
id="ref19"
level="file">
<did>
<unittitle>Gear, Mrs. Jerusha S. Letter to her brother, Elisha L. Sage. 1pp. </unittitle>
<unitdatestructured altrender="March 3, 1834" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1834-03-03">March 3, 1834</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433240"
id="ref20"
level="file">
<did>
<unittitle>Gear, Mrs. Jerusha S. Nine letters to her brother, Rufus B. Sage. 25 pp.</unittitle>
<unitdatestructured altrender="March 2, 1838-January 23, 1847"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1838-03-02">1838 March 2</fromdate>
<todate standarddate="1847-01-23">1847 January 23</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433241"
id="ref21"
level="file">
<did>
<unittitle>Gear, Mrs. Jerusha S. Three letters to her mother, Mrs. Jerusha B. Sage. 9 pp. </unittitle>
<unitdatestructured altrender="April 18, 1833-January 4, 1841"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1833-04-18">1833 April 18</fromdate>
<todate standarddate="1841-01-04">1841 January 4</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433242"
id="ref22"
level="file">
<did>
<unittitle>Hepburn, James, Pastor of the Second Baptist Church, Middletown. Certificate that notice of the intended marriage of Mr. Rufus B. Sage and Miss Marietta M. Miller was given publicly before the congregation, November 7, 1847. Upper Middletown. 1 p.</unittitle>
<unitdatestructured altrender="November 29, 1847"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1847-11-29">November 29, 1847</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433243"
id="ref23"
level="file">
<did>
<unittitle>Merwin, Wealthy Sage. Letter to her cousin, R. B. Sage. 3 pp.</unittitle>
<unitdatestructured altrender="July 25, 1845" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1845-07-25">July 25, 1845</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433244"
id="ref24"
level="file">
<did>
<unittitle>Munson [?], Thomas A. Two letters to R. B. Sage. 4 pp.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">August 16, 19, 1845</unitdate>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433245"
id="ref25"
level="file">
<did>
<unittitle>Nash, Simeon. Letter to R. B. Sage. 2 pp.</unittitle>
<unitdatestructured altrender="December 14, 1846"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1846-12-14">December 14, 1846</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433246"
id="ref26"
level="file">
<did>
<unittitle>Paine & Burgess. Letter to R. B. Sage. 1 p.</unittitle>
<unitdatestructured altrender="October 21, 1845"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1845-10-21">October 21, 1845</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433247"
id="ref27"
level="file">
<did>
<unittitle>Pierce, F. N. Letter to R. B. Sage. 3 pp.</unittitle>
<unitdatestructured altrender="August 23, 1846"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1846-08-23">August 23, 1846</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433248"
id="ref28"
level="file">
<did>
<unittitle>Sage, Alvin. Letter to his brother, Rufus Sage. 1 pp.</unittitle>
<unitdatestructured altrender="April 12, 1825"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1825-04-12">April 12, 1825</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433249"
id="ref29"
level="file">
<did>
<unittitle>Sage, Amos. Letter to his brother, Rufus Sage. 2 pp.</unittitle>
<unitdatestructured altrender="February 21, 1815"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1815-02-21">February 21, 1815</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433250"
id="ref30"
level="file">
<did>
<unittitle>Sage, Edmund. Seven letters to his brother, R. B. Sage. 13 pp.</unittitle>
<unitdatestructured altrender="February 28, 1846- May 10, 1847"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1846-02-28">1846 February 28</fromdate>
<todate standarddate="1847-05-10">1847 May 10</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433251"
id="ref31"
level="file">
<did>
<unittitle>Sage, Elisha. Three letters to his wife. 4 pp.</unittitle>
<unitdatestructured altrender="June 1, 1789-June 18, 1798"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1789-06-01">1789 June 1</fromdate>
<todate standarddate="1798-06-18">1798 June 18</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433252"
id="ref32"
level="file">
<did>
<unittitle>Sage, Elizabeth Maria. Three letters to her uncle, R. B. Sage. 9 pp.</unittitle>
<unitdatestructured altrender="August 23-November 13, 1844"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1844-08-23">1844 August 23</fromdate>
<todate standarddate="1844-11-13">1844 November 13</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433253"
id="ref33"
level="file">
<did>
<unittitle>Sage, Elizabeth Williams. Letter to her uncle, R. B. Sage. 3 pp.</unittitle>
<unitdatestructured altrender="September 18, 1844"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1844-09-18">September 18, 1844</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433254"
id="ref34"
level="file">
<did>
<unittitle>Sage, Fanny. Letter to Hannah Jones. 1 pp.</unittitle>
<unitdatestructured altrender="June 1, 1807" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1807-06-01">June 1, 1807</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433255"
id="ref35"
level="file">
<did>
<unittitle>Sage, George Hubbard. Two letters to his uncle, R. B. Sage. 11 pp.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">August 16, 1863, September 20, 1864</unitdate>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433256"
id="ref50"
level="file">
<did>
<unittitle>Sage, Martha. Letter to her mother, Mrs. Jerusha B. Sage. 2 pp.</unittitle>
<unitdatestructured altrender="September 28, 1828"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1828-09-28">September 28, 1828</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">27</container>
<daoset altrender="/repositories/11/digital_objects/160125">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16697589"
identifier="oid:16697589"
linktitle="4 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16697590/full/!150,150/0/default.jpg"
identifier="oid:16697589"
linktitle="4 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16697589"
identifier="oid:16697589"
linktitle="4 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Sage, Martha. Letter to her mother, Mrs. Jerusha B. Sage. 2 pp.</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433257"
id="ref36"
level="file">
<did>
<unittitle>Sage, Rufus B. Letter to his brother, Amos Sage. 2 pp.</unittitle>
<unitdatestructured altrender="1814" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1814">1814</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433258"
id="ref37"
level="file">
<did>
<unittitle>Sage, Rufus B. Letter to his sister, Mrs. Francis S. Gear. 2 pp.</unittitle>
<unitdatestructured altrender="November 5, 1837"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1837-11-05">November 5, 1837</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433259"
id="ref38"
level="file">
<did>
<unittitle>Sage, Rufus B. Eight letters to his mother, Mrs. Jerusha B. Sage. 30 pp.</unittitle>
<unitdatestructured altrender="June 19, 1836-September 12, 1838"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1836-06-19">1836 June 19</fromdate>
<todate standarddate="1838-09-12">1838 September 12</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433260"
id="ref39"
level="file">
<did>
<unittitle>Sage, Rufus B. Six letters to his mother, Mrs. Jerusha B. Sage. 26 pp.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">Spril 25, 1839-August 21, 1841</unitdate>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433261"
id="ref40"
level="file">
<did>
<unittitle>Sage, Rufus B. Six letters to his mother, Mrs. Jerusha B. Sage. 17 pp.</unittitle>
<unitdatestructured altrender="July 20, 1842-January 1, 1847"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1842-07-20">1842 July 20</fromdate>
<todate standarddate="1847-01-01">1847 January 1</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433262"
id="ref41"
level="file">
<did>
<unittitle>Sage, Rufus B. Letter to his sister, Mrs. Jerusha S. Gear. 4 pp.</unittitle>
<unitdatestructured altrender="May 22, 1837" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1837-05-22">May 22, 1837</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433263"
id="ref42"
level="file">
<did>
<unittitle>Sage, Rufus B. Letter to Messrs. Paine & Burgess. 3 pp.</unittitle>
<unitdatestructured altrender="October 25, 1845"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1845-10-25">October 25, 1845</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433264"
id="ref43"
level="file">
<did>
<unittitle>Sage, Rufus B. "Description of the remains of an ancient fortification at Selsertown, eleven miles north of Natchez, Miss." 2 pp. 49 cm.</unittitle>
<unitdatestructured altrender="1838" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1838">1838</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433265"
id="ref44"
level="file">
<did>
<unittitle>Sage, Rufus B. Eight poems. 21 pp. 24½ - 42 cm.</unittitle>
<unitdatestructured altrender="1839-1842" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1839">1839</fromdate>
<todate standarddate="1842">1842</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433266"
id="ref45"
level="file">
<did>
<unittitle>Sage, Rufus B. Memorandum of accounts with Carey & Hart for the publication of Scenes in the Rocky Mountains. 6 pp. 12½ cm.</unittitle>
<unitdatestructured altrender="1846-1847" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1846">1846</fromdate>
<todate standarddate="1847">1847</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">37</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433267"
id="ref46"
level="file">
<did>
<unittitle>Steward, A. W. Letter to R. B. Sage. 1 p.</unittitle>
<unitdatestructured altrender="August 19, 1846"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1846-08-19">August 19, 1846</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433268"
id="ref47"
level="file">
<did>
<unittitle>White, Henry. Letter to R. B. Sage. 3 pp.</unittitle>
<unitdatestructured altrender="January 7, 1838"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1838-01-07">January 7, 1838</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">39</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433269"
id="ref48"
level="file">
<did>
<unittitle>Woodruff, A. S. Two letters to his sister, Mrs. Jerusha B. Sage. 8 pp.</unittitle>
<unitdatestructured altrender="February 19, 1826-January 13, 1828"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1826-02-19">1826 February 19</fromdate>
<todate standarddate="1828-01-13">1828 January 13</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433270"
id="ref49"
level="file">
<did>
<unittitle>Woodruff, George R. Letter to his cousin, R. B. Sage. 3 pp.</unittitle>
<unitdatestructured altrender="August 23, 1847"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1847-08-23">August 23, 1847</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57894 /locations/4051"
containerid="39002091546045"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">41</container>
</did>
</c>
</c>
</dsc>
</archdesc>
</ead>