lear 0.2.0

Prints a random passage from King Lear. For when you meant to type "clear"
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
[
    {
        "Heading": {
            "act": "Act I",
            "scene": "Scene II",
            "setting": "The Earl of Gloucester's castle.",
            "staging": "Enter EDMUND, with a letter"
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 1,
            "end": 22,
            "lines": [
                {
                    "text": "Thou, nature, art my goddess; to thy law"
                },
                {
                    "text": "My services are bound. Wherefore should I"
                },
                {
                    "text": "Stand in the plague of custom, and permit"
                },
                {
                    "text": "The curiosity of nations to deprive me,"
                },
                {
                    "text": "For that I am some twelve or fourteen moon-shines"
                },
                {
                    "text": "Lag of a brother? Why bastard? wherefore base?"
                },
                {
                    "text": "When my dimensions are as well compact,"
                },
                {
                    "text": "My mind as generous, and my shape as true,"
                },
                {
                    "text": "As honest madam's issue? Why brand they us"
                },
                {
                    "text": "With base? with baseness? bastardy? base, base?"
                },
                {
                    "text": "Who, in the lusty stealth of nature, take"
                },
                {
                    "text": "More composition and fierce quality"
                },
                {
                    "text": "Than doth, within a dull, stale, tired bed,"
                },
                {
                    "text": "Go to the creating a whole tribe of fops,"
                },
                {
                    "text": "Got 'tween asleep and wake? Well, then,"
                },
                {
                    "text": "Legitimate Edgar, I must have your land:"
                },
                {
                    "text": "Our father's love is to the bastard Edmund"
                },
                {
                    "text": "As to the legitimate: fine word,--legitimate!"
                },
                {
                    "text": "Well, my legitimate, if this letter speed,"
                },
                {
                    "text": "And my invention thrive, Edmund the base"
                },
                {
                    "text": "Shall top the legitimate. I grow; I prosper:"
                },
                {
                    "text": "Now, gods, stand up for bastards!"
                },
                {
                    "direction": "Enter GLOUCESTER"
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "GLOUCESTER",
            "act": 1,
            "scene": 2,
            "start": 23,
            "end": 26,
            "lines": [
                {
                    "text": "Kent banish'd thus! and France in choler parted!"
                },
                {
                    "text": "And the king gone to-night! subscribed his power!"
                },
                {
                    "text": "Confined to exhibition! All this done"
                },
                {
                    "text": "Upon the gad! Edmund, how now! what news?"
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 27,
            "end": 27,
            "lines": [
                {
                    "text": "So please your lordship, none."
                },
                {
                    "direction": "Putting up the letter"
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "GLOUCESTER",
            "act": 1,
            "scene": 2,
            "start": 28,
            "end": 28,
            "lines": [
                {
                    "text": "Why so earnestly seek you to put up that letter?"
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 29,
            "end": 29,
            "lines": [
                {
                    "text": "I know no news, my lord."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "GLOUCESTER",
            "act": 1,
            "scene": 2,
            "start": 30,
            "end": 30,
            "lines": [
                {
                    "text": "What paper were you reading?"
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 31,
            "end": 31,
            "lines": [
                {
                    "text": "Nothing, my lord."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "GLOUCESTER",
            "act": 1,
            "scene": 2,
            "start": 32,
            "end": 35,
            "lines": [
                {
                    "text": "No? What needed, then, that terrible dispatch of"
                },
                {
                    "text": "it into your pocket? the quality of nothing hath"
                },
                {
                    "text": "not such need to hide itself. Let's see: come,"
                },
                {
                    "text": "if it be nothing, I shall not need spectacles."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 36,
            "end": 39,
            "lines": [
                {
                    "text": "I beseech you, sir, pardon me: it is a letter"
                },
                {
                    "text": "from my brother, that I have not all o'er-read;"
                },
                {
                    "text": "and for so much as I have perused, I find it not"
                },
                {
                    "text": "fit for your o'er-looking."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "GLOUCESTER",
            "act": 1,
            "scene": 2,
            "start": 40,
            "end": 40,
            "lines": [
                {
                    "text": "Give me the letter, sir."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 41,
            "end": 42,
            "lines": [
                {
                    "text": "I shall offend, either to detain or give it. The"
                },
                {
                    "text": "contents, as in part I understand them, are to blame."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "GLOUCESTER",
            "act": 1,
            "scene": 2,
            "start": 43,
            "end": 43,
            "lines": [
                {
                    "text": "Let's see, let's see."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 44,
            "end": 45,
            "lines": [
                {
                    "text": "I hope, for my brother's justification, he wrote"
                },
                {
                    "text": "this but as an essay or taste of my virtue."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "GLOUCESTER",
            "act": 1,
            "scene": 2,
            "start": 46,
            "end": 60,
            "lines": [
                {
                    "text": "[Reads] 'This policy and reverence of age makes"
                },
                {
                    "text": "the world bitter to the best of our times; keeps"
                },
                {
                    "text": "our fortunes from us till our oldness cannot relish"
                },
                {
                    "text": "them. I begin to find an idle and fond bondage"
                },
                {
                    "text": "in the oppression of aged tyranny; who sways, not"
                },
                {
                    "text": "as it hath power, but as it is suffered. Come to"
                },
                {
                    "text": "me, that of this I may speak more. If our father"
                },
                {
                    "text": "would sleep till I waked him, you should half his"
                },
                {
                    "text": "revenue for ever, and live the beloved of your"
                },
                {
                    "text": "brother, EDGAR.'"
                },
                {
                    "text": "Hum--conspiracy!--'Sleep till I waked him,--you"
                },
                {
                    "text": "should enjoy half his revenue,'--My son Edgar!"
                },
                {
                    "text": "Had he a hand to write this? a heart and brain"
                },
                {
                    "text": "to breed it in?--When came this to you? who"
                },
                {
                    "text": "brought it?"
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 61,
            "end": 63,
            "lines": [
                {
                    "text": "It was not brought me, my lord; there's the"
                },
                {
                    "text": "cunning of it; I found it thrown in at the"
                },
                {
                    "text": "casement of my closet."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "GLOUCESTER",
            "act": 1,
            "scene": 2,
            "start": 64,
            "end": 64,
            "lines": [
                {
                    "text": "You know the character to be your brother's?"
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 65,
            "end": 67,
            "lines": [
                {
                    "text": "If the matter were good, my lord, I durst swear"
                },
                {
                    "text": "it were his; but, in respect of that, I would"
                },
                {
                    "text": "fain think it were not."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "GLOUCESTER",
            "act": 1,
            "scene": 2,
            "start": 68,
            "end": 68,
            "lines": [
                {
                    "text": "It is his."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 69,
            "end": 70,
            "lines": [
                {
                    "text": "It is his hand, my lord; but I hope his heart is"
                },
                {
                    "text": "not in the contents."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "GLOUCESTER",
            "act": 1,
            "scene": 2,
            "start": 71,
            "end": 71,
            "lines": [
                {
                    "text": "Hath he never heretofore sounded you in this business?"
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 72,
            "end": 75,
            "lines": [
                {
                    "text": "Never, my lord: but I have heard him oft"
                },
                {
                    "text": "maintain it to be fit, that, sons at perfect age,"
                },
                {
                    "text": "and fathers declining, the father should be as"
                },
                {
                    "text": "ward to the son, and the son manage his revenue."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "GLOUCESTER",
            "act": 1,
            "scene": 2,
            "start": 76,
            "end": 80,
            "lines": [
                {
                    "text": "O villain, villain! His very opinion in the"
                },
                {
                    "text": "letter! Abhorred villain! Unnatural, detested,"
                },
                {
                    "text": "brutish villain! worse than brutish! Go, sirrah,"
                },
                {
                    "text": "seek him; I'll apprehend him: abominable villain!"
                },
                {
                    "text": "Where is he?"
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 81,
            "end": 91,
            "lines": [
                {
                    "text": "I do not well know, my lord. If it shall please"
                },
                {
                    "text": "you to suspend your indignation against my"
                },
                {
                    "text": "brother till you can derive from him better"
                },
                {
                    "text": "testimony of his intent, you shall run a certain"
                },
                {
                    "text": "course; where, if you violently proceed against"
                },
                {
                    "text": "him, mistaking his purpose, it would make a great"
                },
                {
                    "text": "gap in your own honour, and shake in pieces the"
                },
                {
                    "text": "heart of his obedience. I dare pawn down my life"
                },
                {
                    "text": "for him, that he hath wrote this to feel my"
                },
                {
                    "text": "affection to your honour, and to no further"
                },
                {
                    "text": "pretence of danger."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "GLOUCESTER",
            "act": 1,
            "scene": 2,
            "start": 92,
            "end": 92,
            "lines": [
                {
                    "text": "Think you so?"
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 93,
            "end": 96,
            "lines": [
                {
                    "text": "If your honour judge it meet, I will place you"
                },
                {
                    "text": "where you shall hear us confer of this, and by an"
                },
                {
                    "text": "auricular assurance have your satisfaction; and"
                },
                {
                    "text": "that without any further delay than this very evening."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "GLOUCESTER",
            "act": 1,
            "scene": 2,
            "start": 97,
            "end": 97,
            "lines": [
                {
                    "text": "He cannot be such a monster--"
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 98,
            "end": 98,
            "lines": [
                {
                    "text": "Nor is not, sure."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "GLOUCESTER",
            "act": 1,
            "scene": 2,
            "start": 99,
            "end": 103,
            "lines": [
                {
                    "text": "To his father, that so tenderly and entirely"
                },
                {
                    "text": "loves him. Heaven and earth! Edmund, seek him"
                },
                {
                    "text": "out: wind me into him, I pray you: frame the"
                },
                {
                    "text": "business after your own wisdom. I would unstate"
                },
                {
                    "text": "myself, to be in a due resolution."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 104,
            "end": 105,
            "lines": [
                {
                    "text": "I will seek him, sir, presently: convey the"
                },
                {
                    "text": "business as I shall find means and acquaint you withal."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "GLOUCESTER",
            "act": 1,
            "scene": 2,
            "start": 106,
            "end": 122,
            "lines": [
                {
                    "text": "These late eclipses in the sun and moon portend"
                },
                {
                    "text": "no good to us: though the wisdom of nature can"
                },
                {
                    "text": "reason it thus and thus, yet nature finds itself"
                },
                {
                    "text": "scourged by the sequent effects: love cools,"
                },
                {
                    "text": "friendship falls off, brothers divide: in"
                },
                {
                    "text": "cities, mutinies; in countries, discord; in"
                },
                {
                    "text": "palaces, treason; and the bond cracked 'twixt son"
                },
                {
                    "text": "and father. This villain of mine comes under the"
                },
                {
                    "text": "prediction; there's son against father: the king"
                },
                {
                    "text": "falls from bias of nature; there's father against"
                },
                {
                    "text": "child. We have seen the best of our time:"
                },
                {
                    "text": "machinations, hollowness, treachery, and all"
                },
                {
                    "text": "ruinous disorders, follow us disquietly to our"
                },
                {
                    "text": "graves. Find out this villain, Edmund; it shall"
                },
                {
                    "text": "lose thee nothing; do it carefully. And the"
                },
                {
                    "text": "noble and true-hearted Kent banished! his"
                },
                {
                    "text": "offence, honesty! 'Tis strange."
                },
                {
                    "direction": "Exit"
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 123,
            "end": 144,
            "lines": [
                {
                    "text": "This is the excellent foppery of the world, that,"
                },
                {
                    "text": "when we are sick in fortune,--often the surfeit"
                },
                {
                    "text": "of our own behavior,--we make guilty of our"
                },
                {
                    "text": "disasters the sun, the moon, and the stars: as"
                },
                {
                    "text": "if we were villains by necessity; fools by"
                },
                {
                    "text": "heavenly compulsion; knaves, thieves, and"
                },
                {
                    "text": "treachers, by spherical predominance; drunkards,"
                },
                {
                    "text": "liars, and adulterers, by an enforced obedience of"
                },
                {
                    "text": "planetary influence; and all that we are evil in,"
                },
                {
                    "text": "by a divine thrusting on: an admirable evasion"
                },
                {
                    "text": "of whoremaster man, to lay his goatish"
                },
                {
                    "text": "disposition to the charge of a star! My"
                },
                {
                    "text": "father compounded with my mother under the"
                },
                {
                    "text": "dragon's tail; and my nativity was under Ursa"
                },
                {
                    "text": "major; so that it follows, I am rough and"
                },
                {
                    "text": "lecherous. Tut, I should have been that I am,"
                },
                {
                    "text": "had the maidenliest star in the firmament"
                },
                {
                    "text": "twinkled on my bastardizing. Edgar--"
                },
                {
                    "direction": "Enter EDGAR"
                },
                {
                    "text": "And pat he comes like the catastrophe of the old"
                },
                {
                    "text": "comedy: my cue is villanous melancholy, with a"
                },
                {
                    "text": "sigh like Tom o' Bedlam. O, these eclipses do"
                },
                {
                    "text": "portend these divisions! fa, sol, la, mi."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDGAR",
            "act": 1,
            "scene": 2,
            "start": 145,
            "end": 146,
            "lines": [
                {
                    "text": "How now, brother Edmund! what serious"
                },
                {
                    "text": "contemplation are you in?"
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 147,
            "end": 148,
            "lines": [
                {
                    "text": "I am thinking, brother, of a prediction I read"
                },
                {
                    "text": "this other day, what should follow these eclipses."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDGAR",
            "act": 1,
            "scene": 2,
            "start": 149,
            "end": 149,
            "lines": [
                {
                    "text": "Do you busy yourself about that?"
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 150,
            "end": 156,
            "lines": [
                {
                    "text": "I promise you, the effects he writes of succeed"
                },
                {
                    "text": "unhappily; as of unnaturalness between the child"
                },
                {
                    "text": "and the parent; death, dearth, dissolutions of"
                },
                {
                    "text": "ancient amities; divisions in state, menaces and"
                },
                {
                    "text": "maledictions against king and nobles; needless"
                },
                {
                    "text": "diffidences, banishment of friends, dissipation"
                },
                {
                    "text": "of cohorts, nuptial breaches, and I know not what."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDGAR",
            "act": 1,
            "scene": 2,
            "start": 157,
            "end": 157,
            "lines": [
                {
                    "text": "How long have you been a sectary astronomical?"
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 158,
            "end": 158,
            "lines": [
                {
                    "text": "Come, come; when saw you my father last?"
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDGAR",
            "act": 1,
            "scene": 2,
            "start": 159,
            "end": 159,
            "lines": [
                {
                    "text": "Why, the night gone by."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 160,
            "end": 160,
            "lines": [
                {
                    "text": "Spake you with him?"
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDGAR",
            "act": 1,
            "scene": 2,
            "start": 161,
            "end": 161,
            "lines": [
                {
                    "text": "Ay, two hours together."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 162,
            "end": 163,
            "lines": [
                {
                    "text": "Parted you in good terms? Found you no"
                },
                {
                    "text": "displeasure in him by word or countenance?"
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDGAR",
            "act": 1,
            "scene": 2,
            "start": 164,
            "end": 164,
            "lines": [
                {
                    "text": "None at all."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 165,
            "end": 170,
            "lines": [
                {
                    "text": "Bethink yourself wherein you may have offended"
                },
                {
                    "text": "him: and at my entreaty forbear his presence"
                },
                {
                    "text": "till some little time hath qualified the heat of"
                },
                {
                    "text": "his displeasure; which at this instant so rageth"
                },
                {
                    "text": "in him, that with the mischief of your person it"
                },
                {
                    "text": "would scarcely allay."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDGAR",
            "act": 1,
            "scene": 2,
            "start": 171,
            "end": 171,
            "lines": [
                {
                    "text": "Some villain hath done me wrong."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 172,
            "end": 177,
            "lines": [
                {
                    "text": "That's my fear. I pray you, have a continent"
                },
                {
                    "text": "forbearance till the spied of his rage goes"
                },
                {
                    "text": "slower; and, as I say, retire with me to my"
                },
                {
                    "text": "lodging, from whence I will fitly bring you to"
                },
                {
                    "text": "hear my lord speak: pray ye, go; there's my key:"
                },
                {
                    "text": "if you do stir abroad, go armed."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDGAR",
            "act": 1,
            "scene": 2,
            "start": 178,
            "end": 178,
            "lines": [
                {
                    "text": "Armed, brother!"
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 179,
            "end": 183,
            "lines": [
                {
                    "text": "Brother, I advise you to the best; go armed: I"
                },
                {
                    "text": "am no honest man if there be any good meaning"
                },
                {
                    "text": "towards you: I have told you what I have seen"
                },
                {
                    "text": "and heard; but faintly, nothing like the image"
                },
                {
                    "text": "and horror of it: pray you, away."
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDGAR",
            "act": 1,
            "scene": 2,
            "start": 184,
            "end": 184,
            "lines": [
                {
                    "text": "Shall I hear from you anon?"
                }
            ]
        }
    },
    {
        "Dialogue": {
            "character": "EDMUND",
            "act": 1,
            "scene": 2,
            "start": 185,
            "end": 191,
            "lines": [
                {
                    "text": "I do serve you in this business."
                },
                {
                    "direction": "Exit EDGAR"
                },
                {
                    "text": "A credulous father! and a brother noble,"
                },
                {
                    "text": "Whose nature is so far from doing harms,"
                },
                {
                    "text": "That he suspects none: on whose foolish honesty"
                },
                {
                    "text": "My practises ride easy! I see the business."
                },
                {
                    "text": "Let me, if not by birth, have lands by wit:"
                },
                {
                    "text": "All with me's meet that I can fashion fit."
                },
                {
                    "direction": "Exit"
                }
            ]
        }
    }
]