-
Notifications
You must be signed in to change notification settings - Fork 0
/
F-tem.xml
5107 lines (5098 loc) · 331 KB
/
F-tem.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"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
<titleStmt>
<title type="statement">The Tempest from Mr. William Shakespeares comedies, histories, & tragedies.
Published according to the true originall copies.</title>
<title type="variant">Mr. VVilliam Shakespeares comedies, histories, &
tragedies</title>
<title type="distinctive">Bodleian First Folio, Arch. G c.7</title>
<author key="LCCNn78095332">Shakespeare, William, 1564-1616.</author>
<editor>Heminge, John, approximately 1556-1630</editor>
<editor>Condell, Henry, -1627</editor>
<respStmt>
<persName>Droeshout, Martin, 1601-</persName>
<resp>engraver</resp>
</respStmt>
<respStmt>
<persName>Jaggard, Isaac, -1627</persName>
<resp>printer</resp>
</respStmt>
<respStmt>
<persName>Blount, Edward, fl. 1594-1632</persName>
<resp>printer</resp>
</respStmt>
<respStmt>
<persName>Jaggard, William, 1569-1623</persName>
<resp>publisher</resp>
</respStmt>
<respStmt>
<persName>Smethwicke, John, -1641</persName>
<resp>publisher</resp>
</respStmt>
<respStmt>
<persName>Aspley, William, -1640</persName>
<resp>publisher</resp>
</respStmt>
<respStmt xml:id="BDLSS">
<orgName ref="http://www.bodleian.ox.ac.uk/bdlss">Bodleian Digital Library Systems and Services</orgName>
<resp>creation of electronic edition</resp>
</respStmt>
<respStmt xml:id="INVIDA">
<orgName ref="http://www.invidasolutions.com/">Invida Trans It Solutions PVT. LTD.</orgName>
<resp>preliminary keying and encoding by</resp>
</respStmt>
<respStmt xml:id="PW">
<persName>Pip Willcox</persName>
<resp>project management</resp>
<resp>proofing</resp>
<resp>encoding</resp>
</respStmt>
<respStmt xml:id="LMC">
<persName>Lucienne Cummings</persName>
<resp>proofing</resp>
<resp>encoding</resp>
</respStmt>
<respStmt xml:id="JS">
<persName>Judith Siefring</persName>
<resp>proofing</resp>
<resp>encoding</resp>
</respStmt>
<respStmt xml:id="ES">
<persName>Emma Stanford</persName>
<resp>proofing</resp>
<resp>encoding</resp>
</respStmt>
<respStmt xml:id="JC">
<persName>James Cummings</persName>
<resp>encoding consultation</resp>
</respStmt>
<funder>
<ref target="http://shakespeare.bodleian.ox.ac.uk/">Sprint for Shakespeare</ref>
Crowdfunding</funder>
<funder>The second phase of the Bodleian First Folio project was made possible by a lead gift from Dr Geoffrey Eibl-Kaye and generous support from the Sallie Dickson Memorial Fund/Dallas Shakespeare Club Fund, Mr James Barber, and a private individual. The Bodleian Libraries are very grateful for this additional support, which brings new features to the digitized First Folio, enabling more efficient and intuitive use for all with an interest in Shakespeare, early modern drama, theatre and book history.</funder>
</titleStmt>
<editionStmt>
<edition n="first"> First publication edition. <date when="2014-04-23">23 April
2014</date>
</edition>
</editionStmt>
<publicationStmt>
<publisher>
<orgName ref="http://www.bodleian.ox.ac.uk/">Bodleian Libraries</orgName>,
<orgName ref="http://www.ox.ac.uk">University of Oxford</orgName>
</publisher>
<date when="2014-09-11">11 September 2014</date>
<authority>
<orgName ref="http://www.bodleian.ox.ac.uk/bdlss" xml:id="bdlss">Bodleian Digital
Library Systems and Services</orgName>
</authority>
<address>
<addrLine>Osney One Building</addrLine>
<addrLine>Osney Mead</addrLine>
<addrLine>Oxford</addrLine>
<postCode>OX2 0EW</postCode>
</address>
<availability>
<p> Available for reuse, according to the terms of the <ref target="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 Unported</ref>.</p>
</availability>
<idno type="url">http://firstfolio.bodleian.ox.ac.uk/</idno>
<idno type="url">http://solo-aleph.bodleian.ox.ac.uk/?func=direct&doc_number=011814163&format=999&local_base=HOL60</idno>
</publicationStmt>
<sourceDesc>
<bibl>
<author key="LCCNn78095332">Shakespeare, William, 1564-1616.</author>
<title type="statement"> Mr. William Shakespeares comedies, histories, &
tragedies.: Published according to the true originall copies.</title>
<title type="variant">Mr. VVilliam Shakespeares comedies, histories, &
tragedies</title>
<title type="distinctive">First Folio</title>
<pubPlace>
<settlement>London</settlement>, <country>England</country>
</pubPlace>:
<publisher>
<persName>William Jaggard</persName>, <persName>Edward
Blount</persName>, <persName>John Smethwicke</persName>
</publisher>
<date type="canonical" when="1623">1623</date>
<date type="entry" when="1623-11-08">8 November 1623 (entered)</date>
<idno type="shelfmark">Bodleian Library, Arch. G c.7</idno>
<idno type="estcCitationNo">S111228</idno>
<idno type="alephSysNo">015592789</idno>
<note type="citation">ESTC, S111228</note>
<note type="citation">Greg, III, p. 1109-12</note>
<note type="citation">Pforzheimer, 905</note>
<note type="citation">STC (2nd ed.), 22273</note>
<note type="citation">Rasmussen, E. & West, A.J. "The Shakespeare First Folios a
descriptive catalogue", Palgrave Macmillan, 2012.</note>
<note type="citation">Hinman, C. The printing and proof-reading of the First Folio of
Shakespeare, Oxford, 1963, p.30</note>
<note type="citation">West, A.J. A Model for Describing Shakespeare First Folios,
With Descriptions of Selected Copies, in The Library, v. s6-21, Issue 1 (March
1999), p.1-19</note>
</bibl>
<msDesc>
<msIdentifier>
<country>United Kingdom</country>
<settlement>Oxford</settlement>
<institution>University of Oxford</institution>
<repository>Bodleian Library</repository>
<idno type="shelfmark">Bodleian Library, Arch. G c.7</idno>
<altIdentifier type="previous">
<idno type="shelfmark">S 2.17 Art. [first Bodleian shelfmark,
1624-1664?]</idno>
</altIdentifier>
<altIdentifier type="previous">
<idno type="shelfmark">Arch. F c.13 [superscript z?] [second Bodleian
shelfmark, 1906-?]</idno>
</altIdentifier>
</msIdentifier>
<msContents>
<titlePage>
<docTitle>
<titlePart>M<hi rend="superscript">r</hi> VVILLIAM <lb/>
<hi rend="large">SHAKESPEARES</hi>
<lb/>COMEDIES, <lb/>HISTORIES, & <lb/>TRAGEDIES. </titlePart>
<titlePart>Publiſhed according to the True Originall Copies.</titlePart>
</docTitle>
<docImprint>London : Printed by Isaac Iaggard, and Ed. Blount [at the charges
of W. Iaggard, Ed. Blount, I. Smithweeke, and W. Aspley].,
<docDate>1623</docDate>.</docImprint>
</titlePage>
</msContents>
<physDesc>
<objectDesc form="codex">
<supportDesc>
<support>
<dimensions>
<height unit="mm">349</height>
<width unit="mm">323</width>
</dimensions>
</support>
<foliation>
<p>[18], 303, [1], 46, 49-100, [2], 69-232, [2], 79-80, [26], 76,
79-82, 80-98, [2], 109-156, 257-993 [i.e. 399], [1] p.; fol.</p>
<p>Numbering peculiarities: 1st count: p.50 misnumbered 58; p.59
misnumbered 51; p.86 misnumbered 88; p.153 misnumbered 151; p.161
misnumbered] 163; p.164 misnumbered 162; p. 165 misnumbered 163; p.
189 misnumbered 187; p. 249 misnumbered 251; p.250 misnumbered 252; p.
265 misnumbered 273 -- 2nd count: p.37 misnumbered 39 in some copies;
p.89 misnumbered 91; p. 90 misnumbered 92 -- 3rd count: p.165-166
numbered 167 and 168 respectively; p. 216 numbered 218 -- 5th count:
p. 279 misnumbered 259; p. 282 misnumbered 280; p.308 misnumbered 38;
p. 379 misnumbered 389; p. 399 misnumbered 993.</p>
</foliation>
<collation>
<p>The signatures varies between sources, with the most commonly
cited being Hinman's and West's: 1. Hinman: πA⁶ (πA1+1) [πB²], ²A-2B⁶
2C² a-g⁶ χgg⁸ h-v⁶ x⁴ χ1.2 [para.]-2[para.]⁶ 3[para]¹ aa-ff⁶ gg² Gg⁶
hh⁶ kk-bbb⁶; 2. West: πA⁶ (πA1+1, πA5+1.2)²A-2B⁶ 2C² a-g⁶ ²g⁸ h-v⁶ x⁴
'gg3.4' (±'gg3') [para.]-2[para.]⁶ 3[para]¹ 2a-2f⁶ 2g² 2G⁶ 2h⁶ 2k-2v⁶
x⁶ 2y-3b⁶.</p>
<p>Mis-signed leaves: a3 mis-signed Aa3; ³gg1 mis-signed Gg; nn1-nn2
mis-signed Nn and Nn2 and oo1 mis-signed Oo.</p>
<p>"The life and death of King Iohn" begins new pagination on leaf a1
recto; "The tragedy of Coriolanus" begins new pagination on leaf aa1
recto.</p>
</collation>
<condition>Lacks A1, the letterpress frontispiece entitled "To the reader".
The title page is trimmed and mounted, with a section of the mount
towards the foot of the leaf mutilated resulting in the loss of some the
Droechout imprint at the bottom left hand corner of the portrait and the
central section of an early MS note. For a full condition report,
including a full survey of damage and repairs, please contact Rare
Books.</condition>
</supportDesc>
<layoutDesc>
<layout>
<p>Predominantly printed in double columns.</p>
<p>Text within simple lined frame.</p>
<p>Colophon reads: "Printed at the charges of W. Iaggard, Ed. Blount, I.
Smithweeke, and W. Aspley. 1623.".</p>
<p>Editors’ dedication signed: Iohn Heminge. Henry Condell.</p>
</layout>
</layoutDesc>
</objectDesc>
<decoDesc>
<decoNote>Head- and tail- pieces; initials.</decoNote>
<decoNote>With an engraved title-page portrait of the author signed: "Martin-
Droeshout: sculpsit· London.". The plate exists in 2 states: 1. The earlier
state has lighter shading generall ; 2. Later state has heavier shading,
especially around the collar, and minor differences particularly with the
jawline and moustache. The vast majority of surviving copies have the plate
in the second state which has led some scholars to conclude that the earlier
state was a proof. The portrait in this copy is the second state.
</decoNote>
</decoDesc>
<additions>
<p>Two MS verses on first endpaper verso: 1. 9 lines of verse by an
unknown author, first line reads "An active swain to make a leap was seen".
2. A copy of Ben Jonson’s printed "To the Reader"; MS note on t.p.
(mutilated) appears to read "Honest [Shakes]peare". Minor annotations on
leaf 2n4 (Macbeth). All in an early English hand, presumably added after
leaving the Library.</p>
</additions>
<bindingDesc>
<p>Seventeenth-century (1624) English (Oxford) smooth calf. Bound for the
Bodleian Library by William Wildgoose, with evidence of two cloth ties, red
sprinkled edge. Formerly chained, with evidence of chain staple at the head
of the upper cover. Remains of paper label at the head of the spine.
Enclosed in 20th century book box by Maltby of Oxford. See S. Gibson in
Original Bodleian Copy of First Folio, p. 12-13. One of four items sent out
on 17th February 1624 for binding by Wildgoose containing printed waste from
a copy of Cicero’s "De Officiis, et al." [Deventer: Richard Pafraet, between
1480 and 1485] as paste-downs. For more information on this work see: Bod.
Inc. Cat., C-322.</p>
</bindingDesc>
</physDesc>
<history>
<origin>
<p>For further details on the printing of this item see Hinman, Charleton. The
printing and proof-reading of the First Folio of Shakespeare: Oxford, 1963.
</p>
</origin>
<acquisition>
<p>Acquired by the Bodleian in 1623, presumably in sheets. It
was sent out to <persName>William Wildgoose</persName> on <date when="1624-02-17">17 February 1624</date> for binding (see: Library
Records e.258, fol. 48r) and upon its return chained in Duke Humfrey at
shelfmark S 2.17 Art. It is listed in the Bodleian’s <date when="1635">1635</date> catalogue of printed books but was gone by the publication
of the next catalogue in <date when="1674">1674</date>, replaced by the
newer <bibl>
<title>Third Folio</title> (<date when="1664">1664</date>)</bibl>. There is no explicit reference in Library Records
to the disposal of this copy, but there is a record of a sale of
"superfluous library books" to <persName>Richard Davis</persName>, a
bookseller in Oxford, in <date when="1664">1664</date> for the sum of <num value="24">£24</num>.</p>
<p>After leaving the Bodleian this copy entered
the collection of <persName>Richard Turbutt</persName> of Ogston Hall,
Derbyshire at some point in the early 18th century. It stayed in the
family’s possession until <date when="1906">1906</date>, when it was
reacquired by the Bodleian for the sum of <num value="3000">£3000</num>,
raised by public subscription. For a full discussion of the rediscovery and
purchase of this copy see: F. Madan, G. M. R. Turbutt and S. Gibson, The
Original Bodleian Copy of the First Folio of Shakespeare (theTurbutt
Shakespeare) (Oxford, 1905)</p>
<p>For a full discussion of this copy and the
digital version see http://shakespeare.bodleian.ox.ac.uk/ and West and
Rasmussen (2011), 31.</p>
</acquisition>
</history>
<additional>
<surrogates>
<listBibl>
<bibl type="digitalFacsimile">Digital facsimile images available at: <ref target="http://firstfolio.bodleian.ox.ac.uk/">http://firstfolio.bodleian.ox.ac.uk/</ref>.</bibl>
</listBibl>
</surrogates>
</additional>
</msDesc>
</sourceDesc>
</fileDesc>
<profileDesc>
<particDesc>
<listPerson>
<person xml:id="F-tem-adi">
<persName type="standard">Adrian, a lord</persName>
<persName type="form">Ad.</persName>
<persName type="form">Adr.</persName>
<persName type="form">Adri.</persName>
</person>
<person xml:id="F-tem-alo">
<persName type="standard">Alonso, king of Naples</persName>
<persName type="form">Al.</persName>
<persName type="form">Alo.</persName>
<persName type="form">Alon.</persName>
<persName type="form">Alons.</persName>
</person>
<person xml:id="F-tem-ant">
<persName type="standard">Antonio, duke of Milan and Prospero’s brother</persName>
<persName type="form">An.</persName>
<persName type="form">Ant.</persName>
<persName type="form">Anth.</persName>
</person>
<person xml:id="F-tem-ari">
<persName type="standard">Ariel, an airy spirit</persName>
<persName type="form">Ar.</persName>
<persName type="form">Ari.</persName>
<persName type="form">Ariel</persName>
<persName type="form">Ariel.</persName>
<persName type="form">Ariell</persName>
<persName type="form">Ariell.</persName>
</person>
<person xml:id="F-tem-boa">
<persName type="standard">Boatswain</persName>
<persName type="form">Bot.</persName>
<persName type="form">Botes.</persName>
<persName type="form">Botes:</persName>
</person>
<person xml:id="F-tem-cal">
<persName type="standard">Caliban, a savage and deformed slave</persName>
<persName type="form">Cal.</persName>
</person>
<person xml:id="F-tem-cer">
<persName type="standard">Ceres, presented by spirits</persName>
<persName type="form">Cer.</persName>
</person>
<person xml:id="F-tem-fer">
<persName type="standard">Ferdinand, son to the King of Naples</persName>
<persName type="form">Fer.</persName>
<persName type="form">Fer. Mir.</persName>
</person>
<person xml:id="F-tem-fra">
<persName type="standard">Francisco, a lord</persName>
<persName type="form">Fr.</persName>
<persName type="form">Fran.</persName>
</person>
<person xml:id="F-tem-gon">
<persName type="standard">Gonzalo, an honest old counsellor</persName>
<persName type="form">Gon.</persName>
<persName type="form">Gonz.</persName>
</person>
<person xml:id="F-tem-iri">
<persName type="standard">Iris, presented by spirits</persName>
<persName type="form">Ir.</persName>
<persName type="form">Iris.</persName>
</person>
<person xml:id="F-tem-jun">
<persName type="standard">Juno, presented by spirits</persName>
<persName type="form">Iu.</persName>
</person>
<person xml:id="F-tem-mar">
<persName type="standard">Mariners</persName>
<persName type="form">Mari.</persName>
</person>
<person xml:id="F-tem-mas">
<persName type="standard">Master, master of a ship</persName>
<persName type="form">Mast.</persName>
<persName type="form">Master.</persName>
</person>
<person xml:id="F-tem-mir">
<persName type="standard">Miranda, daughter to Prospero</persName>
<persName type="form">Mir.</persName>
<persName type="form">Fer. Mir.</persName>
<persName type="form">Mira.</persName>
</person>
<person xml:id="F-tem-pro">
<persName type="standard">Prospero, the rightful Duke of Milan</persName>
<persName type="form">Pro.</persName>
<persName type="form">Pros.</persName>
</person>
<person xml:id="F-tem-seb">
<persName type="standard">Sebastian, the King's brother</persName>
<persName type="form">Seb.</persName>
<persName type="form">Sebas.</persName>
</person>
<person xml:id="F-tem-ste">
<persName type="standard">Stephano, a drunken butler</persName>
<persName type="form">St.</persName>
<persName type="form">Ste.</persName>
</person>
<person xml:id="F-tem-tri">
<persName type="standard">Trinculo, a jester</persName>
<persName type="form">Tr.</persName>
<persName type="form">Tri.</persName>
<persName type="form">Trin.</persName>
</person>
</listPerson>
</particDesc>
</profileDesc>
</teiHeader>
<text type="play" xml:id="F-tem">
<body>
<div type="play" n="1">
<pb facs="FFimg:axc0020-0.jpg"/>
<pb facs="FFimg:axc0021-0.jpg" n="1"/>
<head rend="center">THE <lb/>TEMPEST</head>
<div type="act" n="1">
<div type="scene" n="1">
<head rend="center">
<hi rend="italic">Actus primus, Scena prima</hi>.</head>
<head type="supplied">[Act 1, Scene 1]</head>
<cb n="1"/>
<stage rend="italic" type="entrance">A tempestuous noise of Thunder and
Lightning heard: En<lb/>ter a Ship‑master, and a
Boteswaine.</stage>
<sp who="#F-tem-mas">
<speaker rend="italic">Master.</speaker>
<p n="1">
<c rend="decoratedCapital">B</c>Ote‑swaine.</p>
</sp>
<sp who="#F-tem-boa">
<speaker rend="italic">Botes.</speaker>
<p n="2">Heere Master: What cheere?</p>
</sp>
<sp who="#F-tem-mas">
<speaker rend="italic">Mast.</speaker>
<p n="3">Good: Speake to th' Mariners: fall <lb n="4"/>too't, yarely, or we run our
selves a ground, <lb n="5"/>bestirre, bestirre.</p>
</sp>
<stage rend="italic inline" type="exit">Exit.</stage>
<stage rend="italic center" type="entrance">Enter Mariners.</stage>
<sp who="#F-tem-boa">
<speaker rend="italic">Botes.</speaker>
<p n="6">Heigh my hearts, cheerely, cheerely my harts: <lb n="7"/>yare, yare: Take
in the toppe‑sale: Tend to th'Masters <lb n="8"/>whistle: Blow till
thou burst thy winde, if roome e<lb n="9"/>nough.</p>
</sp>
<stage rend="italic center" type="entrance">Enter Alonso, Sebastian,
Anthonio, Ferdinando, <lb/>Gonzalo, and others.</stage>
<sp who="#F-tem-alo">
<speaker rend="italic">Alon.</speaker>
<p n="10">Good Boteswaine haue care: where's the Ma<lb n="11"/>ster? Play the
men.</p>
</sp>
<sp who="#F-tem-boa">
<speaker rend="italic">Botes.</speaker>
<p n="12">I pray now keepe below.</p>
</sp>
<sp who="#F-tem-ant">
<speaker rend="italic">Anth.</speaker>
<p n="13">Where is the Master, Boson?</p>
</sp>
<sp who="#F-tem-boa">
<speaker rend="italic">Botes:</speaker>
<p n="14">Do you not heare him? you marre our labour, <lb n="15"/>Keepe your Cabines:
you do assist the storme.</p>
</sp>
<sp who="#F-tem-gon">
<speaker rend="italic">Gonz.</speaker>
<p n="16">Nay, good be patient.</p>
</sp>
<sp who="#F-tem-boa">
<speaker rend="italic">Botes.</speaker>
<p n="17">When the Sea is: hence, what cares these roa<lb n="18"/>rers for the
name of King? to Cabine; silence: trouble <lb n="19"/>vs not.</p>
</sp>
<sp who="#F-tem-gon">
<speaker rend="italic">Gon.</speaker>
<p n="20">Good, yet remember whom thou hast aboord.</p>
</sp>
<sp who="#F-tem-boa">
<speaker rend="italic">Botes.</speaker>
<p n="21">None that I more loue then my selfe. You are <lb n="22"/>a Counsellor, if
you can command these Elements to si<lb n="23"/>lence, and worke
the peace of the present, wee will not <lb n="24"/>hand a rope more, vse
your authoritie: If you cannot, <lb n="25"/>giue thankes you haue liu'd so
long, and make your <lb n="26"/>selfe readie in your Cabine for the
mischance of the <lb n="27"/>houre, if it so hap. Cheerely good hearts: out
of our <lb n="28"/>way I say.</p>
</sp>
<stage rend="italic inline" type="exit">Exit.</stage>
<sp who="#F-tem-gon">
<speaker rend="italic">Gon.</speaker>
<p n="29">I haue great comfort from this fellow: methinks <lb n="30"/>he hath no
drowning marke vpon him, his complexion <lb n="31"/>is perfect Gallowes:
stand fast good Fate to his han<lb n="32"/>ging, make the rope of
his destiny our cable, for our <lb n="33"/>owne doth little aduantage: If
he be not borne to bee <lb n="34"/>hang'd, our case is miserable.</p>
</sp>
<stage rend="italic rightJustified" type="exit">Exit.</stage>
<stage rend="italic center" type="entrance">Enter Boteswaine</stage>
<sp who="#F-tem-boa">
<speaker rend="italic">Botes.</speaker>
<p n="35">Downe with the top‑Mast: yare, lower, lower, <lb n="36"/>bring her to
Try with Maine‑course. A plague⸺ <lb n="37"/>
<stage rend="italic" type="business">A cry within.</stage>
<stage rend="italic rightJustified" type="entrance">Enter Sebastian,
Anthonio & Gonzalo.</stage>
<cb n="2"/>
<lb n="38"/>vpon this howling: they are lowder then the weather, <lb n="39"/>or
our office: yet againe? What do you heere: Shal we <lb n="40"/>giue ore and
drowne, haue you a minde to sinke?</p>
</sp>
<sp who="#F-tem-seb">
<speaker rend="italic">Sebas.</speaker>
<p n="41">A poxe o'your throat, you bawling, blasphe<lb n="42"/>mous
incharitable Dog.</p>
</sp>
<sp who="#F-tem-boa">
<speaker rend="italic">Botes.</speaker>
<p n="43">Worke you then.</p>
</sp>
<sp who="#F-tem-ant">
<speaker rend="italic">Anth.</speaker>
<p n="44">Hang cur, hang, you whoreson insolent Noyse‑<lb n="45"/>maker, we are
lesse afraid to be drownde, then thou art.</p>
</sp>
<sp who="#F-tem-gon">
<speaker rend="italic">Gonz.</speaker>
<p n="46">I'le warrant him for drowning, though the <lb n="47"/>Ship were no stronger
then a Nutt‑shell, and as leaky as <lb n="48"/>an vnstanched
wench.</p>
</sp>
<sp who="#F-tem-boa">
<speaker rend="italic">Botes.</speaker>
<p n="49">Lay her a hold, a hold, set her two courses off <lb n="50"/>to Sea againe,
lay her off.</p>
</sp>
<stage rend="italic center" type="entrance">Enter Mariners wet.</stage>
<sp who="#F-tem-mar">
<speaker rend="italic">Mari.</speaker>
<l n="51">All lost, to prayers, to prayers, all lost.</l>
</sp>
<sp who="#F-tem-boa">
<speaker rend="italic">Botes.</speaker>
<p n="52">What must our mouths be cold?</p>
</sp>
<sp who="#F-tem-gon">
<speaker rend="italic">Gonz.</speaker>
<p n="53">The King, and Prince, at prayers, let's assist them, <lb n="54"/>for our
case is as theirs.</p>
</sp>
<sp who="#F-tem-seb">
<speaker rend="italic">Sebas.</speaker>
<p n="55">I'am out of patience.</p>
</sp>
<sp who="#F-tem-ant">
<speaker rend="italic">An.</speaker>
<p n="56">We are meerly cheated of our liues by drunkards, <lb n="57"/>This
wide‑chopt‑rascall, would thou mightst lye
drow<lb n="58"/>ning the washing of ten Tides.</p>
</sp>
<sp who="#F-tem-gon">
<speaker rend="italic">Gonz.</speaker>
<p n="59">Hee'l be hang'd yet, <lb n="60"/>Though euery drop of water sweare against
it, <lb n="61"/>And gape at widst to glut him. <stage rend="italic inline" type="business">A confused noyse within.</stage>
<lb n="62"/>Mercy on vs. <lb n="63"/>We split, we split, Farewell my wife, and
children, <lb n="64"/>Farewell brother: we split, we split, we split.</p>
</sp>
<sp who="#F-tem-ant">
<speaker rend="italic">Anth.</speaker>
<p n="65">Let's all sinke with' King.</p>
</sp>
<sp who="#F-tem-seb">
<speaker rend="italic">Seb.</speaker>
<p n="66">Let's take leaue of him.</p>
</sp>
<stage rend="italic rightJustified" type="exit">Exit.</stage>
<sp who="#F-tem-gon">
<speaker rend="italic">Gonz.</speaker>
<p n="67">Now would I giue a thousand furlongs of Sea, <lb n="68"/>for an Acre of
barren ground: Long heath, Brown<gap extent="1" unit="chars" reason="absent" agent="torn" resp="#LMC"/>
<lb n="69"/>firrs, any thing: the wills aboue be done, but I w<gap extent="4" unit="chars" reason="absent" agent="torn" resp="#LMC"/>
<lb n="70"/>faine dye a dry death.</p>
</sp>
</div>
<div type="scene" n="2">
<head>Scoena Sec<gap extent="4" unit="chars" reason="absent" agent="torn" resp="#LMC"/>.</head>
<head type="supplied">[Act 1, Scene 2]</head>
<stage rend="italic center" type="entrance">Enter Pro<gap extent="5" unit="chars" reason="absent" agent="torn" resp="#LMC"/>
<gap extent="2" unit="words" reason="absent" agent="torn" resp="#LMC"/>
</stage>
<sp who="#F-tem-mir">
<speaker rend="italic">Mira.</speaker>
<p n="71">If by your A<gap extent="2" unit="chars" reason="absent" agent="torn" resp="#LMC"/>
<gap extent="5" unit="words" reason="absent" agent="torn" resp="#LMC"/>
<lb n="72"/>Put the wild waters i<gap extent="1" unit="chars" reason="absent" agent="torn" resp="#LMC"/>
<gap extent="4" unit="words" reason="absent" agent="torn" resp="#LMC"/>
<lb n="73"/>The skye it seems <gap extent="5" unit="words" reason="absent" agent="torn" resp="#LMC"/>
<lb n="74"/>But that th<gap extent="1" unit="chars" reason="absent" agent="torn" resp="#LMC"/> Sea, <gap extent="5" unit="words" reason="absent" agent="torn" resp="#LMC"/>
<gap extent="2" unit="lines" reason="absent" agent="torn" resp="#LMC"/>
</p>
<pb facs="FFimg:axc0022-0.jpg" n="2"/>
<fw type="rh">
<hi rend="italic">The Tempest</hi>.</fw>
<cb n="1"/>
<l n="75">(Who had no doubt some noble creature in her)</l>
<l n="76">Dash'd all to peeces: O the cry did knocke</l>
<l n="77">Against my very heart: poore soules, they perish'd.</l>
<l n="78">Had I byn any God of power, I would</l>
<l n="79">Haue suncke the Sea within the Earth, or ere</l>
<l n="80">It should the good Ship so haue swallow'd, and</l>
<l n="81">The fraughting Soules within her.</l>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pros.</speaker>
<p n="82">Be collected, <lb n="83"/>No more amazement: Tell your pitteous heart
<lb n="84"/>there's no harme done.</p>
</sp>
<sp who="#F-tem-mir">
<speaker rend="italic">Mira.</speaker>
<p n="85">O woe, the day.</p>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pros.</speaker>
<l n="86">No harme:</l>
<l n="87">I haue done nothing, but in care of thee</l>
<l n="88">(Of thee my deere one; thee my daughter) who</l>
<l n="89">Art ignorant of what thou art. naught knowing</l>
<l n="90">Of whence I am: nor that I am more better</l>
<l n="91">Then <hi rend="italic">Prospero</hi>, Master of a full poore
cell,</l>
<l n="92">And thy no greater Father.</l>
</sp>
<sp who="#F-tem-mir">
<speaker rend="italic">Mira.</speaker>
<l n="93">More to know</l>
<l n="94">Did neuer medle with my thoughts.</l>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pros.</speaker>
<l n="95">'Tis time</l>
<l n="96">I should informe thee farther: Lend thy hand</l>
<l n="97">And plucke my Magick garment from me: So,</l>
<l n="98">Lye there my Art: wipe thou thine eyes, haue comfort,</l>
<l n="99">The direfull spectacle of the wracke which touch'd</l>
<l n="100">The very vertue of compassion in thee:</l>
<l n="101">I haue with such prouision in mine Art</l>
<l n="102">So safely ordered, that there is no soule</l>
<l n="103">No not so much perdition as an hayre</l>
<l n="104">Betid to any creature in the vessell</l>
<l n="105">Which thou heardst cry, which thou saw'st sinke: Sit <lb rend="turnunder"/>
<pc rend="turnunder">[</pc>downe,</l>
<l n="106">For thou must now know farther.</l>
</sp>
<sp who="#F-tem-mir">
<speaker rend="italic">Mira.</speaker>
<l n="107">You haue often</l>
<l n="108">in to tell me what I am, but stopt</l>
<l n="109">And left me to a bootelesse Inquisition,</l>
<l n="110">Concluding, stay: not yet.</l>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pros.</speaker>
<l n="111">The howr's now come</l>
<l n="112">The very minute byds thee ope thine eare,</l>
<l n="113">Obey, and be attentiue. Canst thou remember</l>
<l n="114">A time before we came vnto this Cell?</l>
<l n="115">I doe not thinke thou canst, for then thou was't not</l>
<l n="116">Out three yeeres old.</l>
</sp>
<sp who="#F-tem-mir">
<speaker rend="italic">Mira.</speaker>
<p n="117">Certainely Sir, I can.</p>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pros.</speaker>
<l n="118">By what? by any other house, or person?</l>
<l n="119">Of any thing the Image, tell me, that</l>
<l n="120">Hath kept with thy remembrance.</l>
</sp>
<sp who="#F-tem-mir">
<speaker rend="italic">Mira.</speaker>
<l n="121">'Tis farre off:</l>
<l n="122">And rather like a dreame, then an assurance</l>
<l n="123">That my remembrance warrants: Had I not</l>
<l n="124">Fowre, or fiue women once, that tended me?</l>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pros.</speaker>
<l n="125">Thou hadst; and more <hi rend="italic">Miranda</hi>: But how is
it</l>
<l n="126">That this liues in thy minde? What seest thou els</l>
<l n="127">In the dark‑backward and Abisme of Time?</l>
<l n="128">Yf thou remembrest ought ere thou cam'st here,</l>
<l n="129">
<gap extent="2" unit="chars" reason="absent" agent="torn" resp="#LMC"/>w thou c<gap extent="1" unit="chars" reason="absent" agent="torn" resp="#LMC"/>m'st here thou
maist.</l>
</sp>
<sp who="#F-tem-mir">
<l n="130">
<gap extent="3" unit="words" reason="absent" agent="torn" resp="#LMC"/> I doe not.</l>
</sp>
<sp who="#F-tem-pro">
<l n="131">
<gap extent="3" unit="words" reason="absent" agent="torn" resp="#LMC"/> since (<hi rend="italic">Miranda</hi>) twelue yere
since,</l>
<l n="132">
<gap extent="4" unit="words" reason="absent" agent="torn" resp="#LMC"/>
<gap extent="2" unit="chars" reason="absent" agent="torn" resp="#LMC"/>ke of <hi rend="italic">Millaine</hi> and</l>
<l n="133">
<gap extent="1" unit="lines" reason="absent" agent="torn" resp="#LMC"/>
</l>
</sp>
<sp who="#F-tem-mir">
<l n="134">
<gap extent="5" unit="words" reason="absent" agent="torn" resp="#LMC"/> Father?</l>
</sp>
<sp who="#F-tem-pro">
<l n="135">
<gap extent="5" unit="words" reason="absent" agent="torn" resp="#LMC"/>
<gap extent="3" unit="chars" reason="absent" agent="torn" resp="#LMC"/>ce of virtue, and</l>
<l n="136">
<gap extent="6" unit="words" reason="absent" agent="torn" resp="#LMC"/> and thy father</l>
<l n="137">
<gap extent="7" unit="words" reason="absent" agent="torn" resp="#LMC"/> heire,</l>
<gap extent="1" unit="lines" reason="absent" agent="torn" resp="#LMC"/>
</sp>
<sp who="#F-tem-mir">
<gap extent="2" unit="lines" reason="absent" agent="torn" resp="#LMC"/>
<cb n="2"/>
<l n="138">Or blessed was't we did?</l>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pros.</speaker>
<l n="139">Both, both my Girle.</l>
<l n="140">By fowle‑play (as thou saist) were we heau'd thence,</l>
<l n="141">But blessedly holpe hither.</l>
</sp>
<sp who="#F-tem-mir">
<speaker rend="italic">Mira.</speaker>
<l n="142">O my heart bleedes</l>
<l n="143">To thinke oth' teene that I haue turn'd you to,</l>
<l n="144">Which is from my remembrance, please you, farther;</l>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pros.</speaker>
<l n="145">My brother and thy vncle, call'd <hi rend="italic">Anthonio</hi>:</l>
<l n="146">I pray thee marke me, that a brother should</l>
<l n="147">Be so perfidious: he, whom next thy selfe</l>
<l n="148">Of all the world I lou'd, and to him put</l>
<l n="149">The mannage of my state, as at that time</l>
<l n="150">Through all the signories it was the first,</l>
<l n="151">And <hi rend="italic">Prospero</hi>, the prime Duke, being so
reputed</l>
<l n="152">In dignity; and for the liberall Artes,</l>
<l n="153">Without a paralell; those being all my studie,</l>
<l n="154">The Gouernment I cast vpon my brother,</l>
<l n="155">And to my State grew stranger, being transported</l>
<l n="156">And rapt in secret studies, thy false vncle</l>
<l n="157">(Do'st thou attend me?)</l>
</sp>
<sp who="#F-tem-mir">
<speaker rend="italic">Mira.</speaker>
<l n="158">Sir, most heedefully.</l>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pros.</speaker>
<l n="159">Being once perfected how to graunt suites,</l>
<l n="160">how to deny them: who t'aduance, and who</l>
<l n="161">To trash for ouer‑topping; new created</l>
<l n="162">The creatures that were mine, I say, or chang'd 'em,</l>
<l n="163">Or els new form'd 'em; hauing both the key,</l>
<l n="164">Of Officer, and office, set all hearts i'th state</l>
<l n="165">To what tune pleas'd his eare, that now he was</l>
<l n="166">The Iuy which had hid my princely Trunck,</l>
<l n="167">And suckt my verdure out on't: Thou attend'st not?</l>
</sp>
<sp who="#F-tem-mir">
<speaker rend="italic">Mira.</speaker>
<l n="168">O good Sir, I doe.</l>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pros.</speaker>
<l n="169">I pray thee marke me:</l>
<l n="170">I thus neglecting worldly ends, all dedicated</l>
<l n="171">To closenes, and the bettering of my mind</l>
<l n="172">with that, which but by being so retir'd</l>
<l n="173">Ore‑priz'd all popular rate: in my false brother</l>
<l n="174">Awak'd an euill nature, and my trust</l>
<l n="175">Like a good parent, did beget of him</l>
<l n="176">A falsehood in it's contrarie, as great</l>
<l n="177">As my trust was, which had indeede no limit,</l>
<l n="178">A confidence sans bound. He being thus Lorded,</l>
<l n="179">Not onely with what my reuenew yeelded,</l>
<l n="180">But what my power might els exact. Like one</l>
<l n="181">Who hauing into truth, by telling of it,</l>
<l n="182">Made such a synner of his memorie</l>
<l n="183">To credite his owne lie, he did beleeue</l>
<l n="184">He was indeed the Duke, out o'th' Substitution</l>
<l n="185">And executing th'outward face of Roialtie</l>
<l n="186">With all prerogatiue: hence his Ambition growing:</l>
<l n="187">Do'st thou heare?</l>
</sp>
<sp who="#F-tem-mir">
<speaker rend="italic">Mira.</speaker>
<l n="188">Your tale, Sir, would cure deafenesse.</l>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pros.</speaker>
<l n="189">To haue no Schreene between this part he plaid,</l>
<l n="190">And him he plaid it for, he needes will be</l>
<l n="191">Absolute <hi rend="italic">Millaine</hi>, Me (poore man) my
Librarie</l>
<l n="192">Was Dukedome large enough: of temporall roalties</l>
<l n="193">He thinks me now incapable. Confederates</l>
<l n="194">(so drie he was for Sway) with King of <hi rend="italic">Naples</hi>
</l>
<l n="195">To giue him Annuall tribute, doe him homage</l>
<l n="196">Subiect his Coronet, to his Crowne and bend</l>
<l n="197">The Dukedom yet vnbow'd (alas poore <hi rend="italic">Millaine</hi>)</l>
<l n="198">To most ignoble stooping.</l>
</sp>
<sp who="#F-tem-mir">
<speaker rend="italic">Mira.</speaker>
<l n="199">Oh the heauens:</l>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pros.</speaker>
<l n="200">Marke his condition, and th'euent, then tell me</l>
<l n="201">If this might be a brother.</l>
</sp>
<sp who="#F-tem-mir">
<speaker rend="italic">Mira.</speaker>
<l n="202">I should sinne</l>
<l n="203">To thinke but Noblie of my Grand‑mother,</l>
<fw type="catchword" place="footRight">Good</fw>
<pb facs="FFimg:axc0023-0.jpg" n="3"/>
<fw type="rh">
<hi rend="italic">The Tempest</hi>.</fw>
<cb n="1"/>
<l n="204">Good wombes haue borne bad sonnes.</l>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pro.</speaker>
<l n="205">Now the Condition.</l>
<l n="206">s King of <hi rend="italic">Naples</hi> being an Enemy</l>
<l n="207">To me inueterate, hearkens my Brothers suit,</l>
<l n="208">Which was, That he in lieu o'th' premises,</l>
<l n="209">Of homage, and I know not how much Tribute,</l>
<l n="210">Should presently extirpate me and mine</l>
<l n="211">Out of the Dukedome, and confer faire <hi rend="italic">Millaine</hi>
</l>
<l n="212">With all the Honors, on my brother: Whereon</l>
<l n="213">A treacherous Armie leuied, one mid‑night</l>
<l n="214">Fated to th' purpose, did <hi rend="italic">Anthonio</hi> open</l>
<l n="215">The gates of <hi rend="italic">Millaine</hi>, and ith' dead of
darkenesse</l>
<l n="216">The ministers for th' purpose hurried thence</l>
<l n="217">Me, and thy crying selfe.</l>
</sp>
<sp who="#F-tem-mir">
<speaker rend="italic">Mir.</speaker>
<l n="218">Alack, for pitty:</l>
<l n="219">I not remembring how I cride out then</l>
<l n="220">Will cry it ore againe: it is a hint</l>
<l n="221">That wrings mine eyes too't.</l>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pro.</speaker>
<l n="222">Heare a little further,</l>
<l n="223">And then I'le bring thee to the present businesse</l>
<l n="224">Which now's vpon's: without the which, this Story</l>
<l n="225">Were most impertinent.</l>
</sp>
<sp who="#F-tem-mir">
<speaker rend="italic">Mir.</speaker>
<l n="226">Wherefore did they not</l>
<l n="227">That howre destroy vs?</l>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pro.</speaker>
<l n="228">Well demanded, wench:</l>
<l n="229">My Tale prouokes that question: Deare, they durst not,</l>
<l n="230">So deare the loue my people bore me: nor set</l>
<l n="231">A marke so bloudy on the businesse; but</l>
<l n="232">With colours fairer, painted their foule ends.</l>
<l n="233">In few, they hurried vs a‑boord a Barke,</l>
<l n="234">Bore vs some Leagues to Sea, where they prepared</l>
<l n="235">A rotten carkasse of a Butt, not rigg'd,</l>
<l n="236">Nor tackle, sayle, nor mast, the very rats</l>
<l n="237">Instinctiuely haue quit it: There they hoyst vs</l>
<l n="238">To cry to th' Sea, that roard to vs; to sigh</l>
<l n="239">To th' windes, whose pitty sighing backe againe</l>
<l n="240">Did vs but louing wrong.</l>
</sp>
<sp who="#F-tem-mir">
<speaker rend="italic">Mir.</speaker>
<l n="241">Alack, what trouble</l>
<l n="242">Was I then to you?</l>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pro.</speaker>
<l n="243">O, a Cherubin</l>
<l n="244">Thou was't that did preserue me; Thou didst smile,</l>
<l n="245">Infused with a fortitude from heauen,</l>
<l n="246">When I haue deck'd the sea with drops full salt,</l>
<l n="247">Vnder my burthen groan'd, which rais'd in me</l>
<l n="248">An vndergoing stomacke, to beare vp</l>
<l n="249">Against what should ensue.</l>
</sp>
<sp who="#F-tem-mir">
<speaker rend="italic">Mir.</speaker>
<l n="250">How came we a shore?</l>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pro.</speaker>
<l n="251">By prouidence diuine,</l>
<l n="252">Some food, we had, and some fresh water, that</l>
<l n="253">A noble <hi rend="italic">Neopolitan Gonzalo</hi>
</l>
<l n="254">Out of his Charity, (who being then appointed</l>
<l n="255">Master of this designe) did giue vs, with</l>
<l n="256">Rich garments, linnens, stuffs, and necessaries</l>
<l n="257">Which since haue steeded much, so of his gentlenesse</l>
<l n="258">Knowing I lou'd my bookes, he furnishd me</l>
<l n="259">From mine owne Library, with volumes, that</l>
<l n="260">I prize aboue my Dukedome.</l>
</sp>
<sp who="#F-tem-mir">
<speaker rend="italic">Mir.</speaker>
<l n="261">Would I might</l>
<l n="262">But euer see that man.</l>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pro.</speaker>
<l n="263">Now I arise,</l>
<l n="264">Sit still, and heare the last of our sea‑sorrow:</l>
<l n="265">Heere in this Iland we arriu'd, and heere</l>
<l n="266">Haue I, thy Schoolemaster, made thee more profit</l>
<l n="267">Then other Princesse can, that haue more time <gap/>
</l>
<l n="268">For vainer howres; and Tutors, not so care<gap extent="5" unit="chars" reason="absent" agent="torn" resp="#LMC"/>
</l>
</sp>
<sp who="#F-tem-mir">
<speaker rend="italic">Mir.</speaker>
<l n="269">Heuens thank you for't. And now <gap extent="4" unit="words" reason="absent" agent="torn" resp="#LMC"/>
</l>
<cb n="2"/>
<l n="270">For still 'tis beating in my minde; your reason</l>
<l n="271">For raysing this Sea‑storme?</l>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pro.</speaker>
<l n="272">Know thus far forth,</l>
<l n="273">By accident most strange, bountifull <hi rend="italic">Fortune</hi>
</l>
<l n="274">(Now my deere Lady) hath mine enemies</l>
<l n="275">Brought to this shore: And by my prescience</l>
<l n="276">I finde my <hi rend="italic">Zenith</hi> doth depend vpon</l>
<l n="277">A most auspitious starre, whose influence</l>
<l n="278">If now I court not, but omit; my fortunes</l>
<l n="279">Will euer after droope: Heare cease more questions,</l>
<l n="280">Thou art inclinde to sleepe: 'tis a good dulnesse,</l>
<l n="281">And giue it way: I know thou canst not chuse:</l>
<l n="282">Come away, Seruant, come; I am ready now,</l>
<l n="283">Approach my <hi rend="italic">Ariel</hi>. Come.</l>
</sp>
<stage rend="italic rightJustified" type="entrance">Enter Ariel.</stage>
<sp who="#F-tem-ari">
<speaker rend="italic">Ari.</speaker>
<l n="284">All haile, great Master, graue Sir, haile: I come</l>
<l n="285">To answer thy best pleasure; be't to fly,</l>
<l n="286">To swim, to diue into the fire: to ride</l>
<l n="287">On the curld clowds: to thy strong bidding, taske</l>
<l n="288">
<hi rend="italic">Ariel</hi>, and all his Qualitie.</l>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pro.</speaker>
<l n="289">Hast thou, Spirit,</l>
<l n="290">Performd to point, the Tempest that I bad thee.</l>
</sp>
<sp who="#F-tem-ari">
<speaker rend="italic">Ar.</speaker>
<l n="291"> To euery Article.</l>
<l n="292">I boorded the Kings ship: now on the Beake,</l>
<l n="293">Now in the Waste, the Decke, in euery Cabyn,</l>
<l n="294">I flam'd amazement, sometime I'ld diuide</l>
<l n="295">And burne in many places; on the Top‑mast,</l>
<l n="296">The Yards and Bore‑spritt, would I flame distinctly,</l>
<l n="297">Then meete, and ioyne. <hi rend="italic">Ioues</hi> Lightning, the
precursers</l>
<l n="298">O'th dreadfull Thunder‑claps more momentarie</l>
<l n="299">And sight out‑running were not; the fire, and cracks</l>
<l n="300">Of sulphurous roaring, the most mighty <hi rend="italic">Neptune</hi>
</l>
<l n="301">Seeme to besiege, and make his bold waues tremble,</l>
<l n="302">Yea, his dread Trident shake.</l>
</sp>
<sp who="#F-tem-pro">
<speaker rend="italic">Pro.</speaker>
<l n="303">My braue Spirit,</l>
<l n="304">Who was so firme, so constant, that this coyle</l>
<l n="305">Would not infect his reason?</l>
</sp>