-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path12289.xml
1923 lines (1923 loc) · 106 KB
/
12289.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.echaurren">beinecke.echaurren</recordid>
<otherrecordid localtype="BIB">16331732</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Pablo Echaurren Papers </titleproper>
<titleproper localtype="filing">Echaurren (Pablo) Papers</titleproper>
<author>by Brooke McManus</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 2022</date>
<num>GEN MSS 2001</num>
</publicationstmt>
<notestmt>
<controlnote localtype="offsite">
<p>Boxes: 1-4, 5 (Oversize), 6-9, 12-14</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 10-11 (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>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>completed</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:24:03-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday January 8, 2025 at 23:24</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/12289" level="collection">
<did>
<unittitle>Pablo Echaurren papers</unittitle>
<unitid>GEN MSS 2001</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<languageset>
<language langcode="ita">Italian</language>
<script scriptcode="Latn">Latin</script>
</languageset>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>11.72</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">14 boxes</physdesc>
<unitdatestructured altrender="1973-2015" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1973">1973</fromdate>
<todate standarddate="2015">2015</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_486a2f33be8af0e4ac2cf5fd03220be5">The collection consists of artwork, notebooks, writings, correspondence, clippings, magazines, photographs, posters, books, and audiovisual and computer media by or related to Italian artist Pablo Echaurren.</abstract>
<origination label="Creator">
<persname rules="aacr" source="local">
<part localtype="agent_person">Echaurren, Pablo, 1951-</part>
</persname>
</origination>
</did>
<accessrestrict id="aspace_4b9eee209e9274e5c014ee21e8ebe995">
<head>Conditions Governing Access</head>
<p>This collection is open for research</p>
<p>Box 13 (computer media): Restricted fragile material. Access copies of digital files may be requested. Consult Access Services for further information.</p>
<p>Box 14 (audiovisual material): Restricted fragile material. Reference copies may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<acqinfo id="aspace_9daf5b66c7741155c28a613a93e7492e">
<head>Immediate Source of Acquisition</head>
<p>Purchased from L'Arengario Studio Bibliographico on the Edwin J. Beinecke Book Fund, 2013, 2016.</p>
</acqinfo>
<arrangement id="aspace_751285cc1beda1051181e84f2031b5b6">
<head>Arrangement</head>
<p>Organized into four series: I. Papers Related to Movimento del '77, 1973-2002. II. Printed Material, 1974-2013. III. Metroposter, 1993-2015. IV. Computer and Audiovisual Media, 1997-2007.</p>
</arrangement>
<bioghist id="aspace_cdc10135c2aeda008376136d0e5e0b32">
<head>Pablo Echaurren (1951-)</head>
<p>Pablo Echaurren is an Italian artist, author, activist, and art critic. In the late 1970s, he was involved with the Movimento del '77 and the Indiani Metropolitani and published zines such as <title>
<part>Oask?!</part>
</title>, <title>
<part>Abat/jour</part>
</title>, and <title>
<part>Wam</part>
</title>. He also contributed drawings to the radical leftist newspaper <title>
<part>Lotta continua</part>
</title>. In the 1980s and 1990s, Echaurren began drawing comic strips for magazines such as <title>
<part>Frigidaire</part>
</title>, <title>
<part>Linus</part>
</title>, <title>
<part>Tango</part>
</title>, <title>
<part>Comic Art</part>
</title>, and <title>
<part>Alter Alter</part>
</title>. Echaurren and his wife, art historian Claudia Salaris, have collaborated on several books on the Movimento del '77. His other works include the graphic novels <title>
<part>Caffeina d'Europa</part>
</title> and <title>
<part>Majakovskij</part>
</title>, as well as the illustration for the cover of <title>
<part>Porci con le Ali</part>
</title>. More recently Echaurren has returned to painting and also writes about art for the <title>
<part>Huffington Post</part>
</title>.</p>
</bioghist>
<prefercite id="aspace_97bbe850dfb1a39f601765c0e1f7ac32">
<head>Preferred Citation</head>
<p>Pablo Echaurren Papers. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<processinfo id="aspace_38ab530a85e5493a88ec036e2225c747">
<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>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>
<scopecontent id="aspace_21b81c425ad55d70603d2eedc17bbc09">
<head>Scope and Contents</head>
<p>The collection consists of artwork, notebooks, writings, correspondence, clippings, magazines, photographs, posters, books, and audiovisual and computer media by or related to Italian artist Pablo Echaurren. The bulk of materials document Echaurren's participation in the Movimento del '77 and include over 200 original black and white or color drawings by Echaurren for the radical leftist paper <title>
<part>Lotta continua</part>
</title>; copies of zines he published and original offset plates for <title>
<part>OASK?!</part>
</title>; and photographs of Echaurren and Claudia Salaris at the National Conference against Repression by Tano D'Amico. The collection also contains papers concerning Echaurren's involvement with the Indiani Metropolitani and the group's occupation of an apartment building in Rome, known as Casa del Desiderio, from May to December 1977. Included are writings, notes, and artwork documenting daily life and activities at Casa del Desiderio, which also functioned as an editorial office for <title>
<part>OASK?!</part>
</title> Later materials include letters and writings by individuals who were involved in the Movimento del '77 or contributed to <title>
<part>OASK?!</part>
</title>, such as Antonio Negri, Maurizio Gabbiannelli, Fiamma Lolli, Massimo Pasquini, Adriano Sofri, and Olivier Torquet. The collection additionally contains artwork and printed material related to "Metroposter," a joint project of Echaurren and Renato Curcio to create posters for the Rome metro. Included are original drawings by Echaurren and signed posters, and copies of the Italian magazine <title>
<part>Frigidaire</part>
</title>, which published Metroposters as inserts in multiple issues from 1993 to 1995.</p>
</scopecontent>
<userestrict id="aspace_2fe018f4edc749a0059538bf0e025488">
<head>Conditions Governing Use</head>
<p>The Pablo Echaurren Papers 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>
<subject source="local_beinecke">
<part localtype="topical">Art</part>
<part localtype="topical">Political aspects</part>
<part localtype="geographic">Italy</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject source="local">
<part localtype="topical">Movimento del '77</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Political activists</part>
<part localtype="geographic">Italy</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85105541"
source="lcsh">
<part localtype="topical">Posters, Italian</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh98005820"
source="lcsh">
<part localtype="topical">Protest literature</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2010107400"
source="lcsh">
<part localtype="topical">Protest movements</part>
<part localtype="geographic">Italy</part>
<part localtype="topical">History</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Social movements</part>
<part localtype="geographic">Italy</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2003009755"
source="lcsh">
<part localtype="topical">Underground periodicals</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2005003810"
source="lcsh">
<part localtype="topical">Zines</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85069018"
source="lcsh">
<part localtype="geographic">Italy</part>
<part localtype="topical">Politics and government</part>
<part localtype="temporal">1976-1994</part>
</geogname>
<genreform identifier="http://vocab.getty.edu/aat/300028045" source="aat">
<part localtype="genre_form">Audiovisual materials</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300374824" source="aat">
<part localtype="genre_form">Born digital</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Photographs</part>
<part localtype="geographic">Italy</part>
<part localtype="temporal">20th Century</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300027221" source="aat">
<part localtype="genre_form">Posters</part>
</genreform>
<occupation source="local">
<part localtype="occupation">Artists</part>
<part localtype="geographic">Italy</part>
<part localtype="temporal">20th Century</part>
</occupation>
<title identifier="http://id.loc.gov/authorities/names/n78029845"
source="lcsh">
<part localtype="uniform_title">Lotta continua</part>
</title>
<persname>
<part localtype="agent_person">Curcio, Renato</part>
</persname>
<persname>
<part localtype="agent_person">D'Amico, Tano, 1942-</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Echaurren, Pablo, 1951-</part>
</persname>
<persname rules="rda" source="local_beinecke">
<part localtype="agent_person">Gabbianelli, Maurizio</part>
</persname>
<persname rules="rda" source="local_beinecke">
<part localtype="agent_person">Lolli, Fiamma</part>
</persname>
<persname>
<part localtype="agent_person">Negri, Antonio, 1933-</part>
</persname>
<persname>
<part localtype="agent_person">Pasquini, Massimo</part>
</persname>
<persname>
<part localtype="agent_person">Salaris, Claudia</part>
</persname>
<persname>
<part localtype="agent_person">Sofri, Adriano</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/3495356"
id="aspace_68e0ac5e5ad5fa4657facae3540a7950"
level="series">
<did>
<unittitle>Papers Related to Movimento del '77</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.96</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">5 boxes</physdesc>
<unitdatestructured altrender="1973–2002" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1973">1973</fromdate>
<todate standarddate="2002">2002</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_a942dc45e092e8a6535118e2f111845d">
<head>Scope and Contents</head>
<p>This series contains posters, artwork, notes, printed material, poems, and other papers removed from the Casa del Desiderio when its occupants were evicted by the police in December 1977, as well as notebooks, one sketchbook, and over 200 original drawings by Pablo Echaurren for <title>
<part>Lotta continua</part>
</title>. Also included are letters to Echaurren from Maurizio Gabbianelli, Fiamma Lolli, Antonio (Toni) Negri, Massimo Pasquini, Adriano Sofri, and Olivier Torquet, and photographs by Tano D'Amico of Echaurren, Claudia Salaris, and Gabbianelli in Bologna in 1977. The series additionally contains a number of zines and fliers associated with Movimento del '77, most of which are annotated by Echaurren, including <title>
<part>Altrove materiali</part>
</title>, <title>
<part>Enig/mistica</part>
</title>, and <title>
<part>OASK?!</part>
</title>
</p>
</scopecontent>
<arrangement id="aspace_81047fffc96a5013f9665d1afe4e62b2">
<head>Arrangement</head>
<p>Materials maintain order found at time of acquisition.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/3495360"
id="aspace_0a3f9431eddb48a09cdfed2ffb4ca281"
level="file">
<did>
<unittitle>Casa del Desiderio papers</unittitle>
<unitdatestructured altrender="1977–1978" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
<todate standarddate="1978">1978</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388067 /locations/9"
containerid="39002140988255"
encodinganalog="flat box (14d 3h 18w)"
id="aspace_0a3f9431eddb48a09cdfed2ffb4ca281_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_0a3f9431eddb48a09cdfed2ffb4ca281_c2"
localtype="folder"
parent="aspace_0a3f9431eddb48a09cdfed2ffb4ca281_c1">1-17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495361"
id="aspace_5a5e07ef936899d38d5d498a954c7de3"
level="file">
<did>
<unittitle>Annotated clippings</unittitle>
<unitdatestructured altrender="1977–1978" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
<todate standarddate="1978">1978</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388067 /locations/9"
containerid="39002140988255"
encodinganalog="flat box (14d 3h 18w)"
id="aspace_5a5e07ef936899d38d5d498a954c7de3_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_5a5e07ef936899d38d5d498a954c7de3_c2"
localtype="folder"
parent="aspace_5a5e07ef936899d38d5d498a954c7de3_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495362"
id="aspace_452e088e87efabc9d79728561492719f"
level="file">
<did>
<unittitle>
<title>
<part>Enig/mistica</part>
</title> originals</unittitle>
<unitdatestructured altrender="circa 1977" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388067 /locations/9"
containerid="39002140988255"
encodinganalog="flat box (14d 3h 18w)"
id="aspace_452e088e87efabc9d79728561492719f_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_452e088e87efabc9d79728561492719f_c2"
localtype="folder"
parent="aspace_452e088e87efabc9d79728561492719f_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495363"
id="aspace_d8674dc62fb60cfb865216d5c0288c79"
level="file">
<did>
<unittitle>
<title>
<part>Lotta continua</part>
</title> drawings</unittitle>
<unitdatestructured altrender="1977" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388068 /locations/9"
containerid="39002140988263"
encodinganalog="flat box (14d 3h 18w)"
id="aspace_d8674dc62fb60cfb865216d5c0288c79_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_d8674dc62fb60cfb865216d5c0288c79_c2"
localtype="folder"
parent="aspace_d8674dc62fb60cfb865216d5c0288c79_c1">20-40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495364"
id="aspace_a08d7af22dba2e40cb2e8af3b21a18b8"
level="file">
<did>
<unittitle>
<title>
<part>Lotta continua</part>
</title> drawings</unittitle>
<unitdatestructured altrender="1976–1977" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1976">1976</fromdate>
<todate standarddate="1977">1977</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388069 /locations/9"
containerid="39002140988271"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_a08d7af22dba2e40cb2e8af3b21a18b8_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_a08d7af22dba2e40cb2e8af3b21a18b8_c2"
localtype="folder"
parent="aspace_a08d7af22dba2e40cb2e8af3b21a18b8_c1">41-49</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495365"
id="aspace_f760b8903f6ac8302bb61fc124cac1b4"
level="file">
<did>
<unittitle>
<title>
<part>Lotta continua</part>
</title> - sketch related to "Orsottantotto," published in December 24, 1977 issue</unittitle>
<unitdatestructured altrender="1977" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388069 /locations/9"
containerid="39002140988271"
encodinganalog="flat box (14d 1h 18w)"
id="aspace_f760b8903f6ac8302bb61fc124cac1b4_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_f760b8903f6ac8302bb61fc124cac1b4_c2"
localtype="folder"
parent="aspace_f760b8903f6ac8302bb61fc124cac1b4_c1">50</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495366"
id="aspace_5812e9c88b201debc28bc8cebdf5eb78"
level="file">
<did>
<unittitle>Fiamma Lolli letters and writings</unittitle>
<unitdatestructured altrender="1999" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1999">1999</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388070 /locations/9"
containerid="39002140988289"
encodinganalog="archive half legal"
id="aspace_5812e9c88b201debc28bc8cebdf5eb78_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_5812e9c88b201debc28bc8cebdf5eb78_c2"
localtype="folder"
parent="aspace_5812e9c88b201debc28bc8cebdf5eb78_c1">52</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495367"
id="aspace_67c040e3275095f97a1eb67cfd64bea1"
level="file">
<did>
<unittitle>Rrose Sélavy notebook</unittitle>
<unitdatestructured altrender="1977" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388070 /locations/9"
containerid="39002140988289"
encodinganalog="archive half legal"
id="aspace_67c040e3275095f97a1eb67cfd64bea1_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_67c040e3275095f97a1eb67cfd64bea1_c2"
localtype="folder"
parent="aspace_67c040e3275095f97a1eb67cfd64bea1_c1">53</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495368"
id="aspace_2031a1fe68de37d283f5a9a64c65a1aa"
level="file">
<did>
<unittitle>Photographs by Tano D'Amico [taken in 1977]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/388070 /locations/9"
containerid="39002140988289"
encodinganalog="archive half legal"
id="aspace_2031a1fe68de37d283f5a9a64c65a1aa_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_2031a1fe68de37d283f5a9a64c65a1aa_c2"
localtype="folder"
parent="aspace_2031a1fe68de37d283f5a9a64c65a1aa_c1">54</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495369"
id="aspace_a6690c4f61146fd82ad9f87183921251"
level="file">
<did>
<unittitle>Letterhead designs by Echaurren</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/388070 /locations/9"
containerid="39002140988289"
encodinganalog="archive half legal"
id="aspace_a6690c4f61146fd82ad9f87183921251_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_a6690c4f61146fd82ad9f87183921251_c2"
localtype="folder"
parent="aspace_a6690c4f61146fd82ad9f87183921251_c1">55</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495370"
id="aspace_4a2cf708b51b15d15556d37c2e479774"
level="file">
<did>
<unittitle>Maurizio Gabbianelli letters and writings</unittitle>
<unitdatestructured altrender="1997, undated" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1997">1997</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388070 /locations/9"
containerid="39002140988289"
encodinganalog="archive half legal"
id="aspace_4a2cf708b51b15d15556d37c2e479774_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_4a2cf708b51b15d15556d37c2e479774_c2"
localtype="folder"
parent="aspace_4a2cf708b51b15d15556d37c2e479774_c1">56</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495371"
id="aspace_2e84f4f9f7dbf2a645ed70cc25387af8"
level="file">
<did>
<unittitle>Adriano Sofri letters and postcards</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/388070 /locations/9"
containerid="39002140988289"
encodinganalog="archive half legal"
id="aspace_2e84f4f9f7dbf2a645ed70cc25387af8_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_2e84f4f9f7dbf2a645ed70cc25387af8_c2"
localtype="folder"
parent="aspace_2e84f4f9f7dbf2a645ed70cc25387af8_c1">57</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495372"
id="aspace_880efff20b69de8fc084df9ae4ff1ff4"
level="file">
<did>
<unittitle>Antonio Negri letters and postcards</unittitle>
<unitdatestructured altrender="1997–2002" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1997">1997</fromdate>
<todate standarddate="2002">2002</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388070 /locations/9"
containerid="39002140988289"
encodinganalog="archive half legal"
id="aspace_880efff20b69de8fc084df9ae4ff1ff4_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_880efff20b69de8fc084df9ae4ff1ff4_c2"
localtype="folder"
parent="aspace_880efff20b69de8fc084df9ae4ff1ff4_c1">58</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495373"
id="aspace_21e9cc60e00a766564751e2b612ecbdb"
level="file">
<did>
<unittitle>Massimo Pasquini letter</unittitle>
<unitdatestructured altrender="1998" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1998">1998</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388070 /locations/9"
containerid="39002140988289"
encodinganalog="archive half legal"
id="aspace_21e9cc60e00a766564751e2b612ecbdb_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_21e9cc60e00a766564751e2b612ecbdb_c2"
localtype="folder"
parent="aspace_21e9cc60e00a766564751e2b612ecbdb_c1">59</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495374"
id="aspace_52935006d421ec0b05a8b068f33c89da"
level="file">
<did>
<unittitle>Olivier Torquet letter and photograph</unittitle>
<unitdatestructured altrender="1978" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1978">1978</fromdate>
</daterange>
</unitdatestructured>
<unitdatestructured altrender="1997" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1997">1997</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388070 /locations/9"
containerid="39002140988289"
encodinganalog="archive half legal"
id="aspace_52935006d421ec0b05a8b068f33c89da_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_52935006d421ec0b05a8b068f33c89da_c2"
localtype="folder"
parent="aspace_52935006d421ec0b05a8b068f33c89da_c1">60</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495375"
id="aspace_7f23226d93640665182c2c41f323f493"
level="file">
<did>
<unittitle>Notebook</unittitle>
<unitdatestructured altrender="1977" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388070 /locations/9"
containerid="39002140988289"
encodinganalog="archive half legal"
id="aspace_7f23226d93640665182c2c41f323f493_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_7f23226d93640665182c2c41f323f493_c2"
localtype="folder"
parent="aspace_7f23226d93640665182c2c41f323f493_c1">61</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495376"
id="aspace_0621558160730d4549d35a4112ab39ee"
level="file">
<did>
<unittitle>Empty envelope with Echaurren's description of select collection materials</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/388071 /locations/9"
containerid="39002140988297"
encodinganalog="flat box (17d 1h 21w)"
id="aspace_0621558160730d4549d35a4112ab39ee_c1"
label="Mixed Materials"
localtype="box">5 (Oversize)</container>
<container id="aspace_0621558160730d4549d35a4112ab39ee_c2"
localtype="folder"
parent="aspace_0621558160730d4549d35a4112ab39ee_c1">62</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495377"
id="aspace_0e24471e0869bbf9054c4a3b95012960"
level="file">
<did>
<unittitle>
<title>
<part>Re nudo</part>
</title> Pop Festival No. 3 poster</unittitle>
<unitdatestructured altrender="circa 1977" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388071 /locations/9"
containerid="39002140988297"
encodinganalog="flat box (17d 1h 21w)"
id="aspace_0e24471e0869bbf9054c4a3b95012960_c1"
label="Mixed Materials"
localtype="box">5 (Oversize)</container>
<container id="aspace_0e24471e0869bbf9054c4a3b95012960_c2"
localtype="folder"
parent="aspace_0e24471e0869bbf9054c4a3b95012960_c1">63</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495378"
id="aspace_a3c7b66a3ffe8e8b84dc2990eb6d28da"
level="file">
<did>
<unittitle>
<title>
<part>Altrove materiali</part>
</title>
</unittitle>
<unitdatestructured altrender="1977–1978" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
<todate standarddate="1978">1978</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388071 /locations/9"
containerid="39002140988297"
encodinganalog="flat box (17d 1h 21w)"
id="aspace_a3c7b66a3ffe8e8b84dc2990eb6d28da_c1"
label="Mixed Materials"
localtype="box">5 (Oversize)</container>
<container id="aspace_a3c7b66a3ffe8e8b84dc2990eb6d28da_c2"
localtype="folder"
parent="aspace_a3c7b66a3ffe8e8b84dc2990eb6d28da_c1">64</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495379"
id="aspace_e82ef5d060aa251915ab49de5a2677ee"
level="file">
<did>
<unittitle>
<title>
<part>La rivoluzione</part>
</title>
</unittitle>
<unitdatestructured altrender="1977" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388071 /locations/9"
containerid="39002140988297"
encodinganalog="flat box (17d 1h 21w)"
id="aspace_e82ef5d060aa251915ab49de5a2677ee_c1"
label="Mixed Materials"
localtype="box">5 (Oversize)</container>
<container id="aspace_e82ef5d060aa251915ab49de5a2677ee_c2"
localtype="folder"
parent="aspace_e82ef5d060aa251915ab49de5a2677ee_c1">65</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495380"
id="aspace_b85e590dbfa3e2182dde140e5691e624"
level="file">
<did>
<unittitle>
<title>
<part>Il complotto</part>
</title>
</unittitle>
<unitdatestructured altrender="circa 1977" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388071 /locations/9"
containerid="39002140988297"
encodinganalog="flat box (17d 1h 21w)"
id="aspace_b85e590dbfa3e2182dde140e5691e624_c1"
label="Mixed Materials"
localtype="box">5 (Oversize)</container>
<container id="aspace_b85e590dbfa3e2182dde140e5691e624_c2"
localtype="folder"
parent="aspace_b85e590dbfa3e2182dde140e5691e624_c1">66</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495381"
id="aspace_b966ee865774d7ed778e32b513e0e856"
level="file">
<did>
<unittitle>Collettivo Rizoma poster</unittitle>
<unitdatestructured altrender="circa 1977" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388071 /locations/9"
containerid="39002140988297"
encodinganalog="flat box (17d 1h 21w)"
id="aspace_b966ee865774d7ed778e32b513e0e856_c1"
label="Mixed Materials"
localtype="box">5 (Oversize)</container>
<container id="aspace_b966ee865774d7ed778e32b513e0e856_c2"
localtype="folder"
parent="aspace_b966ee865774d7ed778e32b513e0e856_c1">67</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495382"
id="aspace_cc5896e0cbf4d25201473bc76bb97fc1"
level="file">
<did>
<unittitle>
<title>
<part>OASK?!</part>
</title>
</unittitle>
<unitdatestructured altrender="1977" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388071 /locations/9"
containerid="39002140988297"
encodinganalog="flat box (17d 1h 21w)"
id="aspace_cc5896e0cbf4d25201473bc76bb97fc1_c1"
label="Mixed Materials"
localtype="box">5 (Oversize)</container>
<container id="aspace_cc5896e0cbf4d25201473bc76bb97fc1_c2"
localtype="folder"
parent="aspace_cc5896e0cbf4d25201473bc76bb97fc1_c1">68</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495383"
id="aspace_5bcfbcd81e8ea2c265b172a7887b0e20"
level="file">
<did>
<unittitle>
<title>
<part>OASK?!</part>
</title> offset plates</unittitle>
<unitdatestructured altrender="circa 1977" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388071 /locations/9"
containerid="39002140988297"
encodinganalog="flat box (17d 1h 21w)"
id="aspace_5bcfbcd81e8ea2c265b172a7887b0e20_c1"
label="Mixed Materials"
localtype="box">5 (Oversize)</container>
<container id="aspace_5bcfbcd81e8ea2c265b172a7887b0e20_c2"
localtype="folder"
parent="aspace_5bcfbcd81e8ea2c265b172a7887b0e20_c1">69</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495384"
id="aspace_b0b118ec199d613cf22084714e9c6244"
level="file">
<did>
<unittitle>Menu (c)u(i)sine de culture</unittitle>
<unitdatestructured altrender="1977" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388071 /locations/9"
containerid="39002140988297"
encodinganalog="flat box (17d 1h 21w)"
id="aspace_b0b118ec199d613cf22084714e9c6244_c1"
label="Mixed Materials"
localtype="box">5 (Oversize)</container>
<container id="aspace_b0b118ec199d613cf22084714e9c6244_c2"
localtype="folder"
parent="aspace_b0b118ec199d613cf22084714e9c6244_c1">70</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495385"
id="aspace_ff49baba518677cbdb68fa06957f0a35"
level="file">
<did>
<unittitle>
<title>
<part>Altrove</part>
</title> [photocopy]</unittitle>
<unitdatestructured altrender="1977" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388071 /locations/9"
containerid="39002140988297"
encodinganalog="flat box (17d 1h 21w)"
id="aspace_ff49baba518677cbdb68fa06957f0a35_c1"
label="Mixed Materials"
localtype="box">5 (Oversize)</container>
<container id="aspace_ff49baba518677cbdb68fa06957f0a35_c2"
localtype="folder"
parent="aspace_ff49baba518677cbdb68fa06957f0a35_c1">71</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495386"
id="aspace_e56a5c0e377fc83d3c6f06009c39b013"
level="file">
<did>
<unittitle>
<title>
<part>Altrove materiali</part>
</title>
</unittitle>
<unitdatestructured altrender="1977" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388071 /locations/9"
containerid="39002140988297"
encodinganalog="flat box (17d 1h 21w)"
id="aspace_e56a5c0e377fc83d3c6f06009c39b013_c1"
label="Mixed Materials"
localtype="box">5 (Oversize)</container>
<container id="aspace_e56a5c0e377fc83d3c6f06009c39b013_c2"
localtype="folder"
parent="aspace_e56a5c0e377fc83d3c6f06009c39b013_c1">72</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495387"
id="aspace_69d9309edc1dd594ebfeb3bcdc38389c"
level="file">
<did>
<unittitle>L'inferno</unittitle>
<unitdatestructured altrender="1977" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388071 /locations/9"
containerid="39002140988297"
encodinganalog="flat box (17d 1h 21w)"
id="aspace_69d9309edc1dd594ebfeb3bcdc38389c_c1"
label="Mixed Materials"
localtype="box">5 (Oversize)</container>
<container id="aspace_69d9309edc1dd594ebfeb3bcdc38389c_c2"
localtype="folder"
parent="aspace_69d9309edc1dd594ebfeb3bcdc38389c_c1">73</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495388"
id="aspace_2d3cbd7272477bd13b77ec5b201793d6"
level="file">
<did>
<unittitle>
<title>
<part>L'aventurista</part>
</title>
</unittitle>
<unitdatestructured altrender="circa 1977" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388071 /locations/9"
containerid="39002140988297"
encodinganalog="flat box (17d 1h 21w)"
id="aspace_2d3cbd7272477bd13b77ec5b201793d6_c1"
label="Mixed Materials"
localtype="box">5 (Oversize)</container>
<container id="aspace_2d3cbd7272477bd13b77ec5b201793d6_c2"
localtype="folder"
parent="aspace_2d3cbd7272477bd13b77ec5b201793d6_c1">74</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495389"
id="aspace_8472737b5242a356f8ddde5512711c41"
level="file">
<did>
<unittitle>
<title>
<part>La repubblica</part>
</title>
</unittitle>
<unitdatestructured altrender="1978" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1978">1978</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/388071 /locations/9"
containerid="39002140988297"
encodinganalog="flat box (17d 1h 21w)"
id="aspace_8472737b5242a356f8ddde5512711c41_c1"
label="Mixed Materials"
localtype="box">5 (Oversize)</container>
<container id="aspace_8472737b5242a356f8ddde5512711c41_c2"
localtype="folder"
parent="aspace_8472737b5242a356f8ddde5512711c41_c1">75</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3495390"
id="aspace_32a1957f879b849e5303f15eafb9a3f2"
level="file">
<did>
<unittitle>
<title>
<part>WAM</part>
</title>
</unittitle>