-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path666.xml
3552 lines (3552 loc) · 195 KB
/
666.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.samarin">beinecke.samarin</recordid>
<otherrecordid localtype="BIB">4123917</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Vladimir Samarin (Sokolov) Correspondence
</titleproper>
<titleproper localtype="filing">Samarin (Sokolov) (Vladimir) Correspondence</titleproper>
<author>by Robert Bird and Nicole Bouche</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 1997, updated December 2023</date>
<num>GEN MSS 295</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">4123917</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-4</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="2">2</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="7">7</num> digital files.</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>beinecke manuscript unit archival processing manual</abbr>
<citation>translation missing: en.enumerations.resource_finding_aid_description_rules.beinecke manuscript unit archival processing manual</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:29:20-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:29</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/666" level="collection">
<did>
<unittitle>Vladimir Samarin correspondence and other papers</unittitle>
<unitid>GEN MSS 295</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="rus">Russian</language>
<language langcode="eng">English</language>
<descriptivenote>
<p>Materials chiefly in Russian. Materials created and collected by Alexander M. Schenker in English.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1.47</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">4 boxes</physdesc>
<unitdatestructured altrender="1945-1988" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1945">1945</fromdate>
<todate standarddate="1988">1988</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_318154c635467a6c2d0414dfc8920f77">Incoming (508 letters, signed) and carbons of outgoing (127 typescript letters) correspondence, mostly regarding Russian émigré publications, literary and church affairs. Includes the typescript of Samarin's "Front v tylu (Bolʹshevistskoe podpolʹe v zani︠a︡tykh nemt︠s︡ami oblasti︠a︡kh SSSR, 98 p., 1951), page-proofs of works by Ivan Alekseevich Bunin with annotations by Bunin, and materials created and collected by Alexander M. Schenker relating to Samarin's trial.</abstract>
<origination label="Creator">
<persname source="local">
<part localtype="agent_person">Samarin, Vladimir D., pseud.</part>
</persname>
</origination>
</did>
<accessrestrict id="aspace_3d9589de6e5aa4275567a67243549902">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<acqinfo id="aspace_21f0602a027910fabcde56b645cdc086">
<head>Immediate Source of Acquisition</head>
<p>Gift and purchase from Vladimir Samarin, 1972-1985. Gift of Alexander M. Schenker.</p>
</acqinfo>
<bioghist id="aspace_b46811e9c3a029e62bb3123566f23ddb">
<head>VLADIMIR SAMARIN (SOKOLOV)</head>
<p>Vladimir Samarin was born Vladimir Dmitrievich Sokolov March 2, 1913 in the central Russian city of Orel. In 1936, despite some troubles encountered due to his family's bourgeois background, he completed the local Institute and commenced a career teaching Russian literature in Voronezh.</p>
<p>Under German occupation in 1942-1944 Samarin wrote for the newspapers <title localtype="simple" render="italic">
<part>Rech</part>
</title> (based in Orel) and <title localtype="simple" render="italic">
<part>Volia naroda</part>
</title>. Upon arriving at a camp for displaced persons (DPs) in post-war Germany he continued his journalistic calling in new émigré publications. In addition to contributing anti-communist commentaries and short-stories to various journals, he was editor of <title localtype="simple" render="italic">
<part>Put'</part>
</title> (1946-1949) and <title localtype="simple" render="italic">
<part>Posev</part>
</title> (1949-1951) and a prominent member of the anti-communist Natsional'no-trudovoi soiuz (NTS). In 1951, Samarin emigrated to the United States, where he worked for a while as a copy-editor for the Chekhov Publishing House in New York. He continued to write for émigré journals such as <title localtype="simple" render="italic">
<part>Grani</part>
</title> and <title localtype="simple" render="italic">
<part>Vozrozhdenie</part>
</title>, and for the newspapers <title localtype="simple" render="italic">
<part>Novoe russkoe slovo</part>
</title> and <title localtype="simple" render="italic">
<part>La pensée russe</part>
</title>. In 1964, Samarin published his first collection of stories, <title localtype="simple" render="italic">
<part>Peschanaia otmel'</part>
</title>, which was followed by <title localtype="simple" render="italic">
<part>TSvet vremeni</part>
</title> (1969), <title localtype="simple" render="italic">
<part>Teni na stene</part>
</title> (1972) and <title localtype="simple" render="italic">
<part>Teplyi mramor</part>
</title> (1976). In 1972, Samarin collected his travel sketches into the book <title localtype="simple" render="italic">
<part>Dalekaia zvezda</part>
</title>. That same year, he published in English an impassioned account of the Russian Orthodox Church under Soviet rule, <title localtype="simple" render="italic">
<part>Triumphant Cain. An Outline of the Calvary of the Russian Church</part>
</title>.</p>
<p>Samarin was a lecturer of Russian language at Yale University from 1959. In 1976, the Soviet propaganda organ "Sowjetisches Heimland" called attention to his wartime activities as a collaborationist journalist. He subsequently resigned his position at Yale and was deported to Canada, where he died on January 19, 1992. Samarin is buried at Novo-Diveevo cemetary in Spring Valley, New York.</p>
</bioghist>
<prefercite id="aspace_785cb048c0414657dea741ef8c4cb554">
<head>Preferred Citation</head>
<p>Vladimir Samarin (Sokolov) Correspondence. General Collection, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<scopecontent id="aspace_bf982f6af85e99c38c804c6baf6db339">
<head>Scope and Contents</head>
<p>
<ref actuate="onrequest" show="replace" target="ref10">
<title localtype="simple" render="italic">
<part>Series I: Correspondence</part>
</title>
</ref>includes letters to Samarin from Russian émigré literateurs and church figures and a significant quantity of his replies. Of particular note are letters from G. V. Adamovich, G. V. Ivanov, A. F. Kerensky, Archimandrite Konstantin (Zaitsev), N. O. Losskii, Nikolai Vladimirovich Narokov, Aleksandra L'vovna Tolstaia and B. K. Zaitsev. The main topics of discussion are political developments in the USSR, major events in émigré literary life and the worsening schism between the Russian Orthodox Church outside Russia and what became the Orthodox Church in America.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref82">
<title localtype="simple" render="italic">
<part>Series II: Other Papers</part>
</title>
</ref> includes a long essay and an obituary by Samarin, and also corrected proofs by I. A. Bunin, apparently preserved from Samarin's days at the Chekhov Publishing House. Also present are papers created and collected by Alexander M. Schenker relating to Samarin's trial.</p>
<p>
<ref actuate="onrequest"
show="replace"
target="aspace_3f8410547e5c1bf29b6cefae2d87cc9b">
<title localtype="simple" render="italic">
<part>December 1985 Acquisition</part>
</title>
</ref> includes letters to Samarin from Russian professors, publicists, historians, poets, writers--some of the third emigration--as well as nevozvrashchenets, the Russian term for citizens of the USSR who refused to return to their country from the trips.</p>
</scopecontent>
<userestrict id="aspace_eb046547635794e7b0c72ae7a5f44978">
<head>Conditions Governing Use</head>
<p>The Vladimir Samarin (Sokolov) Correspondence is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<controlaccess>
<title source="local">
<part localtype="uniform_title">Novoe russkoe slovo</part>
</title>
<title source="local">
<part localtype="uniform_title">Pravoslavnai︠a︡ Rusʹ</part>
</title>
<title identifier="http://id.loc.gov/authorities/names/n84147693"
source="lcsh">
<part localtype="uniform_title">Russkai︠a︡ myslʹ (Paris, France : 1947)</part>
</title>
<geogname source="local">
<part localtype="geographic">Russia</part>
<part localtype="topical">Emigration and immigration</part>
</geogname>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85103862"
source="lcsh">
<part localtype="topical">Poets, Russian</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85009984"
source="lcsh">
<part localtype="topical">Authors, Russian</part>
</subject>
<persname>
<part localtype="agent_person">Anastasīĭ, Metropolitan, 1873-1965</part>
</persname>
<persname>
<part localtype="agent_person">Konstantin, Archimandrite</part>
</persname>
<persname>
<part localtype="agent_person">Adamovich, Georgiĭ, 1892-1972</part>
</persname>
<persname>
<part localtype="agent_person">Aldanov, Mark Aleksandrovich, 1886-1957</part>
</persname>
<persname>
<part localtype="agent_person">Belinkov, A. (Arkadiĭ), 1921-1970</part>
</persname>
<persname>
<part localtype="agent_person">Bunin, Ivan Alekseevich, 1870-1953</part>
</persname>
<persname>
<part localtype="agent_person">Gazdanov, Gaito, 1903-1971</part>
</persname>
<persname>
<part localtype="agent_person">Ivanov, Georgiĭ, 1894-1958</part>
</persname>
<persname>
<part localtype="agent_person">Kerensky, Aleksandr Fyodorovich, 1881-1970</part>
</persname>
<persname>
<part localtype="agent_person">Losskiĭ, N. O. (Nikolaĭ Onufrievich), 1870-1965</part>
</persname>
<persname>
<part localtype="agent_person">Nicolaevsky, Boris I., 1887-1966</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Samarin, Vladimir</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Sikorsky, Igor Ivan, 1889-1972</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Sokolova, Tatʹi︠a︡na Georgievna</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Tolstoy, Alexandra, 1884-1979</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Veĭnbaum, M. E. (Mark Efimovich), 1890-1973</part>
</persname>
<persname>
<part localtype="agent_person">Zaĭt︠s︡ev, Boris, 1881-1972</part>
</persname>
<persname>
<part localtype="agent_person">Zenzinov, V. (Vladimir), 1880-1953</part>
</persname>
<persname>
<part localtype="agent_person">Zurov, Leonid, 1902-1971</part>
</persname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Izdatelʹstvo imeni Chekhova (New York, N.Y.)</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Narodno-trudovoĭ soi︠u︡z</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Russkai͡a pravoslavnai͡a t͡serkovʹ zagranit͡seĭ</part>
</corpname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Tolstoy Foundation (U.S.)</part>
</corpname>
<persname rules="aacr">
<part localtype="agent_person">Schenker, Alexander M., 1924-</part>
</persname>
<persname source="local">
<part localtype="agent_person">Panin, Gennadiĭ Gennadievich</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Rzhevskiĭ, Leonid, 1905-1986</part>
</persname>
<persname>
<part localtype="agent_person">Filippov, Boris, 1905-1991</part>
</persname>
<persname identifier="n88037993" source="naf">
<part localtype="agent_person">Morshen, Nikolaĭ</part>
</persname>
<persname>
<part localtype="agent_person">Berezov, Rodion, 1896-1988</part>
</persname>
<persname identifier="n96119583" source="naf">
<part localtype="agent_person">Andreev-Khomiakov, Gennady</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Kurganov, I. A. (Ivan Alekseevich)</part>
</persname>
<persname>
<part localtype="agent_person">Struve, Gleb, 1898-1985</part>
</persname>
<persname identifier="n79128998" source="naf">
<part localtype="agent_person">Setchkarev, Vsevolod, 1914-1998</part>
</persname>
<persname identifier="no95025218" source="naf">
<part localtype="agent_person">Greene, Militsa</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Poltorat︠s︡kiĭ, N. P. (Nikolaĭ Petrovich), 1921-1990</part>
</persname>
<persname identifier="n82019468">
<part localtype="agent_person">Paganut︠s︡t︠s︡i, P.</part>
</persname>
<persname identifier="no97046500" source="naf">
<part localtype="agent_person">Klimov, A. Ė.</part>
</persname>
<persname identifier="n81096133" source="naf">
<part localtype="agent_person">Ermolaev, Herman</part>
</persname>
<persname>
<part localtype="agent_person">Pushkarev, S. G. (Sergeĭ Germanovich), 1888-1980</part>
</persname>
<persname identifier="n84200229">
<part localtype="agent_person">Andreyev, N. E. (Nikolay Efremovich), 1908-1982</part>
</persname>
<persname identifier="n93021681" source="naf">
<part localtype="agent_person">Kovalevsky, Pierre, 1901-1978</part>
</persname>
<persname identifier="n50057625" source="naf">
<part localtype="agent_person">Hlybinny, Uladzimer, 1910-1995</part>
</persname>
<persname>
<part localtype="agent_person">Ansteĭ, Olʹga, 1912-1985</part>
</persname>
<persname identifier="nr89016706" source="naf">
<part localtype="agent_person">Nart︠s︡issov, Boris</part>
</persname>
<persname>
<part localtype="agent_person">Terapiano, I︠U︡riĭ, 1892-1980</part>
</persname>
<persname identifier="n84065517" source="naf">
<part localtype="agent_person">Rafalʹskiĭ, Sergeĭ, 1895-1981</part>
</persname>
<persname>
<part localtype="agent_person">Veĭdle, V., 1895-1979</part>
</persname>
<persname source="naf">
<part localtype="agent_person">Bolʹshukhin, I︠U︡r. (I︠U︡riĭ)</part>
</persname>
<persname identifier="n85098342" source="naf">
<part localtype="agent_person">Kuznet︠s︡ov, Anatoliĭ</part>
</persname>
<persname identifier="n50040645" source="naf">
<part localtype="agent_person">Maksimov, Vladimir, 1930-1995</part>
</persname>
<persname identifier="n82151576" source="naf">
<part localtype="agent_person">Korzhavin, N. (Naum), 1925-2018</part>
</persname>
<persname identifier="n50050202" source="naf">
<part localtype="agent_person">Panin, Dimitriĭ Mikhaĭlovich, 1911-1987</part>
</persname>
<persname identifier="no99086079" source="naf">
<part localtype="agent_person">Legkai︠a︡, Iraida, 1932-</part>
</persname>
<persname identifier="no88005547" source="naf">
<part localtype="agent_person">Belavina, Nonna, 1915-2004</part>
</persname>
<persname identifier="nr89006171" source="naf">
<part localtype="agent_person">Ilʹinskiĭ, Oleg</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Chinnov, Igorʹ</part>
</persname>
<persname identifier="n85145174" source="naf">
<part localtype="agent_person">Pereleshin, Valeriĭ</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Tauber, Ekaterina</part>
</persname>
<persname identifier="n86123473" source="naf">
<part localtype="agent_person">Pomerant︠s︡ev, Kirill</part>
</persname>
<persname>
<part localtype="agent_person">Berberova, N. (Nina), 1901-1993</part>
</persname>
<persname identifier="n85812647" source="naf">
<part localtype="agent_person">Bobrova, Ėlla, 1911-2012</part>
</persname>
<persname identifier="n84064854" source="naf">
<part localtype="agent_person">Fedoseev, A. P. (Aleksandr Petrovich)</part>
</persname>
<persname identifier="n82102983" source="naf">
<part localtype="agent_person">Ktorova, Alla, 1926-</part>
</persname>
<persname identifier="n89652864" source="naf">
<part localtype="agent_person">Barmine, Alexandre</part>
</persname>
<persname identifier="n81007831" source="naf">
<part localtype="agent_person">Schakovskoy, Zinaïda, princesse, 1906-2001</part>
</persname>
<persname identifier="n88092198" source="naf">
<part localtype="agent_person">Obolenskiĭ, S. S. (Sergeĭ Sergeevich), 1908-1980</part>
</persname>
<persname identifier="n86123563" source="naf">
<part localtype="agent_person">Delianich, A. (Ariadna)</part>
</persname>
<persname identifier="n85166309" source="naf">
<part localtype="agent_person">Kruzenshtern-Peteret︠s︡, I︠U︡.</part>
</persname>
<corpname identifier="no2021150524" source="naf">
<part localtype="agent_corporate_entity"> Yale University. Department of Slavic Languages and Literatures</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/217045"
id="ref10"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<unitdatestructured altrender="1948-1976" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1948">1948</fromdate>
<todate standarddate="1976">1976</todate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/217046"
id="ref11"
level="subseries">
<did>
<unittitle>LETTERS RECEIVED</unittitle>
<unitdatestructured altrender="1948-1976" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1948">1948</fromdate>
<todate standarddate="1976">1976</todate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/217047"
id="ref12"
level="file">
<did>
<unittitle>Adamovich, Georgii Viktorovich</unittitle>
<unitdatestructured altrender="1965-72" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1965">1965</fromdate>
<todate standarddate="1972">1972</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref12_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref12_c2" localtype="folder" parent="aspace_ref12_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217048"
id="ref13"
level="file">
<did>
<unittitle>Aldanov, Mark Aleksandrovich</unittitle>
<unitdatestructured altrender="1954 Dec 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1954-12-02">1954 Dec 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">2</container>
</did>
<scopecontent id="aspace_f0e55f57329e66d0802774f97077235a">
<head>Scope and Contents</head>
<p>Pseudonym of M. A. Landau</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217049"
id="ref15"
level="file">
<did>
<unittitle>Anastasii (Gribanovskii), Metropolitan</unittitle>
<unitdatestructured altrender="1955-58" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1955">1955</fromdate>
<todate standarddate="1958">1958</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217050"
id="ref16"
level="file">
<did>
<unittitle>Andreevskii, B.</unittitle>
<unitdatestructured altrender="1959-63" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1959">1959</fromdate>
<todate standarddate="1963">1963</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217051"
id="ref17"
level="file">
<did>
<unittitle>Argus, Mikhail Konstantinovich</unittitle>
<unitdatestructured altrender="1965-70" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1965">1965</fromdate>
<todate standarddate="1970">1970</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">5</container>
</did>
<scopecontent id="aspace_ba53c663ce026e6c8e29800ec770ff31">
<head>Scope and Contents</head>
<p>Pseudonym of M. K. Aizenshtadt</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217052"
id="ref19"
level="file">
<did>
<unittitle>Belinkov, Arkadii</unittitle>
<unitdatestructured altrender="1969 Aug 30" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1969-08-30">1969 Aug 30</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217053"
id="ref20"
level="file">
<did>
<unittitle>Dalin, D.</unittitle>
<unitdatestructured altrender="1951 Feb 16" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1951-02-16">1951 Feb 16</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217054"
id="ref21"
level="file">
<did>
<unittitle>Domogatskii, Boris</unittitle>
<unitdatestructured altrender="1965-67" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1965">1965</fromdate>
<todate standarddate="1967">1967</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217055"
id="ref22"
level="file">
<did>
<unittitle>Gazdanov, Gaito</unittitle>
<unitdatestructured altrender="1971 June 4" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1971-06-04">1971 June 4</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217056"
id="ref23"
level="file">
<did>
<unittitle>Grinberg, Roman Nikolaevich</unittitle>
<unitdatestructured altrender="1965-68" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1965">1965</fromdate>
<todate standarddate="1968">1968</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217057"
id="ref24"
level="file">
<did>
<unittitle>Ivanov, Georgii Vladimirovich</unittitle>
<unitdatestructured altrender="1952 Nov 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1952-11-03">1952 Nov 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217058"
id="ref25"
level="file">
<did>
<unittitle>Kerensky, Alexander</unittitle>
<unitdatestructured altrender="1954-67" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1954">1954</fromdate>
<todate standarddate="1967">1967</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217059"
id="ref26"
level="file">
<did>
<unittitle>Konstantin (Zaitsev), Archimandrite</unittitle>
<unitdatestructured altrender="1967-71" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1967">1967</fromdate>
<todate standarddate="1971">1971</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217060"
id="ref27"
level="file">
<did>
<unittitle>Kravchenko, Viktor</unittitle>
<unitdatestructured altrender="1951 Nov 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1951-11-17">1951 Nov 17</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217061"
id="ref28"
level="file">
<did>
<unittitle>Lebedev, Fedor Tarasovich</unittitle>
<unitdatestructured altrender="1957-63" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1957">1957</fromdate>
<todate standarddate="1963">1963</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">15</container>
</did>
<scopecontent id="aspace_3d3bb900765a482d23b4f630fc7515d4">
<head>Scope and Contents</head>
<p>Includes TSentral'noe politicheskoe ob"edinenie politicheskikh emigrantov</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217062"
id="ref30"
level="file">
<did>
<unittitle>Losskii, Nikolai Onufrievich</unittitle>
<unitdatestructured altrender="1958 Mar 31" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1958-03-31">1958 Mar 31</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217063"
id="ref31"
level="file">
<did>
<unittitle>Maksimov, Sergei Sergeevich</unittitle>
<unitdatestructured altrender="1949-55" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1955">1955</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">17</container>
</did>
<scopecontent id="aspace_6b914a04557ff2b8de898b09d4c64cd0">
<head>Scope and Contents</head>
<p>Pseudonym of S. S. Pashin</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217064"
id="ref33"
level="file">
<did>
<unittitle>Margolin,IUlii</unittitle>
<unitdatestructured altrender="1970 Mar 11" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1970-03-11">1970 Mar 11</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217065"
id="ref34"
level="file">
<did>
<unittitle>Mozhaiskaia, Ol'ga Nikolaevna</unittitle>
<unitdatestructured altrender="1970-73" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1973">1973</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217066"
id="ref35"
level="file">
<did>
<unittitle>Narokov, Nikolai Vladimirovich</unittitle>
<unitdatestructured altrender="1949-69" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1969">1969</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">20-21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217067"
id="ref36"
level="file">
<did>
<unittitle>Neledinskii, E. N.</unittitle>
<unitdatestructured altrender="1955" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1955">1955</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217068"
id="ref37"
level="file">
<did>
<unittitle>Nikolaevskii, Boris</unittitle>
<unitdatestructured altrender="1949" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1949">1949</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">23</container>
</did>
<scopecontent id="aspace_53cb9ed2715c1e0dec7394f1dda43b33">
<head>Scope and Contents</head>
<p>Also spelled Nicolaevsky</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217069"
id="ref39"
level="file">
<did>
<unittitle>Ol'shanskii, B.</unittitle>
<unitdatestructured altrender="1953-54" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1953">1953</fromdate>
<todate standarddate="1954">1954</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217070"
id="ref40"
level="file">
<did>
<unittitle>Possev-Verlag</unittitle>
<unitdatestructured altrender="1962 Feb 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1962-02-20">1962 Feb 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">25</container>
</did>
<scopecontent id="aspace_47435aa28d64496063e41cf42c2c88ee">
<head>Scope and Contents</head>
<p>Includes A. Svetlanin</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217071"
id="ref42"
level="file">
<did>
<unittitle>Nikon (Rklitskii), Archbishop</unittitle>
<unitdatestructured altrender="1975 Dec 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1975-12-01">1975 Dec 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217072"
id="ref43"
level="file">
<did>
<unittitle>Savin, Valerian Luk'ianovich</unittitle>
<unitdatestructured altrender="1964-66" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1964">1964</fromdate>
<todate standarddate="1966">1966</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">27</container>
</did>
<scopecontent id="aspace_42498a53693181ea2f35f7d5110963c4">
<head>Scope and Contents</head>
<p>Includes <title localtype="simple" render="italic">
<part>Sovremennik</part>
</title>
</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217073"
id="ref45"
level="file">
<did>
<unittitle>Sikorsky, Igor Ivanovich</unittitle>
<unitdatestructured altrender="1957-58" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1957">1957</fromdate>
<todate standarddate="1958">1958</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">28</container>
<daoset altrender="/repositories/11/digital_objects/131715">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16495616"
identifier="oid:16495616"
linktitle="4 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16573027/full/!150,150/0/default.jpg"
identifier="oid:16495616"
linktitle="4 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16495616"
identifier="oid:16495616"
linktitle="4 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Sikorsky, Igor Ivanovich</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217074"
id="ref46"
level="file">
<did>
<unittitle>Solonevich, Ivan Luk'ianovich</unittitle>
<unitdatestructured altrender="1948-53" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1948">1948</fromdate>
<todate standarddate="1953">1953</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19490 /locations/9"
containerid="39002099283690"
id="aspace_ref46_c1"
label="Mixed Materials"