-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path13020.xml
1632 lines (1632 loc) · 93.9 KB
/
13020.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.handleyread">beinecke.handleyread</recordid>
<otherrecordid localtype="BIB">4107499</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Charles Handley-Read Papers Relating to Wyndham Lewis </titleproper>
<titleproper localtype="filing">Handley-Read (Charles) Papers Relating to Wyndham Lewis</titleproper>
<author>By: Annalise Hennessey</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>July 2023</date>
<num>GEN MSS 2095</num>
</publicationstmt>
<notestmt>
<controlnote localtype="onsite">
<p>Boxes: 1-6, 7 (Oversize)</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>2025-01-08T23:24:58-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:24</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/13020" level="collection">
<did>
<unittitle>Charles Handley-Read papers relating to Wyndham Lewis</unittitle>
<unitid>GEN MSS 2095</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.59</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">7 boxes</physdesc>
<unitdatestructured altrender="1912-1970" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1912">1912</fromdate>
<todate standarddate="1970">1970</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_4b2583a9ab4af3affe20ed7140680bc5">The collection contains material created and accumulated by British writer and art collector Charles Handley-Read, primarily concerning his work on artist and author Wyndham Lewis. Included are writings, correspondence, printed material, drawings, and photographs.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Handley-Read, Charles</part>
</persname>
</origination>
</did>
<accessrestrict id="aspace_2ac88ecc80b65baddcefe9e169123bd8">
<head>Conditions Governing Access</head>
<p>This collection is open for research.</p>
</accessrestrict>
<acqinfo id="aspace_e5a0971d9ecf3a4f86e36eef6cb7dab0">
<head>Immediate Source of Acquisition</head>
<p>Purchased with the Plain Fund, 1957. Purchased from Glenn Horowitz Bookseller, Inc. on the Edwin J. Beinecke Book Fund, 1985.</p>
</acqinfo>
<arrangement id="aspace_e6ca44d1e63c4e01a2a04cbe23927262">
<head>Arrangement</head>
<p>Organized into two series: I. January 1957 Acquisition, 1912-1950, undated. II. January 1985 Acquisition, 1949-1970, undated.</p>
</arrangement>
<bioghist id="aspace_39fc296d4a3f78c0020855774c42270d">
<head>Charles Handley-Read (1916-1971)</head>
<p>Charles Harry Ralph Handley-Read was an architectural writer, collector, and a pioneer in the 20th century study of William Burgess. Born in 1916, he studied architecture St. Catharine's College, Cambridge, and upon graduating, became art master at Bryanston School. During the Second World War, he interrupted his career to work at the epileptic colony in Linfield developing art therapy for children. After the war, Handley-Read's architectural interests shifted to Modernism and in 1951, he completed his book, <title>
<part>The Art of Wyndham Lewis</part>
</title>. Following the <title>
<part>Exhibition of Victorian and Edwardian Decorative Arts</part>
</title> at the Victoria and Albert Museum and his marriage to Lavinia Staunton, a devotee of Victorian sculpture, he returned to his study of William Burgess.</p>
</bioghist>
<bioghist id="aspace_caaa255d0c0b55783d2bb9dae2489560">
<head>Percy Wyndham Lewis (1882-1957)</head>
<p>Percy Wyndham Lewis was a British writer, artist, and leading figure in the Vorticist movement. He authored 40 works of fiction, nonfiction, memoir, and criticism, including the novels <title>
<part>Tarr</part>
</title>(1918) and <title>
<part>The Human Age</part>
</title> trilogy and the autobiographies <title>
<part>Blasting and Bombardiering</part>
</title>(1937) and <title>
<part>Rude Assignment: A Narrative of my Career Up-to-Date</part>
</title>(1950).</p>
<p>Lewis was educated at the Slade School of Fine Art in London and the Sorbonne in Paris. While studying in France, he became interested in Cubism and Expressionism and developed a style of painting that incorporated abstract, geometric forms. Lewis joined with other London artists and poets to form the short-lived movement labeled Vorticism by Ezra Pound. Pound was also a contributor to <title>
<part>Blast</part>
</title>, a Vorticist literary and art journal edited and published by Lewis in 1914-1915. Although Lewis turned his focus to writing in the 1920s and 1930s, he continued to produce paintings, watercolors, and drawings, including "The Surrender of Barcelona" (1936) and portraits of Pound, Edith Sitwell, T. S. Eliot, and inventor Guglielmo Marconi. After World War II, Lewis became an editor and art critic for <title>
<part>The Listener</part>
</title>, a publication of the British Broadcasting Company. In 1956, London's Tate Gallery held a retrospective exhibition of his art. He died on March 7, 1957.</p>
</bioghist>
<prefercite id="aspace_d0984d12e9b15b15593ae04da3f06598">
<head>Preferred Citation</head>
<p>Charles Handley-Read Papers Relating to Wyndham Lewis. General Collection, Beinecke Rare Books and Manuscript Library, Yale University.</p>
</prefercite>
<scopecontent id="aspace_ff71fe968dfe4680cc14feea648ac1b5">
<head>Scope and Contents</head>
<p>The collection contains material created and accumulated by British writer and art collector Charles Handley-Read, primarily concerning his work on artist and author Wyndham Lewis. Included are writings, correspondence, printed material, artwork, and photographs.</p>
<p>A significant amount of correspondence and papers concern the Redfern Gallery's retrospective exhibitions of Lewis's oils, watercolors, and drawings in 1949. Included are letters from Naomi Mitchison and Handley-Read, a printed invitation to the opening, and the corrected typescripts of the two forewards to the catalogue by Michael Ayrton and Lewis. Other correspondence consists of letters to Handley-Read from Lewis, Eric Newton, T. S. Eliot, Faber and Faber Ltd, and the Tate Gallery. Writings include drafts and notes for Handley-Read's book<title>
<part>The Art of Wyndham Lewis</part>
</title>. Printed material contains catalogues, journals, and clippings, as well as a published copy of <title>
<part>The Art of Wyndham Lewis</part>
</title>. Artwork by Lewis consists of a menu design for the Cabaret Theatre Club, "The Cave of the Golden Calf," and a reproduction of "A wall decoration in the Cave of the Golden Calf," as well as pencil drawings. Photographs include portraits of Lewis and images of his artwork.</p>
</scopecontent>
<userestrict id="aspace_2f070da9f2334fa13d111f1588c38a40">
<head>Conditions Governing Use</head>
<p>The Charles Handley-Read Papers Relating to Wyndham Lewis 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>
<processinfo id="aspace_1c884f2d2a4bb830e75a912dcfdff436">
<head>Processing Information</head>
<p>Former call number: MS Vault Lewis</p>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library attempts to provide a basic level of preservation and access for all collections, and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>This collection received a basic level of processing, including rehousing and minimal organization.</p>
<p>Information included in the Description of Papers note and Collection Contents section is drawn from information supplied with the collection and from an initial survey of the contents. Folder titles appearing in the contents list below are often based on those provided by the creator or previous custodian. Titles have not been verified against the contents of the folders in all cases. Otherwise, folder titles are supplied by staff during initial processing.</p>
<p>This finding aid may be updated periodically to account for new acquisitions to the collection and/or revisions in arrangement and description.</p>
</processinfo>
<controlaccess>
<subject source="local">
<part localtype="topical">Art</part>
<part localtype="topical">Collectors and collecting</part>
<part localtype="geographic">Great Britain</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2007101136"
source="lcsh">
<part localtype="topical">Art, Modern</part>
<part localtype="temporal">20th Century</part>
<part localtype="topical">Exhibitions</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Artists, British</part>
<part localtype="temporal">20th Century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject source="local">
<part localtype="topical">Authors, British</part>
<part localtype="temporal">20th Century</part>
<part localtype="topical">Archives</part>
</subject>
<occupation source="local">
<part localtype="occupation">Artists</part>
<part localtype="geographic">England</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Authors</part>
<part localtype="geographic">England</part>
<part localtype="temporal">20th Century</part>
</occupation>
<genreform identifier="http://vocab.getty.edu/aat/300033973" source="aat">
<part localtype="genre_form">Drawings (visual works)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300046300" source="aat">
<part localtype="genre_form">Photographs</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/page/aat/300404588" source="aat">
<part localtype="genre_form">Printed materials (object genre)</part>
</genreform>
<persname source="local">
<part localtype="agent_person">Ayrton, Michael, 1921-1975</part>
</persname>
<persname>
<part localtype="agent_person">Eliot, T. S. (Thomas Stearns), 1888-1965</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Handley-Read, Charles</part>
</persname>
<persname>
<part localtype="agent_person">Lewis, Wyndham, 1882-1957</part>
</persname>
<persname>
<part localtype="agent_person">Mitchison, Naomi, 1897-1999</part>
</persname>
<corpname rules="rda" source="local_ycba_rbm">
<part localtype="agent_corporate_entity">Cabaret Theatre Club (London, England)</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Faber and Faber</part>
</corpname>
<corpname rules="aacr" source="local">
<part localtype="agent_corporate_entity">Redfern Gallery</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Tate Gallery</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/3616451"
id="aspace_748d70723fbcfbff9c38ab1315be5151"
level="series">
<did>
<unittitle>January 1957 Acquisition</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.21</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 box</physdesc>
<unitdatestructured altrender="1912-1950, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1912">1912</fromdate>
<todate standarddate="1950">1950</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_7af0b638e74d7b7a3625d68691a8c3df">
<head>Arrangement</head>
<p>Materials maintain order found at time of acquisition.</p>
</arrangement>
<scopecontent id="aspace_3e522d870ea729c85a7b3fe6d4fd26b6">
<head>Scope and Contents</head>
<p>This grouping contains correspondence, notes, and a hand-drawn menu design by Wyndham Lewis.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/3616453"
id="aspace_32fdfa7a328d6667c00a891c0a847ba4"
level="file">
<did>
<unittitle>Newton, Eric to Handley-Read</unittitle>
<unitdatestructured altrender="1950" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1950">1950</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397253"
containerid="39002137197027"
encodinganalog="archive half legal"
id="aspace_32fdfa7a328d6667c00a891c0a847ba4_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_32fdfa7a328d6667c00a891c0a847ba4_c2"
localtype="folder"
parent="aspace_32fdfa7a328d6667c00a891c0a847ba4_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616454"
id="aspace_629dfad3754b8024dbebc8661129540d"
level="file">
<did>
<unittitle>Lewis, Wyndham to CHR</unittitle>
<unitdatestructured altrender="1949–1950" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1950">1950</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397253"
containerid="39002137197027"
encodinganalog="archive half legal"
id="aspace_629dfad3754b8024dbebc8661129540d_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_629dfad3754b8024dbebc8661129540d_c2"
localtype="folder"
parent="aspace_629dfad3754b8024dbebc8661129540d_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616455"
id="aspace_9cb4414343c8207d3fccdd7f24208870"
level="file">
<did>
<unittitle>"WL - 2 drawings of male heads"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/397253"
containerid="39002137197027"
encodinganalog="archive half legal"
id="aspace_9cb4414343c8207d3fccdd7f24208870_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_9cb4414343c8207d3fccdd7f24208870_c2"
localtype="folder"
parent="aspace_9cb4414343c8207d3fccdd7f24208870_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616456"
id="aspace_9a13252269acdd41fc7e00a487de3f21"
level="file">
<did>
<unittitle>Notes and letter drafts</unittitle>
<unitdatestructured altrender="1950, undated" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1950">1950</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397253"
containerid="39002137197027"
encodinganalog="archive half legal"
id="aspace_9a13252269acdd41fc7e00a487de3f21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_9a13252269acdd41fc7e00a487de3f21_c2"
localtype="folder"
parent="aspace_9a13252269acdd41fc7e00a487de3f21_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616457"
id="aspace_6629efbc251fa82e95c38b4102d0d98d"
level="file">
<did>
<unittitle>"Printed menu/program"</unittitle>
<unitdatestructured altrender="1912" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1912">1912</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397253"
containerid="39002137197027"
encodinganalog="archive half legal"
id="aspace_6629efbc251fa82e95c38b4102d0d98d_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_6629efbc251fa82e95c38b4102d0d98d_c2"
localtype="folder"
parent="aspace_6629efbc251fa82e95c38b4102d0d98d_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616458"
id="aspace_5499e965f618fbff6905e87c11254a94"
level="file">
<did>
<unittitle>Redfern</unittitle>
<unitdatestructured altrender="1948–1949" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1948">1948</fromdate>
<todate standarddate="1949">1949</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397253"
containerid="39002137197027"
encodinganalog="archive half legal"
id="aspace_5499e965f618fbff6905e87c11254a94_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_5499e965f618fbff6905e87c11254a94_c2"
localtype="folder"
parent="aspace_5499e965f618fbff6905e87c11254a94_c1">6-10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616459"
id="aspace_6a4e1e5b29071450dcf5ab6053ffd028"
level="file">
<did>
<unittitle>"Wyndham Lewis fifteen drawings"</unittitle>
<unitdatestructured altrender="1919" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1919">1919</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397253"
containerid="39002137197027"
encodinganalog="archive half legal"
id="aspace_6a4e1e5b29071450dcf5ab6053ffd028_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_6a4e1e5b29071450dcf5ab6053ffd028_c2"
localtype="folder"
parent="aspace_6a4e1e5b29071450dcf5ab6053ffd028_c1">11</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3616452"
id="aspace_cf51b1dc623b166759f37680523bbe3f"
level="series">
<did>
<unittitle>January 1985 Acquisition</unittitle>
<unitid>Series II</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>7.88</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">7 boxes</physdesc>
<unitdatestructured altrender="1949-1970, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1970">1970</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_b8a20e9c9aa3a6d69b08e9172ed4e2cd">
<head>Arrangement</head>
<p>Arranged into four subseries: Correspondence, Writings, Photographs, and Printed Material.</p>
</arrangement>
<scopecontent id="aspace_e8fbb25814503074c4778ca188ddbfc8">
<head>Scope and Contents</head>
<p>This series contains correspondence, photographs, and writings relating to Charles Handley-Read's work on Wyndham Lewis.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/3616460"
id="aspace_0ddb131ac8953aa3f791d9604aca68ef"
level="subseries">
<did>
<unittitle>Correspondence</unittitle>
</did>
<arrangement id="aspace_7837c8eeb66ca72d1eca3a64b829959c">
<head>Arrangement</head>
<p>Arranged alphabetically by correspondent with unidentified correspondence filed at the end of the sequence.</p>
</arrangement>
<scopecontent id="aspace_f94d2019f2a39e929b269f52f243c9aa">
<head>Scope and Contents</head>
<p>This subseries contains correspondence between Handley-Read and his colleagues and friends, including Wyndham Lewis, T.S. Eliot, and publisher Faber and Faber Limited.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/3616464"
id="aspace_3f61967d303f123ea47eee43ab7bd617"
level="file">
<did>
<unittitle>"A" general</unittitle>
<unitdatestructured altrender="1955" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1955">1955</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_3f61967d303f123ea47eee43ab7bd617_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_3f61967d303f123ea47eee43ab7bd617_c2"
localtype="folder"
parent="aspace_3f61967d303f123ea47eee43ab7bd617_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616465"
id="aspace_ab96d732621f6edadf30e336eb4a5d6c"
level="file">
<did>
<unittitle>"B" general</unittitle>
<unitdatestructured altrender="1949–1952" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1952">1952</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_ab96d732621f6edadf30e336eb4a5d6c_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ab96d732621f6edadf30e336eb4a5d6c_c2"
localtype="folder"
parent="aspace_ab96d732621f6edadf30e336eb4a5d6c_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616466"
id="aspace_b676cb81310dfb01d5b6452b19285ccf"
level="file">
<did>
<unittitle>Betjeman, John</unittitle>
<unitdatestructured altrender="1949" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_b676cb81310dfb01d5b6452b19285ccf_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_b676cb81310dfb01d5b6452b19285ccf_c2"
localtype="folder"
parent="aspace_b676cb81310dfb01d5b6452b19285ccf_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616467"
id="aspace_6dffcac38a88c7bb94594fe2fc774668"
level="file">
<did>
<unittitle>Campbell, James</unittitle>
<unitdatestructured altrender="1953" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1953">1953</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_6dffcac38a88c7bb94594fe2fc774668_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_6dffcac38a88c7bb94594fe2fc774668_c2"
localtype="folder"
parent="aspace_6dffcac38a88c7bb94594fe2fc774668_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616468"
id="aspace_e7d9aadde47892697102f799ffee3bcf"
level="file">
<did>
<unittitle>Comb, Charles</unittitle>
<unitdatestructured altrender="1951" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1951">1951</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_e7d9aadde47892697102f799ffee3bcf_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_e7d9aadde47892697102f799ffee3bcf_c2"
localtype="folder"
parent="aspace_e7d9aadde47892697102f799ffee3bcf_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616469"
id="aspace_a400251ec770366019d423010aedb00e"
level="file">
<did>
<unittitle>"D" general</unittitle>
<unitdatestructured altrender="1951" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1951">1951</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_a400251ec770366019d423010aedb00e_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_a400251ec770366019d423010aedb00e_c2"
localtype="folder"
parent="aspace_a400251ec770366019d423010aedb00e_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616470"
id="aspace_110c2f874398b5b26dae98b76d223251"
level="file">
<did>
<unittitle>Easton, Malcolm</unittitle>
<unitdatestructured altrender="1969 June 19" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1969-06-19">1969 June 19</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_110c2f874398b5b26dae98b76d223251_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_110c2f874398b5b26dae98b76d223251_c2"
localtype="folder"
parent="aspace_110c2f874398b5b26dae98b76d223251_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616471"
id="aspace_ecf89024aeb87bacd6e2a0223ca04dea"
level="file">
<did>
<unittitle>Eliot, T.S.</unittitle>
<unitdatestructured altrender="1949–1950" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1950">1950</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_ecf89024aeb87bacd6e2a0223ca04dea_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ecf89024aeb87bacd6e2a0223ca04dea_c2"
localtype="folder"
parent="aspace_ecf89024aeb87bacd6e2a0223ca04dea_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616472"
id="aspace_511753dc80485e6d1cea59a17523a0cf"
level="file">
<did>
<unittitle>Faber and Faber Limited</unittitle>
<unitdatestructured altrender="1949–1961" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1961">1961</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_511753dc80485e6d1cea59a17523a0cf_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_511753dc80485e6d1cea59a17523a0cf_c2"
localtype="folder"
parent="aspace_511753dc80485e6d1cea59a17523a0cf_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616473"
id="aspace_20c8bf1760b0ecc1864e567ac1bd9933"
level="file">
<did>
<unittitle>Graves, Richard Massie</unittitle>
<unitdatestructured altrender="1952" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1952">1952</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_20c8bf1760b0ecc1864e567ac1bd9933_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_20c8bf1760b0ecc1864e567ac1bd9933_c2"
localtype="folder"
parent="aspace_20c8bf1760b0ecc1864e567ac1bd9933_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616474"
id="aspace_721e4204d8e1a937574d179744a20f3b"
level="file">
<did>
<unittitle>"H" general</unittitle>
<unitdatestructured altrender="1949, 1960" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1960">1960</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_721e4204d8e1a937574d179744a20f3b_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_721e4204d8e1a937574d179744a20f3b_c2"
localtype="folder"
parent="aspace_721e4204d8e1a937574d179744a20f3b_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616475"
id="aspace_9fd3e795d3cc52da01a06d2e431f73e3"
level="file">
<did>
<unittitle>International Press-Cutting Bureau</unittitle>
<unitdatestructured altrender="1950 October 13"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1950-10-13">1950 October 13</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_9fd3e795d3cc52da01a06d2e431f73e3_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_9fd3e795d3cc52da01a06d2e431f73e3_c2"
localtype="folder"
parent="aspace_9fd3e795d3cc52da01a06d2e431f73e3_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616476"
id="aspace_c66740125ccd6eedfe25d0dd53f113d0"
level="file">
<did>
<unittitle>"J-K" general</unittitle>
<unitdatestructured altrender="1953–1970" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1953">1953</fromdate>
<todate standarddate="1970">1970</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_c66740125ccd6eedfe25d0dd53f113d0_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_c66740125ccd6eedfe25d0dd53f113d0_c2"
localtype="folder"
parent="aspace_c66740125ccd6eedfe25d0dd53f113d0_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616477"
id="aspace_20afd0d6ed2d0890c428e503b0399b8e"
level="file">
<did>
<unittitle>Lewis, Wyndham</unittitle>
<unitdatestructured altrender="1949–1959" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1959">1959</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_20afd0d6ed2d0890c428e503b0399b8e_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_20afd0d6ed2d0890c428e503b0399b8e_c2"
localtype="folder"
parent="aspace_20afd0d6ed2d0890c428e503b0399b8e_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616478"
id="aspace_378eac7653e88519f09579a647f73851"
level="file">
<did>
<unittitle>Lyons, Michael</unittitle>
<unitdatestructured altrender="1967" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1967">1967</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_378eac7653e88519f09579a647f73851_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_378eac7653e88519f09579a647f73851_c2"
localtype="folder"
parent="aspace_378eac7653e88519f09579a647f73851_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616479"
id="aspace_15291a96db4ceea9962a509303be1d2b"
level="file">
<did>
<unittitle>"M" general</unittitle>
<unitdatestructured altrender="1952–1956" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1952">1952</fromdate>
<todate standarddate="1956">1956</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_15291a96db4ceea9962a509303be1d2b_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_15291a96db4ceea9962a509303be1d2b_c2"
localtype="folder"
parent="aspace_15291a96db4ceea9962a509303be1d2b_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616480"
id="aspace_b02ccfced736de2ac5996547a7adc034"
level="file">
<did>
<unittitle>Michel, Walter</unittitle>
<unitdatestructured altrender="1960–1969" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="1969">1969</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_b02ccfced736de2ac5996547a7adc034_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_b02ccfced736de2ac5996547a7adc034_c2"
localtype="folder"
parent="aspace_b02ccfced736de2ac5996547a7adc034_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616481"
id="aspace_669f5e7feb9c47423970c978cd925fae"
level="file">
<did>
<unittitle>Newton, Eric</unittitle>
<unitdatestructured altrender="1949–1951" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1951">1951</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_669f5e7feb9c47423970c978cd925fae_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_669f5e7feb9c47423970c978cd925fae_c2"
localtype="folder"
parent="aspace_669f5e7feb9c47423970c978cd925fae_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616482"
id="aspace_80c3e1ee1054dbd619bfcd3e9aa4415f"
level="file">
<did>
<unittitle>"P" general</unittitle>
<unitdatestructured altrender="1949–1955" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1955">1955</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_80c3e1ee1054dbd619bfcd3e9aa4415f_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_80c3e1ee1054dbd619bfcd3e9aa4415f_c2"
localtype="folder"
parent="aspace_80c3e1ee1054dbd619bfcd3e9aa4415f_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616483"
id="aspace_ccaadb6ac240d56bb0c38fa18d0fc5cc"
level="file">
<did>
<unittitle>"Q-R" general</unittitle>
<unitdatestructured altrender="1949–1956" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1956">1956</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_ccaadb6ac240d56bb0c38fa18d0fc5cc_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ccaadb6ac240d56bb0c38fa18d0fc5cc_c2"
localtype="folder"
parent="aspace_ccaadb6ac240d56bb0c38fa18d0fc5cc_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616484"
id="aspace_6873464a269bb19137e2bf5f247931b9"
level="file">
<did>
<unittitle>Rose, William</unittitle>
<unitdatestructured altrender="1949–1958" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1958">1958</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_6873464a269bb19137e2bf5f247931b9_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_6873464a269bb19137e2bf5f247931b9_c2"
localtype="folder"
parent="aspace_6873464a269bb19137e2bf5f247931b9_c1">32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616485"
id="aspace_7c2392ac3069baf3fc3b7918ac6ab23b"
level="file">
<did>
<unittitle>Sheet, Sydney</unittitle>
<unitdatestructured altrender="1951" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1951">1951</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_7c2392ac3069baf3fc3b7918ac6ab23b_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_7c2392ac3069baf3fc3b7918ac6ab23b_c2"
localtype="folder"
parent="aspace_7c2392ac3069baf3fc3b7918ac6ab23b_c1">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616486"
id="aspace_0b6c51b38e638f8aef6d82b4777550b2"
level="file">
<did>
<unittitle>Tate Gallery, London</unittitle>
<unitdatestructured altrender="1949–1956" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1956">1956</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_0b6c51b38e638f8aef6d82b4777550b2_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_0b6c51b38e638f8aef6d82b4777550b2_c2"
localtype="folder"
parent="aspace_0b6c51b38e638f8aef6d82b4777550b2_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616487"
id="aspace_ab5659fb6d56b99d470234821cf42c67"
level="file">
<did>
<unittitle>Viney, Nigel</unittitle>
<unitdatestructured altrender="1951–1953" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1951">1951</fromdate>
<todate standarddate="1953">1953</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_ab5659fb6d56b99d470234821cf42c67_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ab5659fb6d56b99d470234821cf42c67_c2"
localtype="folder"
parent="aspace_ab5659fb6d56b99d470234821cf42c67_c1">35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616488"
id="aspace_cb972aa95be61e00f109d74a01213eec"
level="file">
<did>
<unittitle>"W" general</unittitle>
<unitdatestructured altrender="1949, 1953" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1953">1953</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/397254"
containerid="39002137197035"
encodinganalog="archive legal"
id="aspace_cb972aa95be61e00f109d74a01213eec_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_cb972aa95be61e00f109d74a01213eec_c2"
localtype="folder"
parent="aspace_cb972aa95be61e00f109d74a01213eec_c1">36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3616489"
id="aspace_805e7d1923e6e94dda11cf4aaa21f6ad"
level="file">
<did>