-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path728.xml
7484 lines (7484 loc) · 438 KB
/
728.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.watson">beinecke.watson</recordid>
<otherrecordid localtype="BIB">4506585</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the William Watson Collection
</titleproper>
<titleproper localtype="filing">Watson (William) Collection</titleproper>
<author>by Karen M. Spicher</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>April 2000</date>
<num>GEN MSS 460</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">4506585</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-12, 15</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 13-14, Bsd, folder 397-Bsd, folder 398</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="2">2</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="428">428</num> digital files.</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>beinecke manuscript unit archival processing manual</abbr>
<citation>translation missing: en.enumerations.resource_finding_aid_description_rules.beinecke manuscript unit archival processing manual</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:32:32-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday January 8, 2025 at 23:32</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/728" level="collection">
<did>
<unittitle>William Watson collection</unittitle>
<unitid>GEN MSS 460</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>9.6</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">15 boxes + 2 broadside</physdesc>
<unitdatestructured altrender="1867-1952" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1867">1867</fromdate>
<todate standarddate="1952">1952</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_c38b457eb7380af8194863fa29a3fc71">Chiefly correspondence, including original letters and typed transcripts to and from William Watson and other letters and transcripts concerning him; and holograph writings by Watson, including a holograph of Wordsworth's Grave and Other Poems, many single poems, and a smaller amount of other poetry collections, prose writings, and music.<lb/>Also included are personal papers of William Watson; papers of Maureen Pring Watson, including drafts of a biography of her husband; photograph portraits of William Watson, Maureen Pring Watson, and other family members; and other photographs, drawings, and printed material. Also present are a small amount of papers relating to research on William Watson by John Alexander Symington, R. W. D. Holland, and Walter E. Swayze.<lb/>Correspondence includes a large number of letters from William Watson to Maureen Pring Watson and to publisher John Lane. Watson's personal papers include a group of letters and documents concerning his brother Robinson Watson. Most other correspondence concerns Watson's writing and relations with his publishers; also discussed are his views on literature, his interest in his literary reputation, and his family, friendships, and social engagements.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Watson, William, 1858-1935</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_20d5bff76cfc11af4520e3634fa89784">
<head>Immediate Source of Acquisition</head>
<p>Ongoing collection of documents acquired by gift and purchase from various sources. Source information is recorded in the finding aid or on the folders. For further information, consult the appropriate curator.</p>
</acqinfo>
<userestrict id="aspace_9fd4ee8ef4fdc9e658ed9c79c735af08">
<head>Conditions Governing Use</head>
<p>The William Watson Collection is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<prefercite id="aspace_3c31d87a7bb25bd19dcdc7c1deda67a2">
<head>Preferred Citation</head>
<p>William Watson Collection. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<accessrestrict id="aspace_1c859b9f77dd5ce93b3ddbc2c55e5302">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Box 15: Restricted Fragile. Reference surrogates have been substituted in the main files. For further information consult the appropriate curator.</p>
</accessrestrict>
<processinfo id="aspace_1460d1a9ed41a8749b2f80dd59f42129">
<head>Processing Information</head>
<p>Parts of this finding aid were produced from previously existing cards in the Manuscripts Card Catalog. All pertinent bibliographic information has been retained. This finding aid is updated periodically to account for new materials that have been added to the collection. The date of the most recent update is noted on the title page. For information on material that may have been acquired for the collection since the last update, please consult the Public Service Desk.</p>
</processinfo>
<bioghist id="aspace_109e5a18d5756f2118bfcae01c8a00c9">
<head>WILLIAM WATSON (1858-1935)</head>
<p>The English poet Sir William Watson was the author of <title localtype="simple" render="italic">
<part>Wordsworth's Grave and Other Poems</part>
</title> (1890), <title localtype="simple" render="italic">
<part>Lachrymae Musarum</part>
</title>, written on the death of Alfred, Lord Tennyson (1892), <title localtype="simple" render="italic">
<part>Ode on the Day of the Coronation of King Edward VII</part>
</title> (1902), and other political and occasional poems, poetry collections, and prose writings. Watson married Maureen Pring in 1909, and he was knighted in 1917. After her husband's death, Maureen Pring Watson lived in South Africa and the United States.</p>
</bioghist>
<scopecontent id="aspace_ddfdbcc09f1eb1b50a5c86a33c206380">
<head>Scope and Contents</head>
<p>This finding aid encompasses accessions of single manuscripts and small groups of manuscripts and other papers, by or pertaining to William Watson, acquired by the library from a variety of sources. Materials incorporated into the collection prior to March 2000 have been organized into four series. Additions since March 2000 have been placed in Series V.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref12">Series I, <title localtype="simple" render="italic">
<part>John Alexander Symington Purchase</part>
</title>
</ref>, consists of three subseries: William Watson Correspondence, Writings by William Watson, and John Alexander Symington Papers Concerning William Watson. Correspondence consists mostly of typed transcriptions of letters. Some transcripts are identified as prepared by John Alexander Symington. Writings are mostly poems; also present are a few prose and musical works. Symington's papers concern his purchase and sale of Watson letters and manuscripts.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref92">Series II, <title localtype="simple" render="italic">
<part>Maureen Pring Watson Gift</part>
</title>
</ref>, consists of eight subseries: William Watson Correspondence, Writings by William Watson, Music by William Watson, William Watson Personal Papers, Maureen Pring Watson Papers, Printed Material, Drawings, and Photographs. The William Watson Correspondence includes letters from William to Maureen Pring Watson, typed transcripts of letters to John Lane, and other original and typed transcripts of letters to and from Watson or concerning him. Writings by William Watson include poetry collections, prose works, and a large number of single poems. Also present are inscribed title pages cut from many of his published works. Music by William Watson consists of song settings of Watson's poems for voice and piano and a few hymns and pieces for piano solo. Most song settings were composed by Watson; a few were composed by others on Watson's texts. The William Watson Personal Papers include correspondence and legal documents relating to his brother Robinson Watson and a libel case pursued against him by William Watson. Also present are other personal legal documents and several locks of hair of William and Maureen Pring Watson. The Maureen Pring Watson Papers consist of two drafts of her biography of her husband titled "England, Are You Proud?," and a small amount of correspondence and other papers, including letters from Walter E. Swayze concerning his research for a dissertation on Watson and documents relating to Maureen Pring Watson's residence in the United States after her husband's death. Printed Material consists mostly of clippings concerning Watson, with a few newspaper broadside advertisements and other materials. Most Drawings and Photographs are portraits of William or Maureen Pring Watson. Also present are photographs of other members of the Watson and Pring families. Many photographs are annotated on the verso by Maureen Pring Watson.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref511">Series III, <title localtype="simple" render="italic">
<part>George S. MacManus Purchase</part>
</title>
</ref>, consists of four subseries: William Watson Correspondence, Other Correspondence Concerning William Watson, a small subseries of Writings by William Watson, mostly poems, and a small subseries of R. W. D. Holland Papers Concerning William Watson. Holland's papers relate to his research on Watson and include correspondence concerning the life of Maureen Pring Watson after her husband's death.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref566">Series IV, <title localtype="simple" render="italic">
<part>Materials From Other Sources</part>
</title>
</ref>, consists of three subseries: Correspondence of William Watson, Poems by William Watson, and Other William Watson Papers. Poems include a holograph of <title localtype="simple" render="italic">
<part>Wordsworth's Grave and Other Poems</part>
</title>.</p>
<p>In all series, most correspondence of William Watson concerns his writing and relations with his publishers; also discussed are his views on literature, his own literary reputation, and family, friendships, and social engagements. In addition to correspondents listed in folder titles, other correspondents represented in typed transcripts in Series I and II include Arthur James Balfour, Earl of Balfour, David Beatty, Earl Beatty, Arthur Christopher Benson, Augustine Birrell, Robert Seymour Bridges, Herbert Gardner, Baron Burghclere, Sir Hall Caine, Edward Henry Carson, Baron Carson, Austin Dobson, John Drinkwater, Alfred Hayes, William Holman Hunt, Richard Holt Hutton, Richard Le Gallienne, Justin Huntly McCarthy, George Meredith, John Morley, Coventry Kersey Dighton Patmore, Sir Arthur Thomas Quiller-Couch, Clement King Shorter, Thomas Humphry Ward, Sir Thomas Herbert Warren, and Robinson Watson.</p>
<p>Literary manuscripts appearing in all series are holographs, mostly drafts with corrections, unless otherwise described in folder titles. Multiple copies of single poems within a series are indicated in folder titles and may include variant versions. Additional versions of single poems may be appear as part of collections of poems, in clippings, enclosed with letters, or as single poems in other series.</p>
</scopecontent>
<controlaccess>
<subject source="local">
<part localtype="topical">Authors and publishers</part>
<part localtype="geographic">England</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85103785"
source="lcsh">
<part localtype="topical">Poets, English</part>
</subject>
<genreform identifier="http://vocab.getty.edu/aat/300026823" source="aat">
<part localtype="genre_form">Visiting cards</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300127104" source="aat">
<part localtype="genre_form">Photographic prints</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300134759" source="aat">
<part localtype="genre_form">Tintypes (prints)</part>
</genreform>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2003011484"
source="lcsh">
<part localtype="topical">Poets, English</part>
<part localtype="temporal">20th Century</part>
</subject>
<persname rules="aacr" source="local">
<part localtype="agent_person">Holland, R. W. D.</part>
</persname>
<persname>
<part localtype="agent_person">Lane, John, 1854-1925</part>
</persname>
<persname source="local">
<part localtype="agent_person">Swayze, Walter Eugene</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Symington, John Alexander, 1887-1961</part>
</persname>
<persname source="local">
<part localtype="agent_person">Watson, Maureen Pring</part>
</persname>
<persname source="local">
<part localtype="agent_person">Watson, Robinson</part>
</persname>
<persname>
<part localtype="agent_person">Watson, William, 1858-1935</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/226323"
id="ref12"
level="series">
<did>
<unittitle>John Alexander Symington Purchase</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="1880-1948" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1880">1880</fromdate>
<todate standarddate="1948">1948</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_158d5d74603f0ef2429b8e24f6912d95">
<head>Scope and Contents</head>
<p>Purchased from John Alexander Symington on the Plain Fund, 1948.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/226324"
id="ref14"
level="subseries">
<did>
<unittitle>WILLIAM WATSON CORRESPONDENCE</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/226325"
id="ref15"
level="subseries">
<did>
<unittitle>Transcriptions of Letters From WW</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/226326"
id="ref16"
level="file">
<did>
<unittitle>Clodd, Edward, letters dated 1892-1900, n.d.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226327"
id="ref17"
level="file">
<did>
<unittitle>Gosse, Edmund, letters dated 1891-1917, n.d.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226328"
id="ref18"
level="file">
<did>
<unittitle>Lane, John, letters dated 1906-16</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226329"
id="ref19"
level="file">
<did>
<unittitle>Watts-Dunton, Theodore, letter dated 1910</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">4</container>
</did>
<scopecontent id="aspace_ef690bb61aed9d1653e315f63fbfac42">
<head>Scope and Contents</head>
<p>Accompanied by correspondence of TWD and "Henry"</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/226330"
id="ref21"
level="subseries">
<did>
<unittitle>Other Letters Concerning WW</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/226331"
id="ref22"
level="file">
<did>
<unittitle>ALS from James Bryce, Viscount Bryce, to WW</unittitle>
<unitdatestructured altrender="1901 Jul 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1901-07-20">1901 Jul 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226332"
id="ref23"
level="file">
<did>
<unittitle>ALS from A. E. Housman to F. C. Owlett</unittitle>
<unitdatestructured altrender="1930 Oct 30" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1930-10-30">1930 Oct 30</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226333"
id="ref24"
level="file">
<did>
<unittitle>"A Collection of Literary Letters Addressed to Sir William Watson," typed transcripts</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226334"
id="ref25"
level="file">
<did>
<unittitle>"The Correspondence of Sir Edmund Gosse ... Concerning Sir William Watson ...," typed typescripts</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
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>
<scopecontent id="aspace_263c5f1bbe12c26c6511ce2237246334">
<head>Scope and Contents</head>
<p>Transcripts, prepared by John Alexander Symington</p>
</scopecontent>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/226335"
id="ref27"
level="subseries">
<did>
<unittitle>WRITINGS BY WILLIAM WATSON</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/226336"
id="ref28"
level="subseries">
<did>
<unittitle>Poems</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/226337"
id="ref29"
level="file">
<did>
<unittitle>"Averted Doom"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226338"
id="ref30"
level="file">
<did>
<unittitle>"The Congress of the Bards," galley proof</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<physloc id="aspace_25c99ed42213056614425ef9ec063df0">Stored in: Oversize, Box 13, folder 381</physloc>
</did>
<scopecontent id="aspace_6e30be1c52a8f64b872850c8ebf65352">
<head>Scope and Contents</head>
<p>Also titled: "The Battle of the Bards"</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/226339"
id="ref33"
level="file">
<did>
<unittitle>"The Dream of Man," bound in a volume</unittitle>
<unitdatestructured altrender="[1891]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1891">[1891]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">10</container>
</did>
<scopecontent id="aspace_8bc215a6073464ddb2e229312e33fa1d">
<head>Scope and Contents</head>
<p>With an ALS and presentation inscription from Edmund Gosse to Charles Benjamin Foote, 1893</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/226340"
id="ref35"
level="file">
<did>
<unittitle>"Edenhunger"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<physloc id="aspace_c13e57f741e808875b5ff5654c8481ca">Stored in: Oversize, Box 13, folder 381</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226341"
id="ref37"
level="file">
<did>
<unittitle>"Epitaph," "Loves and Hates," and "On a Deceased Author"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226342"
id="ref38"
level="file">
<did>
<unittitle>"For England" (2 copies)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226343"
id="ref39"
level="file">
<did>
<unittitle>"The Husbandman of Heaven (Lines Written Near the Burial-Place of Burns)"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<physloc id="aspace_992ecf9eb1e7d87e15624caf6a3af93e">Stored in: Oversize, Box 13, folder 381</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226344"
id="ref41"
level="file">
<did>
<unittitle>"I Care Not"</unittitle>
</did>
<relatedmaterial id="aspace_189fb5216f0aa490a051eb254e0d3982">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref645">See: Music, Oversize, Box 12, folder 369</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/226345"
id="ref43"
level="file">
<did>
<unittitle>"Kate Barlass"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226346"
id="ref44"
level="file">
<did>
<unittitle>"The King Without Peer"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226347"
id="ref45"
level="file">
<did>
<unittitle>"The Lighthouse of Love"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.y. Jul 31</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226348"
id="ref46"
level="file">
<did>
<unittitle>"Loves and Hates"</unittitle>
</did>
<relatedmaterial id="aspace_4731652d27d95f245709d490c1fe12bb">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref37">See: "Epitaph," Box 1, folder 11</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/226349"
id="ref48"
level="file">
<did>
<unittitle>"Nature's Way"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<physloc id="aspace_43d7f04a550dba9414b2a883ed9c162a">Stored in: Oversize, Box 13, folder 381</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226350"
id="ref50"
level="file">
<did>
<unittitle>"On a Deceased Author"</unittitle>
</did>
<relatedmaterial id="aspace_8b480eed5f3989391483db440404a6a0">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref37">See: "Epitaph," Box 1, folder 11</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/226351"
id="ref52"
level="file">
<did>
<unittitle>"On Coleridge's Christabel"</unittitle>
<unitdatestructured altrender="ca. 1880" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1880">ca. 1880</datesingle>
</unitdatestructured>
<physloc id="aspace_7115a5c366bc1ef43bfaea7543b2c2a8">Stored in: Oversize, Box 13, folder 381</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226352"
id="ref54"
level="file">
<did>
<unittitle>"A Patriot's Prayer," typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226353"
id="ref55"
level="file">
<did>
<unittitle>"The Playmates"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226354"
id="ref56"
level="file">
<did>
<unittitle>"A Portrait," about Sir Hall Caine and Dante Gabriel Rossetti</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226355"
id="ref57"
level="file">
<did>
<unittitle>"Rapture"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<physloc id="aspace_0c46846e2e207d757c79f0a38b379f1b">Stored in: Oversize, Box 13, folder 381</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226356"
id="ref59"
level="file">
<did>
<unittitle>"Reims"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<physloc id="aspace_bbe8fe4777c9a7d21f4048e7c2f28efe">Stored in: Oversize, Box 13, folder 381</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226357"
id="ref61"
level="file">
<did>
<unittitle>"Retrogression"</unittitle>
<unitdatestructured altrender="1915" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1915">1915</datesingle>
</unitdatestructured>
<physloc id="aspace_6ff1fad706cb9500e0ce689d1742fa7c">Stored in: Oversize, Box 13, folder 381</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226358"
id="ref63"
level="file">
<did>
<unittitle>"The Sexes of Song"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<physloc id="aspace_6f377abac1cfe518d3cdfb82d6d294e3">Stored in: Oversize, Box 13, folder 381</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226359"
id="ref65"
level="file">
<did>
<unittitle>"Sonnet Written in Mr. Sidney Lee's Life of Shakespeare"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref65_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref65_c2" localtype="folder" parent="aspace_ref65_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226360"
id="ref66"
level="file">
<did>
<unittitle>"Staggerall"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<physloc id="aspace_e3abd391babab420e4b7edca528de7d1">Stored in: Oversize, Box 13, folder 381</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226361"
id="ref68"
level="file">
<did>
<unittitle>"Thy Heart is Mine"</unittitle>
</did>
<relatedmaterial id="aspace_a7d7de083948377975846d4134aecd9c">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref646">See: Music, Oversize, Box 13, folder 370</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/226362"
id="ref70"
level="file">
<did>
<unittitle>"Till Ireland Has Her Own"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref70_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref70_c2" localtype="folder" parent="aspace_ref70_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226363"
id="ref71"
level="file">
<did>
<unittitle>"To James Bromley, Esq., of Lathom, Lancashire"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref71_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref71_c2" localtype="folder" parent="aspace_ref71_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226364"
id="ref72"
level="file">
<did>
<unittitle>"Tradition in Art and Letters"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<physloc id="aspace_41a6e0d12c7daa2d08612da0c0a05f0a">Stored in: Oversize, Box 13, folder 381</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226365"
id="ref74"
level="file">
<did>
<unittitle>"Who Can Tell"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<physloc id="aspace_87b9ec38cc88380cce16a3d556877bde">Stored in: Oversize, Box 13, folder 381</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226366"
id="ref76"
level="file">
<did>
<unittitle>"Wordsworth's Grave," galley proof, holograph corrections by Alfred Austin and annotations by James Bromley and WW</unittitle>
<unitdatestructured altrender="1887" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1887">1887</datesingle>
</unitdatestructured>
<physloc id="aspace_ca188604296758535c2d29a23f7f5606">Stored in: Oversize, Bsd, folder 397</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226367"
id="ref78"
level="file">
<did>
<unittitle>"The Yapping Cur"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<physloc id="aspace_621c2e4d630495a9864d80e00fb8f3ca">Stored in: Oversize, Box 13, folder 381</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226368"
id="ref80"
level="file">
<did>
<unittitle>"The Yesterdays and the Morrows: Sonnet on the Eve of the Author's Seventy- Sixth Birthday"</unittitle>
<unitdatestructured altrender="[1934?]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1934">[1934?]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref80_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref80_c2" localtype="folder" parent="aspace_ref80_c1">22</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/226369"
id="ref81"
level="subseries">
<did>
<unittitle>Other Writings and Music</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/226370"
id="ref82"
level="file">
<did>
<unittitle>"'Christabel': A Note on Some of Its Enigmas," essay on the poem by Samuel Taylor Coleridge</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref82_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref82_c2" localtype="folder" parent="aspace_ref82_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226371"
id="ref83"
level="file">
<did>
<unittitle>"I Care Not," song, for voice and piano, copyist's manuscript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<physloc id="aspace_02bc976e4f73f8851f1cc3a79ea99726">Stored in: Oversize, Box 12, folder 369</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226372"
id="ref85"
level="file">
<did>
<unittitle>"Thy Heart is Mine," song, for voice and piano, copyist's manuscript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<physloc id="aspace_256346a32f827ecaa72ac85b2e16c1dc">Stored in: Oversize, Box 12, folder 370</physloc>
</did>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/226373"
id="ref87"
level="subseries">
<did>
<unittitle>JOHN ALEXANDER SYMINGTON PAPERS CONCERNING WILLIAM WATSON</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/226374"
id="ref88"
level="file">
<did>
<unittitle>"Sir William Watson: Bibliography," typescript, carbon</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref88_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref88_c2" localtype="folder" parent="aspace_ref88_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226375"
id="ref89"
level="file">
<did>
<unittitle>TLS to James T. Babb and Walter E. Swayze</unittitle>
<unitdatestructured altrender="1948 Apr 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1948-04-06">1948 Apr 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref89_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref89_c2" localtype="folder" parent="aspace_ref89_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226376"
id="ref90"
level="file">
<did>
<unittitle>Clippings from vendor catalogs concerning WW's books and manuscripts</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20179 /locations/9"
containerid="39002075017690"
id="aspace_ref90_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref90_c2" localtype="folder" parent="aspace_ref90_c1">26</container>
</did>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/226377"
id="ref92"
level="series">
<did>
<unittitle>Maureen Pring Watson Gift</unittitle>
<unitid>Series II</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3.34</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">8 boxes</physdesc>
<unitdatestructured altrender="1867-1948" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1867">1867</fromdate>
<todate standarddate="1948">1948</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_643a5fc4f7560a7915843b1a51c8ac8a">
<head>Scope and Contents</head>
<p>Gift of Maureen Pring Watson, 1950.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/226378"
id="ref94"
level="subseries">
<did>
<unittitle>WILLIAM WATSON CORRESPONDENCE</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/226379"
id="ref95"
level="subseries">
<did>
<unittitle>Letters From WW</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/226380"
id="ref96"
level="file">
<did>
<unittitle>Allison, J. Rhodes (draft)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20180 /locations/9"
containerid="39002075017708"
id="aspace_ref96_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref96_c2" localtype="folder" parent="aspace_ref96_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226381"
id="ref97"
level="file">
<did>
<unittitle>Bromley, James (some fragments)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">190-, n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20180 /locations/9"
containerid="39002075017708"
id="aspace_ref97_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref97_c2" localtype="folder" parent="aspace_ref97_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226382"
id="ref98"
level="file">
<did>
<unittitle>Bryce, James Bryce, Viscount</unittitle>
<unitdatestructured altrender="1910 Mar 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1910-03-03">1910 Mar 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20180 /locations/9"
containerid="39002075017708"
id="aspace_ref98_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref98_c2" localtype="folder" parent="aspace_ref98_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226383"
id="ref99"
level="file">
<did>
<unittitle>Clegg, R. J. (copy)</unittitle>
<unitdatestructured altrender="1917 May 5" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1917-05-05">1917 May 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20180 /locations/9"
containerid="39002075017708"
id="aspace_ref99_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref99_c2" localtype="folder" parent="aspace_ref99_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226384"
id="ref100"
level="file">
<did>
<unittitle>Clodd, Edward</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20180 /locations/9"
containerid="39002075017708"
id="aspace_ref100_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref100_c2" localtype="folder" parent="aspace_ref100_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/226385"
id="ref101"
level="file">
<did>
<unittitle>The English Association (copy)</unittitle>
<unitdatestructured altrender="1924 Oct 22" label="creation" unitdatetype="inclusive">