-
Notifications
You must be signed in to change notification settings - Fork 1
/
nbuumu_0071_2.xml
4082 lines (4077 loc) · 160 KB
/
nbuumu_0071_2.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" encodinganalog="identifier" publicid="-//State University of New York at Buffalo::Music Library//TEXT (US::NBuU-Mu::Mus. Arc. 71.2::Joseph Chouinard Collection of Images)//EN">nbuumu_0071_2</eadid>
<filedesc>
<titlestmt>
<titleproper encodinganalog="title">Finding Aid for the Joseph
Chouinard Collection of Images,
<date encodinganalog="date" era="ce" calendar="gregorian" type="inclusive" normal="1928/2006">circa 1928-2006</date> </titleproper>
<titleproper type="filing" altrender="nodisplay">Chouinard (Joseph)
Collection of Images</titleproper>
<author encodinganalog="contributor">Finding aid prepared 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 type="publication" encodinganalog="date">2015</date>. State
University of New York at Buffalo. All rights reserved.</p>
</publicationstmt>
</filedesc>
<profiledesc>
<creation>Finding aid encoded in EAD by John Bewley June 2015.</creation>
<langusage>Finding aid written in
<language encodinganalog="language" langcode="eng">English.</language>
</langusage>
<descrules>Finding aid prepared using DACS (
<title render="italic">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"> Joseph Chouinard
Collection of Images,
<unitdate encodinganalog="245$f" normal="1928/2006" type="inclusive" datechar="creation">circa 1928-2006</unitdate>
</unittitle>
<unitid encodinganalog="099" countrycode="US" repositorycode="NBuU-Mu" label="Collection Number">Mus. Arc. 71.2</unitid>
<origination label="Creator">
<persname encodinganalog="100" role="" source="lcnaf"> Chouinard,
Joseph Jerod, 1926-2014 </persname>
</origination>
<physdesc label="Extent">
<extent unit="box" encodinganalog="300$a">2
boxes</extent>
<extent unit="item" encodinganalog="300$a">(227 items)</extent>
</physdesc>
<langmaterial label="Language of Material" encodinganalog="546"> No
textual materials are included with this 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">The collection contains
227 images collected by Joseph Chouinard. The images provide documentation of his life from the age
of about two years through age eighty. The collection contains images of his
performances with opera companies in Maine, Binghamton, Buffalo, and elsewhere.
The collection also contains images from the fourteen months Joseph Chouinard
spent as a member of the United States Navy on Okinawa.</abstract>
<unitdate type="inclusive" normal="1928/2006">circa 1928-2006</unitdate>
</did>
<descgrp type="admininfo">
<head>Administrative Information</head>
<prefercite encodinganalog="524">
<head>Preferred Citation</head>
<p>[Specified item], Joseph Chouinard Collection of Images, circa
1928-2006, 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>Gift of Joseph Chouinard, 2006.</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>Collection contents have been digitized and are available in
<extref href="http://digital.lib.buffalo.edu/collection/LIB-MUS023/" actuate="onrequest" show="new">University Libraries Digital
Collections.</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>Joseph Chouinard was born in Middletown, Connecticut. His birth
certificate lists his middle name as Gerard and his date of birth as May 4th,
1926. However, later documentation shows his date of birth to be May 7th, 1926
and his middle name to be Jerod. It is unclear why this discrepancy exists,
though it should be noted. He graduated from Middletown High School in 1944.
Following graduation Joseph enlisted in the United States Navy. He served in
the Navy from 1944-1946, during which time he was stationed in Okinawa, Japan.
After he was discharged he attended the University of Connecticut, graduating
with a BA in Music in 1950. He stayed at the university and in 1952, obtained
his Master of Arts and Music Degree. Later, he obtained his MLS in Music
Librarianship from State University of New York College at Geneseo in 1970. In
addition to his degrees, Joseph studied with Nadia Boulanger at Fontainebleau
in 1957 and 1958. He also attended the 1961 Session of the Summer School for
Singers in Oxford, England. </p>
<p>Throughout his life, Joseph performed both nationally and
internationally as a bass baritone. He performed both as a chorus member and as
a soloist, including performances at the Tanglewood Festival, Calvary Church in
New York City, the Tri-Cities Opera Company in Binghamton, the Aspen Music
Festival, the Florida International Music Festival, Columbia University,
Arundel Opera (Maine), Theatre Under the Stars in Atlanta, Georgia, and with
the University Opera Studio at the State University of New York at Buffalo.
</p>
<p>His music librarianship career included positions as Music and Art
Librarian, California State College at San Bernardino (1971-1974), Music
Cataloger, State University of New York at Buffalo (1974-1978), Music
Librarian, State University of New York College at Fredonia (1978-1991), and
Exchange Music Librarian at Royal Holloway College, Great Britain (1983-1984).
After retiring, Joseph Chouinard remained active as a volunteer at the State
University of New York at Buffalo Music Library and at the Buffalo Veterans
Administration Hospital where he led patients in various arts activities such
as readings of plays and poetry. He died in Buffalo on January 6th, 2014. </p>
</bioghist>
<scopecontent encodinganalog="520">
<head>Scope and Content Note</head>
<p>The collection contains 227 images collected by Joseph Chouinard. They
document his life from the age of about two years through age eighty. The
collection contains images of his performances with opera companies in Maine,
Binghamton, Buffalo, and elsewhere. The collection also contains a set of twenty
packaged images from Pikes Peak, Colorado and another set of forty-five images that document
the fourteen months Joseph Chouinard spent as a United States sailor on
Okinawa at the end of World War II. Mr. Donn Cuson generously provided information to identify
many of the photographs in this set.</p>
</scopecontent>
<arrangement encodinganalog="351">
<head>Arrangement</head>
<p>The collection is arranged in six series based on format and size of
material:
<list type="simple">
<item>
<ref target="series1" actuate="onrequest" show="replace">I. Larger
format photographs</ref>
</item>
<item>
<ref target="series2" actuate="onrequest" show="replace">II. Medium
format photographs</ref>
</item>
<item>
<ref target="series3" actuate="onrequest" show="replace">III.
Smaller format photographs</ref>
</item>
<item>
<ref target="series4" actuate="onrequest" show="replace">IV.
Drawings</ref>
</item>
<item>
<ref target="series5" actuate="onrequest" show="replace">V. 35 mm
slides</ref>
</item>
<item>
<ref target="series6" actuate="onrequest" show="replace">VI.
Oversize</ref>
</item>
</list>
</p>
</arrangement>
<dsc type="combined">
<head>Container List</head>
<c level="series" id="c_5ccc8a23f0b4c">
<did>
<unitid id="series1">I.</unitid>
<unittitle>Large format photographs,
<unitdate type="inclusive" normal="1930/2006-05" certainty="approximate">circa 1930-May 2006 </unitdate> </unittitle>
<physdesc>
<extent>Item 001-047</extent>
</physdesc>
</did>
<scopecontent>
<p>Larger format photographs, including formal portraits.</p>
</scopecontent>
<arrangement>
<p>Arranged in roughly chronological order.</p>
</arrangement>
<c level="item" id="c_5ccc8a23f0b5f">
<did>
<container type="box">1</container>
<container type="image">001</container>
<unittitle>Portrait of an unidentified woman, possibly the mother
or grandmother of Joseph Chouinard,
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Welker Studio (Middletown, Conn.)</p>
<p>Location: Middletown (Conn.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0b65">
<did>
<container type="box">1</container>
<container type="image">002</container>
<unittitle>Portrait of Joseph Chouinard and brother Thomas as young
children,
<unitdate type="inclusive">circa 1930</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Turner Studio (Middletown, Conn.)</p>
<p>Location: Middletown (Conn.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0b6a">
<did>
<container type="box">1</container>
<container type="image">003</container>
<unittitle>Portrait of an unidentified woman, possibly Elizabeth
Bradley, Joseph Chouinard's adoptive mother,
<unitdate type="inclusive">circa 1930</unitdate> </unittitle>
<physdesc>
<extent>1 color photograph</extent>
</physdesc>
<note>
<p>Photographer: Unidentified</p>
<p>Location: Unknown location</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0b70">
<did>
<container type="box">1</container>
<container type="image">004</container>
<unittitle>Boys' choir of Holy Trinity Church in Middletown,
Connecticut,
<unitdate type="inclusive">circa 1936</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Unidentified</p>
<p>Location: Middletown (Conn.)</p>
<p>Venue: Church of the Holy Trinity (Middletown, Conn.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0b75">
<did>
<container type="box">1</container>
<container type="image">005</container>
<unittitle>Portrait of Joseph Chouinard during his high school
years,
<unitdate type="inclusive">circa 1942</unitdate> </unittitle>
<physdesc>
<extent>1 color photograph</extent>
</physdesc>
<note>
<p>Photographer: Unidentified</p>
<p>Location: Unknown location</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0b7b">
<did>
<container type="box">1</container>
<container type="image">006</container>
<unittitle>Portrait of Joseph Chouinard during his high school
years,
<unitdate type="inclusive">circa 1942</unitdate> </unittitle>
<physdesc>
<extent>1 color photograph</extent>
</physdesc>
<note>
<p>Photographer: Unidentified</p>
<p>Location: Unknown location</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0b81">
<did>
<container type="box">1</container>
<container type="image">007</container>
<unittitle>Portrait of Joseph Chouinard in his Navy uniform,
<unitdate type="inclusive">circa 1944</unitdate> </unittitle>
<physdesc>
<extent>1 color photograph</extent>
</physdesc>
<note>
<p>Photographer: Loring Studio</p>
<p>Location: Unknown location</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0b88">
<did>
<container type="box">1</container>
<container type="image">008</container>
<unittitle>Portrait of Joseph Chouinard in his Navy uniform with
his adoptive parents, George and Elizabeth Bradley,
<unitdate type="inclusive">circa 1944</unitdate> </unittitle>
<physdesc>
<extent>1 color photograph</extent>
</physdesc>
<note>
<p>Photographer: Unidentified</p>
<p>Location: Unknown location</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0b8f">
<did>
<container type="box">1</container>
<container type="image">009</container>
<unittitle>Drawing of Joseph Chouinard by Annis Martin,
<unitdate type="inclusive">1945</unitdate> </unittitle>
<physdesc>
<extent>1 drawing</extent>
</physdesc>
<note>
<p>Photographer: Martin, Annis</p>
<p>Location: Unknown location</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0b95">
<did>
<container type="box">1</container>
<container type="image">010</container>
<unittitle>Portrait of Joseph Chouinard during his college years,
<unitdate type="inclusive">circa 1950</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Unidentified</p>
<p>Location: Unknown location</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0b9c">
<did>
<container type="box">1</container>
<container type="image">011</container>
<unittitle>Joseph Chouinard on stage as the character Frank Butler
and Celeste Maggiore as Annie Oakley in the Arundel Opera production of Annie
get your gun,
<unitdate type="inclusive">1959 July 1</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Unidentified</p>
<p>Location: Kennebunkport (Me.)</p>
<p>Venue: Arundel Opera Theatre (Kennebunkport, Me.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0ba3">
<did>
<container type="box">1</container>
<container type="image">012</container>
<unittitle>Celeste Maggiore as Annie Oakley in Arundel Opera
production of Annie get your gun,
<unitdate type="inclusive">1959 July 1</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Unidentified</p>
<p>Location: Kennebunkport (Me.)</p>
<p>Venue: Arundel Opera Theatre (Kennebunkport, Me.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0baa">
<did>
<container type="box">1</container>
<container type="image">013</container>
<unittitle>Unidentified female character in Arundel Opera's
production of Die Fledermaus,
<unitdate type="inclusive">1959 August</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Unidentified</p>
<p>Location: Kennebunkport (Me.)</p>
<p>Venue: Arundel Opera Theatre (Kennebunkport, Me.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0bb2">
<did>
<container type="box">1</container>
<container type="image">014</container>
<unittitle>Ballet scene from Arundel Opera's production of Die
Fledermaus,
<unitdate type="inclusive">1959 August</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Unidentified</p>
<p>Location: Kennebunkport (Me.)</p>
<p>Venue: Arundel Opera Theatre (Kennebunkport, Me.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0bba">
<did>
<container type="box">1</container>
<container type="image">015</container>
<unittitle>Joseph Chouinard with unidentified female singer, both
in costume, possibly as characters in The Mikado,
<unitdate type="inclusive">1959 September</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Unidentified</p>
<p>Location: Binghamton (N.Y.)</p>
<p>On verso: Opera Guild party, Binghamton, N.Y. during Butterfly
run, Sept. 59.</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0bc2">
<did>
<container type="box">1</container>
<container type="image">016</container>
<unittitle>Joseph Chouinard (center) in costume in the role of
Bonze in Puccini's Madame Butterfly, presented by the Tri-Cities Opera Company,
<unitdate type="inclusive">1959 October</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Unidentified</p>
<p>Location: Binghamton (N.Y.)</p>
<p>Venue: Masonic Temple (Binghamton, N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0bca">
<did>
<container type="box">1</container>
<container type="image">017</container>
<unittitle>Joseph Chouinard (left), Gene Talley-Schmidt (3rd from
left) and two unidentified males in costume in a production of Romberg's The
student prince at Chastain Park, Atlanta,
<unitdate type="inclusive">1961</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Miller, Marc</p>
<p>Location: Atlanta (Ga.)</p>
<p>Venue: Chastain Memorial Park (Atlanta, Ga.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0bd3">
<did>
<container type="box">1</container>
<container type="image">018</container>
<unittitle>Prompter of the Tri-Cities Opera Company (probably John
Sportelli),
<unitdate type="inclusive">undated</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Unidentified</p>
<p>Location: Binghamton (N.Y.)</p>
<p>Venue: Masonic Temple (Binghamton, N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0bdb">
<did>
<container type="box">1</container>
<container type="image">019</container>
<unittitle>Joseph Chouinard (3rd from left) in costume as the
character Talpa in Tri-Cities Opera production of Puccini's Il Tabarro,
<unitdate type="inclusive">1961 March</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Unidentified</p>
<p>Location: Binghamton (N.Y.)</p>
<p>Venue: Masonic Temple (Binghamton, N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0be4">
<did>
<container type="box">1</container>
<container type="image">020</container>
<unittitle>The character Violetta Valery (either Rosalie DeFelice
or Lois Crane) in a Tri-Cities Opera production Puccini's La Traviata,
<unitdate type="inclusive">1961 October</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Unidentified</p>
<p>Location: Binghamton (N.Y.)</p>
<p>Venue: Masonic Temple (Binghamton, N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0bee">
<did>
<container type="box">1</container>
<container type="image">021</container>
<unittitle>Joseph Chouinard (2nd from left) as Dr. Grenvil in the
Tri-Cities Opera production of Verdi's La Traviata,
<unitdate type="inclusive">1961 October</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Unidentified</p>
<p>Location: Binghamton (N.Y.)</p>
<p>Venue: Masonic Temple (Binghamton, N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0bf7">
<did>
<container type="box">1</container>
<container type="image">022</container>
<unittitle>Portrait of Joseph Chouinard,
<unitdate type="inclusive">1964 December</unitdate> </unittitle>
<physdesc>
<extent>1 Portrait photographs</extent>
</physdesc>
<note>
<p>Photographer: Delmar Studio (Binghamton, N.Y.)</p>
<p>Location: Binghamton (N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0c01">
<did>
<container type="box">1</container>
<container type="image">023</container>
<unittitle>Joseph Chouinard (left) as the character Polyphemus and
Lawrence Bennett as Acis in a production of Handel's Acis and Galatea,
<unitdate type="inclusive">1967 January</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Sladin, V.</p>
<p>Location: New York (N.Y.)</p>
<p>Venue: Minor Latham Playhouse</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0c0c">
<did>
<container type="box">1</container>
<container type="image">024</container>
<unittitle>Joseph Chouinard (left) as the character Polyphemus and
Lawrence Bennett as Acis in a production of Handel's Acis and Galatea,
<unitdate type="inclusive">1967 January</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Sladin, V.</p>
<p>Location: New York (N.Y.)</p>
<p>Venue: Minor Latham Playhouse</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0c17">
<did>
<container type="box">1</container>
<container type="image">025</container>
<unittitle>Lawrence Bennett as the character Acis in a production
of Handel's Acis and Galatea,
<unitdate type="inclusive">1967 January</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Sladin, V.</p>
<p>Location: New York (N.Y.)</p>
<p>Venue: Minor Latham Playhouse</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0c21">
<did>
<container type="box">1</container>
<container type="image">026</container>
<unittitle>Lawrence Bennett as the character Acis in a production
of Handel's Acis and Galatea,
<unitdate type="inclusive">1967 January</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Sladin, V.</p>
<p>Location: New York (N.Y.)</p>
<p>Venue: Minor Latham Playhouse</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0c2c">
<did>
<container type="box">1</container>
<container type="image">027</container>
<unittitle>Lawrence Bennett as the character Acis in a production
of Handel's Acis and Galatea,
<unitdate type="inclusive">1967 January</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Sladin, V.</p>
<p>Location: New York (N.Y.)</p>
<p>Venue: Minor Latham Playhouse</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0c37">
<did>
<container type="box">1</container>
<container type="image">028</container>
<unittitle>Lawrence Bennett as the character Acis in a production
of Handel's Acis and Galatea,
<unitdate type="inclusive">1967 January</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Sladin, V.</p>
<p>Location: New York (N.Y.)</p>
<p>Venue: Minor Latham Playhouse</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0c43">
<did>
<container type="box">1</container>
<container type="image">029</container>
<unittitle>Portrait of Joseph Chouinard,
<unitdate type="inclusive">1974 October</unitdate> </unittitle>
<physdesc>
<extent>1 Portrait photographs</extent>
</physdesc>
<note>
<p>Photographer: Unidentified</p>
<p>Location: Buffalo (N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0c4f">
<did>
<container type="box">1</container>
<container type="image">030</container>
<unittitle>In Soo Park as the character Rodolfo and Rachel Lewis as
Mimi in Act 1 of a University at Buffalo production of Puccini's La Boheme,
<unitdate type="inclusive">1974 November</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Willoughby, Robert</p>
<p>Location: Williamsville (N.Y.)</p>
<p>Venue: Williamsville North High School (Williamsville,
N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0c5a">
<did>
<container type="box">1</container>
<container type="image">031</container>
<unittitle>In Soo Park as the character Rodolfo and Rachel Lewis as
Mimi in Act 1 of a University at Buffalo production of Puccini's La Boheme,
<unitdate type="inclusive">1974 November</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Willoughby, Robert</p>
<p>Location: Williamsville (N.Y.)</p>
<p>Venue: Williamsville North High School (Williamsville,
N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0c67">
<did>
<container type="box">1</container>
<container type="image">032</container>
<unittitle>Opening of Act 2 of University at Buffalo production of
Puccini's La Boheme,
<unitdate type="inclusive">1974 November</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Willoughby, Robert</p>
<p>Location: Williamsville (N.Y.)</p>
<p>Venue: Williamsville North High School (Williamsville,
N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0c74">
<did>
<container type="box">1</container>
<container type="image">033</container>
<unittitle>Scene from Act 2 of University at Buffalo production of
Puccini's La Boheme,
<unitdate type="inclusive">1974 November</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Willoughby, Robert</p>
<p>Location: Williamsville (N.Y.)</p>
<p>Venue: Williamsville North High School (Williamsville,
N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0c80">
<did>
<container type="box">1</container>
<container type="image">034</container>
<unittitle>Joseph Chouinard (far right) as the character Colline in
Act 2 of University at Buffalo production of Puccini's La Boheme,
<unitdate type="inclusive">1974 November</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Willoughby, Robert</p>
<p>Location: Williamsville (N.Y.)</p>
<p>Venue: Williamsville North High School (Williamsville,
N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0c8d">
<did>
<container type="box">1</container>
<container type="image">035</container>
<unittitle>Jane Bane (center) as the character Musetta and Joseph
Chouinard (far right) as Colline in Act 2 of University at Buffalo production
of Puccini's La Boheme,
<unitdate type="inclusive">1974 November</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Willoughby, Robert</p>
<p>Location: Williamsville (N.Y.)</p>
<p>Venue: Williamsville North High School (Williamsville,
N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0c9a">
<did>
<container type="box">1</container>
<container type="image">036</container>
<unittitle>Jane Bane (center) as the character Musetta, with In Soo
Park as Rodolfo and Rachel Lewis as Mimi (seated at table), and Joseph
Chouinard (far right) as Colline in Act 2 of University at Buffalo production
of Puccini's La Boheme,
<unitdate type="inclusive">1974 November</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Willoughby, Robert</p>
<p>Location: Williamsville (N.Y.)</p>
<p>Venue: Williamsville North High School (Williamsville,
N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0ca8">
<did>
<container type="box">1</container>
<container type="image">037</container>
<unittitle>In Soo Park (left) as the character Rodolfo and George
Wands in Act 3 of University at Buffalo production of Puccini's La Boheme,
<unitdate type="inclusive">1974 November</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Willoughby, Robert</p>
<p>Location: Williamsville (N.Y.)</p>
<p>Venue: Williamsville North High School (Williamsville,
N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0cb6">
<did>
<container type="box">1</container>
<container type="image">038</container>
<unittitle>In Soo Park as the character Rodolfo and Rachel Lewis as
Mimi in Act 3 of a University at Buffalo production of Puccini's La Boheme,
<unitdate type="inclusive">1974 November</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Willoughby, Robert</p>
<p>Location: Williamsville (N.Y.)</p>
<p>Venue: Williamsville North High School (Williamsville,
N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0cc4">
<did>
<container type="box">1</container>
<container type="image">039</container>
<unittitle>In Soo Park (right) as the character Rodolfo and George
Wands in Act 3 of University at Buffalo production of Puccini's La Boheme,
<unitdate type="inclusive">1974 November</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Willoughby, Robert</p>
<p>Location: Williamsville (N.Y.)</p>
<p>Venue: Williamsville North High School (Williamsville,
N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0cd3">
<did>
<container type="box">1</container>
<container type="image">040</container>
<unittitle>Kenneth Friesema as Schaunard, Joseph Chouinard as
Colline, In Soo Park as Rodolfo, and George Wands as Marcello in Act 4 of
University at Buffalo production of Puccini's La Boheme,
<unitdate type="inclusive">1974 November</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Willoughby, Robert</p>
<p>Location: Williamsville (N.Y.)</p>
<p>Venue: Williamsville North High School (Williamsville,
N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0ce2">
<did>
<container type="box">1</container>
<container type="image">041</container>
<unittitle>Kenneth Friesema as Schaunard, George Wands as Marcello,
In Soo Park as Rodolfo, Rachel Lewis as Mimi, and Joseph Chouinard as Colline
in Act 4 of University at Buffalo production of Puccini's La Boheme,
<unitdate type="inclusive">1974 November</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Willoughby, Robert</p>
<p>Location: Williamsville (N.Y.)</p>
<p>Venue: Williamsville North High School (Williamsville,
N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0cf1">
<did>
<container type="box">1</container>
<container type="image">042</container>
<unittitle>Rachel Lewis as Mimi, Joseph Chouinard as Colline, and
Kenneth Friesema as Schaunard in Act 4 of University at Buffalo production of
Puccini's La Boheme,
<unitdate type="inclusive">1974 November</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Willoughby, Robert</p>
<p>Location: Williamsville (N.Y.)</p>
<p>Venue: Williamsville North High School (Williamsville,
N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0d00">
<did>
<container type="box">1</container>
<container type="image">043</container>
<unittitle>In Soo Park as Rodolfo and Rachel Lewis as Mimi in Act 4
of University at Buffalo production of Puccini's La Boheme,
<unitdate type="inclusive">1974 November</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Willoughby, Robert</p>
<p>Location: Williamsville (N.Y.)</p>
<p>Venue: Williamsville North High School (Williamsville,
N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0d10">
<did>
<container type="box">1</container>
<container type="image">044</container>
<unittitle>In Soo Park as Rodolfo and Rachel Lewis as Mimi in Act 4
of University at Buffalo production of Puccini's La Boheme,
<unitdate type="inclusive">1974 November</unitdate> </unittitle>
<physdesc>
<extent>1 black and white photograph</extent>
</physdesc>
<note>
<p>Photographer: Willoughby, Robert</p>
<p>Location: Williamsville (N.Y.)</p>
<p>Venue: Williamsville North High School (Williamsville,
N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0d20">
<did>
<container type="box">1</container>
<container type="image">045</container>
<unittitle>Joseph Chouinard and Ethelmae Mason on steps of a
church,
<unitdate type="inclusive">2006 May</unitdate> </unittitle>
<physdesc>
<extent>1 color photograph</extent>
</physdesc>
<note>
<p>Photographer: Unidentified</p>
<p>Location: New York (N.Y.)</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a23f0d31">
<did>
<container type="box">1</container>
<container type="image">046</container>
<unittitle>Joseph Chouinard sitting at a table in Ethelmae Mason's
home,
<unitdate type="inclusive">2006 May</unitdate> </unittitle>
<physdesc>
<extent>1 color photograph</extent>
</physdesc>
<note>
<p>Photographer: Unidentified</p>
<p>Location: New York (N.Y.)</p>