-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path11725.xml
2949 lines (2949 loc) · 183 KB
/
11725.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.ashbery">beinecke.ashbery</recordid>
<otherrecordid localtype="BIB">14905073</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the John Ashbery Collection of Artwork and Objects </titleproper>
<titleproper localtype="filing">Ashbery (John) Collection of Artwork and Objects</titleproper>
<author>by Michael Rush, Karin Roffman, and Nancy Kuhl</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>November 2021</date>
<num>YCAL MSS 1318</num>
</publicationstmt>
<notestmt>
<controlnote localtype="onsite">
<p>Boxes: 1-5, 9-12, 14, 15 (Oversize), 16, 18, 19 (Oversize), 21-22, 24-25A, 25B, 27-30, 31 (Oversize), 32-40A, 40B-41, 42-43 (Oversize), 45 (Oversize), 46A, 46B-47, 50-51 (Oversize), 52, 53 (Oversize), 63, 67, 69 (Oversize)</p>
<p>Folders: 65-66 (Broadside)</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 6-8, 13, 17 (Oversize), 20, 23, 26, 44, 48-49, 54-55 (Oversize), 56-62, 64, 68 (Oversize)</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:55:43-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 00:55</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/11725" level="collection">
<did>
<unittitle>John Ashbery collection of artwork and objects</unittitle>
<unitid>YCAL MSS 1318</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<languageset>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<languageset>
<language langcode="fre">French</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<descriptivenote>
<p>Materials in English and French.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>82</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">70 boxes + 2 broadside</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1819">1819</fromdate>
<todate standarddate="2018">2018</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_7e1b31207699451b9bcee2aaca9dc930">The collection consists of artwork and objects collected by American poet John Ashbery. It includes paintings, glassware, ceramics, clothing, household objects, realia, printed material, collage materials, and other items of significance to Ashbery, some of which inspired his poetry or appeared in his published work. The collection includes materials by or received from Ashbery's husband David Kermani and artists Joe Brainard and Trevor Winkfield, among others. All materials were kept in Ashbery's house in Hudson, New York, or his New York City apartment.</abstract>
<origination label="Creator">
<persname relator="col">
<part localtype="agent_person">Ashbery, John, 1927-2017</part>
</persname>
</origination>
</did>
<scopecontent id="aspace_73e8634f66eeae18dbb35b39b6519934">
<head>Content Description</head>
<p>The collection consists of artwork and objects collected by American poet John Ashbery. It includes paintings, glassware, ceramics, clothing, household objects, realia, printed material, collage materials, and other items of significance to Ashbery, some of which inspired his poetry or appeared in his published work. The collection includes materials by or received from Ashbery's husband David Kermani and artists Joe Brainard and Trevor Winkfield, among others. All materials were kept in Ashbery's house in Hudson, New York, or his New York City apartment.</p>
<p>In close consultation with John Ashbery's husband David Kermani, curator Nancy Kuhl and Ashbery biographer Karin Roffman chose the objects in this collection from among many similar objects in John Ashbery's homes in New York City and Hudson, New York, shortly after his death. As representative samples from the poet's large and rich personal collections, the objects here suggest something of the wide range of Ashbery's interests and gesture towards the depth, complexity, and enormity of his collections in their entirety. As a subset of a much larger whole, this group highlights Ashbery's sensibility, an artist who collected both within and across categories (plates printed with rebus puzzles, for example, are at home in a larger collection of plates and a collection of rebus puzzles in various formats). Other objects from Ashbery's collections are held by libraries, museums, and institutions, including the Houghton Library at Harvard University, the Berg Collection of the New York Public Library, the Morgan Library and Museum, Deerfield Academy, the Pultneyville Historical Society, and the Flow Chart Foundation. The Beinecke Library's collection of Ashbery objects is organized both by place (New York City or Hudson) and by room, reflecting the location of objects at the time of Ashbery's death and for the preceding few years when decreased mobility inhibited the poet's practice of frequently moving individual objects from one room to another and from one home to another.</p>
</scopecontent>
<acqinfo id="aspace_3bedc820cfdd3308c7ed52f1f7b8192a">
<head>Immediate Source of Acquisition</head>
<p>Gift of the Estate of John Ashbery and David Kermani, 2018-2021.</p>
</acqinfo>
<accessrestrict id="aspace_fafd944b1bdec9e4f9383d656e75649b">
<head>Conditions Governing Access</head>
<p>This collection is open for research.</p>
</accessrestrict>
<arrangement id="aspace_9596ba310d8dae75ec3b71ac905b941c">
<head>Arrangement</head>
<p>Organized into two series: I. Artwork and objects from Ashbery's New York City apartment, 1819-2018, undated. II. Artwork and objects from Ashbery's Hudson, New York house, 1937-1995, undated.</p>
</arrangement>
<processinfo id="aspace_d648c7f00750fae96c33f4dbe32222f8">
<head>Processing Information</head>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library attempts to provide a basic level of preservation and access for all collections as they are acquired, and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>This collection received a basic level of processing, including rehousing and minimal organization.</p>
<p>Information included in the Description of Papers note and Collection Contents section is drawn from information supplied with the collection and from an initial survey of the contents. Folder titles appearing in the contents list below are often based on those provided by the creator or previous custodian. Titles have not been verified against the contents of the folders in all cases. Otherwise, folder titles are supplied by staff during initial processing.</p>
<p>This finding aid may be updated periodically to account for new acquisitions to the collection and/or revisions in arrangement and description.</p>
</processinfo>
<userestrict id="aspace_fc42b2bda1a0700e5b5c6ef3bf604463">
<head>Conditions Governing Use</head>
<p>The John Ashbery Collection of Artwork and Objects 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_df807fe785302dc38dc953b92dfab248">
<head>Preferred Citation</head>
<p>John Ashbery Collection of Artwork and Objects. Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<bioghist id="aspace_1a209a59501bd50d3dd19fce1ca8119c">
<head>John Ashbery</head>
<p>John Ashbery (1927-2017), American poet.</p>
</bioghist>
<relatedmaterial id="aspace_84cc15f2de8cc61d2dca825ce718d6aa">
<head>Related Materials</head>
<p>John Ashbery Papers (MS Am 3189). Houghton Library, Harvard University, Cambridge, Massachusetts.</p>
</relatedmaterial>
<otherfindaid id="aspace_a3c4723c5b3404cf190012a5fa08a4d8">
<head>Other Finding Aids</head>
<p>Many of the items included in this collection appear or are described in <ref href="http://vr.ashberyhouse.yale.edu/">John Ashbery's Nest</ref>, a virtual tour of Ashbery's Hudson, New York home, which was developed in a collaboration between Ashbery biographer Karin Roffman and designers, photographers, and coders from the Yale University Digital Humanities Lab, Yale ITS, and VR Habitat, Inc.</p>
</otherfindaid>
<controlaccess>
<subject source="local">
<part localtype="topical">Poets, American</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject source="local">
<part localtype="topical">Poets, American</part>
<part localtype="temporal">21st century</part>
</subject>
<occupation source="local">
<part localtype="occupation">Poets</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">21st century</part>
</occupation>
<genreform identifier="http://vocab.getty.edu/aat/300151343" source="aat">
<part localtype="genre_form">Ceramics (object genre)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300033963" source="aat">
<part localtype="genre_form">Collages (visual works)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300010898" source="aat">
<part localtype="genre_form">Glassware</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300033618" source="aat">
<part localtype="genre_form">Paintings (visual works)</part>
</genreform>
<persname>
<part localtype="agent_person">Ashbery, John, 1927-2017</part>
</persname>
<persname>
<part localtype="agent_person">Brainard, Joe, 1942-1994</part>
</persname>
<persname>
<part localtype="agent_person">Kermani, David K.</part>
</persname>
<persname>
<part localtype="agent_person">Winkfield, Trevor, 1944-</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/3197881"
id="aspace_8f098adaa01ff58d15bf5a1b9fad7e49"
level="series">
<did>
<unittitle>Artwork and objects from Ashbery's New York City apartment</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>29.83</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">26 boxes</physdesc>
<unitdatestructured altrender="1819-2018, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1819">1819</fromdate>
<todate standarddate="2018">2018</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_53c4ba5a7a61b571cb6564a36a85cdf8">
<head>Arrangement</head>
<p>The artwork and objects from John Ashbery's New York City apartment are organized by room in sequence through the apartment: entryway, second bedroom / office, living room, bedroom, kitchen, and study.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/3198949"
id="aspace_b282696c8df9cf9c54efdd0c9fa92da6"
level="subseries">
<did>
<unittitle>Entryway</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/3198977"
id="aspace_fe64b09e78ebdcd80c26ad5d43bdb522"
level="item">
<did>
<unittitle>Six French rebus plates, including one from the Paris Exposition of 1819</unittitle>
<unitdatestructured altrender="1819, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1819">1819, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/379880 /locations/4051"
containerid="39002098816276"
id="aspace_fe64b09e78ebdcd80c26ad5d43bdb522_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3198978"
id="aspace_269716a0ac1ad266172745e0e721a766"
level="item">
<did>
<unittitle>Oval-shaped black and white ceramic box with papers</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379881 /locations/4051"
containerid="39002098816326"
id="aspace_269716a0ac1ad266172745e0e721a766_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3198979"
id="aspace_c7dd117a77eb5b2bb1c2d2476b63c5c5"
level="item">
<did>
<unittitle>Black and white ceramic vase</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379883 /locations/4051"
containerid="39002098816367"
id="aspace_c7dd117a77eb5b2bb1c2d2476b63c5c5_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3264187"
id="aspace_f462e0726fb1e17b8c07a1d7edef622a"
level="item">
<did>
<unittitle>Black and white ceramic dice</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379883 /locations/4051"
containerid="39002098816367"
id="aspace_f462e0726fb1e17b8c07a1d7edef622a_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3198981"
id="aspace_6e573bcf30c5c9950769c79b925ba24c"
level="item">
<did>
<unittitle>Bronze candlesticks</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379817 /locations/4051"
containerid="39002099194939"
encodinganalog="Paige 15"
id="aspace_6e573bcf30c5c9950769c79b925ba24c_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
<scopecontent id="aspace_6fec118e4eb86e6ea4a912a4b07b202b">
<head>Scope and Contents</head>
<p>Accompanied by two glass rings.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3198982"
id="aspace_21ef633f74ce55475a5a45ff698159a0"
level="item">
<did>
<unittitle>Puzzle Poem [Pour John]</unittitle>
<origination label="Creator">
<persname relator="art">
<part localtype="agent_person">Jamme, Franck André</part>
</persname>
</origination>
<unitdatestructured altrender="2013" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2013">2013</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/379884 /locations/4051"
containerid="39002098816359"
id="aspace_21ef633f74ce55475a5a45ff698159a0_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3198983"
id="aspace_40a7912312ff0ac29a58fa65ca404e10"
level="item">
<did>
<unittitle>Puzzle Poem [Four Wine]</unittitle>
<origination label="Creator">
<persname relator="art">
<part localtype="agent_person">Jamme, Franck André</part>
</persname>
</origination>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379884 /locations/4051"
containerid="39002098816359"
id="aspace_40a7912312ff0ac29a58fa65ca404e10_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3198984"
id="aspace_32db6d8e04e2d63026c460ae4170d8b8"
level="item">
<did>
<unittitle>Untitled print of leaves</unittitle>
<origination label="Creator">
<persname relator="art">
<part localtype="agent_person">Katz, Alex, 1927-</part>
</persname>
</origination>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1997">1997</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/379809 /locations/9"
containerid="39002099194921"
encodinganalog="archive half letter"
id="aspace_32db6d8e04e2d63026c460ae4170d8b8_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
<scopecontent id="aspace_d025d6ac371442bc28ba446e85b5f84c">
<head>Scope and Contents</head>
<p>Woodcut, artist's proof #14/25, 5 3/4 x 5 1/2 inches, signed and framed. Printed by John Erikson and published by the Cooper Union, New York.</p>
<p>This work was reproduced as the cover of Ashbery's 2002 collection <title render="italic">
<part>Chinese Whispers</part>
</title>.</p>
</scopecontent>
<processinfo id="aspace_e2aae087457dca46140ec3c034f7fdee">
<head>Processing Information</head>
<p>Unframed by Beinecke Library staff, November 2021.</p>
</processinfo>
</c>
<c altrender="/repositories/11/archival_objects/3198980"
id="aspace_d7afd3e785f82916a790af58663e5270"
level="item">
<did>
<unittitle>Photographs of objects in situ in entryway</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379809 /locations/9"
containerid="39002099194921"
encodinganalog="archive half letter"
id="aspace_d7afd3e785f82916a790af58663e5270_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3264193"
id="aspace_69c6107d833103c2fe1b9d24ca7f911e"
level="item">
<did>
<unittitle>Photograph of apartment door plate</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379809 /locations/9"
containerid="39002099194921"
encodinganalog="archive half letter"
id="aspace_69c6107d833103c2fe1b9d24ca7f911e_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3198948"
id="aspace_a5248bf36bc21819e6cfb67b0823ded5"
level="subseries">
<did>
<unittitle>Second bedroom / office</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/3198973"
id="aspace_7bb2bccf8161c8410e512101f9d025b0"
level="item">
<did>
<unittitle>Untitled collage</unittitle>
<origination label="Creator">
<persname relator="art" rules="local" source="local_beinecke">
<part localtype="agent_person">Martory, Pierre</part>
</persname>
</origination>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1960">1960</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/379818 /locations/9"
containerid="39002099194947"
encodinganalog="archive letter"
id="aspace_7bb2bccf8161c8410e512101f9d025b0_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
<processinfo id="aspace_7d959e7baa732bf6fca2d50194ae6802">
<head>Processing Information</head>
<p>Unframed by Beinecke Library staff, November 2021.</p>
</processinfo>
</c>
<c altrender="/repositories/11/archival_objects/3198971"
id="aspace_c8db808d9c6d06f308776e88c87e61c7"
level="item">
<did>
<unittitle>"The Punctuator" volvelle inscribed to Ashbery from [Alan?]</unittitle>
<container altrender="/repositories/11/top_containers/379818 /locations/9"
containerid="39002099194947"
encodinganalog="archive letter"
id="aspace_c8db808d9c6d06f308776e88c87e61c7_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
<scopecontent id="aspace_646f5d3186279c46ea1c24787cbf89f3">
<head>Scope and Contents</head>
<p>This item was behind the collage by Pierre Martory.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3198974"
id="aspace_2e3063f221226526882300cb4b6a355d"
level="item">
<did>
<unittitle>Set of three cut paper silhouettes</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379818 /locations/9"
containerid="39002099194947"
encodinganalog="archive letter"
id="aspace_2e3063f221226526882300cb4b6a355d_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3198975"
id="aspace_421debdb662fd3c134ea357bde65761b"
level="item">
<did>
<unittitle>"Your Name Here"</unittitle>
<origination label="Creator">
<persname relator="art">
<part localtype="agent_person">Lehman, David, 1948-</part>
</persname>
</origination>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="2005">2005</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/379818 /locations/9"
containerid="39002099194947"
encodinganalog="archive letter"
id="aspace_421debdb662fd3c134ea357bde65761b_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
<scopecontent id="aspace_282139501eb9c7ccf86303fc2bd7ca36">
<head>Scope and Contents</head>
<p>Collage.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3264192"
id="aspace_85766b6234e773bc47251cc91aeabd04"
level="item">
<did>
<unittitle>Photograph of note on the back of David Lehman's collage</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379818 /locations/9"
containerid="39002099194947"
encodinganalog="archive letter"
id="aspace_85766b6234e773bc47251cc91aeabd04_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3198972"
id="aspace_cf0a88a2e6754d6e0e1df9794504866a"
level="item">
<did>
<unittitle>"M-A-G-I-C" scroll, John Wells </unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379819 /locations/9"
containerid="39002098815641"
encodinganalog="card box (5d 3h 12w)"
id="aspace_cf0a88a2e6754d6e0e1df9794504866a_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
<scopecontent id="aspace_22620e8ff8f1f0bbc56af41dd1f287f7">
<head>Scope and Contents</head>
<p>Unframed, 18 x 3 3/4 inches.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3198976"
id="aspace_9445a11e193ed6251338f7eeca9a2f02"
level="item">
<did>
<unittitle>"Odyssey" book safe</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379886 /locations/4051"
containerid="39002098816342"
id="aspace_9445a11e193ed6251338f7eeca9a2f02_c1"
label="Mixed Materials"
localtype="box">9</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3198947"
id="aspace_7ed1f6e2d536f1e33435876d57581803"
level="subseries">
<did>
<unittitle>Living room</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/3198964"
id="aspace_d519774680ff4337d20332d08b0fe5bd"
level="item">
<did>
<unittitle>"Eclipse"</unittitle>
<origination label="Creator">
<persname relator="art">
<part localtype="agent_person">Winkfield, Trevor, 1944-</part>
</persname>
</origination>
<unitdatestructured altrender="December 2006" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2006-12">December 2006</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/379820 /locations/4051"
containerid="39002098815807"
encodinganalog="flat box (14d 3h 18w)"
id="aspace_d519774680ff4337d20332d08b0fe5bd_c1"
label="Mixed Materials"
localtype="box">10</container>
</did>
<scopecontent id="aspace_211ced46bf4010b448b1e094bfc5bdfc">
<head>Scope and Contents</head>
<p>Oil on canvas, 12 x 12 inches. Signed, dated, titled and dedicated to Ashbery on back.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3198965"
id="aspace_6b4709cfb0b6e0b3d93c4e560403f8f5"
level="item">
<did>
<unittitle>Ashbery's reading glasses</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379821 /locations/4051"
containerid="39002098815658"
encodinganalog="flat box (11d 3h 15w)"
id="aspace_6b4709cfb0b6e0b3d93c4e560403f8f5_c1"
label="Mixed Materials"
localtype="box">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3198966"
id="aspace_4cc5b9930d26a85bf1af9ad7dcf71c72"
level="item">
<did>
<unittitle>Contents of left side table</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379889 /locations/4051"
containerid="39002098816284"
id="aspace_4cc5b9930d26a85bf1af9ad7dcf71c72_c1"
label="Mixed Materials"
localtype="box">12</container>
</did>
<scopecontent id="aspace_c8cfe98edf8409d04830ad9e33446c10">
<head>Scope and Contents</head>
<p>The contents include matches, playing cards, tarot cards, pipe cleaners, coasters, clippings, incense, a film canister, and other miscellaneous objects.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3198967"
id="aspace_18e083dd8514df193ee077c070927b30"
level="item">
<did>
<unittitle>Small paintings by John Wells</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>6</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="circa mid to late 1990s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1994">1994</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/379822 /locations/9"
containerid="39002099194954"
encodinganalog="archive half letter"
id="aspace_18e083dd8514df193ee077c070927b30_c1"
label="Mixed Materials"
localtype="box">13</container>
</did>
<scopecontent id="aspace_5f3157444692e8912884d8b073abb382">
<head>Scope and Contents</head>
<p>John Wells, a friend of John Ashbery and David Kermani who sometimes worked for them, made many small works of trees, orobouros and other shapes while staying in their apartment. Most are either watercolor on paper or gouache on paper. Most were gifts and were made in the mid to late 1990s. A few are signed on the back.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3198969"
id="aspace_f62f99c3846acd6a6526e85290f04fa6"
level="item">
<did>
<unittitle>Ashbery's collection of barf bags</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379822 /locations/9"
containerid="39002099194954"
encodinganalog="archive half letter"
id="aspace_f62f99c3846acd6a6526e85290f04fa6_c1"
label="Mixed Materials"
localtype="box">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3198970"
id="aspace_8b96296008cf3c1aa5694d16c720f2c3"
level="item">
<did>
<unittitle>Hudson house keys</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379822 /locations/9"
containerid="39002099194954"
encodinganalog="archive half letter"
id="aspace_8b96296008cf3c1aa5694d16c720f2c3_c1"
label="Mixed Materials"
localtype="box">13</container>
</did>
<scopecontent id="aspace_2d526ddc7de6180f255ce7fd0cfb2bbe">
<head>Scope and Contents</head>
<p>Accompanied by a note from David Kermani.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3198968"
id="aspace_9889086665d97af094473815b9b3d280"
level="item">
<did>
<unittitle>Porcelain toys and dolls</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379890 /locations/4051"
containerid="39002098816383"
id="aspace_9889086665d97af094473815b9b3d280_c1"
label="Mixed Materials"
localtype="box">14</container>
</did>
<scopecontent id="aspace_5a070ba4d0335cdcb2fb5140bec3eec8">
<head>Scope and Contents</head>
<p>These items were formerly stored in the "Charles X" cabinet in entry of Ashbery's New York City apartment.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3255684"
id="aspace_331ead0519f91b678be97ebaf6f19bc3"
level="item">
<did>
<unittitle>"Still Life with Easel"</unittitle>
<origination label="Creator">
<persname relator="art">
<part localtype="agent_person">Dunn, Anne, 1929-</part>
</persname>
</origination>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1999">1999</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/379891 /locations/4051"
containerid="39002098816409"
id="aspace_331ead0519f91b678be97ebaf6f19bc3_c1"
label="Mixed Materials"
localtype="box">15 (Oversize)</container>
</did>
<scopecontent id="aspace_6cf26f64d44b640b5ca5b5f38aede563">
<head>Scope and Contents</head>
<p>Oil on canvas, 20 x 20 inches.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3255690"
id="aspace_46f3705bb9570f526cdc1dbafdc5a27f"
level="item">
<did>
<unittitle>"Blue Ashbunny"</unittitle>
<origination label="Creator">
<persname relator="art">
<part localtype="agent_person">Behrle, Jim</part>
</persname>
</origination>
<unitdatestructured altrender="2005 December 13"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="2005-12-13">2005 December 13</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/379892 /locations/4051"
containerid="39002098816391"
id="aspace_46f3705bb9570f526cdc1dbafdc5a27f_c1"
label="Mixed Materials"
localtype="box">16</container>
</did>
<scopecontent id="aspace_aaa3e2183cb51492930ae45f97bb53e4">
<head>Scope and Contents</head>
<p>Acrylic on canvas, 12 x 9 inches. Signed, dated, and titled on back.</p>
<p>This piece was displayed in Ashbery's New York City apartment living room on top of the bookcase used to house Ashbery's CD collection.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3198945"
id="aspace_79ec84f48e6cf15d6901a8635ef7c1f0"
level="subseries">
<did>
<unittitle>Bedroom</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/3198953"
id="aspace_02f1b956328a81b3ffabfe53e374ba65"
level="item">
<did>
<unittitle>Rosa Gallica Tontiana drawn by Pierre Jean Redoute Engraved by Poessin</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1874">1874</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/379823 /locations/9"
containerid="39002098815690"
encodinganalog="flat box (16d 1h 20w)"
id="aspace_02f1b956328a81b3ffabfe53e374ba65_c1"
label="Mixed Materials"
localtype="box">17 (Oversize)</container>
</did>
<processinfo id="aspace_4d78d1367a08fad1cc1d6217c7ddbee4">
<head>Processing Information</head>
<p>Unframed by Beinecke Library staff, November 2021.</p>
</processinfo>
</c>
<c altrender="/repositories/11/archival_objects/3198954"
id="aspace_bdc09edc5584b86ab94ded1e29ad8296"
level="item">
<did>
<unittitle>Daffy Duck figurine</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379824 /locations/4051"
containerid="39002098815666"
encodinganalog="flat box (11d 1h 14w)"
id="aspace_bdc09edc5584b86ab94ded1e29ad8296_c1"
label="Mixed Materials"
localtype="box">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3198955"
id="aspace_3417ebefc89e5f044b50bd18c989b4b7"
level="item">
<did>
<unittitle>Porcelain unicorn</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379824 /locations/4051"
containerid="39002098815666"
encodinganalog="flat box (11d 1h 14w)"
id="aspace_3417ebefc89e5f044b50bd18c989b4b7_c1"
label="Mixed Materials"
localtype="box">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3198956"
id="aspace_f320e5302c47c69c453a61f335cf1139"
level="item">
<did>
<unittitle>Ashbery's seersucker sportscoat</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379825 /locations/4051"
containerid="39002098815708"
encodinganalog="flat box (20d 3h 24w)"
id="aspace_f320e5302c47c69c453a61f335cf1139_c1"
label="Mixed Materials"
localtype="box">19 (Oversize)</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3198957"
id="aspace_82f10ec8570468e7cb66770924ea9c51"
level="file">
<did>
<unittitle>Three cherry neckties</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379826 /locations/9"
containerid="39002098815799"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_82f10ec8570468e7cb66770924ea9c51_c1"
label="Mixed Materials"
localtype="box">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3198958"
id="aspace_0a7976e91b58e6f8afef8232274b57d8"
level="item">
<did>
<unittitle>Convex mirror</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379893 /locations/4051"
containerid="39002098816441"
id="aspace_0a7976e91b58e6f8afef8232274b57d8_c1"
label="Mixed Materials"
localtype="box">21</container>
</did>
<scopecontent id="aspace_c804ba7cfc900ea5a38aab7793e71517">
<head>Scope and Contents</head>
<p>This mirror was a gift of Pierre Martory.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3198959"
id="aspace_d1795d6dc0bab6ab19b4f366b8be50a4"
level="item">
<did>
<unittitle>Photograph of convex mirror in situ</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379893 /locations/4051"
containerid="39002098816441"
id="aspace_d1795d6dc0bab6ab19b4f366b8be50a4_c1"
label="Mixed Materials"
localtype="box">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3255685"
id="aspace_44e2aa97f8370222586e1700c51190a9"
level="item">
<did>
<unittitle>Untitled</unittitle>
<origination label="Creator">
<persname relator="art">
<part localtype="agent_person">Bell, Leland, 1922-1991</part>
</persname>
</origination>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379894 /locations/4051"
containerid="39002098816417"
id="aspace_44e2aa97f8370222586e1700c51190a9_c1"
label="Mixed Materials"
localtype="box">22</container>
</did>
<scopecontent id="aspace_345451e3496490fbb419de35f7b5bd0a">
<head>Scope and Contents</head>
<p>Oil on masonite, 6 1/8 x 7 5/8 inches.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3198946"
id="aspace_b376dedd080f937c1abac19fc4ab5941"
level="subseries">
<did>
<unittitle>Kitchen</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/3198960"
id="aspace_1ceace6e8b6f362c7ecada76c9407a27"
level="file">
<did>
<unittitle>Texts, images, objects from Ashbery's refrigerator</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379827 /locations/9"
containerid="39002098815781"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_1ceace6e8b6f362c7ecada76c9407a27_c1"
label="Mixed Materials"
localtype="box">23</container>
</did>
<scopecontent id="aspace_845049d3f45711cdb54b0b804ce90a4d">
<head>Scope and Contents</head>
<p>Includes photographs of the arrangement of the items on Ashbery's refrigerator.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3264186"
id="aspace_57ee68d7b29d5efd286bb7c282d4af0a"
level="file">
<did>
<unittitle>Nine refrigerator magnets</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379827 /locations/9"
containerid="39002098815781"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_57ee68d7b29d5efd286bb7c282d4af0a_c1"
label="Mixed Materials"
localtype="box">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3198961"
id="aspace_d79dfc8c746826b98fb3501fcef3ab01"
level="file">
<did>
<unittitle>Photographs of Ashbery's refrigerator</unittitle>
<container altrender="/repositories/11/top_containers/379827 /locations/9"
containerid="39002098815781"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_d79dfc8c746826b98fb3501fcef3ab01_c1"
label="Mixed Materials"
localtype="box">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3198962"
id="aspace_d621d65a208155e74361aa64a0ecd082"
level="file">
<did>
<unittitle>Ashbery's teacup, saucer, spoon, and tea box</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379895 /locations/4051"
containerid="39002098816458"
id="aspace_d621d65a208155e74361aa64a0ecd082_c1"
label="Mixed Materials"
localtype="box">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3198963"
id="aspace_1ab2af21bd0a5ff353406142484da761"
level="file">
<did>
<unittitle>David Kermani note, photograph of Ashbery's tea arrangements, and copy of Jill Krementz photograph of Ashbery with teacup</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379895 /locations/4051"
containerid="39002098816458"
id="aspace_1ab2af21bd0a5ff353406142484da761_c1"
label="Mixed Materials"
localtype="box">24</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3198950"
id="aspace_59f817f50024cbd30ce4fbffa91a248f"
level="subseries">
<did>
<unittitle>Study</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/3198951"
id="aspace_c6ace09674c84bc99d0f460b1de62c8f"
level="file">
<did>
<unittitle>Contents of Ashbery's desk drawer</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/379896 /locations/4051"
containerid="39002098816318"
id="aspace_c6ace09674c84bc99d0f460b1de62c8f_c1"
label="Mixed Materials"
localtype="box">25A</container>
<container altrender="/repositories/11/top_containers/384119 /locations/4051"
containerid="39002098816292"
id="aspace_c6ace09674c84bc99d0f460b1de62c8f_c2"
label="Mixed Materials"
localtype="box">25B</container>
</did>
<scopecontent id="aspace_2ea5566326c44c15573d09101b14639f">
<head>Scope and Contents</head>
<p>The contents of Ashbery's desk drawer consists of small notebooks (including a diary from his 1989 trip to Japan), letters, postcards, business cards, address labels, fortune cookie fortunes, and assorted desk supplies.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3198952"
id="aspace_0d813a8072e1d1cb08b23491867ea974"
level="file">
<did>
<unittitle>Photographs of desk items in situ by Emily Skillings</unittitle>
<unitdatestructured altrender="2018 September 3"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="2018-09-03">2018 September 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/379896 /locations/4051"
containerid="39002098816318"
id="aspace_0d813a8072e1d1cb08b23491867ea974_c1"
label="Mixed Materials"
localtype="box">25A</container>
<container altrender="/repositories/11/top_containers/384119 /locations/4051"
containerid="39002098816292"
id="aspace_0d813a8072e1d1cb08b23491867ea974_c2"
label="Mixed Materials"
localtype="box">25B</container>
</did>
<scopecontent id="aspace_697ae58228aa42c3c506cd50e61f7216">