-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1341.xml
2463 lines (2463 loc) · 146 KB
/
1341.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.warnerjonathan">beinecke.warnerjonathan</recordid>
<otherrecordid localtype="BIB">11858654</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Jonathan Warner Papers
</titleproper>
<titleproper localtype="filing">Warner (Jonathan) papers</titleproper>
<author>by Matthew Daniel Mason</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>2014</date>
<num>WA MSS S-2925</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">11858654</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-5</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>2025-01-09T00:28:02-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:28</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1341" level="collection">
<did>
<unittitle>Jonathan Warner papers</unittitle>
<unitid>WA MSS S-2925</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>1.34</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">5 boxes</physdesc>
<unitdatestructured altrender="1836-1887" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1836">1836</fromdate>
<todate standarddate="1887">1887</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_979b7f215a0a3c95fe134aa9ea2d184f">Papers of Jonathan Warner and his family of Jefferson in Ashtabula County, Ohio, 1836-1887. Correspondence documents the activities of Warner's immediate and extended family, and documents their opinions on sectionalism and slavery. The collection includes letters written by his brother, George Washington Warner, which document his emigration to California in 1852, as well as his activities in Washington Territory and Idaho Territory until 1865. Business records in the collection chiefly consist of deeds, contracts, and other legal instruments related to real estate transactions in Ashtabula County, as well as property tax assessments.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Warner, Jonathan, IV, 1812-1888</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_75b8243bae1729702bcb84ada88c4066">
<head>Immediate Source of Acquisition</head>
<p>Purchased from William Reese Company (Cowan's Auctions' sale, 2009 December 9, lot 349) on the William Robertson Coe Fund No. 3, 2010.</p>
</acqinfo>
<accessrestrict id="aspace_53881020db48c13894911096c9a3689e">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<userestrict id="aspace_b9a931916e9f8a2f649514c350596258">
<head>Conditions Governing Use</head>
<p>The Jonathan Warner 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_c613ef3a1344c88311399112844a5e11">
<head>Preferred Citation</head>
<p>Jonathan Warner Papers. Yale Collection of Western Americana, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_ce3674bee4749bc0317645b836faa4d6">
<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, and does more extensive processing of higher priority collections as time and resources permit.</p>
</processinfo>
<bioghist id="aspace_97ae9ef9121a97e21c2128fd6b347300">
<head>Jonathan Warner, IV (1812-1888)</head>
<p>Jonathan Warner, IV, also known as Jonathan Warner, Jr., was a farmer and landowner in Jefferson, Ohio. He was the son of Nancy Frethy Warner (1789-1881) and Jonathan Warner, III (1782-1862), who was the recorder of deeds (1815-1822) and treasurer (1825) for Ashtabula County, as well as a member of the the Ohio House of Representatives in 1831 and an Associate Judge of the Court of Common Pleas from 1839 to 1846. Warner had ten siblings, including a brother with the same name who died in infancy: Nancy Warner Holman (1808-1885), Phebe Warner King (1815-1893), Adeline Lovina Warner Ranney (1818-1900), Jane Warner Starr (1820-1892), Louisa Warner Simonds (1823-1899), George Washington Warner (1825-1877), Isabelle "Bell" Warner Moore Ducro (1828-1913), Francis H. Warner (1831-1904), and Charles Ely Warner (1834-1906).</p>
<p>In 1839, Warner married Lydia Allen Warner (1815-1843). After the death of his first wife, he married Catherine Krum Warner (1821-1885) in 1848, and they had three children: Flora Isabel Warner Ives (1850-1942), Lena Evelyn Warner Pritchard (1858-1938), and Howard Jonathan Warner (1860-1940).</p>
</bioghist>
<bioghist id="aspace_7df1be233f11ab54998a27467e24dbe8">
<head>George Washington Warner (1825-1877)</head>
<p>George Washington Warner was a brother of Jonathan Warner, Jr. He worked in gold mines near the Klamath River in northern California and around Walla Walla, Washington. He eventually operated a farm and raised livestock in Wallula, Washington. In 1872, he married Matilda Ann Burdett Warner (1849-1930), and they had two children, Jessie Louise Warner Kuhlenecamp (1873-1954) and George Washington Warner, Jr. (1875-1963). He died from a gunshot wound while hunting.</p>
</bioghist>
<scopecontent id="aspace_b14b3763397427fa818ce804e9baa72e">
<head>Scope and Contents</head>
<p>Papers of Jonathan Warner and his family from Jefferson, Ashtabula County, Ohio, 1836-1887. Correspondence documents the activities of Warner's immediate and extended family, including their opinions on sectionalism and slavery. The collection includes letters written by his brother, George Washington Warner, which document his emigration to California in 1852, as well as his activities in Washington Territory and Idaho Territory until 1865. Business records in the collection chiefly consist of deeds, contracts, and other legal instruments related to real estate transactions in Ashtabula County, as well as property tax assessments.</p>
<p>The collection includes a letter from Jonathan Warner's cousin Matthew Griswold Warner in January 1852, which discusses the activities of another cousin, Jonathan Trumbull Warner, also known as Juan Jose Warner, in Agua Caliente, California. The letter details conflict with American Indians led by a Cupeño Indian, Antonio Garra, during the Yuma War, 1850-1853.</p>
<p>Letters by George Washington Warner describe his voyage to California via Panama in March-April 1852, as well as a subsequent visit with Juan José Warner. His later correspondence discusses gold mining in California at Gold Hill in Nevada County, as well as near Trinidad and near the Klamath River in Humboldt County. Realia in the collection includes a small gold nugget, presumably mined by Warner. In letters from 1863 to 1865, Warner discusses his work driving mule teams between Walla Walla, Washington Territory, and Boise, Idaho Territory.</p>
<p>A group of correspondence with extended family and others, 1884-1886, relate to efforts by the Warner family to receive spoliation claim money from the French related to their capture of the brig Matilda during the Quasi-War between the United States and France.</p>
</scopecontent>
<arrangement id="aspace_0c2e63ead3e1868f2eba9a7aeffb4e54">
<head>Arrangement</head>
<p>Organized into three series: I. Correspondence, 1836-1887. II. Business and Property Records, 1840-1887. III. Realia, circa 1860-circa 1870.</p>
</arrangement>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85034823"
source="lcsh">
<part localtype="topical">Cupeño Indians</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85065440"
source="lcsh">
<part localtype="topical">Indians of North America</part>
<part localtype="geographic">California</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85065410"
source="lcsh">
<part localtype="topical">Indians of North America</part>
<part localtype="topical">Wars</part>
<part localtype="temporal">1815-1875</part>
</subject>
<subject source="local">
<part localtype="topical">Sectionalism (United States)</part>
<part localtype="topical">Public opinion</part>
</subject>
<subject source="local">
<part localtype="topical">Slavery</part>
<part localtype="geographic">United States</part>
<part localtype="topical">Public opinion</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85144451"
source="lcsh">
<part localtype="topical">Voyages to the Pacific coast</part>
</subject>
<geogname source="local">
<part localtype="geographic">Agua Caliente (Calif.)</part>
<part localtype="topical">Description and travel</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Ashtabula County (Ohio)</part>
<part localtype="topical">Description and travel</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Boise (Idaho)</part>
<part localtype="topical">Description and travel</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85018870"
source="lcsh">
<part localtype="geographic">California</part>
<part localtype="topical">Description and travel</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85018877"
source="lcsh">
<part localtype="geographic">California</part>
<part localtype="topical">Gold discoveries</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh2008115077"
source="lcsh">
<part localtype="geographic">France</part>
<part localtype="topical">Foreign relations</part>
<part localtype="geographic">United States</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Gold Hill (Nevada County, Calif.)</part>
<part localtype="topical">Description and travel</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Humboldt County (Calif.)</part>
<part localtype="topical">Description and travel</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Idaho Territory</part>
<part localtype="topical">Description and travel</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Jefferson (Ashtabula County, Ohio)</part>
<part localtype="topical">Description and travel</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Klamath River (Or. and Calif.)</part>
<part localtype="topical">Description and travel</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85094271"
source="lcsh">
<part localtype="geographic">Ohio</part>
<part localtype="topical">Description and travel</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85097322"
source="lcsh">
<part localtype="geographic">Panama</part>
<part localtype="topical">Description and travel</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Trinidad (Calif.)</part>
<part localtype="topical">Description and travel</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh2007100030"
source="lcsh">
<part localtype="geographic">United States</part>
<part localtype="topical">Foreign relations</part>
<part localtype="geographic">France</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85140420"
source="lcsh">
<part localtype="geographic">United States</part>
<part localtype="topical">Politics and government</part>
<part localtype="temporal">1797-1801</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Walla Walla (Wash.)</part>
<part localtype="topical">Description and travel</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85145365"
source="lcsh">
<part localtype="geographic">Washington (State)</part>
<part localtype="topical">Description and travel</part>
</geogname>
<genreform identifier="http://vocab.getty.edu/aat/300011021" source="aat">
<part localtype="genre_form">Gold (metal)</part>
</genreform>
<persname rules="aacr" source="local">
<part localtype="agent_person">Garra, Antonio, -1852</part>
</persname>
<famname>
<part localtype="agent_family">Warner family</part>
</famname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Warner, George Washington, 1825-1877</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Warner, J. J. (Juan José), 1807-1895</part>
</persname>
<persname>
<part localtype="agent_person">Warner, Jonathan, IV, 1812-1888</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Warner, Matthew Griswold, 1799-1884</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/495111"
id="ref12"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.42</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 box</physdesc>
<unitdatestructured altrender="1836-1887" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1836">1836</fromdate>
<todate standarddate="1887">1887</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_0a8ae16b4208517ed519bb3584639f22">
<head>Arrangement</head>
<p>Arranged chronologically followed by correspondence with no identified years and orphaned envelopes .</p>
</arrangement>
<scopecontent id="aspace_e8419afeee788605a5d9be5df5dddcf2">
<head>Scope and Contents</head>
<p>Correspondence, chiefly by family members and business associates of Jonathan Warner, Jr.</p>
<p>Many letters are accompanied by their original envelopes.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/495112"
id="ref14"
level="file">
<did>
<unittitle>Marsh, J. S., et al., Jefferson, Ohio, invitation to an Independence Ball to Jonathan Warner, Jr., and Dolly Anne Handsom, Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1836 June 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1836-06-20">1836 June 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">1</container>
</did>
<c altrender="/repositories/11/archival_objects/495113"
id="ref15"
level="file">
<did>
<unittitle>Allen, Benjamin, Kinsman, Ohio, letter to Lydia Allen Warner and Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1843 October 2"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1843-10-02">1843 October 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">2</container>
</did>
<c altrender="/repositories/11/archival_objects/495114"
id="ref16"
level="file">
<did>
<unittitle>Pratt, Ann, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1844 August 16"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1844-08-16">1844 August 16</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">3</container>
</did>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/495115"
id="ref17"
level="file">
<did>
<unittitle>Starr, George, Hudson, Ohio, letter to Jonathan Warner, Jr., Jefferson, Ohio, as well as a letter from Jane Starr, Hudson, Ohio, to Phebe Warner, Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1845 April 28" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1845-04-28">1845 April 28</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495116"
id="ref18"
level="file">
<did>
<unittitle>Warner, Jonathan ("Cousin"), Chester, Connecticut, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1847 September 1"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1847-09-01">1847 September 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">5</container>
</did>
<bioghist id="aspace_10d34520c3fe8287966bd22fc44cf2a5">
<head>Biographical/Historical note</head>
<p>Jonathan Warner (1823-1905) and Sarah Warner Silliman (born 1820) were children of Ely Warner (1785-1872) and Sarah Ward Warner (1798-1886) in Chester, Connecticut.</p>
</bioghist>
<scopecontent id="aspace_fa83a60c233c1a61bdf4c8ccb3b0e31e">
<head>Scope and Contents</head>
<p>With a letter from Sarah Warner Silliman to Phebe Warner.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/495117"
id="ref21"
level="file">
<did>
<unittitle>Warner, Jared Clark, Chester, Connecticut, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1848 July 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1848-07-17">1848 July 17</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">6</container>
</did>
<bioghist id="aspace_9e1dc84c8a2e796acd8696f793e9bdd9">
<head>Biographical/Historical note</head>
<p>Jared Clark Warner (1829-1855, Yale 1854) was the son of Ely Warner (1785-1872) and Sara Ward Warner (1798-1886).</p>
</bioghist>
</c>
<c altrender="/repositories/11/archival_objects/495118"
id="ref23"
level="file">
<did>
<unittitle>Krum, Abel, Cherry Valley, Ohio, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1848 December 23"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1848-12-23">1848 December 23</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">7</container>
</did>
<bioghist id="aspace_8722a1bd869764f6dd7ec2a8ea0136d7">
<head>Biographical/Historical note</head>
<p>Abel Krum (1805-1881) was a brother of Catherine Krum Warner.</p>
</bioghist>
</c>
<c altrender="/repositories/11/archival_objects/495119"
id="ref25"
level="file">
<did>
<unittitle>Lobdell, Fanny Krum, Cherry Valley, Ohio, letter to Catherine Krum Warner and Elvira Lobdell, Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1849 February 20"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1849-02-20">1849 February 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">8</container>
</did>
<bioghist id="aspace_33417d6c36650d8f98681fa9db1ca77c">
<head>Biographical/Historical note</head>
<p>Fanny Krum Lobdell (1808-1882) was a sister of Catherine Krum Warner.</p>
<p>Elvira Lobdell (born 1834) was a daughter of Fanny Krum Lobdell and Lockwood Lobdell (born 1805).</p>
</bioghist>
</c>
<c altrender="/repositories/11/archival_objects/495120"
id="ref27"
level="file">
<did>
<unittitle>Warner, Jared Clark, Detroit, Michigan, letters to Jonathan Warner, George Washington Warner, and Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1849?, March 27</unitdate>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495121"
id="ref28"
level="file">
<did>
<unittitle>Krum, Abel, Cherry Valley, Ohio, letter to Catherine Krum Warner, Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1849 April 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1849-04-07">1849 April 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">10</container>
</did>
<bioghist id="aspace_8b229a8b7ad6a47b5171195ca18f1aed">
<head>Biographical/Historical note</head>
<p>Flora A. Krum Regal (1832-1899) was a daughter of Abel Krum and Mary Brower Krum (born 1807).</p>
</bioghist>
<scopecontent id="aspace_6fdfc434b681150541a70323822e3f5d">
<head>Scope and Contents</head>
<p>With a letter from Flora A. Krum to Catherine Krum Warner.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/495122"
id="ref31"
level="file">
<did>
<unittitle>Krum, Abel, Columbus, Ohio, letter to Jonathan Warner, Jr., and Catherine Krum Warner, Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1850 February 3"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1850-02-03">1850 February 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495123"
id="ref32"
level="file">
<did>
<unittitle>Root, Ezekiel C., Ashtabula, Ohio, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1850 March 4" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1850-03-04">1850 March 4</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495124"
id="ref33"
level="file">
<did>
<unittitle>Lobdell, Elvira, Cherry Valley, Ohio, letter to Catherine Krum Warner, Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1850 April 30" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1850-04-30">1850 April 30</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495125"
id="ref34"
level="file">
<did>
<unittitle>Warner, Jonathan ("Cousin"), Chester, Connecticut, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1850 November 18"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1850-11-18">1850 November 18</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495126"
id="ref35"
level="file">
<did>
<unittitle>Warner, Jonathan ("Cousin"), Chester, Connecticut, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1851 October 27"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1851-10-27">1851 October 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495127"
id="ref36"
level="file">
<did>
<unittitle>Warner, Matthew Griswold, Rochester, New York, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1852 January 19"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1852-01-19">1852 January 19</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">16</container>
</did>
<bioghist id="aspace_c0875a7d9dffdc834aaa137d4576ae10">
<head>Biographical/Historical note</head>
<p>Matthew Griswold Warner (1799-1884) was the son of Selden Warner (1760-1843) and Dorothy Selden Warner (1766-1825) and the city treasurer of Rochester, New York in 1847.</p>
</bioghist>
</c>
<c altrender="/repositories/11/archival_objects/495128"
id="ref38"
level="file">
<did>
<unittitle>Krum, Sarah Trowbridge, Cherry Valley, Ohio, letter to Catherine Krum Warner, Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1852 March 27" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1852-03-27">1852 March 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">17</container>
</did>
<bioghist id="aspace_fb18b948048fab3bcfb1976478573eb1">
<head>Biographical/Historical note</head>
<p>Sarah Trowbridge Krum (born 1781) was the mother of Catherine Krum Warner.</p>
</bioghist>
</c>
<c altrender="/repositories/11/archival_objects/495129"
id="ref40"
level="file">
<did>
<unittitle>Warner, George Washington, Havana, Cuba, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1852 March 30" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1852-03-30">1852 March 30</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495130"
id="ref41"
level="file">
<did>
<unittitle>Warner, George Washington, aboard ship to California, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1852 April 5" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1852-04-05">1852 April 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495131"
id="ref42"
level="file">
<did>
<unittitle>Warner, George Washington, aboard ship to California, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1852 April 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1852-04-08">1852 April 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495132"
id="ref43"
level="file">
<did>
<unittitle>Moore (later Ducro), Isabelle "Bell" Warner, West Greenville, Mercer, Pennsylvania, letter to Catherine Krum Warner, Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1852 May 12" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1852-05-12">1852 May 12</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495133"
id="ref44"
level="file">
<did>
<unittitle>Warner, George Washington, Gold Hill, California, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1852 May 23" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1852-05-23">1852 May 23</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495134"
id="ref45"
level="file">
<did>
<unittitle>Warner, George Washington, Trinidad, California, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1852 May 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1852-05-24">1852 May 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495135"
id="ref46"
level="file">
<did>
<unittitle>Miles, H. B., Madison, Wisconsin, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1852 September 19"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1852-09-19">1852 September 19</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495136"
id="ref47"
level="file">
<did>
<unittitle>Warner, George Washington, Gold Hill, California, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1852 September 28"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1852-09-28">1852 September 28</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495137"
id="ref48"
level="file">
<did>
<unittitle>Warner, George Washington, Gold Hill, California, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1852 December 11"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1852-12-11">1852 December 11</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495138"
id="ref49"
level="file">
<did>
<unittitle>Krum, Abel, Cherry Valley, Ohio, letter to Catherine Krum Warner, Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1853 January 17"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1853-01-17">1853 January 17</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495139"
id="ref50"
level="file">
<did>
<unittitle>Warner, George Washington, Gold Hill, California, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1853 September 28"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1853-09-28">1853 September 28</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495140"
id="ref51"
level="file">
<did>
<unittitle>Warner, George Washington, Salmon River, California, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1854 November 24"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1854-11-24">1854 November 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495141"
id="ref52"
level="file">
<did>
<unittitle>Warner, Francis H., Shakopee, Minnesota, letter to Jonathan Warner, Jr., and Catherine Krum Warner, Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1855 October 31"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1855-10-31">1855 October 31</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495142"
id="ref53"
level="file">
<did>
<unittitle>Warner, George Washington, Trinidad, California, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1856 December 1"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1856-12-01">1856 December 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495143"
id="ref54"
level="file">
<did>
<unittitle>Warner, George Washington, Klamath River, California, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1857 June 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1857-06-10">1857 June 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495144"
id="ref55"
level="file">
<did>
<unittitle>Warner, George Washington, Klamath River, California, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1858 July 15" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1858-07-15">1858 July 15</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495145"
id="ref56"
level="file">
<did>
<unittitle>Warner, George Washington, Klamath River, California, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1858 July 24?" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1858-07-24">1858 July 24?</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495146"
id="ref57"
level="file">
<did>
<unittitle>Warner, George Washington, Klamath River, California, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1861 July 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1861-07-03">1861 July 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref57_c2" localtype="folder" parent="aspace_ref57_c1">35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/495147"
id="ref58"
level="file">
<did>
<unittitle>Warner, Jonathan, Jr., Jefferson, Ohio, letter to the postmaster of Orleans Bar, Klamath County, California</unittitle>
<unitdatestructured altrender="1863 January 5"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1863-01-05">1863 January 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref58_c2" localtype="folder" parent="aspace_ref58_c1">36</container>
</did>
<scopecontent id="aspace_ee7d5a76556127f482fa46f2c6732562">
<head>Scope and Contents</head>
<p>Letter inquires about George Washington Warner, who had not communicated with him for over eighteen months.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/495148"
id="ref60"
level="file">
<did>
<unittitle>Jenks, Bela Whipple, postmaster, Orleans, California, letter to Jonathan Warner, Jr., Jefferson, Ohio</unittitle>
<unitdatestructured altrender="1863 February 22"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1863-02-22">1863 February 22</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref60_c2" localtype="folder" parent="aspace_ref60_c1">37</container>
</did>
<scopecontent id="aspace_db0633e9661626500c6deeb9ca9c892b">
<head>Scope and Contents</head>
<p>Letter reports that George Washington Warner, reportedly traveled to mines near Walla Walla, Washington Territory.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/495149"
id="ref62"
level="file">
<did>
<unittitle>Warner, Jonathan, Jr., Jefferson, Ohio, letter to the postmaster of Orleans Bar, Klamath County, California</unittitle>
<unitdatestructured altrender="1864 March 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1864-03-20">1864 March 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/64584 /locations/9"
containerid="39002098258214"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">38</container>
</did>
<scopecontent id="aspace_731f5223caec22e8e0a62898f34f485f">
<head>Scope and Contents</head>