-
Notifications
You must be signed in to change notification settings - Fork 1
/
nbuumu_0018.xml
1407 lines (1335 loc) · 65 KB
/
nbuumu_0018.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
<ead xmlns="urn:isbn:1-931666-22-9" xsi="xsi=&quot;http://www.w3.org/2001/XMLSchema-instance" xlink="http://www.w3.org/1999/xlink" schemaLocation="urn:isbn:1-931666-22-9 http://www.loc.gov/ead/ead.xsd">
<eadheader audience="external" langencoding="iso639-2b" scriptencoding="iso15924" relatedencoding="dc" repositoryencoding="iso15511" countryencoding="iso3166-1" dateencoding="iso8601">
<eadid countrycode="US" mainagencycode="nbuumu" publicid="-//State University of New York at Buffalo::Music Library//TEXT (US::NBuU-Mu::Mus. Arc. 18::Irene Haupt Photographs of June in Buffalo 2000)//EN" encodinganalog="identifier">nbuumu_0018</eadid>
<filedesc>
<titlestmt>
<titleproper encodinganalog="title">Finding Aid for the Irene Haupt
Photographs of June in Buffalo,
<date encodinganalog="date" era="ce" calendar="gregorian" type="inclusive" normal="2000-06">2000</date>
</titleproper>
<titleproper type="filing" altrender="nodisplay"> Haupt (Irene)
Photographs of June in Buffalo 2000 </titleproper>
<author encodinganalog="contributor">Finding aid written by John
Bewley.</author>
</titlestmt>
<publicationstmt>
<publisher encodinganalog="publisher">State University of New York at Buffalo. Music Library</publisher>
<address>
<addressline>112 Baird Hall</addressline>
<addressline>Buffalo, New York 14260-4750</addressline>
<addressline>United States</addressline>
<addressline>Phone: 716 645-2924</addressline>
<addressline>Fax: 716 645-3906</addressline>
<addressline/>
<addressline/>
</address>
<p>&#xA9;
<date encodinganalog="date" type="publication" era="ce" calendar="gregorian">2005</date>. State
University of New York at Buffalo. All rights reserved.</p>
</publicationstmt>
</filedesc>
<profiledesc>
<creation>Finding aid encoded in HTML by John Bewley, 2005; encoded in
EAD by John Bewley, July 2007.</creation>
<langusage>Finding aid is in
<language encodinganalog="language" langcode="eng">English.</language>
</langusage>
<descrules>Finding aid prepared using DACS (
<title render="italic" linktype="simple">Describing Archives: A Content Standard
</title>). </descrules>
</profiledesc>
</eadheader>
<archdesc level="collection" type="inventory" relatedencoding="marc21">
<did>
<head>Collection Overview</head>
<unittitle label="Title" encodinganalog="245$a"> Irene Haupt Photographs
of June in Buffalo,
<unitdate encodinganalog="245$f" normal="2000-06" type="inclusive" datechar="creation" era="ce" calendar="gregorian"> 2000 </unitdate>
</unittitle>
<unitid encodinganalog="099" countrycode="US" repositorycode="NBuU-Mu" label="Collection Number">Mus. Arc. 18</unitid>
<origination label="Creator">
<persname encodinganalog="100" role="creator" source="lcnaf"> Haupt,
Irene </persname>
</origination>
<physdesc label="Extent">
<extent unit="box" encodinganalog="300$a">1
box</extent>
<extent encodinganalog="300$a" unit="photograph">(71
photographs)</extent>
</physdesc>
<langmaterial label="Language of Material" encodinganalog="546">No
textual content in the collection.</langmaterial>
<repository label="Repository" encodinganalog="852">
<corpname>State University of New York at Buffalo. Music Library</corpname>
<address>
<addressline>112 Baird Hall</addressline>
<addressline>Buffalo, New York 14260-4750</addressline>
<addressline>United States</addressline>
<addressline>Phone: 716 645-2924</addressline>
<addressline>Fax: 716 645-3906</addressline>
<addressline/>
<addressline/>
</address>
</repository>
<abstract label="Abstract" encodinganalog="520$a"> Contains 71
photographs of musicians who participated in the June in Buffalo Festival 2000
at the University at Buffalo. </abstract>
<unitdate type="inclusive" normal="2000-06"> 2000 </unitdate>
</did>
<descgrp type="admininfo">
<head>Administrative Information</head>
<prefercite encodinganalog="524">
<head>Preferred Citation</head>
<p>[Specified item], Irene Haupt Photographs of June in Buffalo, 2000,
Music Library, The State University of New York at Buffalo.</p>
</prefercite>
<accessrestrict encodinganalog="506">
<head>Terms of Access</head>
<p>Materials can be examined by qualified researchers in the Music
Library during hours of operation during which Music Librarians are present. In
order to insure access, researchers are advised to contact the Music Library in
advance of visits. </p>
</accessrestrict>
<userestrict encodinganalog="540">
<head>Copyright</head>
<p>Copyright for the materials in the collection does not reside with
the Music Library. Therefore, patrons wishing to publish any item, or part of
an item from this collection for any purpose, are responsible for securing
requisite permissions. </p>
</userestrict>
<acqinfo encodinganalog="541">
<head>Acquisition Information</head>
<p>Purchased from Irene Haupt, 2001.</p>
</acqinfo>
<accruals encodinganalog="584">
<head>Accruals and Additions</head>
<p>No further accruals are expected to this collection. </p>
</accruals>
<altformavail encodinganalog="530">
<head>Alternate Forms</head>
<p>
All images are available in the UB Libraries Digital Collections as part of the overall <extref href="http://digital.lib.buffalo.edu/collection/LIB-MUS009/" actuate="onrequest" show="new" linktype="simple"> June in Buffalo Collection.</extref>
</p>
</altformavail>
<processinfo encodinganalog="583">
<head>Processing Information</head>
<p>Processed by John Bewley.</p>
</processinfo>
</descgrp>
<bioghist encodinganalog="545">
<head>Biographical Note</head>
<p>Irene Haupt, a graduate of the State University of New York at
Buffalo, has been documenting the Buffalo arts scene through her photography
since 1976. During that time she has worked for, or with, some of the most
notable institutions in Buffalo, including the Irish Classical Theatre, Studio
Arena Theater, the Kavinoky Theatre, the Buffalo Philharmonic Orchestra, the
Theatre of Youth, the Albright-Knox Art Gallery, and the State University of
New York at Buffalo. In addition to her specialty of theater photography, Irene
Haupt has also devoted much of her career to the photography of musicians and
musical events. Most notable is her documentation of the contemporary music
scene in Buffalo, including coverage of the University at Buffalo's June in
Buffalo festival of new music, 1982-1987, and 2000 to the present. Over the
course of those years, she has created a visual record that contains images of
some of the most significant composers and performers of the last quarter
century. The list of names is impressive: Aaron Copland, Morton Feldman, Leo
Smit, Virgil Thomson, Steve Reich, Ralph Shapey, Henry Brant, Earle Brown,
Ursula Oppens, Jan Williams, Lukas Foss, Philip Glass, Otto Luening, Conlon
Nancarrow, Ernst Krenek, Larry Austin, Lejaren Hiller, Elliott Carter, Milton
Babbitt, John Cage, Charles Wuorinen, Jacob Druckman, and Yvar Mikhashoff,
among others. </p>
<p>The June in Buffalo festival of contemporary music was begun at the
University at Buffalo in 1975 by composer Morton Feldman. He directed the
festival 1975-1978 and in 1980. The festival was dormant from 1981 through
1985. David Felder revived the festival in 1986 and has been its director since
that time.</p>
</bioghist>
<scopecontent encodinganalog="520">
<head>Scope and Content Note</head>
<p>The collection of Irene Haupt Photographs of June in Buffalo 2000
contains 71 images of participants in the festival for 2000. The list of
musicians includes George Crumb, Daniel Druckman, David Felder, Lukas Foss,
Philip Glass, Bernard Rands, Steve Reich, Jesse Levine, Roger Reynolds, Augusta
Read Thomas, Harvey Sollberger, Jan Williams, and Charles Wuorinen.</p>
</scopecontent>
<arrangement encodinganalog="351">
<head>Arrangement</head>
<p>One sequence of images in alphabetical order by principal subject of
the image.</p>
</arrangement>
<dsc type="in-depth">
<head>Container List</head>
<c level="file" id="c_5ccc8a1666eb4">
<did>
<unitid id="series1">I.</unitid>
<unittitle>Photographs,
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
</did>
<c level="item" id="c_5ccc8a1666ec1">
<did>
<container type="box">1</container>
<container type="item">01</container>
<unittitle>Robert Black, Michael Cameron, and Corrado Canonici,
double bassists
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,9"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666ec4">
<did>
<container type="box">1</container>
<container type="item">02</container>
<unittitle>George Crumb, composer with Jan Williams
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,22"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666ec7">
<did>
<container type="box">1</container>
<container type="item">03</container>
<unittitle>George Crumb, composer in rehearsal with Cassatt String
Quartet
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,34"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666ecb">
<did>
<container type="box">1</container>
<container type="item">04</container>
<unittitle>George Crumb, composer in rehearsal with Cassatt String
Quartet, with technician Ron Parks
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,58"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666ece">
<did>
<container type="box">1</container>
<container type="item">05</container>
<unittitle>Daniel Druckman, percussionist
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,54"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666ed2">
<did>
<container type="box">1</container>
<container type="item">06</container>
<unittitle>Daniel Druckman, percussionist
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,20"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666ed5">
<did>
<container type="box">1</container>
<container type="item">07</container>
<unittitle>David Felder, composer in front of brick wall
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,42"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666ed9">
<did>
<container type="box">1</container>
<container type="item">08</container>
<unittitle>David Felder, composer
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,10"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666edd">
<did>
<container type="box">1</container>
<container type="item">09</container>
<unittitle>David Felder, composer smiling
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,16"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666ee1">
<did>
<container type="box">1</container>
<container type="item">10</container>
<unittitle>David Felder, composer smiling
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,32"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666ee5">
<did>
<container type="box">1</container>
<container type="item">11</container>
<unittitle>David Felder, composer in print shirt
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,56"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666ee9">
<did>
<container type="box">1</container>
<container type="item">12</container>
<unittitle>David Felder, composer in print shirt
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,48"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666eee">
<did>
<container type="box">1</container>
<container type="item">13</container>
<unittitle>David Felder, composer with Magnus M&#xC3;&#xA5;rtensson and Amy
Williams in Baird Hall (building)
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,18"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666ef2">
<did>
<container type="box">1</container>
<container type="item">14</container>
<unittitle>David Felder, composer with Jon Fonville, Roger
Reynolds, Augusta Read Thomas, and Bernard Rands
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,40"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666ef7">
<did>
<container type="box">1</container>
<container type="item">15</container>
<unittitle>David Felder, composer watching June in Buffalo Chamber
Orchestra rehearsal, with Jean Kopperud, clarinet and James Winn, piano
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,61"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666efc">
<did>
<container type="box">1</container>
<container type="item">16</container>
<unittitle>David Felder, composer watching June in Buffalo Chamber
Orchestra rehearsal
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,67"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f01">
<did>
<container type="box">1</container>
<container type="item">17</container>
<unittitle>Lukas Foss, composer/conductor
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,14"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f06">
<did>
<container type="box">1</container>
<container type="item">18</container>
<unittitle>Lukas Foss, composer/conductor reading newspaper
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,33"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f0c">
<did>
<container type="box">1</container>
<container type="item">19</container>
<unittitle>Lukas Foss, composer/conductor, profile
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,57"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f11">
<did>
<container type="box">1</container>
<container type="item">20</container>
<unittitle>Lukas Foss, composer/conductor without glasses, angled
shot
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,60"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f17">
<did>
<container type="box">1</container>
<container type="item">21</container>
<unittitle>Lukas Foss, composer/conductor wearing glasses, angled
shot
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,19"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f1d">
<did>
<container type="box">1</container>
<container type="item">22</container>
<unittitle>Lukas Foss, composer/conductor wearing glasses, angled
shot
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,39"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f22">
<did>
<container type="box">1</container>
<container type="item">23</container>
<unittitle>Lukas Foss, composer/conductor with Jesse Levine
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,64"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f29">
<did>
<container type="box">1</container>
<container type="item">24</container>
<unittitle>Lukas Foss, composer/conductor with Joji Yuasa, seated
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,4"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f2f">
<did>
<container type="box">1</container>
<container type="item">25</container>
<unittitle>Lukas Foss, composer/conductor with Joji Yuasa
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,27"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f35">
<did>
<container type="box">1</container>
<container type="item">26</container>
<unittitle>Lukas Foss, composer/conductor with Bugallo-Williams
Piano Duo, facing camera
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,45"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f3c">
<did>
<container type="box">1</container>
<container type="item">27</container>
<unittitle>Lukas Foss, composer/conductor with Bugallo-Williams
Piano Duo, rehearsing
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,69"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f42">
<did>
<container type="box">1</container>
<container type="item">28</container>
<unittitle>Lukas Foss, composer/conductor with Bugallo-Williams
Piano Duo, rehearsing, side view
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,12"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f49">
<did>
<container type="box">1</container>
<container type="item">29</container>
<unittitle>Lukas Foss, composer/conductor with Bugallo-Williams
Piano Duo, rehearsing
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,30"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f50">
<did>
<container type="box">1</container>
<container type="item">30</container>
<unittitle>Lukas Foss, composer with Jan Williams and Diane
Williams
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,53"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f58">
<did>
<container type="box">1</container>
<container type="item">31</container>
<unittitle>Lukas Foss, composer/conductor with Jan Williams, Jesse
Levine, and David Felder
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,55"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f5f">
<did>
<container type="box">1</container>
<container type="item">32</container>
<unittitle>Philip Glass, composer holding his glasses
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,15"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f66">
<did>
<container type="box">1</container>
<container type="item">33</container>
<unittitle>Philip Glass, composer speaking into microphone
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,35"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f6e">
<did>
<container type="box">1</container>
<container type="item">34</container>
<unittitle>Philip Glass, composer with David Felder in background
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,50"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f75">
<did>
<container type="box">1</container>
<container type="item">35</container>
<unittitle>Philip Glass, composer with David Felder
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,68"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f7d">
<did>
<container type="box">1</container>
<container type="item">36</container>
<unittitle>Philip Glass, composer with Stephen Rosenthal of the
Amherst Saxophone Quartet
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,3"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f85">
<did>
<container type="box">1</container>
<container type="item">37</container>
<unittitle>Philip Glass, composer with Amherst Saxophone Quartet,
Magnus M&#xC3;&#xA5;rtensson, and David Felder
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,17"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f8d">
<did>
<container type="box">1</container>
<container type="item">38</container>
<unittitle>Jesse Levine, violist/conductor playing viola
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,37"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f96">
<did>
<container type="box">1</container>
<container type="item">39</container>
<unittitle>Jesse Levine, conductor talking to musicians of the June
in Buffalo Chamber Orchestra
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,59"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666f9f">
<did>
<container type="box">1</container>
<container type="item">40</container>
<unittitle>June in Buffalo Photographs
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,0"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666fa8">
<did>
<container type="box">1</container>
<container type="item">41</container>
<unittitle>Jesse Levine, conductor rehearsing the June in Buffalo
Chamber Orchestra, with Jayn Rosenfeld, flutist
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,25"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666fb1">
<did>
<container type="box">1</container>
<container type="item">42</container>
<unittitle>Jesse Levine, conductor rehearsing the June in Buffalo
Chamber Orchestra, with Jayn Rosenfeld, flutist
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,44"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666fba">
<did>
<container type="box">1</container>
<container type="item">43</container>
<unittitle>Bernard Rands, composer
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,66"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666fc4">
<did>
<container type="box">1</container>
<container type="item">44</container>
<unittitle>Bernard Rands, composer looking down at score
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,7"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666fcd">
<did>
<container type="box">1</container>
<container type="item">45</container>
<unittitle>Steve Reich, composer
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,29"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666fd7">
<did>
<container type="box">1</container>
<container type="item">46</container>
<unittitle>Steve Reich, composer with Craig Bitterman,
percussionist
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,46"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666fe1">
<did>
<container type="box">1</container>
<container type="item">47</container>
<unittitle>Steve Reich, composer with Craig Bitterman,
percussionist
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,70"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666fec">
<did>
<container type="box">1</container>
<container type="item">48</container>
<unittitle>Steve Reich, composer with Craig Bitterman,
percussionist and Amy Williams, piano
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,13"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1666ff6">
<did>
<container type="box">1</container>
<container type="item">49</container>
<unittitle>Steve Reich, composer with Helena Bugallo, keyboard
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,31"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1667001">
<did>
<container type="box">1</container>
<container type="item">50</container>
<unittitle>Steve Reich, composer with David Felder
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,51"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a166700c">
<did>
<container type="box">1</container>
<container type="item">51</container>
<unittitle>Steve Reich, composer with David Felder
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,47"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1667017">
<did>
<container type="box">1</container>
<container type="item">52</container>
<unittitle>Steve Reich, composer with David Felder at Center for
the Arts
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,8"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a1667022">
<did>
<container type="box">1</container>
<container type="item">53</container>
<unittitle>Roger Reynolds, composer
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,23"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>
</physdesc>
</did>
</c>
<c level="item" id="c_5ccc8a166702d">
<did>
<container type="box">1</container>
<container type="item">54</container>
<unittitle>Roger Reynolds and David Felder
<unitdate type="inclusive" normal="2000-06" era="ce" calendar="gregorian">June 2000</unitdate>
</unittitle>
<!-- <dao linktype="simple"href="http://ubdigit.buffalo.edu/u?/LIB-MUS009,36"actuate="onrequest"show="new"> -->
<physdesc>
<extent>1 black and white photograph,</extent>
<dimensions>8 x 10 inches</dimensions>