-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1137.xml
2840 lines (2840 loc) · 157 KB
/
1137.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.fb157">beinecke.fb157</recordid>
<otherrecordid localtype="BIB">7041732</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Parliamentary Speeches, Debates, Bills, Etc.
</titleproper>
<titleproper localtype="filing">Parliamentary Speeches, Debates, Bills, Etc.</titleproper>
<author>by Beinecke Staff</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>August 2005</date>
<num>OSBORN fb157</num>
</publicationstmt>
<notestmt>
<controlnote>
<p>This finding aid, which is compliant with the Yale EAD Best Practice Guidelines, Version 1.0., has a MARC record in Yale's ILS with the following bib number: <num localtype="Orbis-bib">7041732</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Box: 1</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="2">2</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="4">4</num> digital files.</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>beinecke manuscript unit archival processing manual</abbr>
<citation>translation missing: en.enumerations.resource_finding_aid_description_rules.beinecke manuscript unit archival processing manual</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:12:01-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday January 9, 2025 at 00:12</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1137" level="collection">
<did>
<unittitle>[Parliamentary speeches, debates, bills, etc. and other miscellaneous manuscripts and printed documents]</unittitle>
<unitid>OSBORN fb157</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.21</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 volume</physdesc>
<unitdatestructured altrender="[mostly 1600's]"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1600">1600</fromdate>
<todate standarddate="1699">1699</todate>
</daterange>
</unitdatestructured>
</did>
<acqinfo id="aspace_ae5f41cea29cef1763ee82ed7d58fb96">
<head>Immediate Source of Acquisition</head>
<p>For provenance information, consult the appropriate curator.</p>
</acqinfo>
<userestrict id="aspace_b1a6407492e828400c25aa4379b5b226">
<head>Conditions Governing Use</head>
<p>Osborn fb157 is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<prefercite id="aspace_30652870d9c99ad11cdf9fa82c76d2f8">
<head>Preferred Citation</head>
<p>Parliamentary Speeches, Debates, Bills, etc. James Marshall and Marie-Louise Osborn Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<accessrestrict id="aspace_e368cdd9baedc8577ee2c273d5968f18">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<processinfo id="aspace_52b1794e129d7080a8c36760e62fdab6">
<head>Processing Information</head>
<p>This finding aid was produced from a previously existing list or card set. All pertinent bibliographical information has been retained; the volume may contain additional unlisted material.</p>
</processinfo>
<scopecontent id="aspace_596c3685bdcbc5fe48b3d765c30ac739">
<head>Scope and Contents</head>
<p>The following finding aid is a complete inventory of the contents of <ref actuate="onrequest" show="replace" target="ref8">Osborn fb157</ref>. This list was reformatted from previously existing cataloging.</p>
</scopecontent>
<dsc>
<c altrender="/repositories/11/archival_objects/427938"
id="ref8"
level="series">
<did>
<unittitle>Osborn fb157</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427939"
id="ref9"
level="subseries">
<did>
<unittitle>SOMERSET, ENG. CITIZENS.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427940"
id="ref10"
level="file">
<did>
<unittitle>[Petition of the Gentry, Clergy, and Freeholders to Parliament, 1642]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref10_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_2b453e065360d793e48d5b66499a23a8">
<head>Scope and Contents</head>
<p>1 p. <lb/> Contemporary MS copy. <lb/> Urges Parliament to come to an <lb/> understanding with the King. <lb/> fb 1</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427941"
id="ref12"
level="subseries">
<did>
<unittitle>ANGLESEY, ARTHUR ANNESLEY, 1ST EARL OF, 1641-1686</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427942"
id="ref13"
level="file">
<did>
<unittitle>[Protestation concerning Lord Viscount Strafford, 1685 June 3]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_0b3d6c42ba065d31f67c65c21daeac68">
<head>Scope and Contents</head>
<p>1 p. <lb/> His reasons for voting against the <lb/> reversal of Strafford's attainder. <lb/> LJ, XIV, 29. <lb/> f.2</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427943"
id="ref15"
level="subseries">
<did>
<unittitle>GREAT BRITAIN. PARLIAMENT, 1662. HOUSE OF LORDS.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427944"
id="ref16"
level="file">
<did>
<unittitle>[Conference with House of Commons on amendments to the Act of Uniformity, 1662]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_41d712c17b9028dae297eb06a746b45c">
<head>Scope and Contents</head>
<p>17 p. <lb/> Contemporary MS copy. <lb/> Conference printed in LJ, xi, <lb/> 446-450. <lb/> f.3.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427945"
id="ref18"
level="subseries">
<did>
<unittitle>CHARLES II, KING OF GREAT BRITAIN, 1630-1685</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427946"
id="ref19"
level="file">
<did>
<unittitle>[The King's message to the House of Commons, c.1666]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_b8785980ed714088002035e62088fdb8">
<head>Scope and Contents</head>
<p>4 p. <lb/> Contemporary MS copy in the hand of <lb/> John Browne; also a draft copy. The <lb/> King asks for a speedy supply to <lb/> enable him to carry out the war <lb/> effectively. <lb/> f.4-5.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427947"
id="ref21"
level="subseries">
<did>
<unittitle>YORKSHIRE, ENG. CITIZENS.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427948"
id="ref22"
level="file">
<did>
<unittitle>[Petition of the Knights, Gentry, and Freeholders of the County of York to the King, 1642 May 2]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_cff5241e7e73f4bf2b8699c614d8a78f">
<head>Scope and Contents</head>
<p>1 p. <lb/> Contemporary MS copy. <lb/> The work of "a very small number" <lb/> which opposed the position of <lb/> Parliament. Printed in part in The <lb/> Parliamentary History of Great <lb/> Britain, X, p.481. <lb/> f.6.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427949"
id="ref24"
level="subseries">
<did>
<unittitle>GREAT BRITAIN. PARLIAMENT, 1671. HOUSE OF LORDS.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427950"
id="ref25"
level="file">
<did>
<unittitle>[Head of the petition to prevent the growth of Popery, 1670/1 Mar 2]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_5efedcf367e7e2f0c89f9db27c65e65e">
<head>Scope and Contents</head>
<p>1 p. <lb/> Draft copy. <lb/> The petition is to be considered at <lb/> a conference with the Commons. <lb/> LJ, XII, 441. <lb/> f.7.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427951"
id="ref27"
level="subseries">
<did>
<unittitle>GREAT BRITAIN. PARLIAMENT, 1671. HOUSE OF COMMONS.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427952"
id="ref28"
level="file">
<did>
<unittitle>"The Reasons which induced the house of Comons to give credit to those three matters of fact in the Clauses of the growth of popery..."</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_f3d68cf4724c428df2cbd6950867c5f4">
<head>Scope and Contents</head>
<p>[1670/1 Mar 10] <lb/> 5 p. <lb/> Contemporary MS copy. <lb/> Results of the conference with the <lb/> House of Lords. <lb/> LJ, xii, 449. <lb/> f.8</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427953"
id="ref30"
level="subseries">
<did>
<unittitle>DEVONSHIRE, ENG. CITIZENS.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427954"
id="ref31"
level="file">
<did>
<unittitle>[Report of a petition of the gentry and clergy against the Canons of 1640, and the Etcetera Oath, 1640]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_137931da10d865612313e4edaa455152">
<head>Scope and Contents</head>
<p>3 p. <lb/> Contemporary MS. <lb/> Includes a summary of the Devonshire <lb/> objections to the canons and the <lb/> oath, and the text of the petition <lb/> addressed to the Privy Council. Henry <lb/> Bourchier, earl of Bath (1587-1654), <lb/> is reported to have been the first <lb/> signer, and the county's M.P.'s to <lb/> have delivered it. Thomas Wise <lb/> (c.1605-1641); Edward Seymour <lb/> (1610-1688). <lb/> f.9.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427955"
id="ref33"
level="subseries">
<did>
<unittitle>FALKLAND, LUCIUS CARY, 2ND VISCOUNT, 1610?-1643</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427956"
id="ref34"
level="file">
<did>
<unittitle>[unidentified]</unittitle>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_27ce5ae279c21cc4915610986231ad05">
<head>Scope and Contents</head>
<p>4 p. <lb/> Contemporary MS copy. <lb/> Speaks in favor of the impeachment <lb/> of John Finch, baron Finch of Fordwich <lb/> (1584-1660). <lb/> Rushworth, iv, 139-141. <lb/> f.10.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427957"
id="ref36"
level="subseries">
<did>
<unittitle>CHARLES II, KING OF GREAT BRITAIN, 1630-1685</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427958"
id="ref37"
level="file">
<did>
<unittitle>[The King's answer to the Common's Address against Papists, 1673 Mar 8]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_8dcf31124ffa4629cfbeba8dab981eb1">
<head>Scope and Contents</head>
<p>1 p. <lb/> Contemporary MS copy. <lb/> Agrees to put address in execution. <lb/> Cobbett, iv, p.561. <lb/> f.11.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427959"
id="ref39"
level="subseries">
<did>
<unittitle>GREAT BRITAIN. PARLIAMENT, 1644. HOUSE OF COMMONS.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427960"
id="ref40"
level="file">
<did>
<unittitle>"The Exam[ination] of The Lord Chandois"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_f427a17e98fce4e89cab70ba70974aa5">
<head>Scope and Contents</head>
<p>[1644 June] <lb/> 1 p. <lb/> Contemporary MS copy in the hand of <lb/> Algernon Percy, 10th earl of <lb/> Northumberland. Concerns Lord <lb/> Conway's betrayal of Lord Chandos' <lb/> intention of leaving the King at <lb/> Oxford. This is the examination of <lb/> Chandos by a Parliamentary committee. <lb/> See The Parliamentary or <lb/> Constitutional History of England, by <lb/> Several Hands, 2nd ed, 13, p.210-214. <lb/> George Brydges, baron Chandos of <lb/> Sudeley (1620-1655); Edward Conway, <lb/> baron Conway of Ragley (1594-1655); <lb/> Edward Sackville, earl of Dorset <lb/> (1590-1652). <lb/> f.12.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427961"
id="ref42"
level="subseries">
<did>
<unittitle>FROST, WALTER</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427962"
id="ref43"
level="file">
<did>
<unittitle>[Testimony concerning Monsieur Montreuil, c.1646]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_adf0240b072287d9fb5bf21b76ba1bde">
<head>Scope and Contents</head>
<p>1 p. <lb/> Autograph document. Signed by Frost <lb/> and his son. Concerning letters in <lb/> the custody of members of the <lb/> Committee of Both Kingdoms which were <lb/> taken by Jean de Montreuil. Algernon <lb/> Percy, 10th earl of Northumberland <lb/> (1602-1668); Sir Philip Stapleton <lb/> (1603-1647). <lb/> f.13.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427963"
id="ref45"
level="subseries">
<did>
<unittitle>GREAT BRITAIN. PARLIAMENT, 1643.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427964"
id="ref46"
level="file">
<did>
<unittitle>[Notes on a conference between the two Houses on the Cessation Treaty, 1642/3 March 10]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_2baedd8fa18d5e2d2cbcafc256fda9b2">
<head>Scope and Contents</head>
<p>1 p. <lb/> Contemporary MS in the hand of Henry <lb/> Elsynge Jr., clerk of the House of <lb/> Commons. On the reverse is a column <lb/> of notes numbered L-6 in the hand of <lb/> John Pym. Alterations of several <lb/> articles made by Lords at a <lb/> conference on the Treaty. See f.34. <lb/> f.14.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427965"
id="ref48"
level="subseries">
<did>
<unittitle>[ANONYMOUS]</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427966"
id="ref49"
level="file">
<did>
<unittitle>[Listing of military equipment]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_06195e0d0df48bda2456ff8e63f1b292">
<head>Scope and Contents</head>
<p>1 p. <lb/> MS, dated 12 June, no year. <lb/> List of field and mortar pieces, <lb/> "barrells of powder," horses, etc. <lb/> On the reverse side is a detailed <lb/> description of jewels to be pawned. <lb/> f.15.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427967"
id="ref51"
level="subseries">
<did>
<unittitle>WARWICK, ROBERT RICH, 2ND EARL OF, 1587-1658</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427968"
id="ref52"
level="file">
<did>
<unittitle>[Speech in the House of Lords, 1640/1 Jan 26]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_b7afd8c7df4452d7792978a5d9e7b6c7">
<head>Scope and Contents</head>
<p>2 p. <lb/> Contemporary MS copy. <lb/> Report on a conference with the <lb/> Commons. Introductory speech by <lb/> Warwick; report of the message from <lb/> the Commons delivered by Oliver St <lb/> John (1598?-1673). Speech mentioned <lb/> in LJ, iv, p.136. <lb/> f.16</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427969"
id="ref54"
level="subseries">
<did>
<unittitle>[ANONYMOUS]</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427970"
id="ref55"
level="file">
<did>
<unittitle>[Petition recommending that Thomas Smith be appointed a Commissioner of the Navy, c.1646]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_f3f203bb43f5f68e71b4558efdc402dc">
<head>Scope and Contents</head>
<p>2 p. <lb/> Anonymous MS. <lb/> Petitioner recommends adding Smith <lb/> to the three other commissioners and <lb/> anticipates possible objections to <lb/> Smith. <lb/> f.18</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427971"
id="ref57"
level="subseries">
<did>
<unittitle>CHARLES II, KING OF GREAT BRITAIN, 1630-1685</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427972"
id="ref58"
level="file">
<did>
<unittitle>[Message to the House of Commons concerning Sir Richard Temple (1634-1697), 1663 June 16]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_bdefb80ac46c12a87c28ea42b3806070">
<head>Scope and Contents</head>
<p>2 p. <lb/> Contemporary MS copy. <lb/> Complains of Temple's conduct in the <lb/> House. <lb/> CJ, viii, p.503. <lb/> f.19.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427973"
id="ref60"
level="subseries">
<did>
<unittitle>WHARTON, THOMAS</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427974"
id="ref61"
level="file">
<did>
<unittitle>[The Report by the Commissioners sent into Ireland by Parliament, c. 1646/7 Feb]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_a70baf8837bb748842143cc9e3b0f46b">
<head>Scope and Contents</head>
<p>1 p. <lb/> Document signed by Thomas Wharton <lb/> and Richard Salwey (1615-1685). A <lb/> report on James Butler, 1st duke of <lb/> Ormonde's attitudes towards King and <lb/> Parliament. <lb/> f.20.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427975"
id="ref63"
level="subseries">
<did>
<unittitle>PRATT, THOMAS</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427976"
id="ref64"
level="file">
<did>
<unittitle>[Examination and deposition of Thomas Pratt]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_1b7c86f0faa7b0f64a7b09e9586491e6">
<head>Scope and Contents</head>
<p>1 p. <lb/> Contemporary documents signed by <lb/> Thomas Pratt with his mark. One edge <lb/> frayed and some text lost. Concerns <lb/> land dispute in Northamptonshire. <lb/> f.21.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427977"
id="ref66"
level="subseries">
<did>
<unittitle>GREAT BRITAIN. PARLIAMENT, 1647. HOUSE OF LORDS.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427978"
id="ref67"
level="file">
<did>
<unittitle>"Reasons why the Lords adhere to their former vote"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref67_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_bd154eb73d4813c6abe631613be650ae">
<head>Scope and Contents</head>
<p>[c.1647 Nov] <lb/> 3 p. <lb/> Contemporary MS copy. <lb/> About the Four Bills to be sent to <lb/> the King. Addition to the text <lb/> (later cancelled) in the hand of <lb/> John Throckmorton, under-clerk of <lb/> Parliament; marginal note on left is <lb/> by the 2nd earl of Warwick. <lb/> Cobbett, v.3, 925. <lb/> f.22.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427979"
id="ref69"
level="subseries">
<did>
<unittitle>GREAT BRITAIN. PARLIAMENT, 1661. HOUSE OF LORDS.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427980"
id="ref70"
level="file">
<did>
<unittitle>[A list of the spiritual and temporal peers in Parliament, c.1661]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref70_c1"
label="Mixed Materials"
localtype="box">1</container>
<daoset altrender="/repositories/11/digital_objects/161136">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2100006"
identifier="oid:2100006"
linktitle="2 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1331284/full/!150,150/0/default.jpg"
identifier="oid:2100006"
linktitle="top"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2100006"
identifier="oid:2100006"
linktitle="top"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>[A list of the spiritual and temporal peers in Parliament, c.1661]</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_3236f823751edffcd7cbda782d6faea9">
<head>Scope and Contents</head>
<p>1 p. <lb/> Contemporary MS with additions in <lb/> the hand of John Browne. The page <lb/> is torn in two. <lb/> f.23.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427981"
id="ref72"
level="subseries">
<did>
<unittitle>BROWNE, JOHN, D.1691</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427982"
id="ref73"
level="file">
<did>
<unittitle>"The names of the Peeres of England according to their creation and Presidency"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref73_c1"
label="Mixed Materials"
localtype="box">1</container>
<daoset altrender="/repositories/11/digital_objects/161137">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2102345"
identifier="oid:2102345"
linktitle="2 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1331286/full/!150,150/0/default.jpg"
identifier="oid:2102345"
linktitle="recto"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2102345"
identifier="oid:2102345"
linktitle="recto"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>"The names of the Peeres of England according to their creation and Presidency"</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_6a6859755574a578af9e664d993b8c9b">
<head>Scope and Contents</head>
<p>[c.1660] <lb/> Autograph MS. <lb/> Original list made in about 1660, <lb/> but the peers created in 1661 have <lb/> been added. <lb/> f.24.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427983"
id="ref75"
level="subseries">
<did>
<unittitle>BROWNE, JOHN, D.1691</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427984"
id="ref76"
level="file">
<did>
<unittitle>[Extracts from the Journals of the House of Lords 1621 March 20-April 18]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref76_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_0e8dc9ee6af25721911b59a3ed270294">
<head>Scope and Contents</head>
<p>4 p. <lb/> Autograph MS. <lb/> Numbered 5-8; 104 apparently missing. <lb/> Items of interest, including <lb/> procedural questions as well as daily <lb/> business, are arranged by date and <lb/> are numbered. <lb/> f.25.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427985"
id="ref78"
level="subseries">
<did>
<unittitle>GREAT BRITAIN. PARLIAMENT, 1660. HOUSE OF LORDS.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427986"
id="ref79"
level="file">
<did>
<unittitle>"The Answer drawn up by the Lords Committee for church government"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref79_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_3504593f73781a5761a60fd703a9b023">
<head>Scope and Contents</head>
<p>[c.1660] <lb/> 1 p. <lb/> Contemporary MS copy in the hand of <lb/> John Browne. Assertion that nothing <lb/> will be done to prejudice the Church <lb/> of Scotland in the settling of the <lb/> English Church. <lb/> f.26.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427987"
id="ref81"
level="subseries">
<did>
<unittitle>SCOTLAND PRIVY COUNCIL.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427988"
id="ref82"
level="file">
<did>
<unittitle>[Address to King James II (1633-1701), 1686 Sept 16]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref82_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_53c2a505aa63b9d4eb177559a31c308c">
<head>Scope and Contents</head>
<p>2 p. <lb/> Contemporary MS copy. <lb/> Agreeing to carry out the King's <lb/> wish to grant Roman Catholics <lb/> "ease and immunity." <lb/> f.27.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427989"
id="ref84"
level="subseries">
<did>
<unittitle>BROWNE, JOHN, D.1691</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427990"
id="ref85"
level="file">
<did>
<unittitle>[Notes on Parliamentary rules taken from the records, c.mid-17th century]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref85_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_61530d13163fdb412190b5b2a86699bd">
<head>Scope and Contents</head>
<p>1 p. <lb/> Autograph MS. <lb/> Short list of rules and precedents <lb/> concerning penalties imposed on <lb/> peers in the House of Lords for <lb/> non-attendance, departing without <lb/> leave, etc. <lb/> f.28.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427991"
id="ref87"
level="subseries">
<did>
<unittitle>FINCH, SIR JOHN, BARON FINCH OF FORDWICH, 1584-1660</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427992"
id="ref88"
level="file">
<did>
<unittitle>[The report of Lord Keeper Finch to the House of Lords of a conference with John Pym, 1640 April 29]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref88_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_e92c2070404ebba444e4fb3c827f6648">
<head>Scope and Contents</head>
<p>1 p. <lb/> Draft copy in the hand of John <lb/> Browne. Finch's report of John Pym's <lb/> (1584-1643) speech attempting to <lb/> resolve the differences between the <lb/> two Houses. LJ, iv, 72-73. <lb/> f.29.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427993"
id="ref90"
level="subseries">
<did>
<unittitle>[ANONYMOUS]</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427994"
id="ref91"
level="file">
<did>
<unittitle>[An account of several prorogations of Parliament 1564-1610]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref91_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_7903a483b6dc7269b1c6cfa17e26971e">
<head>Scope and Contents</head>
<p>5 p. <lb/> Anonymous MS. <lb/> Edges frayed and some text lost. <lb/> Various commissions in Latin <lb/> proroguing Parliament and notes in <lb/> English. <lb/> f.30.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427995"
id="ref93"
level="subseries">
<did>
<unittitle>GREAT BRITAIN. PARLIAMENT, 1675. HOUSE OF LORDS.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427996"
id="ref94"
level="file">
<did>
<unittitle>[Bill to prevent the dangers which may arise from persons disaffected with the government, 1675 May]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref94_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_1fae199189a2671643406a70bf2afc2c">
<head>Scope and Contents</head>
<p>5 p. <lb/> Contemporary MS copy. <lb/> Bill to require all office holders, <lb/> JPs, MPs, and peers sitting in the <lb/> House of Lords to take non-resisting <lb/> oaths. <lb/> f.31.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427997"
id="ref96"
level="subseries">
<did>
<unittitle>[ANONYMOUS]</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/427998"
id="ref97"
level="file">
<did>
<unittitle>"The consequences of the Trade and convoy [at Dover]"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref97_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_51af088d484863e0d6324a93c89c8ebc">
<head>Scope and Contents</head>
<p>1 p. <lb/> Anonymous MS, c. mid-17th century. <lb/> Document setting forth the advantages <lb/> of the Dover trade, and complaints <lb/> against the Dutch. <lb/> f.32.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/427999"
id="ref99"
level="subseries">
<did>
<unittitle>BROWNE, JOHN, D.1691</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/428000"
id="ref100"
level="file">
<did>
<unittitle>[Notes on precedents of trials in the House of Lords, mid-17th century]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref100_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_6b7e5fe9ee2288fe87a23c48ff3935d6">
<head>Scope and Contents</head>
<p>2 p. <lb/> Autograph MS. <lb/> Arguments against the Commons <lb/> participating or being present at <lb/> such trials. <lb/> f.33.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/428001"
id="ref102"
level="subseries">
<did>
<unittitle>GREAT BRITAIN. PARLIAMENT, 1643.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/428002"
id="ref103"
level="file">
<did>
<unittitle>[Notes on a conference between the two Houses on the Cessation Treaty, 1642/3 March]</unittitle>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref103_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_105ce76d8a50c32185d998ebdbcc1d80">
<head>Scope and Contents</head>
<p>1 p. <lb/> Contemporary MS. <lb/> The seventh article of the Treaty is <lb/> given (asking the King to disband the <lb/> armies) and certain objections of the <lb/> House of Commons are listed. See f.14 <lb/> f.34.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/428003"
id="ref105"
level="subseries">
<did>
<unittitle>GREAT BRITAIN. PARLIAMENT, 1695.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/428004"
id="ref106"
level="file">
<did>
<unittitle>"A Clause reported from the Bill concerning Oaths"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.d.]</unitdate>
<container altrender="/repositories/11/top_containers/57397 /locations/4051"
containerid="39002093925965"
id="aspace_ref106_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_2f1fefe733ca40a4ff35eb3e7a7e3bda">
<head>Scope and Contents</head>
<p>[1684/5 March 20] <lb/> 1 p. <lb/> Contemporary MS in the hand of Henry <lb/> Elsynge Jr. On commissions to tender <lb/> the oath of fidelity. <lb/> f.35.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/428005"
id="ref108"
level="subseries">
<did>
<unittitle>TURNOR, SIR EDWARD, 1617-1676</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/428006"
id="ref109"
level="file">
<did>
<unittitle>[The Speech of the Speaker of the House of Commons on the prorogation of Parliament and the answer of the King, 1671 Apr 22]</unittitle>