-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path5467.xml
2990 lines (2990 loc) · 184 KB
/
5467.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.smithd">beinecke.smithd</recordid>
<otherrecordid localtype="BIB">12717144</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the David Smith Papers </titleproper>
<titleproper localtype="filing">Smith (David) Papers</titleproper>
<author>by Manuel J. Reimer and Sandra Markham</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>2016</date>
<num>GEN MSS 1399</num>
</publicationstmt>
<notestmt>
<controlnote localtype="offsite">
<p>Boxes: 1-14</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>completed</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2024-11-27T23:08:08-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday November 27, 2024 at 23:08</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/5467" level="collection">
<did>
<unittitle>David Smith Papers</unittitle>
<unitid>GEN MSS 1399</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>5.63</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">14 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1790">1790</fromdate>
<todate standarddate="1859">1859</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_865ef6b3333cad71c60a110a6410c708">The papers consist of a selection of David Smith's personal papers and a library of his autograph sermons dating from 1796 to 1859. The personal papers are autograph manuscripts including ten volumes of his journals, his school notes, speeches, and keys to the abbreviations he used in his writings. Also present is Smith's manuscript song book containing compositions on themes such as Bunker Hill and the death of General James Wolfe, an autograph sermon by Rev. Alexander Gillet (1749-1826), and an autograph "Articles of Faith" by Rev. Humphrey Mount Perrine (1785-1849). Smith's sermons comprise the bulk of the papers, and are arranged by numbers that he assigned, falling roughly in chronological order. Sermon themes, series, and titles are described at the folder level in the finding aid; topics include salvation, thanksgiving, singing, church discipline, sacraments, and the death of George Washington.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Smith, David, 1767-1862</part>
</persname>
</origination>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Anderson, Alexander, 1775-1870</part>
</persname>
</origination>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Gillet, Alexander, 1749-1826</part>
</persname>
</origination>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Perrine, Humphrey Mount</part>
</persname>
</origination>
</did>
<accessrestrict id="aspace_3bfc8511be36a0d9838373c585fde2e7">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<acqinfo id="aspace_bc561e810cf0ffdd0000e663567aba8f">
<head>Immediate Source of Acquisition</head>
<p>Source unknown.</p>
</acqinfo>
<arrangement id="aspace_2567b97562a4652d43fb31e4dbc79e74">
<head>Arrangement</head>
<p>Organized into two series: I. Personal Papers, 1790-1859. II. Sermons, 1796-1859.</p>
</arrangement>
<bioghist id="aspace_da02cffdf56286bfe896b6b3a4c73cac">
<head>David Smith (1767-1862, Yale 1795)</head>
<p>David Smith was born in Bozrah, New London County, Connecticut, on December 13, 1767, the son of Captain Ebenezer Smith, who had served in the American Revolution, and his wife Sarah. At age three he moved with his family to Berkshire, Massachusetts, and grew up on the family farm there. When Smith was 16 or 17 he married Betsy Marsh, and the couple had one son, David Marsh. His wife's death on August 11, 1789, inspired Smith to prepare for college, which he at first did independently and then with Rev. Jacob Catlin of New Marlborough, Massachusetts.</p>
<p>In 1792, Smith was accepted at Yale College as a sophomore and graduated three years later with the Class of 1795. Following college he taught school in Sheffield, Massachusetts, and in 1796 began study in theology with Rev. Ephraim Judson of Sheffield. Smith was licensed to preach by the Association of Berkshire County in October 1796. On February 10, 1799, he preached in Durham, Connecticut, and soon after was asked by the town to settle there as the second minister of Durham, succeeding Rev. Elizur Goodrich (1734-1797, Yale 1752). Smith married as his second wife Catharine Goodrich (1776-1845), the daughter of Rev. Goodrich.</p>
<p>In 1821 David Smith was elected one of the Fellows of Yale College, and held this position forty years until he tendered his resignation the close of the session in 1861; he was never absent from a regular meeting of the corporation. In 1830 he received an honorary Doctor of Divinity degree from Hamilton College. Smith retired from the ministry in 1833 and pursued farming. During his later years he preached occasionally in towns around Durham, and died March 5, 1862, at the home of his daughter Catherine Ellsworth in Fair Haven, Connecticut, at age 94.</p>
</bioghist>
<prefercite id="aspace_7aed914d993feef77d8cdc4b7bd94acc">
<head>Preferred Citation</head>
<p>David Smith Papers. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<processinfo id="aspace_7812e0905eb2ea89680c4e081cfb896e">
<head>Processing Information</head>
<p>Former call numbers: Z117 217, Z117 218, and Z36 268.</p>
</processinfo>
<scopecontent id="aspace_09913860430fe42e463ab093e1bfa145">
<head>Scope and Contents</head>
<p>The David Smith Papers consist of a selection of his personal papers and a library of his autograph sermons dating from 1796 to 1859. The personal papers in Series I are autograph manuscripts that include ten volumes of his journals, his school notes, speeches and addresses, and keys to the abbreviations he used in his writings. Also present is Smith's manuscript song book containing compositions on themes such as Bunker Hill and the death of General James Wolfe, an autograph sermon by Rev. Alexander Gillet (1749-1826), and an autograph "Articles of Faith" by Rev. Humphrey Mount Perrine (1785-1849).</p>
<p>Series II holds Smith's sermons, and they comprise the bulk of the papers. The manuscripts are arranged by consecutive numbers that Smith assigned, falling roughly in chronological order. Nearly all of the sermons follow the same structure and are divided into two sections. The first begins with a Bible verse as a headline; occasionally the verse is superseded by a more formal title. The section, which generally runs to ten pages, follows an interpretation of the verse. The second section (of about the same length) is introduced with a headline such as "Improvement," "Application," "Reflection," "Inferences," or "Remarks," and all sermons conclude with "Amen." Each sermon was annotated at the end with the date and place it was written, as well as where and when it was delivered; some of the sermons were delivered more than a dozen times over several decades. In addition to dates, some later sermons include a reference to Smith's own age. Many sermons also have notations on hymns or psalms on their first page or on the inside of the booklet's cover.</p>
<p>Theologically, David Smith was likely influenced by the Second Great Awakening. As is to be expected in a collection covering a lifetime of preaching, there is a wide variety of themes to be found in his sermons but some of those appearing with regularity are divine magnitude and providence, the frailty of human life, human iniquity and sin, divine law and judgment, and personal sanctification. Other categories include Thanksgiving, singing, church discipline, sacraments, and events in American history such as "the landing of our Fore-Fathers at Plymouth Dec. 22, 1620" (no. 773) and the death of George Washington (nos. 78 and 123).</p>
<p>Smith copied most of his sermons into small blank books bound with assorted of marbled, silvered, and tinted papers used as wrappers. Thirteen of the volumes bear rose-colored brocade-patterned "Dutch gilt" paper signed by Paul Reimund (or Reymund, 1763/4-1815) of Nürnberg, Germany; they are booklets beginning with sermons 547, 594, 652 (printed in brown), 663, 720 (single unlined sheet, not attached), 852, 862, 901, 931, 958, 1080, 1114, and 1842. Several binding techniques were employed, including a variety of turn-ins and a range of papers used as liners or stiffeners for the covers. In two cases the "endpapers" are repurposed illustrated ream wrappers from the paper mills of David Ames in Springfield, Massachusetts (no. 781) and William Coles in Middletown, Connecticut (no. 958). The latter features an Alexander Anderson wood engraving of a mill which was also used by Coles' contemporary, George Cox & Company of Hallowell, Maine, on a wrapper in 1826 (see John Bidwell, <title>
<part>American Paper Mills, 1690–1832</part>
</title>, 2013, page 160).</p>
</scopecontent>
<userestrict id="aspace_48506080e4415a90137a88ccc20f43af">
<head>Conditions Governing Use</head>
<p>The David Smith Papers is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<controlaccess>
<subject source="local">
<part localtype="topical">Clergy</part>
<part localtype="geographic">Connecticut</part>
</subject>
<subject source="local">
<part localtype="topical">Clergy</part>
<part localtype="geographic">Connecticut</part>
<part localtype="geographic">Durham</part>
</subject>
<subject source="local">
<part localtype="topical">Congregational churches</part>
<part localtype="geographic">Connecticut</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85031109"
source="lcsh">
<part localtype="topical">Congregational churches</part>
<part localtype="topical">Clergy</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2008101559"
source="lcsh">
<part localtype="topical">Congregational churches</part>
<part localtype="genre_form">Sermons</part>
</subject>
<subject source="local">
<part localtype="topical">Paper mills</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85120263"
source="lcsh">
<part localtype="topical">Sermons, American</part>
</subject>
<subject source="local">
<part localtype="topical">Songbooks, English</part>
<part localtype="geographic">Connecticut</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85125063"
source="lcsh">
<part localtype="topical">Songs, English</part>
</subject>
<geogname source="local">
<part localtype="geographic">Connecticut</part>
<part localtype="topical">Religion</part>
<part localtype="temporal">18th century</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Connecticut</part>
<part localtype="topical">Religion</part>
<part localtype="temporal">19th century</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Connecticut</part>
<part localtype="topical">Religious life and customs</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Durham (Conn. : Town)</part>
<part localtype="topical">Religion</part>
<part localtype="temporal">19th century</part>
</geogname>
<genreform source="local">
<part localtype="genre_form">Diaries</part>
<part localtype="geographic">Connecticut</part>
<part localtype="temporal">19th century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Ream wrappers</part>
<part localtype="geographic">Connecticut</part>
<part localtype="geographic">Middletown</part>
<part localtype="temporal">19th century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Ream wrappers</part>
<part localtype="geographic">Massachusetts</part>
<part localtype="geographic">Springfield</part>
<part localtype="temporal">19th century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Sermons</part>
<part localtype="geographic">Connecticut</part>
<part localtype="temporal">18th century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Sermons</part>
<part localtype="geographic">Connecticut</part>
<part localtype="temporal">19th century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Speeches (documents)</part>
<part localtype="geographic">Connecticut</part>
<part localtype="temporal">19th century</part>
</genreform>
<occupation source="local">
<part localtype="occupation">Clergy</part>
<part localtype="geographic">Connecticut</part>
<part localtype="geographic">Durham</part>
<part localtype="temporal">18th century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Clergy</part>
<part localtype="geographic">Connecticut</part>
<part localtype="geographic">Durham</part>
<part localtype="temporal">19th century</part>
</occupation>
<persname rules="aacr">
<part localtype="agent_person">Anderson, Alexander, 1775-1870</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Gillet, Alexander, 1749-1826</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Perrine, Humphrey Mount</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Smith, David, 1767-1862</part>
</persname>
<persname>
<part localtype="agent_person">Washington, George, 1732-1799</part>
<part localtype="topical">Death and burial </part>
</persname>
<persname>
<part localtype="agent_person">Wolfe, James, 1727-1759</part>
</persname>
<corpname rules="aacr" source="local">
<part localtype="agent_corporate_entity">Yale College (1718-1887). Class of 1795</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/2186313"
id="aspace_85d7b70ba4ec379d32e62ce82a5976a6"
level="series">
<did>
<unittitle>Personal Papers</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="1790–1859" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1790">1790</fromdate>
<todate standarddate="1859">1859</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_a9b17a14929272716e7562cb14dc4292">
<head>Scope and Contents</head>
<p>The series holds a mix of personal and professional writings by Smith, including his journals, school notes, and speeches. Also present are two writings by other preachers working in Connecticut at the time, Alexander Gillet (1749-1826) of Torrington, and Humphrey Mount Perrine (1785-1849) of Cheshire.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/2186315"
id="aspace_426d2322dc66805ff7469eded2f5f525"
level="file">
<did>
<unittitle>Story, essay, and poems</unittitle>
<unitdatestructured altrender="1790–1793" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1790">1790</fromdate>
<todate standarddate="1793">1793</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234737 /locations/9"
containerid="39002092863456"
id="aspace_426d2322dc66805ff7469eded2f5f525_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_426d2322dc66805ff7469eded2f5f525_c2"
localtype="folder"
parent="aspace_426d2322dc66805ff7469eded2f5f525_c1">1</container>
</did>
<scopecontent id="aspace_2931adaf5268eed23f4b1253faf6f715">
<head>Scope and Contents</head>
<p>Contents: "A Dialogue between a young married couple as they walked abroad in a fine summer day" ("composed after school hours at night," Canaan, 1790), "On the vanity of youth" (poem, 1792), "Reflections on the death of a most amiable companion" (essay, 1791), and two untitled poems (Yale College, 1793).</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186316"
id="aspace_e60e17d46d23aa4a5d40228026b81939"
level="file">
<did>
<unittitle>School notebook, with list of books</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/234737 /locations/9"
containerid="39002092863456"
id="aspace_e60e17d46d23aa4a5d40228026b81939_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_e60e17d46d23aa4a5d40228026b81939_c2"
localtype="folder"
parent="aspace_e60e17d46d23aa4a5d40228026b81939_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2186317"
id="aspace_d15991e65bb49d7e3963a68730063080"
level="file">
<did>
<unittitle>"Questions in Divinity Answered"</unittitle>
<unitdatestructured altrender="1794–1796" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1794">1794</fromdate>
<todate standarddate="1796">1796</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234737 /locations/9"
containerid="39002092863456"
id="aspace_d15991e65bb49d7e3963a68730063080_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_d15991e65bb49d7e3963a68730063080_c2"
localtype="folder"
parent="aspace_d15991e65bb49d7e3963a68730063080_c1">3</container>
</did>
<scopecontent id="aspace_ee07eb5d968d60913d6b40294410f54f">
<head>Scope and Contents</head>
<p>Three autograph notebooks.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186318"
id="aspace_b922f589731421ec3f13e05a52d1352e"
level="file">
<did>
<unittitle>Music book</unittitle>
<unitdatestructured altrender="circa 1795" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1795">1795</fromdate>
<todate standarddate="1795">1795</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234737 /locations/9"
containerid="39002092863456"
id="aspace_b922f589731421ec3f13e05a52d1352e_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_b922f589731421ec3f13e05a52d1352e_c2"
localtype="folder"
parent="aspace_b922f589731421ec3f13e05a52d1352e_c1">4</container>
</did>
<scopecontent id="aspace_f5bc74e0071e716642294f2ac45668f5">
<head>Scope and Contents</head>
<p>Manuscript music book, containing songs, with music for one, two, or four verses, and separate texts. Song titles include "Death of General Wolf" and "Bunker-Hill."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186319"
id="aspace_cbb28405100a54d927fc62a1938e4337"
level="file">
<did>
<unittitle>Explanation of abbreviations characters used in the writings</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/234737 /locations/9"
containerid="39002092863456"
id="aspace_cbb28405100a54d927fc62a1938e4337_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_cbb28405100a54d927fc62a1938e4337_c2"
localtype="folder"
parent="aspace_cbb28405100a54d927fc62a1938e4337_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2186320"
id="aspace_a39219d4a03b6001e705dcc117f3c098"
level="file">
<did>
<unittitle>Journals</unittitle>
<unitdatestructured altrender="1820–1859" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1820">1820</fromdate>
<todate standarddate="1859">1859</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234737 /locations/9"
containerid="39002092863456"
id="aspace_a39219d4a03b6001e705dcc117f3c098_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_a39219d4a03b6001e705dcc117f3c098_c2"
localtype="folder"
parent="aspace_a39219d4a03b6001e705dcc117f3c098_c1">6</container>
</did>
<scopecontent id="aspace_d5d9f7fb8cd3235288759023823f7d31">
<head>Scope and Contents</head>
<p>Volumes 2-11 of Smith's autograph journals into which he made entries annually on his birthday, New Year's Day, and occasionally a day in mid-summer.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186321"
id="aspace_45e307ca8437ef8e0e202953e1e0ab53"
level="file">
<did>
<unittitle>Address to Society of the Cincinnati</unittitle>
<unitdatestructured altrender="1846" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1846">1846</fromdate>
<todate standarddate="1846">1846</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234737 /locations/9"
containerid="39002092863456"
id="aspace_45e307ca8437ef8e0e202953e1e0ab53_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_45e307ca8437ef8e0e202953e1e0ab53_c2"
localtype="folder"
parent="aspace_45e307ca8437ef8e0e202953e1e0ab53_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2186322"
id="aspace_0a85d59d833ae9a2d06799825fd82982"
level="file">
<did>
<unittitle>"A charge"</unittitle>
<unitdatestructured altrender="1848" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1848">1848</fromdate>
<todate standarddate="1848">1848</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234737 /locations/9"
containerid="39002092863456"
id="aspace_0a85d59d833ae9a2d06799825fd82982_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_0a85d59d833ae9a2d06799825fd82982_c2"
localtype="folder"
parent="aspace_0a85d59d833ae9a2d06799825fd82982_c1">8</container>
</did>
<scopecontent id="aspace_d1cc4eb05270093e4079e7114655ff75">
<head>Scope and Contents</head>
<p>Address written for the ordination of Rev. James R. Mershan, April 28, 1848.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186323"
id="aspace_ed7bf11f15f7105c45fe2813a4f214ad"
level="file">
<did>
<unittitle>"A Confession of Faith Covenant"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/234737 /locations/9"
containerid="39002092863456"
id="aspace_ed7bf11f15f7105c45fe2813a4f214ad_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ed7bf11f15f7105c45fe2813a4f214ad_c2"
localtype="folder"
parent="aspace_ed7bf11f15f7105c45fe2813a4f214ad_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2186324"
id="aspace_1a29a00c033f6fffcfd5703dc3d6c792"
level="file">
<did>
<unittitle>"Corner stone"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/234737 /locations/9"
containerid="39002092863456"
id="aspace_1a29a00c033f6fffcfd5703dc3d6c792_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_1a29a00c033f6fffcfd5703dc3d6c792_c2"
localtype="folder"
parent="aspace_1a29a00c033f6fffcfd5703dc3d6c792_c1">10</container>
</did>
<scopecontent id="aspace_a3603c2b3dfb18b748b7ed1df327543d">
<head>Scope and Contents</head>
<p>Two autograph notebooks, one possibly the text of Smith's address delivered at the laying of the corner stone of the third meeting house in Durham, July 17, 1835.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186325"
id="aspace_fd25ccd3e754e913922443cb104d1b83"
level="file">
<did>
<unittitle>"The importance of early cultivation improvement of the mind"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/234737 /locations/9"
containerid="39002092863456"
id="aspace_fd25ccd3e754e913922443cb104d1b83_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_fd25ccd3e754e913922443cb104d1b83_c2"
localtype="folder"
parent="aspace_fd25ccd3e754e913922443cb104d1b83_c1">11</container>
</did>
<scopecontent id="aspace_74e807e7a15ccae279e22974eb310081">
<head>Scope and Contents</head>
<p>Address given at an unidentified "Lyceum."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186326"
id="aspace_9a2572282ab0a90addb4cf5309e2949b"
level="file">
<did>
<unittitle>"A natural curiosity"</unittitle>
<unitdatestructured altrender="circa 1791" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1791">1791</fromdate>
<todate standarddate="1791">1791</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234737 /locations/9"
containerid="39002092863456"
id="aspace_9a2572282ab0a90addb4cf5309e2949b_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_9a2572282ab0a90addb4cf5309e2949b_c2"
localtype="folder"
parent="aspace_9a2572282ab0a90addb4cf5309e2949b_c1">12</container>
</did>
<scopecontent id="aspace_ff6a3880da01bd58a338eff1c1c91295">
<head>Scope and Contents</head>
<p>Autograph notes on a cave near South Marlborough, Massachusetts.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186327"
id="aspace_d7587c3853772ae8db6af3348bd8aeba"
level="file">
<did>
<unittitle>"Regeneration the work of God"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/234737 /locations/9"
containerid="39002092863456"
id="aspace_d7587c3853772ae8db6af3348bd8aeba_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_d7587c3853772ae8db6af3348bd8aeba_c2"
localtype="folder"
parent="aspace_d7587c3853772ae8db6af3348bd8aeba_c1">13</container>
</did>
<scopecontent id="aspace_f6cac2ff3ff5a773ba729101508138f6">
<head>Scope and Contents</head>
<p>Written for publication in the <title>
<part>American Preacher</part>
</title>.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186328"
id="aspace_320725ee731e8843468032014d8e8bbb"
level="file">
<did>
<unittitle>Miscellaneous notes</unittitle>
<unitdatestructured altrender="1793–1810" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1793">1793</fromdate>
<todate standarddate="1810">1810</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234737 /locations/9"
containerid="39002092863456"
id="aspace_320725ee731e8843468032014d8e8bbb_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_320725ee731e8843468032014d8e8bbb_c2"
localtype="folder"
parent="aspace_320725ee731e8843468032014d8e8bbb_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2186329"
id="aspace_924730dcb886a8f9a1940179978da54a"
level="file">
<did>
<unittitle>Sermon by Alexander Gillet</unittitle>
<unitdatestructured altrender="1809 September 24"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1809">1809</fromdate>
<todate standarddate="1809">1809</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234737 /locations/9"
containerid="39002092863456"
id="aspace_924730dcb886a8f9a1940179978da54a_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_924730dcb886a8f9a1940179978da54a_c2"
localtype="folder"
parent="aspace_924730dcb886a8f9a1940179978da54a_c1">15</container>
</did>
<scopecontent id="aspace_8cba91055df4dc3ab4574e69cab60125">
<head>Scope and Contents</head>
<p>Autograph sermon by Rev. Alexander Gillet of Torrington, Connecticut; annotated by Smith: "This is a sermon of Rev. Mr. Gillet father of Rev. Timothy Gillet of Branford. -- A Curiosity."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186330"
id="aspace_49edac1efc4751e53e93be5ecabeb71a"
level="file">
<did>
<unittitle>"Articles of Faith" by Humphrey Mount Perrine</unittitle>
<unitdatestructured altrender="1815 June 15" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1815">1815</fromdate>
<todate standarddate="1815">1815</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234737 /locations/9"
containerid="39002092863456"
id="aspace_49edac1efc4751e53e93be5ecabeb71a_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_49edac1efc4751e53e93be5ecabeb71a_c2"
localtype="folder"
parent="aspace_49edac1efc4751e53e93be5ecabeb71a_c1">16</container>
</did>
<scopecontent id="aspace_c011be1493a97003e107e644cff2c4aa">
<head>Scope and Contents</head>
<p>Autograph articles signed and dated by Rev. Perrine in Cheshire, Connecticut.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186331"
id="aspace_a3d376a3f312cdaa53dea2340d1e07d2"
level="file">
<did>
<unittitle>Sermon in unidentified hand</unittitle>
<unitdatestructured altrender="1834" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1834">1834</fromdate>
<todate standarddate="1834">1834</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234737 /locations/9"
containerid="39002092863456"
id="aspace_a3d376a3f312cdaa53dea2340d1e07d2_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_a3d376a3f312cdaa53dea2340d1e07d2_c2"
localtype="folder"
parent="aspace_a3d376a3f312cdaa53dea2340d1e07d2_c1">17</container>
</did>
<scopecontent id="aspace_c1b0227a8c4478623ef43cdbd494c2cf">
<head>Scope and Contents</head>
<p>"Lamentations 1. 6. written over in part 1834"</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2186314"
id="aspace_334074e04e7c9c8225466b5e3e241610"
level="series">
<did>
<unittitle>Sermons</unittitle>
<unitid>Series II</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>5.21</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">13 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1796">1796</fromdate>
<todate standarddate="1859">1859</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_af17d13ce971ac9ba3a208b1c05edddb">
<head>Scope and Contents</head>
<p>The first subseries, Numbered Sermons, holds texts numbered from 1 to 1179. Generally, and with only few exceptions, the enumeration follows a chronological order determined by the date of composition. Sermons numbered 1-513 are organized chronologically, and were bound singly or in pairs. These pairs seem to have been conceived as one longer sermon, the first part to be preached in the morning, the second in the afternoon; however, they do have separate numbers. Sermons numbered 513-1179 were copied into booklets with four to eight sermons in each. These booklets often have a theme, and while the chronological order is kept within the booklets, it varies overall due to this thematical ordering. Many booklets do not have a title and their nature is still to be determined. Recurring categories are: "Sacramental," "Funeral Discourses," Thanksgiving sermons, Fasting sermons, and New Year sermons.</p>
<p>The second subseries holds a collection of sermons bound together as "Discourses on Salvation." The third subseries, Other Writings, contains unnumbered sermons (also in booklets), special sermons which do not follow the general sermon structure, as well as notes and fragments. Some booklets have further notations on the cover, the most frequent being "B" or "Bene."</p>
<p>David Smith preached most sermons more than once, generally three to five times, but some were delivered up to twenty times. The dates and places of each ministry are noted at the end of each sermon. Many sermons were used even decades after they were written, and some (see Box 12, folder 89, as an example) were preached earlier than they were copied into a booklet.</p>
<p>When specific titles or themes are present on the sermons they are mentioned below. {Brackets around numbers} indicate a group of sermons that are bound together in one booklet. A key to the abbreviations and symbols that Smith used throughoutin his writings is in Series I, Box 1, folder 5.</p>
</scopecontent>
<arrangement id="aspace_9ae3769edf7d305243db8bfe2c42b347">
<head>Arrangement</head>
<p>Organized into three subseries: Numbered Sermons, Discourses on Salvation, and Other Sermons.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/2186332"
id="aspace_6e3b52a609c96df7f85c5cd00a95355d"
level="subseries">
<did>
<unittitle>Numbered Sermons</unittitle>
</did>
<scopecontent id="aspace_342e8f325a3c53bbd87977d65ef276c9">
<head>Scope and Contents</head>
<p>Smith numbered his sermons consistently from 1796 through 1825. Some numbers were assigned twice but the texts are different, and approximately thirty sermons were not numbered at all. Many sermons are missing from the collection; some were intentionally excised from their booklets.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/2186335"
id="aspace_84fd248feaedc0d7e4b784f9a3d448a7"
level="file">
<did>
<unittitle>Nos. 1-2, 8-9, 15-17</unittitle>
<unitdatestructured altrender="1796–1797" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1796">1796</fromdate>
<todate standarddate="1797">1797</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234738 /locations/9"
containerid="39002092863464"
id="aspace_84fd248feaedc0d7e4b784f9a3d448a7_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_84fd248feaedc0d7e4b784f9a3d448a7_c2"
localtype="folder"
parent="aspace_84fd248feaedc0d7e4b784f9a3d448a7_c1">18</container>
</did>
<scopecontent id="aspace_be86f16481ddbb0d86c49de2b7988733">
<head>Scope and Contents</head>
<p>2: includes note: "These were the first sermons I ever preached." 1-2, 8-9, and 16-17 are paired sermons.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186336"
id="aspace_1ec343cd12e24cde54b67b2a4bd0acfe"
level="file">
<did>
<unittitle>Nos. 25, 27, 30, 35, 42-43</unittitle>
<unitdatestructured altrender="1797–1798" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1797">1797</fromdate>
<todate standarddate="1798">1798</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234738 /locations/9"
containerid="39002092863464"
id="aspace_1ec343cd12e24cde54b67b2a4bd0acfe_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_1ec343cd12e24cde54b67b2a4bd0acfe_c2"
localtype="folder"
parent="aspace_1ec343cd12e24cde54b67b2a4bd0acfe_c1">19</container>
</did>
<scopecontent id="aspace_a5f6a93240ba678dcb906920a98adca7">
<head>Scope and Contents</head>
<p>42-43 are paired sermons.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186337"
id="aspace_e7d976f65a61914e1ec7a271af383b1d"
level="file">
<did>
<unittitle>Nos. 46-47, 78, 84</unittitle>
<unitdatestructured altrender="1798–1800" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1798">1798</fromdate>
<todate standarddate="1800">1800</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234738 /locations/9"
containerid="39002092863464"
id="aspace_e7d976f65a61914e1ec7a271af383b1d_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_e7d976f65a61914e1ec7a271af383b1d_c2"
localtype="folder"
parent="aspace_e7d976f65a61914e1ec7a271af383b1d_c1">20</container>
</did>
<scopecontent id="aspace_2d1a93e7e5902ffb4aa2e105e3b929c2">
<head>Scope and Contents</head>
<p>46-47 are paired sermons. 78: "A sermon on the death of General Washington."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186338"
id="aspace_8efa651450783d3a43c6e37fd3fa4d29"
level="file">
<did>
<unittitle>Nos. 101-108</unittitle>
<unitdatestructured altrender="1800" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1800">1800</fromdate>
<todate standarddate="1800">1800</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234738 /locations/9"
containerid="39002092863464"
id="aspace_8efa651450783d3a43c6e37fd3fa4d29_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_8efa651450783d3a43c6e37fd3fa4d29_c2"
localtype="folder"
parent="aspace_8efa651450783d3a43c6e37fd3fa4d29_c1">21</container>
</did>
<scopecontent id="aspace_0239975492eeda7da22617ff19f59279">
<head>Scope and Contents</head>
<p>101-108 are a series titled "The truth of scripture vindicated."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186339"
id="aspace_9632f1f225b9f4f4ea451ea883242c64"
level="file">
<did>
<unittitle>Nos. 111, 113, 116, 121, 123, 126 (2), 130-131</unittitle>
<unitdatestructured altrender="1800–1801" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1800">1800</fromdate>
<todate standarddate="1801">1801</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234738 /locations/9"
containerid="39002092863464"
id="aspace_9632f1f225b9f4f4ea451ea883242c64_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_9632f1f225b9f4f4ea451ea883242c64_c2"
localtype="folder"
parent="aspace_9632f1f225b9f4f4ea451ea883242c64_c1">22</container>
</did>
<scopecontent id="aspace_83d1ada88bba2e33231aa649f1c719db">
<head>Scope and Contents</head>
<p>123: "Sacramental"; 126: On the turn of the century, titled "A Century Sermon" (preached on January 1, 1801) contains a reference to George Washington; 130-131 are paired sermons titled: "Prayer a duty, important & beneficient."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186340"
id="aspace_092674b7bba4b7474bac0711a6f39d7e"
level="file">
<did>
<unittitle>Nos. {140-141}, 146, 153-154, {173-174}, {175-176}, {177-178}, 183, {191-192}, {195-196}, {199-200}</unittitle>
<unitdatestructured altrender="1801–1802" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1801">1801</fromdate>
<todate standarddate="1802">1802</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234738 /locations/9"
containerid="39002092863464"
id="aspace_092674b7bba4b7474bac0711a6f39d7e_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_092674b7bba4b7474bac0711a6f39d7e_c2"
localtype="folder"
parent="aspace_092674b7bba4b7474bac0711a6f39d7e_c1">23</container>
</did>
<scopecontent id="aspace_937c2db653a59d10381ce9a6cdd503c2">
<head>Scope and Contents</head>
<p>140-141: "A Sermon for Fast"; 146: "Sacramental"; 153: "Sinners Threatened"; 154: "Christ the end of the Law" ; 173-174: "The wickedness of confounding good & evil"; 175-178: [series] numbered "Discourse" 1-4; 183: "Sacramental"; 191-192: "Fast Sermon."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186341"
id="aspace_eb352327995996a71ded7b841014e765"
level="file">
<did>
<unittitle>Nos. {201-202}, 213, 221, {223-224}, {225-226}, 227, 243, {253-254}, 255, 269, {270-271}, 278, {284-285}, 288, {289-290}, {292-293}, 297</unittitle>
<unitdatestructured altrender="1802–1805" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1802">1802</fromdate>
<todate standarddate="1805">1805</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234738 /locations/9"
containerid="39002092863464"
id="aspace_eb352327995996a71ded7b841014e765_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_eb352327995996a71ded7b841014e765_c2"
localtype="folder"
parent="aspace_eb352327995996a71ded7b841014e765_c1">24</container>
</did>
<scopecontent id="aspace_1b766045604c7d9d2c5106276f8c1b30">
<head>Scope and Contents</head>
<p>213: "A Thanksgiving Sermon"; 221: "Funeral Discourse"; 225-226: "A Fast Sermon"; 227: "For Contribution"; 243: "Sacramental"; 253-254: "A Fast Sermon"; 255: "A Sermon preparatory to Ordination"; 270-271: "The critical state of God's chosen people"; 284-285: "The Last Times"; 288: "Sacramental"; 289-290: "Sacramental"; 297: "For Contribution."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186342"
id="aspace_104417e5c5c0f44cea1ca5ef417c6856"
level="file">
<did>
<unittitle>Nos. {325-326}, {348-349}, 351, 358, 366, 369, {373-374}, 378, 382, {385-386}, 387-388, 394, 396, 396</unittitle>
<unitdatestructured altrender="1806–1807" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1806">1806</fromdate>
<todate standarddate="1807">1807</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234739 /locations/9"
containerid="39002092863472"
id="aspace_104417e5c5c0f44cea1ca5ef417c6856_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_104417e5c5c0f44cea1ca5ef417c6856_c2"
localtype="folder"
parent="aspace_104417e5c5c0f44cea1ca5ef417c6856_c1">25</container>
</did>
<scopecontent id="aspace_f1cab0dac1d994fc9c63ab0bed285c48">
<head>Scope and Contents</head>
<p>358: "Sacramental"; 366: "Sacramental"; 369: "A Thanksgiving Discourse"; 388: "On Church discipline"; no. 396 used twice but different texts, first "Communion" and second "On singing."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186343"
id="aspace_acb3186054958b6092023c2b3a3102fc"
level="file">
<did>
<unittitle>Nos. 400, {401-402}, 403, {411-412}, 414, {421-422}, 431-432, 436, 439, {443-444}, 445</unittitle>
<unitdatestructured altrender="1807–1809" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1807">1807</fromdate>
<todate standarddate="1809">1809</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234739 /locations/9"
containerid="39002092863472"
id="aspace_acb3186054958b6092023c2b3a3102fc_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_acb3186054958b6092023c2b3a3102fc_c2"
localtype="folder"
parent="aspace_acb3186054958b6092023c2b3a3102fc_c1">26</container>
</did>
<scopecontent id="aspace_a47d86b8722d710c9eeea8f179c4e8d0">
<head>Scope and Contents</head>
<p>400: "Sacramental"; 403: "Sacramental"; 414: "Family Government"; 421-422: "Fast Sermon"; 431: "Sacramental"; 445: "Sacramental."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186344"
id="aspace_a1be710d0154aebdc04b9f4708670dfb"
level="file">
<did>
<unittitle>Nos. {446-447, 451-455}, {448-449}, 450, 456, {457-458}, 463, 466, 471, 473, 483, 495-498</unittitle>
<unitdatestructured altrender="1809–1810" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1809">1809</fromdate>
<todate standarddate="1810">1810</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234739 /locations/9"
containerid="39002092863472"
id="aspace_a1be710d0154aebdc04b9f4708670dfb_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_a1be710d0154aebdc04b9f4708670dfb_c2"
localtype="folder"
parent="aspace_a1be710d0154aebdc04b9f4708670dfb_c1">27</container>
</did>
<scopecontent id="aspace_e47b8813c3a2842720f93d2ed34691e4">
<head>Scope and Contents</head>
<p>448-449: "A Fast Sermon"; 450: "A Funeral Sermon"; 457-458: "Harvest"; 466: "Sacramental"; 471: "Funeral Sermon"; 483: "Sacramental"; 497: "A Thanksgiving Sermon."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2186345"
id="aspace_e83d059d1598f4e1045cc747f6396845"
level="file">
<did>
<unittitle>Nos. 500, 509-510, {511-512}, 513, {516-518, 525-526}, 519</unittitle>
<unitdatestructured altrender="1810–1811" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1810">1810</fromdate>
<todate standarddate="1811">1811</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/234739 /locations/9"
containerid="39002092863472"
id="aspace_e83d059d1598f4e1045cc747f6396845_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_e83d059d1598f4e1045cc747f6396845_c2"
localtype="folder"
parent="aspace_e83d059d1598f4e1045cc747f6396845_c1">28</container>
</did>
<scopecontent id="aspace_de95dd4bc1bd46f60ebf26cd210f2449">