-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path959.xml
2346 lines (2346 loc) · 132 KB
/
959.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.kerman">beinecke.kerman</recordid>
<otherrecordid localtype="BIB">4652405</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Cynthia Earl Kerman Papers Relating to The Lives of Jean Toomer
</titleproper>
<titleproper localtype="filing">Kerman (Cynthia Earl) Papers Relating to The Lives of Jean Toomer</titleproper>
<author>by Beinecke staff</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>2007-05-16</date>
<num>JWJ MSS 116</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">4652405</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-7</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="8">8</num> published digital objects.</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>in_progress</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:53:21-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:53</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/959" level="collection">
<did>
<unittitle>Cynthia Earl Kerman Papers Relating to <title localtype="simple" render="italic">
<part>The Lives of Jean Toomer</part>
</title>
</unittitle>
<unitid>JWJ MSS 116</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>2.73</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">7 boxes</physdesc>
<unitdatestructured altrender="1959-1982" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1959">1959</fromdate>
<todate standarddate="1982">1982</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_88b9e431a1404b5ff5ae6c60ebc37fba">Research files, including notes, manuscripts, printed material, photographs, and audio tapes compiled by Cynthia Earl Kerman in the process of writing <title render="italic">
<part>The Lives of Jean Toomer</part>
</title>.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Kerman, Cynthia Earl</part>
</persname>
</origination>
</did>
<accessrestrict id="aspace_af3867434c41ea2771a1c542cc359bfb">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Box 6 (audiocassettes): Restricted fragile material. Reference copies may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<userestrict id="aspace_7304df30d3febf340bfd7627802b9ee8">
<head>Conditions Governing Use</head>
<p>The Cynthia Earl Kerman Papers Relating to The Lives of Jean Toomer is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<prefercite id="aspace_f0ee34a158b2381ab870afb253d8442e">
<head>Preferred Citation</head>
<p>The Cynthia Earl Kerman Papers Relating to the Lives of Jean Toomer . Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_3a63b93c758a16d07197348a5b0bc781">
<head>Processing Information</head>
<p>This collection received a basic level of processing in 2014, including rehousing and in some instances minimal organization.</p>
<p>The finding aid for this collection is compiled from individual preliminary lists for each acquisition that were created at or around the time of receipt by the library. The preliminary lists were migrated to comply with current archival descriptive standards and merged into a single file in 2007-2008. As part of the migration, modifications were made to the formatting of individual lists; however, the content of the lists was neither modified nor verified.</p>
<p>As a rule, descriptive information found in the Collection Contents section is drawn in large part 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>
<p>This collection includes materials previously identified by the call number Uncat MSS 62.</p>
</processinfo>
<bioghist id="aspace_91dc6c1c86373a3748cfce23f71f24a3">
<head>Cynthia Earl Kerman (1923-2012)</head>
<p>Cynthia Earl Kerman, biographer of Jean Toomer.</p>
</bioghist>
<scopecontent id="aspace_53b4c8d0b51fded5d92b698abc6c556c">
<head>Scope and Contents</head>
<p>Research files, including notes, manuscripts, printed material, photographs, and audio tapes compiled by Cynthia Earl Kerman in the process of writing <title render="italic">
<part>The Lives of Jean Toomer</part>
</title>.</p>
</scopecontent>
<acqinfo id="aspace_815721f84e94bc993b6b80b9644564d0">
<head>Immediate Source of Acquisition</head>
<p>Gift of Cynthia Earl Kerman, 2000.</p>
</acqinfo>
<arrangement id="aspace_580668f36ad40eb0c16c23c53342cc4f">
<head>Arrangement</head>
<p>Organized into two groupings: July 2000 Acquisition and January 2013 Acquisition.</p>
</arrangement>
<controlaccess>
<subject source="local">
<part localtype="topical">Biographers</part>
<part localtype="geographic">United States</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 source="local">
<part localtype="topical">Poets, American</part>
<part localtype="temporal">20th Century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85086446"
source="lcsh">
<part localtype="topical">Modernism (Literature)</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85058929"
source="lcsh">
<part localtype="topical">Harlem Renaissance</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85004341"
source="lcsh">
<part localtype="topical">American literature</part>
<part localtype="temporal">20th Century</part>
</subject>
<genreform source="local">
<part localtype="genre_form">Audiovisual materials</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Audiocassettes</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Photographs</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</genreform>
<occupation source="local">
<part localtype="occupation">Biographers</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Poets</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<persname rules="aacr" source="local">
<part localtype="agent_person">Kerman, Cynthia Earl (Lives of Jean Toomer)</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Kerman, Cynthia Earl</part>
</persname>
<persname>
<part localtype="agent_person">Toomer, Jean, 1894-1967</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Toomer, Marjorie, 1895-1984</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/332270"
id="ref143"
level="otherlevel"
otherlevel="accession">
<did>
<unittitle>July 2000 Acquisition</unittitle>
<unitid>1</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>7</quantity>
<unittype>boxes</unittype>
</physdescstructured>
</did>
<arrangement id="aspace_b5e3d4c4e153c4120d4d77dd6a4cd7b1">
<head>Arrangement</head>
<p>Organized into eight series: I. Biographical Research Files, 1923-1984. II. Notes and Copies of Writings by Toomer, 1949-1982. III. People Connected With Toomer, 1978-1987. IV. Interviews (Transcriptions), 1970-1983. V. Interviews (Audiocassettes), 1975-1983. VI. Chronological Notes, 1983-1995. VII. Unsorted Research Files, 1982-1983. VIII. Printed Material, 1966-1982.</p>
</arrangement>
<accessrestrict id="aspace_fb7800acd5bb0ce6d672517ef1740a0b">
<head>Conditions Governing Access</head>
<p>Box 6 (audiovisual material): Restricted fragile. Reference copies may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<c altrender="/repositories/11/archival_objects/332271"
id="ref10"
level="series">
<did>
<unittitle>Biographical Research Files</unittitle>
<unitid>Series I</unitid>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1923">1923</fromdate>
<todate standarddate="1984">1984</todate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/332272"
id="ref11"
level="file">
<did>
<unittitle>Buckingham meeting</unittitle>
<unitdatestructured altrender="1923" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1923">1923</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1962" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1962">1962</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33866 /locations/9"
containerid="39002104796504"
id="aspace_ref11_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref11_c2" localtype="folder" parent="aspace_ref11_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332273"
id="ref12"
level="file">
<did>
<unittitle>Personal appreciations</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1967">1967</fromdate>
<todate standarddate="1978">1978</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33866 /locations/9"
containerid="39002104796504"
id="aspace_ref12_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref12_c2" localtype="folder" parent="aspace_ref12_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332274"
id="ref13"
level="file">
<did>
<unittitle>Personality quirks</unittitle>
<unitdatestructured altrender="1980-1982, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="1982">1982</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33866 /locations/9"
containerid="39002104796504"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332275"
id="ref14"
level="file">
<did>
<unittitle>Toomer photographs</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33866 /locations/9"
containerid="39002104796504"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332276"
id="ref15"
level="file">
<did>
<unittitle>Toomer and race</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33866 /locations/9"
containerid="39002104796504"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332277"
id="ref16"
level="file">
<did>
<unittitle>Writings about Toomer</unittitle>
<unitdatestructured altrender="1969-1984, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1969">1969</fromdate>
<todate standarddate="1984">1984</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33866 /locations/9"
containerid="39002104796504"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332278"
id="ref136"
level="file">
<did>
<unittitle>Criticisms of Toomer</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33866 /locations/9"
containerid="39002104796504"
id="aspace_ref136_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref136_c2" localtype="folder" parent="aspace_ref136_c1">7</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/332279"
id="ref17"
level="series">
<did>
<unittitle>Notes and Copies of Writings by Toomer</unittitle>
<unitid>Series II</unitid>
<unitdatestructured altrender="1949-1982" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1982">1982</todate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/332280"
id="ref18"
level="file">
<did>
<unittitle>Alphabetical list with dates and Kerman's notes</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33866 /locations/9"
containerid="39002104796504"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332281"
id="ref19"
level="file">
<did>
<unittitle>Bibliography and notes on Toomer</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33866 /locations/9"
containerid="39002104796504"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332282"
id="ref20"
level="file">
<did>
<unittitle>Toomer's autobiography</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/332283"
id="ref21"
level="file">
<did>
<unittitle>Notes on relationship of segments</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33866 /locations/9"
containerid="39002104796504"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332284"
id="ref22"
level="file">
<did>
<unittitle>Earth-Being introduction</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33866 /locations/9"
containerid="39002104796504"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332285"
id="ref23"
level="file">
<did>
<unittitle>Books II and III, Earth-Being (from MCT collection)</unittitle>
<unitdatestructured altrender="1978" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1978">1978</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33866 /locations/9"
containerid="39002104796504"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332286"
id="ref24"
level="file">
<did>
<unittitle>From Exile Into Being, version I</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33866 /locations/9"
containerid="39002104796504"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332287"
id="ref25"
level="file">
<did>
<unittitle>From Exile Into Being, version II, part 1</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33866 /locations/9"
containerid="39002104796504"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332288"
id="ref26"
level="file">
<did>
<unittitle>From Exile Into Being, version II, part 2</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">15</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/332289"
id="ref27"
level="file">
<did>
<unittitle>Blue Meridian</unittitle>
<unitdatestructured altrender="1982, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1982">1982, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332290"
id="ref28"
level="file">
<did>
<unittitle>First trip to Fontainebleau (1955-1956)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated </unitdate>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332291"
id="ref29"
level="file">
<did>
<unittitle>The Flavor of Man</unittitle>
<unitdatestructured altrender="1949, 1974, 1979"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1979">1979</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332292"
id="ref30"
level="file">
<did>
<unittitle>Friends Intelligencer items (1943-1950)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332293"
id="ref31"
level="file">
<did>
<unittitle>The Gallonwerps (1927-1928)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332294"
id="ref32"
level="file">
<did>
<unittitle>An interpretation of Friends worship</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1946">1946</fromdate>
<todate standarddate="1947">1947</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332295"
id="ref33"
level="file">
<did>
<unittitle>Minor writing before 1932</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332296"
id="ref34"
level="file">
<did>
<unittitle>Lecturing and minor writing after 1932</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332297"
id="ref35"
level="file">
<did>
<unittitle>The Negro Emergent (1925)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated </unitdate>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332298"
id="ref36"
level="file">
<did>
<unittitle>Portage potential</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332299"
id="ref37"
level="file">
<did>
<unittitle>Psychologic series (1937)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332300"
id="ref38"
level="file">
<did>
<unittitle>Race problems and modern society (1928-1929)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332301"
id="ref39"
level="file">
<did>
<unittitle>Notes on religion</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332302"
id="ref40"
level="file">
<did>
<unittitle>Remember and return and first statements</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332303"
id="ref41"
level="file">
<did>
<unittitle>Roads, people and principles</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332304"
id="ref42"
level="file">
<did>
<unittitle>Transatlantic</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332305"
id="ref43"
level="file">
<did>
<unittitle>Values and fictions</unittitle>
<unitdatestructured altrender="1975, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1975">1975, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">32</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/332306"
id="ref44"
level="series">
<did>
<unittitle>People Connected With Toomer</unittitle>
<unitid>Series III</unitid>
<unitdatestructured altrender="1978-1987" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1978">1978</fromdate>
<todate standarddate="1987">1987</todate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/332307"
id="ref45"
level="file">
<did>
<unittitle>Morely Ayearst</unittitle>
<unitdatestructured altrender="1983" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1983">1983</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332308"
id="ref46"
level="file">
<did>
<unittitle>Douglas Campbell</unittitle>
<unitdatestructured altrender="1982" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1982">1982</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332309"
id="ref47"
level="file">
<did>
<unittitle>Chicago group</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332310"
id="ref48"
level="file">
<did>
<unittitle>Hart Crane</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332311"
id="ref49"
level="file">
<did>
<unittitle>Aaron Douglas and Katherine Mansfield</unittitle>
<unitdatestructured altrender="1980" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1980">1980</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">37</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332312"
id="ref50"
level="file">
<did>
<unittitle>Walter Driscoll</unittitle>
<unitdatestructured altrender="1981-1983" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1981">1981</fromdate>
<todate standarddate="1983">1983</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332313"
id="ref51"
level="file">
<did>
<unittitle>Waldo Frank</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">39</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332314"
id="ref52"
level="file">
<did>
<unittitle>Friends of Marjorie Content Toomer and Jean Toomer</unittitle>
<unitdatestructured altrender="1981-1987, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1981">1981</fromdate>
<todate standarddate="1987">1987</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332315"
id="ref53"
level="file">
<did>
<unittitle>Zona Gale</unittitle>
<unitdatestructured altrender="1983, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1983">1983, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33867 /locations/9"
containerid="39002104796512"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">41</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332316"
id="ref54"
level="file">
<did>
<unittitle>Gurdjieff and Toomer</unittitle>
<unitdatestructured altrender="1982" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1982">1982</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33868 /locations/9"
containerid="39002104796520"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">42</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332317"
id="ref55"
level="file">
<did>
<unittitle>Margery Latimer</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33868 /locations/9"
containerid="39002104796520"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">43</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332318"
id="ref56"
level="file">
<did>
<unittitle>Meridel le Sueur</unittitle>
<unitdatestructured altrender="1982" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1982">1982</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33868 /locations/9"
containerid="39002104796520"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">44</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332319"
id="ref57"
level="file">
<did>
<unittitle>Mabel Dodge Luhan</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33868 /locations/9"
containerid="39002104796520"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref57_c2" localtype="folder" parent="aspace_ref57_c1">45</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/332320"
id="ref58"
level="file">
<did>
<unittitle>Margo Latimer</unittitle>
<unitdatestructured altrender="1978, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1978">1978, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33868 /locations/9"
containerid="39002104796520"
id="aspace_ref58_c1"