-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1471.xml
15454 lines (15454 loc) · 880 KB
/
1471.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.welch">beinecke.welch</recordid>
<otherrecordid localtype="BIB">3813586</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the James Welch Papers
</titleproper>
<titleproper localtype="filing">Welch (James) Papers</titleproper>
<author>by Michael L. Forstrom</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>January 2010</date>
<num>YCAL MSS 248</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">3813586</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-51, 55</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 52-54</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="5">5</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="196">196</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>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T01:05:36-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday January 9, 2025 at 01:05</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1471" level="collection">
<did>
<unittitle>James Welch papers</unittitle>
<unitid>YCAL MSS 248</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
<languageset>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<languageset>
<language langcode="fre">French</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<languageset>
<language langcode="ita">Italian</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<descriptivenote>
<p>Chiefly in English; some materials in French and Italian.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>27.22</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">54 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1889">1889</fromdate>
<todate standarddate="2006">2006</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="2003">2003</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_82afa1ebe6dae7367cefb9f279a076c7">The James Welch Papers contain manuscripts, correspondence, and personal papers documenting the life and work of author James Welch. James Welch is well known for his fiction dealing with the histories and experiences of Native Americans, and the drafts of manuscripts, for novels and other works, together with correspondence and secondary literature, make the Welch papers a valuable resource for research in literary, American, and Native American studies.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Welch, James, 1940-2003</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_c126413dc5d76bf505c86365a8536982">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Ken Lopez on various funds, 1994-2007.</p>
</acqinfo>
<userestrict id="aspace_293f3d12d64d5e3842e4a923dd8db2eb">
<head>Conditions Governing Use</head>
<p>The James Welch Papers are 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_04d2f191963564adcf1580c728e561cc">
<head>Preferred Citation</head>
<p>James Welch Papers. Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_d7270955c24fb3c10548ac592d16d5ea">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Surrogates of all audio recordings are available within the collection. Preservation photocopies and computer printouts have been substituted in the main files for reference use.</p>
<p>Box 55 (computer disks): Restricted fragile material. Reference copies of electronic files may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<processinfo id="aspace_652ee9f4ab787a9c2f2c236388fb8938">
<head>Processing Information</head>
<p>The James Welch Papers contain material formerly classed as Uncat MSS 398 and Uncat MSS 399.</p>
<p>The electronic files on computer disks numbered 6, 11 and 21 were migrated by staff at the Yale University Library from the original word-processing software to Word and 8-bit ANSI formats to maintain readability of data. Files on disks numbered 2-3, 7, 13, 15 and 27 were migrated by National Data Conversion from the original word-processing software to WordPerfect 5.0 and to ASCII to maintain readability of data. Migrated files and files on other disks were refreshed into the Yale University Library Rescue Repository. Technical specifications are filed with the media in <emph render="italic">Restricted Fragile</emph>.</p>
</processinfo>
<bioghist id="aspace_ad31cfd6d5f90e2f91099448a519cbb0">
<head>JAMES WELCH (1940-2003)</head>
<p>James Welch was a poet, novelist, and teacher. Born on the Blackfeet Indian Reservation in Browning, Montana, with Blackfeet and Gros Ventres ancestry, Welch drew upon the histories and experiences of Native Americans in his literary work. His publications include collections of poetry, novels, and nonfiction. Works include <title localtype="simple" render="italic">
<part>Riding the Earthboy 40</part>
</title> (1971), <title localtype="simple" render="italic">
<part>Fools Crow</part>
</title> (1986), <title localtype="simple" render="italic">
<part>The Heartsong of Charging Elk</part>
</title> (2000), and <title localtype="simple" render="italic">
<part>Killing Custer: The Battle of the Little Bighorn and the Fate of the Plains Indians</part>
</title> (1994).</p>
<p>Summary information on James Welch is available in the standard print and online biographical resources.</p>
<p>The following chronology provides dates for key events and</p>
<p>publications:</p>
<p>1940 born in Browning, Montana</p>
<p>1954-1958 lives in Minneapolis, Minnesota</p>
<p>1958 graduates from Washburn High School, Minneapolis, Minnesota</p>
<p>1959 attends University of Minnesota</p>
<p>1961-1962 attends Northern Montana College, Havre, Montana</p>
<p>1962-1968 attends University of Montana, Missoula</p>
<p>1968 marries Lois Monk</p>
<p>1969 awarded National Endowment for the Arts grant</p>
<p>1971 publication of <title localtype="simple" render="italic">
<part>Riding the Earthboy 40</part>
</title>
</p>
<p>1972-1973 travels in Greece</p>
<p>1974 publication of <title localtype="simple" render="italic">
<part>Winter in the Blood</part>
</title>
</p>
<p>1977 teaches at University of Washington</p>
<p>1979 publication of <title localtype="simple" render="italic">
<part>The Death of Jim Loney</part>
</title>
</p>
<p>1981 appointment at University of Washington</p>
<p>1986 publication of <title localtype="simple" render="italic">
<part>Fools Crow</part>
</title>
</p>
<p>1986 publication of <title localtype="simple" render="italic">
<part>The Reak West Marginal Way: A Poet's Autobiography</part>
</title>
</p>
<p>by Richard Hugo (ed.)</p>
<p>1990 publication of <title localtype="simple" render="italic">
<part>The Indian Lawyer</part>
</title>
</p>
<p>1994 publication of <title localtype="simple" render="italic">
<part>Killing Custer</part>
</title>
</p>
<p>2000 publication of <title localtype="simple" render="italic">
<part>The Heartsong of Charging Elk</part>
</title>
</p>
<p>2003 August 4, dies in Missoula, Montana</p>
</bioghist>
<scopecontent id="aspace_13ccbcc89f436f0d670f415c1d6a69d6">
<head>Scope and Contents</head>
<p>The James Welch Papers consist of manuscripts, correspondence, and personal papers documenting the life and work of author James Welch. James Welch is well known for his fiction dealing with the histories and experiences of Native Americans, and the drafts of manuscripts, for novels and other works, together with correspondence and secondary literature, make the Welch papers a valuable resource for research in literary, American, and Native American studies. The collection spans the years 1889 to 2006, with the bulk of the collection dating from the early 1960s to 2003.</p>
<p>The collection is housed in 55 boxes and organized into four series: Writings of James Welch, Writings of Others, Correspondence, and Personal Papers. Boxes 50-55 contain <title localtype="simple" render="italic">
<part>Oversize</part>
</title> and <title localtype="simple" render="italic">
<part>Restricted Fragile</part>
</title> material.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref12">Series I, <title localtype="simple" render="italic">
<part>Writings of James Welch</part>
</title>
</ref>, housed in boxes 1-32, is organized into six subseries: Articles and Essays, Lectures and Speeches, Novels, Poetry, Short Fiction, and Other Writings. The series features drafts and proofs for each of Welch's five novels, his collection of poems, and his nonfiction book on the Battle of Little Bighorn.</p>
<p>The Articles and Essays subseries, housed in box 1, includes autobiographical and critical writings. Autobiographical writings deal with Welch's writing history, his identity as a Native American author, and his experience as a Native American in the U.S. in the latter half of the 20th century. Other writings in this subseries include book reviews, tributes, including one to his teacher Richard Hugo, and prefatory and introductory essays on such subjects as Native American and regional literature, the Blackfeet, and life in Montana.</p>
<p>The Lectures and Speeches subseries, also housed in box 1, includes commencement and graduation speeches, introductions, and discussions of Native American literature and history. In the lecture entitled "Native American Renaissance," for example, Welch discusses the work of several other Native American authors, including N. Scott Momaday, Leslie Silko, Joy Harjo, Louise Erdrich, and Sherman Alexie.</p>
<p>The Novels subseries, housed in boxes 1-22, contains drafts, proofs, and other materials for Welch's five novels. In addition to computer printouts and typescript drafts of manuscripts, many of which are corrected, there are also drafts in electronic form. The Welch papers include twenty-seven computer disks, most of which contain files for drafts and research notes relating to particular books. There are fifteen disks, for example, containing drafts for <title localtype="simple" render="italic">
<part>The Heartsong of Charging Elk</part>
</title>. In this case, the synopsis and background material, multiple paper and electronic drafts, setting copies, and publicity document the evolution of this text and Welch's writing method.</p>
<p>The Poetry subseries, housed in boxes 23-27, includes drafts and proofs for Welch's collection, <title localtype="simple" render="italic">
<part>Riding the Earthboy 40</part>
</title> (1971), as well as drafts for individual poems. The individual poems, which are arranged alphabetically by title, contain multiple drafts, in holograph and typescript. Many poems date from 1966 to 1968, when Welch was a graduate student at the University of Montana (Missoula), and thus represent early literary efforts.</p>
<p>Other Writings, housed in boxes 28-32, consists of material relating to Welch's nonfiction work, entitled <title localtype="simple" render="italic">
<part>Killing Custer</part>
</title>, including a book proposal, background material and notes, drafts, proofs, publicity, and film project notes.</p>
<p>Drafts of writings in electronic form are identified in the box and folder list and include folder notes identifying the disk number and label. The files on the disks were either copied or migrated, and reference copies of the files are available on CDs, which may be viewed on laptops in the library's Reading Room. The original disks are stored in<emph render="italic">Restricted Fragile</emph>.</p>
<p>One computer disk in the collection contains files for outgoing letters and articles. The articles were printed onto copyright paper and arranged alphabetically by title for reference use.</p>
<p>Scattered drafts and copies of writings can also be found as enclosures in Series III. Correspondence and among the school materials in Series IV. Personal Papers.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref479">Series II, <title localtype="simple" render="italic">
<part>Writings of Others</part>
</title>
</ref>, housed in boxes 33-34, is organized into two subseries: Writings of Others on James Welch and Other Writings. Writings on Welch include published articles and interviews, and student papers, theses, and dissertations. The articles, present in both English and French, include book reviews and discussions of Welch's work, some in the context of Native American literature. Noteworthy among the articles is a special issue of <title localtype="simple" render="italic">
<part>Studies in American Indian Literatures</part>
</title> (2006) devoted to Welch. The theses and dissertations include three book-length studies on Welch and a German translation of <title localtype="simple" render="italic">
<part>Fools Crow</part>
</title>. Writings of others can also be found as enclosures in Series III. Correspondence. These writings are identified in folder notes.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref489">Series III, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>
</ref>, housed in boxes 35-46, is arranged alphabetically by last name. The correspondence consists chiefly of incoming personal and professional correspondence, though drafts and computer printouts of outgoing letters are also present. There are incoming letters from writers, editors, publishers, literary scholars and critics, and cultural organizations. The correspondence features letters from Western and Native American writers, as well as writers who settled in Montana, and scholars of Native American literature. These correspondents include Kim Barnes, Ralph Beer, LaVerne Harrell Clark, Joy Harjo, Kent Haruf, Patricia Henley, Alvin Josephy, Steven Krauzer, Arnold Krupat, Cyra McFadden, and N. Scott Momaday. There are also letters from Frederick Busch, Sharon Butala, Annie Dillard, Peter Matthiessen, Ann Patchett, and Gary Snyder.</p>
<p>One computer disk in the collection contains over 100 outgoing letters. These letters were printed onto copyright paper and arranged in the correspondence files for reference use. Reference copies of electronic files are available on CDs and may be viewed on laptops in the library's Reading Room.</p>
<p>Enclosures, such as drafts and copies of writings, photographs, printed ephemera, and third-party letters, are identified in folder notes.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref886">Series IV, <title localtype="simple" render="italic">
<part>Personal Papers</part>
</title>
</ref>, housed in boxes 46-50, is organized into four suberies: Financial Records, Printed Ephemera, School Material, and Other.</p>
<p>The Financial Records consist chiefly of bills and receipts, though travel invoices for readings and itineraries and check stubs for readings and royalties can also be found here.</p>
<p>The printed material consists of clippings, conference and event materials, and ephemera, such as announcements for readings, and brochures, catalogs, and programs. The clippings document the censorship controversy surrounding <title localtype="simple" render="italic">
<part>Fools Crow</part>
</title> in Montana secondary schools and French interest in <title localtype="simple" render="italic">
<part>The Heartsong of Charging Elk</part>
</title>.</p>
<p>School Materials, which are arranged alphabetically by material type, include course papers and tests, plays and stories written for courses, and notebooks. The eighteen spiral bound notebooks, which consist chiefly of notes for various college courses, also include scattered drafts and sketches for poems and stories. Though many notebooks are undated, they appear to date from Welch's years as an undergraduate (1962-1965). Loose materials are also laid in.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref948">
<title localtype="simple" render="italic">
<part>Oversize</part>
</title>
</ref> material, housed in boxes 51-54, includes items from Series I and Series IV. <ref actuate="onrequest" show="replace" target="ref974">
<title localtype="simple" render="italic">
<part>Restricted Fragile</part>
</title>
</ref> materials are housed in box 55.</p>
</scopecontent>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85004323"
source="lcsh">
<part localtype="topical">American fiction</part>
<part localtype="topical">Indian authors</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85004395"
source="lcsh">
<part localtype="topical">American poetry</part>
<part localtype="topical">Indian authors</part>
</subject>
<subject source="local">
<part localtype="topical">Authors, American</part>
<part localtype="temporal">20th Century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85065184"
source="lcsh">
<part localtype="topical">Indians of North America</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85077676"
source="lcsh">
<part localtype="topical">Little Bighorn, Battle of the, Mont., 1876</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/names/no94035003"
source="lcsh">
<part localtype="geographic">Blackfeet Tribe of the Blackfeet Indian Reservation of Montana</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/names/n80010207"
source="lcsh">
<part localtype="geographic">Montana</part>
</geogname>
<genreform identifier="http://vocab.getty.edu/aat/300374824" source="aat">
<part localtype="genre_form">Born digital</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300026867" source="aat">
<part localtype="genre_form">Clippings (information artifacts) </part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300266679" source="aat">
<part localtype="genre_form">Electronic documents</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300264354" source="aat">
<part localtype="genre_form">Notebooks</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300028467" source="aat">
<part localtype="genre_form">Printouts</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300168254" source="aat">
<part localtype="genre_form">Storage devices (computer equipment)</part>
</genreform>
<occupation identifier="http://id.loc.gov/authorities/subjects/sh85009793"
source="lcsh">
<part localtype="occupation">Authors</part>
</occupation>
<subject source="local">
<part localtype="topical">Native American literature</part>
</subject>
<persname>
<part localtype="agent_person">Alexie, Sherman, 1966-</part>
</persname>
<persname>
<part localtype="agent_person">Barnes, Kim</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Beer, Ralph</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Busch, Frederick, 1941-2006</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Butala, Sharon, 1940-</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Clark, LaVerne Harrell, 1929-2008</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Dillard, Annie</part>
</persname>
<persname>
<part localtype="agent_person">Erdrich, Louise, 1954-</part>
</persname>
<persname>
<part localtype="agent_person">Harjo, Joy, 1951-</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Haruf, Kent, 1943-2014</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Henley, Patricia</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Josephy, Alvin M., 1915-2005</part>
</persname>
<persname>
<part localtype="agent_person">Krupat, Arnold, 1941-</part>
</persname>
<persname>
<part localtype="agent_person">Matthiessen, Peter, 1927-2014</part>
</persname>
<persname>
<part localtype="agent_person">McFadden, Cyra</part>
</persname>
<persname>
<part localtype="agent_person">Momaday, N. Scott, 1934-</part>
</persname>
<persname>
<part localtype="agent_person">Patchett, Ann, 1963-</part>
</persname>
<persname>
<part localtype="agent_person">Silko, Leslie Marmon, 1948-</part>
</persname>
<persname>
<part localtype="agent_person">Snyder, Gary, 1930-</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Welch, James, 1940-2003</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/564373"
id="ref974"
level="series">
<did>
<unittitle>Computer media</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.42</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 box</physdesc>
</did>
<accessrestrict id="aspace_60f8cf86184f9eb6f37412af7b909360"
localtype="RestrictedFragileSpecColl">
<head>Conditions Governing Access</head>
<p>Restricted fragile material. Reference copies of electronic files may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<c altrender="/repositories/11/archival_objects/563523"
id="ref14"
level="subseries">
<did>
<unittitle>ARTICLES AND ESSAYS</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/563524"
id="ref15"
level="file">
<did>
<unittitle>"A.B. Guthrie, Jr.," computer printout</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563525"
id="ref16"
level="file">
<did>
<unittitle>"Alive and Well," computer printout</unittitle>
<unitdatestructured altrender="[1998 Mar 9]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1998-03-09">[1998 Mar 9]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563526"
id="ref17"
level="file">
<did>
<unittitle>"Dana Boussard," computer printout</unittitle>
<container altrender="/repositories/11/top_containers/69131 /locations/9"
containerid="39002091457573"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">36</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">524</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563527"
id="ref19"
level="file">
<did>
<unittitle>"Enfin, le vent du renouveau," printed version, <title localtype="simple" render="italic">
<part>Geo</part>
</title>
</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563528"
id="ref20"
level="file">
<did>
<unittitle>"Far North People," computer printout</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563529"
id="ref21"
level="file">
<did>
<unittitle>"Foreword," computer printout</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563530"
id="ref22"
level="file">
<did>
<unittitle>"Forward," draft, typescript, corrected, and typescript photocopy</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563531"
id="ref23"
level="file">
<did>
<unittitle>"If a Lion Could Talk," computer printout</unittitle>
<unitdatestructured altrender="[1995 Jan 19]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1995-01-19">[1995 Jan 19]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563532"
id="ref24"
level="file">
<did>
<unittitle>"Indian Summer at Wounded Knee," typescript and typescript photocopy, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">8</container>
<daoset altrender="/repositories/11/digital_objects/206882">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/images/placeholder_restricted.png"
identifier="oid:17230434"
linktitle="89 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17230434"
identifier="oid:17230434"
linktitle="89 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>"Indian Summer at Wounded Knee," typescript and typescript photocopy, corrected</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563533"
id="ref25"
level="file">
<did>
<unittitle>"Introduction," computer printout</unittitle>
<unitdatestructured altrender="[1997 Jul 28]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1997-07-28">[1997 Jul 28]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">9</container>
</did>
<relatedmaterial id="aspace_93404b6025b066e4c59ccf15193582d6">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref679">See also: Correspondence, Ken Lopez, Box 39, folder 674</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/563534"
id="ref27"
level="file">
<did>
<unittitle>"Introduction," computer printout</unittitle>
<unitdatestructured altrender="[1998 Oct 12]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1998-10-12">[1998 Oct 12]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563535"
id="ref28"
level="file">
<did>
<unittitle>"Journey to St.-Malo," computer printout</unittitle>
<unitdatestructured altrender="[1999 Apr 22]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1999-04-22">[1999 Apr 22]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563536"
id="ref29"
level="file">
<did>
<unittitle>"Long Time Ago," drafts, typescript, corrected, and typescript photocopy</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563537"
id="ref30"
level="file">
<did>
<unittitle>"The Milk River," computer printout</unittitle>
<unitdatestructured altrender="[1996 Oct 29]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1996-10-29">[1996 Oct 29]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563538"
id="ref31"
level="file">
<did>
<unittitle>"Preface," computer printout</unittitle>
<unitdatestructured altrender="[1996 May 7]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1996-05-07">[1996 May 7]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563539"
id="ref32"
level="file">
<did>
<unittitle>"Preface," computer printout</unittitle>
<unitdatestructured altrender="[1999 Jan 21]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1999-01-21">[1999 Jan 21]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563540"
id="ref33"
level="file">
<did>
<unittitle>"Native American Renaissance," printed version, <title localtype="simple" render="italic">
<part>Modernization and Cultural Identity</part>
</title>
</unittitle>
<unitdatestructured altrender="1999" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1999">1999</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563541"
id="ref34"
level="file">
<did>
<unittitle>["September is like..."] draft, computer printout, corrected, and computer printout, photocopy</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563542"
id="ref35"
level="file">
<did>
<unittitle>"The West from Two Perspectives," computer printout, photocopy</unittitle>
<container altrender="/repositories/11/top_containers/69136 /locations/9"
containerid="39002091457623"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">41</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">728</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563543"
id="ref37"
level="file">
<did>
<unittitle>"Writing Montana," computer printout</unittitle>
<unitdatestructured altrender="[1997 Feb]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1997-02">[1997 Feb]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563544"
id="ref38"
level="file">
<did>
<unittitle>"A Young Writer's Foreign Adventures," computer printout</unittitle>
<unitdatestructured altrender="[1995 Nov 10]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1995-11-10">[1995 Nov 10]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563545"
id="ref39"
level="file">
<did>
<unittitle>"You're in Blackfeet Country," drafts, typescript, corrected, and typescript photocopy</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">20</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/563546"
id="ref40"
level="subseries">
<did>
<unittitle>LECTURES</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/563547"
id="ref41"
level="file">
<did>
<unittitle>"American Destiny," typescript, corrected, and holograph</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563548"
id="ref42"
level="file">
<did>
<unittitle>"Commencement -- Browning," draft, computer printout, corrected</unittitle>
<unitdatestructured altrender="1993 Jun" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1993-06">1993 Jun</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563549"
id="ref43"
level="file">
<did>
<unittitle>"Fiction and Politics," computer printout</unittitle>
<unitdatestructured altrender="[1998 Nov 3]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1998-11-03">[1998 Nov 3]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563550"
id="ref44"
level="file">
<did>
<unittitle>["For many years..."], draft, computer printout</unittitle>
<unitdatestructured altrender="1990 Sep" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1990-09">1990 Sep</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563551"
id="ref45"
level="file">
<did>
<unittitle>["Good evening, ladies and..."], computer printout</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563552"
id="ref46"
level="file">
<did>
<unittitle>"Graduation Speech," computer printouts</unittitle>
<unitdatestructured altrender="[1997]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1997">[1997]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563553"
id="ref47"
level="file">
<did>
<unittitle>"The Last Stand," drafts, computer printout, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563554"
id="ref48"
level="file">
<did>
<unittitle>"Native American Renaissance," computer printout</unittitle>
<unitdatestructured altrender="[1999 Apr 3]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1999-04-03">[1999 Apr 3]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">28</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/563555"
id="ref49"
level="subseries">
<did>
<unittitle>NOVELS</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/563556"
id="ref50"
level="subseries">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Death of Jim Loney</part>
</title>
</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/563557"
id="ref51"
level="file">
<did>
<unittitle>Notes</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563558"
id="ref52"
level="file">
<did>
<unittitle>[First] draft, typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/69097 /locations/9"
containerid="39002091457722"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563559"
id="ref53"
level="file">
<did>
<unittitle>[Second] draft, typescript and typescript photocopy, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/69098 /locations/9"
containerid="39002091457235"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563560"
id="ref54"
level="file">
<did>
<unittitle>[Third] draft, typescript and typescript photocopy, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/69098 /locations/9"
containerid="39002091457235"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/563561"
id="ref55"
level="file">
<did>
<unittitle>[Third] draft, typescript photocopy, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/69098 /locations/9"
containerid="39002091457235"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">33-34</container>