File size: 74,816 Bytes
15c3265
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{"type": "character", "entity": "Mr. Utterson", "text": "Mr. Utterson was a man of rugged countenance, cold and dreary yet lovable.", "source_chunk": "jekyll_hyde-0"}
{"type": "character", "entity": "Mr. Utterson", "text": "Mr. Utterson was austere with himself, mortifying his taste for vintages by drinking gin alone.", "source_chunk": "jekyll_hyde-0"}
{"type": "character", "entity": "Mr. Utterson", "text": "Mr. Utterson had an approved tolerance for others, inclined to help rather than reprove.", "source_chunk": "jekyll_hyde-0"}
{"type": "belief", "entity": "Mr", "text": "Mr. Utterson inclined to Cain’s heresy, allowing others to go their own way.", "source_chunk": "jekyll_hyde-0"}
{"type": "relationship", "entity": "Mr. Richard Enfield", "text": "Mr. Utterson was united to Mr. Richard Enfield, a distant kinsman and well-known man about town.", "source_chunk": "jekyll_hyde-0"}
{"type": "setting", "entity": "chambers", "text": "Mr. Utterson maintained a demeanor unchanged in the presence of downgoing men in his chambers.", "source_chunk": "jekyll_hyde-0"}
{"type": "event", "entity": "Two", "text": "Two men enjoyed Sunday walks, valuing them as the chief jewel of each week.", "source_chunk": "jekyll_hyde-1"}
{"type": "location", "entity": "London", "text": "Setting includes a busy quarter of London with a small, quiet street.", "source_chunk": "jekyll_hyde-1"}
{"type": "setting", "entity": "Street", "text": "Street thrived on weekdays, inhabitants doing well and hoping for better.", "source_chunk": "jekyll_hyde-1"}
{"type": "setting", "entity": "Street", "text": "Street appeared clean and inviting, contrasting with its dingy neighborhood.", "source_chunk": "jekyll_hyde-1"}
{"type": "location", "entity": "court", "text": "Entry of a court broke the line of shop fronts on the street.", "source_chunk": "jekyll_hyde-1"}
{"type": "location", "entity": "sinister block of building", "text": "Building showed signs of negligence, with a door and no windows.", "source_chunk": "jekyll_hyde-1"}
{"type": "event", "entity": "Tramps", "text": "Tramps slouched into the recess of the building, children kept shop on the steps.", "source_chunk": "jekyll_hyde-1"}
{"type": "setting", "entity": null, "text": "A part of town where there was literally nothing to be seen but lamps, all lighted up as if for a procession and all as empty as a church.", "source_chunk": "jekyll_hyde-2"}
{"type": "event", "entity": null, "text": "A man trampled calmly over a child's body and left her screaming on the ground.", "source_chunk": "jekyll_hyde-2"}
{"type": "rule", "entity": "No", "text": "No one had appeared to drive away random visitors or to repair the ravages of the door.", "source_chunk": "jekyll_hyde-2"}
{"type": "location", "entity": "Mr", "text": "A by-street where Mr. Enfield and the lawyer were walking.", "source_chunk": "jekyll_hyde-2"}
{"type": "organization", "entity": "Presence", "text": "Presence of a group around the screaming child.", "source_chunk": "jekyll_hyde-2"}
{"type": "event", "entity": null, "text": "A child screams, prompting a group to gather around.", "source_chunk": "jekyll_hyde-3"}
{"type": "organization", "entity": "doctor", "text": "A doctor arrives after being summoned for the child.", "source_chunk": "jekyll_hyde-3"}
{"type": "setting", "entity": null, "text": "A scene unfolds in a public space with a crowd gathering.", "source_chunk": "jekyll_hyde-3"}
{"type": "rule", "entity": "Threat", "text": "Threat of scandal used to coerce a man into paying compensation.", "source_chunk": "jekyll_hyde-3"}
{"type": "event", "entity": null, "text": "A man is confronted by the child's family and others for his actions.", "source_chunk": "jekyll_hyde-3"}
{"type": "location", "entity": "London", "text": "Threat made to ruin a man's reputation throughout London.", "source_chunk": "jekyll_hyde-3"}
{"type": "event", "entity": null, "text": "A negotiation occurs for compensation for the child's family.", "source_chunk": "jekyll_hyde-3"}
{"type": "event", "entity": "Negotiation", "text": "Negotiation for a hundred pounds for a child's family.", "source_chunk": "jekyll_hyde-4"}
{"type": "location", "entity": "Black Mail House", "text": "Place with the door where money was retrieved.", "source_chunk": "jekyll_hyde-4"}
{"type": "organization", "entity": "Coutts’s", "text": "Bank where cheque was drawn payable to bearer.", "source_chunk": "jekyll_hyde-4"}
{"type": "rule", "entity": null, "text": "A man does not walk into a cellar door at four in the morning and come out with another man’s cheque.", "source_chunk": "jekyll_hyde-4"}
{"type": "event", "entity": "Group", "text": "Group went to the bank to cash the cheque.", "source_chunk": "jekyll_hyde-4"}
{"type": "event", "entity": "Cheque", "text": "Cheque was confirmed as genuine despite suspicions.", "source_chunk": "jekyll_hyde-4"}
{"type": "setting", "entity": "Night", "text": "Night spent in chambers before going to the bank.", "source_chunk": "jekyll_hyde-4"}
{"type": "rule", "entity": "Blackmail", "text": "Blackmail is implied as a motive for the cheque.", "source_chunk": "jekyll_hyde-4"}
{"type": "rule", "entity": "The", "text": "The more it looks like Queer Street, the less I ask.", "source_chunk": "jekyll_hyde-5"}
{"type": "location", "entity": "Black Mail House", "text": "Place with the door referred to as Black Mail House.", "source_chunk": "jekyll_hyde-5"}
{"type": "setting", "entity": "Buildings", "text": "Buildings are packed together about the court, making it hard to distinguish one from another.", "source_chunk": "jekyll_hyde-5"}
{"type": "event", "entity": "Mr", "text": "Mr. Enfield recalls a past adventure related to the place with the door.", "source_chunk": "jekyll_hyde-5"}
{"type": "rule", "entity": "Good", "text": "Good rule of yours.", "source_chunk": "jekyll_hyde-6"}
{"type": "event", "entity": "Hyde", "text": "Man of the name of Hyde walked over the child.", "source_chunk": "jekyll_hyde-6"}
{"type": "setting", "entity": "Weight", "text": "Weight of consideration during conversation.", "source_chunk": "jekyll_hyde-6"}
{"type": "event", "entity": "Lesson", "text": "Lesson to say nothing; bargain to never refer to this again.", "source_chunk": "jekyll_hyde-6"}
{"type": "location", "entity": "bachelor house", "text": "Mr. Utterson came home to his bachelor house in sombre spirits.", "source_chunk": "jekyll_hyde-7"}
{"type": "setting", "entity": "Sunday dinner", "text": "It was his custom of a Sunday, when this meal was over, to sit close by the fire.", "source_chunk": "jekyll_hyde-7"}
{"type": "event", "entity": "reading of Dr. Jekyll's Will", "text": "Mr. Utterson opened his safe and studied the contents of Dr. Jekyll’s Will.", "source_chunk": "jekyll_hyde-7"}
{"type": "rule", "entity": "In", "text": "In case of Dr. Jekyll’s disappearance or unexplained absence for any period exceeding three calendar months, Edward Hyde should step into Dr. Jekyll’s shoes.", "source_chunk": "jekyll_hyde-7"}
{"type": "organization", "entity": "lawyer", "text": "This document had long been the lawyer’s eyesore.", "source_chunk": "jekyll_hyde-7"}
{"type": "event", "entity": "indignation towards Mr. Hyde", "text": "It offended him both as a lawyer and as a lover of the sane and customary sides of life.", "source_chunk": "jekyll_hyde-7"}
{"type": "location", "entity": "Cavendish Square", "text": "Cavendish Square, that citadel of medicine, where Dr. Lanyon had his house and received his crowding patients.", "source_chunk": "jekyll_hyde-8"}
{"type": "organization", "entity": "Dr. Lanyon's practice", "text": "Dr. Lanyon had his house and received his crowding patients.", "source_chunk": "jekyll_hyde-8"}
{"type": "event", "entity": "Utterson", "text": "Utterson visits Dr. Lanyon to discuss Henry Jekyll.", "source_chunk": "jekyll_hyde-8"}
{"type": "rule", "entity": "Old", "text": "Old friends respect each other and enjoy each other's company.", "source_chunk": "jekyll_hyde-8"}
{"type": "setting", "entity": "Dining", "text": "Dining-room where Dr. Lanyon sat alone over his wine.", "source_chunk": "jekyll_hyde-8"}
{"type": "event", "entity": "Utterson", "text": "Utterson expresses concern about Jekyll's mental state.", "source_chunk": "jekyll_hyde-8"}
{"type": "event", "entity": "Mr", "text": "Mr. Utterson reflects on a friend's scientific disagreements.", "source_chunk": "jekyll_hyde-9"}
{"type": "event", "entity": "Hyde", "text": "Mr. Utterson inquires about a protégé named Hyde.", "source_chunk": "jekyll_hyde-9"}
{"type": "setting", "entity": "Mr. Utterson’s dwelling", "text": "Mr. Utterson's dwelling is near a church with bells striking six o'clock.", "source_chunk": "jekyll_hyde-9"}
{"type": "setting", "entity": "nocturnal city", "text": "Imagery of a nocturnal city with a field of lamps.", "source_chunk": "jekyll_hyde-9"}
{"type": "event", "entity": "Mr", "text": "Mr. Utterson experiences a night of little ease, troubled by questions.", "source_chunk": "jekyll_hyde-9"}
{"type": "event", "entity": "Mr", "text": "Mr. Utterson envisions a child being trodden down by a man.", "source_chunk": "jekyll_hyde-9"}
{"type": "event", "entity": "Mr", "text": "Mr. Utterson imagines a friend asleep and dreaming.", "source_chunk": "jekyll_hyde-9"}
{"type": "setting", "entity": "Room", "text": "Room in a rich house", "source_chunk": "jekyll_hyde-10"}
{"type": "event", "entity": "Mr. Hyde", "text": "Lawyer's curiosity to behold the features of Mr. Hyde grows", "source_chunk": "jekyll_hyde-10"}
{"type": "event", "entity": "Mr. Utterson", "text": "Mr. Utterson begins to haunt the door in the by-street of shops", "source_chunk": "jekyll_hyde-10"}
{"type": "rule", "entity": "Curiosity", "text": "Curiosity about mysterious things can lighten when examined", "source_chunk": "jekyll_hyde-10"}
{"type": "location", "entity": "by-street of shops", "text": "Mr. Utterson's chosen post for waiting", "source_chunk": "jekyll_hyde-10"}
{"type": "setting", "entity": "fogged city moon", "text": "Night setting under the fogged city moon", "source_chunk": "jekyll_hyde-10"}
{"type": "event", "entity": "Lawyer", "text": "Lawyer waits at his post to confront Mr. Hyde.", "source_chunk": "jekyll_hyde-11"}
{"type": "setting", "entity": "London", "text": "Nighttime in London, described as solitary and silent with clean streets.", "source_chunk": "jekyll_hyde-11"}
{"type": "rule", "entity": "Lawyer", "text": "Lawyer has a superstitious prevision of success during his patrol.", "source_chunk": "jekyll_hyde-11"}
{"type": "event", "entity": "Mr. Hyde", "text": "Mr. Hyde approaches the door, drawing a key from his pocket.", "source_chunk": "jekyll_hyde-11"}
{"type": "event", "entity": "Mr. Utterson", "text": "Mr. Utterson identifies Mr. Hyde and touches him on the shoulder.", "source_chunk": "jekyll_hyde-11"}
{"type": "organization", "entity": "Dr. Jekyll", "text": "Mr. Utterson is an old friend of Dr. Jekyll.", "source_chunk": "jekyll_hyde-12"}
{"type": "location", "entity": "Soho", "text": "Mr. Hyde gave a number of a street in Soho.", "source_chunk": "jekyll_hyde-12"}
{"type": "event", "entity": "Mr", "text": "Mr. Utterson and Mr. Hyde meet and discuss Dr. Jekyll.", "source_chunk": "jekyll_hyde-12"}
{"type": "rule", "entity": "Mr", "text": "Mr. Utterson requests to see Mr. Hyde's face.", "source_chunk": "jekyll_hyde-12"}
{"type": "event", "entity": "Mr", "text": "Mr. Hyde unlocks the door and disappears into the house.", "source_chunk": "jekyll_hyde-12"}
{"type": "event", "entity": "Mr", "text": "Mr. Hyde left the lawyer, causing disquietude.", "source_chunk": "jekyll_hyde-13"}
{"type": "event", "entity": "Lawyer", "text": "Lawyer debated a perplexing problem while walking.", "source_chunk": "jekyll_hyde-13"}
{"type": "rule", "entity": "Disgust", "text": "Disgust, loathing, and fear can arise from unknown sources.", "source_chunk": "jekyll_hyde-13"}
{"type": "setting", "entity": "Square", "text": "Square of ancient, handsome houses, now decayed.", "source_chunk": "jekyll_hyde-13"}
{"type": "location", "entity": "Dr. Jekyll's house", "text": "House occupied entirely, exuding wealth and comfort.", "source_chunk": "jekyll_hyde-13"}
{"type": "organization", "entity": "map-engravers, architects, shady lawyers", "text": "Various professions reside in the decayed houses.", "source_chunk": "jekyll_hyde-13"}
{"type": "event", "entity": "Poole", "text": "Servant opened the door for Mr. Utterson.", "source_chunk": "jekyll_hyde-13"}
{"type": "location", "entity": "hall", "text": "Large, low-roofed, comfortable hall paved with flags, warmed by a bright, open fire.", "source_chunk": "jekyll_hyde-14"}
{"type": "setting", "entity": "London", "text": "Utterson speaks of the hall as the pleasantest room in London.", "source_chunk": "jekyll_hyde-14"}
{"type": "event", "entity": "Utterson", "text": "Utterson visits Dr. Jekyll's home and learns that Jekyll is not at home.", "source_chunk": "jekyll_hyde-14"}
{"type": "organization", "entity": "servants", "text": "All orders to obey Mr. Hyde.", "source_chunk": "jekyll_hyde-14"}
{"type": "rule", "entity": "Mr", "text": "Mr. Hyde has a key and can enter the house when Dr. Jekyll is away.", "source_chunk": "jekyll_hyde-14"}
{"type": "event", "entity": "Mr. Hyde", "text": "Utterson sees Mr. Hyde enter by the old dissecting room.", "source_chunk": "jekyll_hyde-14"}
{"type": "event", "entity": "Lawyer", "text": "Lawyer reflects on Harry Jekyll's troubled state and past sins.", "source_chunk": "jekyll_hyde-15"}
{"type": "rule", "entity": "law of God", "text": "No statute of limitations exists for sins.", "source_chunk": "jekyll_hyde-15"}
{"type": "setting", "entity": "Lawyer", "text": "Lawyer feels heavy-hearted while returning home.", "source_chunk": "jekyll_hyde-15"}
{"type": "event", "entity": "Master Hyde", "text": "Lawyer contemplates the dark secrets of Master Hyde.", "source_chunk": "jekyll_hyde-15"}
{"type": "event", "entity": "Harry Jekyll", "text": "Lawyer worries about Hyde's potential impatience to inherit Jekyll's estate.", "source_chunk": "jekyll_hyde-15"}
{"type": "event", "entity": "Lawyer", "text": "Lawyer resolves to take action regarding Jekyll's situation.", "source_chunk": "jekyll_hyde-15"}
{"type": "event", "entity": "Dr", "text": "Dr. Jekyll hosted a dinner for old cronies.", "source_chunk": "jekyll_hyde-16"}
{"type": "rule", "entity": "Utterson", "text": "Utterson often remained behind after gatherings.", "source_chunk": "jekyll_hyde-16"}
{"type": "setting", "entity": null, "text": "A warm and pleasant dinner atmosphere.", "source_chunk": "jekyll_hyde-16"}
{"type": "organization", "entity": "Lanyon", "text": "Lanyon is described as a hide-bound pedant and a good fellow.", "source_chunk": "jekyll_hyde-16"}
{"type": "event", "entity": "Utterson", "text": "Utterson expressed concern about Jekyll's will.", "source_chunk": "jekyll_hyde-16"}
{"type": "rule", "entity": "Utterson", "text": "Utterson disapproved of Jekyll's will.", "source_chunk": "jekyll_hyde-16"}
{"type": "event", "entity": "Hyde", "text": "Utterson learned something about young Hyde.", "source_chunk": "jekyll_hyde-16"}
{"type": "event", "entity": "Doctor", "text": "Doctor expresses discomfort about discussing young Hyde.", "source_chunk": "jekyll_hyde-17"}
{"type": "rule", "entity": "Doctor", "text": "Doctor insists on keeping matters private and not discussing them further.", "source_chunk": "jekyll_hyde-17"}
{"type": "setting", "entity": "Conversation", "text": "Conversation takes place in a private setting, indicated by the request to let the matter sleep.", "source_chunk": "jekyll_hyde-17"}
{"type": "organization", "entity": "Utterson", "text": "Utterson is portrayed as a trusted friend and confidant.", "source_chunk": "jekyll_hyde-17"}
{"type": "location", "entity": "Fire", "text": "Fire is present, indicating a warm, intimate atmosphere during the conversation.", "source_chunk": "jekyll_hyde-17"}
{"type": "event", "entity": "Jekyll", "text": "Jekyll expresses concern for Hyde and asks Utterson to help him.", "source_chunk": "jekyll_hyde-18"}
{"type": "rule", "entity": "Jekyll", "text": "Jekyll requests Utterson to ensure justice for Hyde.", "source_chunk": "jekyll_hyde-18"}
{"type": "organization", "entity": "Utterson", "text": "Utterson is a lawyer who is asked to assist Hyde.", "source_chunk": "jekyll_hyde-18"}
{"type": "setting", "entity": "Jekyll", "text": "Jekyll is concerned about his legacy and the treatment of Hyde.", "source_chunk": "jekyll_hyde-18"}
{"type": "event", "entity": "Crime", "text": "Crime of singular ferocity occurred in London, notable due to high position of victim.", "source_chunk": "jekyll_hyde-19"}
{"type": "location", "entity": "London", "text": "Setting of the crime, city was startled by the event.", "source_chunk": "jekyll_hyde-19"}
{"type": "setting", "entity": "Time", "text": "Time of year was October, with a cloudless night and full moon.", "source_chunk": "jekyll_hyde-19"}
{"type": "organization", "entity": "Maid", "text": "Maid servant living alone in a house near the river.", "source_chunk": "jekyll_hyde-19"}
{"type": "rule", "entity": "Maid", "text": "Maid felt at peace with all men and thought kindly of the world.", "source_chunk": "jekyll_hyde-19"}
{"type": "event", "entity": "Mr. Hyde", "text": "Maid recognized Mr. Hyde, whom she disliked, during the encounter.", "source_chunk": "jekyll_hyde-19"}
{"type": "event", "entity": "Mr", "text": "Mr. Hyde displayed anger and impatience during the encounter.", "source_chunk": "jekyll_hyde-19"}
{"type": "event", "entity": "Mr", "text": "Mr. Hyde attacked and killed Sir Danvers Carew in a violent outburst.", "source_chunk": "jekyll_hyde-20"}
{"type": "location", "entity": "lane", "text": "Victim found in the middle of the lane, incredibly mangled.", "source_chunk": "jekyll_hyde-20"}
{"type": "organization", "entity": "police", "text": "Maid called for the police after witnessing the murder.", "source_chunk": "jekyll_hyde-20"}
{"type": "rule", "entity": "Murderer", "text": "Murderer fled the scene, leaving the victim behind.", "source_chunk": "jekyll_hyde-20"}
{"type": "setting", "entity": "Scene", "text": "Scene described with horror, maid fainted at the sight.", "source_chunk": "jekyll_hyde-20"}
{"type": "event", "entity": "Mr", "text": "Mr. Utterson received a sealed envelope with the victim's name and address.", "source_chunk": "jekyll_hyde-20"}
{"type": "event", "entity": "Mr", "text": "Mr. Utterson recognized the victim as Sir Danvers Carew at the police station.", "source_chunk": "jekyll_hyde-20"}
{"type": "event", "entity": "Sir Danvers Carew", "text": "Recognition of Sir Danvers Carew's body in the cell.", "source_chunk": "jekyll_hyde-21"}
{"type": "event", "entity": "Hyde", "text": "Discussion of Mr. Hyde's involvement in the incident.", "source_chunk": "jekyll_hyde-21"}
{"type": "rule", "entity": "Professional", "text": "Professional ambition drives the officer to seek the perpetrator.", "source_chunk": "jekyll_hyde-21"}
{"type": "location", "entity": "Soho", "text": "Dismal quarter of Soho described as dark and nightmarish.", "source_chunk": "jekyll_hyde-21"}
{"type": "setting", "entity": "First", "text": "First fog of the season creates a gloomy atmosphere.", "source_chunk": "jekyll_hyde-21"}
{"type": "event", "entity": "cab ride", "text": "Mr. Utterson offers to take the officer to Hyde's house.", "source_chunk": "jekyll_hyde-21"}
{"type": "setting", "entity": null, "text": "A district of some city in a nightmare, described as dingy with a foggy atmosphere.", "source_chunk": "jekyll_hyde-22"}
{"type": "location", "entity": "gin palace", "text": "Presence of a gin palace in the street.", "source_chunk": "jekyll_hyde-22"}
{"type": "location", "entity": "low French eating house", "text": "A low French eating house is mentioned in the street.", "source_chunk": "jekyll_hyde-22"}
{"type": "location", "entity": "shop for the retail of penny numbers and twopenny salads", "text": "A shop selling penny numbers and twopenny salads is present.", "source_chunk": "jekyll_hyde-22"}
{"type": "event", "entity": "Mr. Hyde's absence", "text": "Mr. Hyde was not at home and had irregular habits.", "source_chunk": "jekyll_hyde-22"}
{"type": "organization", "entity": "Scotland Yard", "text": "Inspector Newcomen is associated with Scotland Yard.", "source_chunk": "jekyll_hyde-22"}
{"type": "rule", "entity": "Law", "text": "Law and its officers instill a sense of terror even in honest individuals.", "source_chunk": "jekyll_hyde-22"}
{"type": "event", "entity": "Mr. Hyde's trouble", "text": "The old woman expresses joy at the news of Mr. Hyde being in trouble.", "source_chunk": "jekyll_hyde-22"}
{"type": "setting", "entity": "House", "text": "House furnished with luxury and good taste, but recently ransacked.", "source_chunk": "jekyll_hyde-23"}
{"type": "event", "entity": "Rooms", "text": "Rooms showed signs of having been hurriedly ransacked; clothes on the floor, drawers open.", "source_chunk": "jekyll_hyde-23"}
{"type": "event", "entity": "Inspector", "text": "Inspector found a burnt cheque book and a stick, leading to suspicions about Mr. Hyde.", "source_chunk": "jekyll_hyde-23"}
{"type": "organization", "entity": "bank", "text": "Several thousand pounds found to be lying to the murderer's credit.", "source_chunk": "jekyll_hyde-23"}
{"type": "rule", "entity": "Money", "text": "Money is considered vital to Mr. Hyde, as indicated by the inspector's comments.", "source_chunk": "jekyll_hyde-23"}
{"type": "location", "entity": "Mr", "text": "Mr. Hyde had few familiars and could not be easily traced.", "source_chunk": "jekyll_hyde-23"}
{"type": "event", "entity": "Witnesses", "text": "Witnesses described Mr. Hyde with a haunting sense of unexpressed deformity.", "source_chunk": "jekyll_hyde-23"}
{"type": "location", "entity": "Dr. Jekyll’s door", "text": "Mr. Utterson found his way to Dr. Jekyll’s door.", "source_chunk": "jekyll_hyde-24"}
{"type": "location", "entity": "laboratory", "text": "Mr. Utterson was carried down to the building which was indifferently known as the laboratory.", "source_chunk": "jekyll_hyde-24"}
{"type": "location", "entity": "dissecting rooms", "text": "Mr. Utterson was carried down to the building which was indifferently known as the dissecting rooms.", "source_chunk": "jekyll_hyde-24"}
{"type": "location", "entity": "garden", "text": "Mr. Utterson crossed a yard which had once been a garden.", "source_chunk": "jekyll_hyde-24"}
{"type": "event", "entity": "Mr", "text": "Mr. Utterson was received in that part of his friend’s quarters for the first time.", "source_chunk": "jekyll_hyde-24"}
{"type": "setting", "entity": "theatre", "text": "The theatre was once crowded with eager students and now lying gaunt and silent.", "source_chunk": "jekyll_hyde-24"}
{"type": "setting", "entity": "doctor’s cabinet", "text": "Mr. Utterson was received into the doctor’s cabinet.", "source_chunk": "jekyll_hyde-24"}
{"type": "setting", "entity": "court", "text": "The cabinet looked out upon the court by three dusty windows barred with iron.", "source_chunk": "jekyll_hyde-24"}
{"type": "event", "entity": "Dr", "text": "Dr. Jekyll looked deathly sick when Mr. Utterson arrived.", "source_chunk": "jekyll_hyde-24"}
{"type": "organization", "entity": "Carew", "text": "Carew was Mr. Utterson's client.", "source_chunk": "jekyll_hyde-24"}
{"type": "event", "entity": "Utterson", "text": "Utterson expresses concern about the implications of Jekyll's relationship with Hyde.", "source_chunk": "jekyll_hyde-25"}
{"type": "rule", "entity": "Jekyll", "text": "Jekyll binds his honour to Utterson, indicating a moral obligation.", "source_chunk": "jekyll_hyde-25"}
{"type": "organization", "entity": "police", "text": "Jekyll contemplates whether to show a letter to the police.", "source_chunk": "jekyll_hyde-25"}
{"type": "setting", "entity": "dining-room", "text": "The conversation takes place in a dining-room.", "source_chunk": "jekyll_hyde-25"}
{"type": "event", "entity": "Jekyll", "text": "Jekyll declares he is done with Hyde and expresses concern for his own character.", "source_chunk": "jekyll_hyde-25"}
{"type": "event", "entity": "Hyde", "text": "Hyde writes a letter to Jekyll, indicating he has means of escape.", "source_chunk": "jekyll_hyde-25"}
{"type": "event", "entity": "Utterson", "text": "Utterson learns about a letter that was handed in without a postmark.", "source_chunk": "jekyll_hyde-26"}
{"type": "event", "entity": "Jekyll", "text": "Jekyll expresses loss of confidence in himself.", "source_chunk": "jekyll_hyde-26"}
{"type": "event", "entity": "Utterson", "text": "Utterson suspects Hyde intended to murder Jekyll.", "source_chunk": "jekyll_hyde-26"}
{"type": "event", "entity": "Jekyll", "text": "Jekyll reflects on having learned a significant lesson.", "source_chunk": "jekyll_hyde-26"}
{"type": "location", "entity": "laboratory", "text": "Letter possibly came from the laboratory door.", "source_chunk": "jekyll_hyde-26"}
{"type": "location", "entity": "cabinet", "text": "Letter may have been written in the cabinet.", "source_chunk": "jekyll_hyde-26"}
{"type": "event", "entity": "Newsboys", "text": "Newsboys announce a shocking murder of an M.P.", "source_chunk": "jekyll_hyde-26"}
{"type": "organization", "entity": "M.P.", "text": "M.P. is mentioned in relation to a shocking murder.", "source_chunk": "jekyll_hyde-26"}
{"type": "event", "entity": "Utterson", "text": "Utterson feels apprehension about the potential scandal affecting Jekyll.", "source_chunk": "jekyll_hyde-26"}
{"type": "event", "entity": "Decision", "text": "Decision-making process involves seeking advice.", "source_chunk": "jekyll_hyde-27"}
{"type": "setting", "entity": "hearth", "text": "Conversation takes place by the hearth with firelight.", "source_chunk": "jekyll_hyde-27"}
{"type": "location", "entity": "London", "text": "Fog covers the city, described as a drowned city.", "source_chunk": "jekyll_hyde-27"}
{"type": "organization", "entity": "law firm", "text": "Utterson is a lawyer, indicating a legal profession.", "source_chunk": "jekyll_hyde-27"}
{"type": "event", "entity": "Sir Danvers", "text": "Public feeling elicited by the sad business about Sir Danvers.", "source_chunk": "jekyll_hyde-27"}
{"type": "rule", "entity": "Secrecy", "text": "Secrecy maintained in professional relationships.", "source_chunk": "jekyll_hyde-27"}
{"type": "event", "entity": "Mr. Hyde", "text": "Mr. Hyde's familiarity with the house raises suspicions.", "source_chunk": "jekyll_hyde-27"}
{"type": "event", "entity": "Public", "text": "Public feeling elicited by Sir Danvers' situation.", "source_chunk": "jekyll_hyde-28"}
{"type": "event", "entity": "Utterson", "text": "Utterson receives a document in a murderer's handwriting.", "source_chunk": "jekyll_hyde-28"}
{"type": "event", "entity": "Guest", "text": "Guest compares two sheets of paper for handwriting similarities.", "source_chunk": "jekyll_hyde-28"}
{"type": "rule", "entity": "Utterson", "text": "Utterson instructs Guest to keep the note private.", "source_chunk": "jekyll_hyde-28"}
{"type": "setting", "entity": "Utterson", "text": "Utterson locks the note into his safe.", "source_chunk": "jekyll_hyde-28"}
{"type": "organization", "entity": "Dr. Jekyll", "text": "Utterson suspects Dr. Jekyll of forging for a murderer.", "source_chunk": "jekyll_hyde-28"}
{"type": "event", "entity": "death of Sir Danvers", "text": "Death of Sir Danvers was resented as a public injury.", "source_chunk": "jekyll_hyde-29"}
{"type": "event", "entity": "disappearance of Mr. Hyde", "text": "Mr. Hyde disappeared out of the ken of the police as though he had never existed.", "source_chunk": "jekyll_hyde-29"}
{"type": "rule", "entity": "Much", "text": "Much of Mr. Hyde's past was unearthed, revealing tales of cruelty and a vile life.", "source_chunk": "jekyll_hyde-29"}
{"type": "setting", "entity": "Soho", "text": "Mr. Hyde left the house in Soho on the morning of the murder.", "source_chunk": "jekyll_hyde-29"}
{"type": "event", "entity": "new life for Dr. Jekyll", "text": "With Mr. Hyde's disappearance, a new life began for Dr. Jekyll.", "source_chunk": "jekyll_hyde-29"}
{"type": "event", "entity": "dinner with Utterson and Lanyon", "text": "Utterson dined at Dr. Jekyll's with a small party including Lanyon.", "source_chunk": "jekyll_hyde-29"}
{"type": "event", "entity": "return of solitude", "text": "Utterson found the return of solitude to weigh upon his spirits.", "source_chunk": "jekyll_hyde-29"}
{"type": "event", "entity": "refusal of visits", "text": "Dr. Jekyll was confined to the house and saw no one on multiple occasions.", "source_chunk": "jekyll_hyde-29"}
{"type": "event", "entity": "Utterson", "text": "Utterson visits Dr. Lanyon and observes his physical and mental decline.", "source_chunk": "jekyll_hyde-30"}
{"type": "event", "entity": "Lanyon", "text": "Lanyon declares himself a doomed man after experiencing a shock.", "source_chunk": "jekyll_hyde-30"}
{"type": "rule", "entity": "Lanyon", "text": "Lanyon expresses a desire to no longer discuss Dr. Jekyll, whom he regards as dead.", "source_chunk": "jekyll_hyde-30"}
{"type": "setting", "entity": "Lanyon's residence", "text": "Utterson is admitted to Lanyon's home, indicating a place of social interaction.", "source_chunk": "jekyll_hyde-30"}
{"type": "location", "entity": "Utterson", "text": "Utterson reflects on the inevitability of death and the value of life.", "source_chunk": "jekyll_hyde-30"}
{"type": "event", "entity": "Utterson", "text": "Utterson receives a long answer from Jekyll, expressing a desire for extreme seclusion.", "source_chunk": "jekyll_hyde-31"}
{"type": "rule", "entity": "Jekyll", "text": "Jekyll insists on never meeting Lanyon again.", "source_chunk": "jekyll_hyde-31"}
{"type": "event", "entity": "Dr. Lanyon", "text": "Dr. Lanyon takes to his bed and dies shortly after.", "source_chunk": "jekyll_hyde-31"}
{"type": "setting", "entity": "Jekyll", "text": "Jekyll's home is described as a place where Utterson feels excluded.", "source_chunk": "jekyll_hyde-31"}
{"type": "event", "entity": "Utterson", "text": "Utterson reflects on the drastic change in Jekyll's life and mental state.", "source_chunk": "jekyll_hyde-31"}
{"type": "rule", "entity": "Utterson", "text": "Utterson is asked to respect Jekyll's silence regarding his troubles.", "source_chunk": "jekyll_hyde-31"}
{"type": "event", "entity": "Dr. Lanyon", "text": "Dr. Lanyon took to his bed and died within a fortnight.", "source_chunk": "jekyll_hyde-32"}
{"type": "event", "entity": "funeral", "text": "Utterson was sadly affected at the funeral.", "source_chunk": "jekyll_hyde-32"}
{"type": "rule", "entity": "Envelope", "text": "Envelope addressed to Utterson marked 'PRIVATE' and to be destroyed unread in case of his predecease.", "source_chunk": "jekyll_hyde-32"}
{"type": "rule", "entity": "Dr. Henry Jekyll", "text": "Another enclosure marked 'not to be opened till the death or disappearance of Dr. Henry Jekyll.'", "source_chunk": "jekyll_hyde-32"}
{"type": "organization", "entity": "Utterson", "text": "Utterson is a trustee with obligations of professional honour and faith to his dead friend.", "source_chunk": "jekyll_hyde-32"}
{"type": "setting", "entity": "business room", "text": "Utterson locked the door of his business room and sat by the light of a melancholy candle.", "source_chunk": "jekyll_hyde-32"}
{"type": "event", "entity": "Utterson", "text": "Utterson experienced disquiet and fear regarding his surviving friend.", "source_chunk": "jekyll_hyde-32"}
{"type": "location", "entity": "open city", "text": "open city", "source_chunk": "jekyll_hyde-33"}
{"type": "location", "entity": "house of voluntary bondage", "text": "house of voluntary bondage", "source_chunk": "jekyll_hyde-33"}
{"type": "setting", "entity": null, "text": "cabinet over the laboratory", "source_chunk": "jekyll_hyde-33"}
{"type": "event", "entity": null, "text": "doctor confined himself", "source_chunk": "jekyll_hyde-33"}
{"type": "event", "entity": "Utterson", "text": "Utterson fell off in frequency of visits", "source_chunk": "jekyll_hyde-33"}
{"type": "event", "entity": "Mr", "text": "Mr. Utterson and Mr. Enfield walk through a by-street and stop in front of a door.", "source_chunk": "jekyll_hyde-34"}
{"type": "event", "entity": "Mr. Hyde", "text": "Mr. Enfield declares that the story of Mr. Hyde is at an end.", "source_chunk": "jekyll_hyde-34"}
{"type": "event", "entity": "Dr. Jekyll", "text": "Utterson expresses unease about Dr. Jekyll's well-being.", "source_chunk": "jekyll_hyde-34"}
{"type": "setting", "entity": "court", "text": "The court is described as cool, damp, and full of premature twilight.", "source_chunk": "jekyll_hyde-34"}
{"type": "organization", "entity": "lawyer", "text": "Utterson is identified as a lawyer.", "source_chunk": "jekyll_hyde-34"}
{"type": "rule", "entity": "Dr", "text": "Dr. Jekyll feels he cannot go out and socialize.", "source_chunk": "jekyll_hyde-34"}
{"type": "event", "entity": "Doctor", "text": "Doctor's expression changes to abject terror and despair.", "source_chunk": "jekyll_hyde-35"}
{"type": "location", "entity": "by-street", "text": "Gentlemen traverse a by-street in silence.", "source_chunk": "jekyll_hyde-35"}
{"type": "location", "entity": "neighbouring thoroughfare", "text": "Gentlemen enter a neighbouring thoroughfare with some stirrings of life.", "source_chunk": "jekyll_hyde-35"}
{"type": "rule", "entity": "Silence", "text": "Silence observed after witnessing the doctor's terror.", "source_chunk": "jekyll_hyde-35"}
{"type": "event", "entity": "Mr", "text": "Mr. Utterson expresses a plea for forgiveness.", "source_chunk": "jekyll_hyde-35"}
{"type": "event", "entity": "Mr", "text": "Mr. Utterson receives a visit from Poole.", "source_chunk": "jekyll_hyde-36"}
{"type": "event", "entity": "Poole", "text": "Poole expresses fear about the doctor being shut up in the cabinet.", "source_chunk": "jekyll_hyde-36"}
{"type": "event", "entity": "Poole", "text": "Poole mentions he has been afraid for about a week.", "source_chunk": "jekyll_hyde-36"}
{"type": "event", "entity": "Poole", "text": "Poole suggests there has been foul play.", "source_chunk": "jekyll_hyde-36"}
{"type": "setting", "entity": "March", "text": "A wild, cold night in March with a pale moon.", "source_chunk": "jekyll_hyde-36"}
{"type": "location", "entity": "cabinet", "text": "Doctor is shut up in the cabinet.", "source_chunk": "jekyll_hyde-36"}
{"type": "organization", "entity": "lawyer", "text": "Mr. Utterson is a lawyer.", "source_chunk": "jekyll_hyde-36"}
{"type": "setting", "entity": "March", "text": "wild, cold, seasonable night of March with a pale moon and flying wrack", "source_chunk": "jekyll_hyde-37"}
{"type": "location", "entity": "London", "text": "part of London unusually bare of passengers", "source_chunk": "jekyll_hyde-37"}
{"type": "event", "entity": "Mr", "text": "Mr. Utterson felt a crushing anticipation of calamity", "source_chunk": "jekyll_hyde-37"}
{"type": "setting", "entity": null, "text": "square full of wind and dust with thin trees lashing along the railing", "source_chunk": "jekyll_hyde-37"}
{"type": "event", "entity": "Poole", "text": "Poole showed signs of strangling anguish", "source_chunk": "jekyll_hyde-37"}
{"type": "organization", "entity": "servants", "text": "servants stood huddled together like a flock of sheep", "source_chunk": "jekyll_hyde-37"}
{"type": "event", "entity": "Mr", "text": "housemaid broke into hysterical whimpering upon seeing Mr. Utterson", "source_chunk": "jekyll_hyde-37"}
{"type": "event", "entity": "Housemaid", "text": "Housemaid broke into hysterical whimpering.", "source_chunk": "jekyll_hyde-38"}
{"type": "event", "entity": "Cook", "text": "Cook cried out in relief upon seeing Mr. Utterson.", "source_chunk": "jekyll_hyde-38"}
{"type": "event", "entity": "Poole", "text": "Poole indicated that everyone was afraid.", "source_chunk": "jekyll_hyde-38"}
{"type": "event", "entity": "Maid", "text": "Maid wept loudly, causing a reaction from others.", "source_chunk": "jekyll_hyde-38"}
{"type": "event", "entity": "Poole", "text": "Poole commanded the maid to be quiet.", "source_chunk": "jekyll_hyde-38"}
{"type": "event", "entity": "Poole", "text": "Poole asked the knife-boy for a candle.", "source_chunk": "jekyll_hyde-38"}
{"type": "event", "entity": "Poole", "text": "Poole warned Mr. Utterson not to enter if asked.", "source_chunk": "jekyll_hyde-38"}
{"type": "location", "entity": "laboratory building", "text": "Mr. Utterson followed Poole into the laboratory building.", "source_chunk": "jekyll_hyde-38"}
{"type": "location", "entity": "surgical theatre", "text": "They passed through the surgical theatre.", "source_chunk": "jekyll_hyde-38"}
{"type": "event", "entity": "Poole", "text": "Poole knocked on the cabinet door.", "source_chunk": "jekyll_hyde-38"}
{"type": "event", "entity": null, "text": "A voice from within the cabinet refused to see anyone.", "source_chunk": "jekyll_hyde-38"}
{"type": "event", "entity": "Master", "text": "Master made away with eight days ago, leading to strange occurrences.", "source_chunk": "jekyll_hyde-39"}
{"type": "rule", "entity": "Master", "text": "Master's voice is recognized by the butler, indicating familiarity and trust.", "source_chunk": "jekyll_hyde-39"}
{"type": "setting", "entity": "Great", "text": "Great kitchen with an out fire and leaping beetles on the floor.", "source_chunk": "jekyll_hyde-39"}
{"type": "event", "entity": "Crying", "text": "Crying for medicine from the entity in the cabinet, indicating desperation.", "source_chunk": "jekyll_hyde-39"}
{"type": "organization", "entity": "wholesale chemists", "text": "Orders sent to various chemists in town for specific medicine.", "source_chunk": "jekyll_hyde-39"}
{"type": "event", "entity": "Papers", "text": "Papers left with orders and complaints, indicating a sense of urgency.", "source_chunk": "jekyll_hyde-39"}
{"type": "event", "entity": "Dr", "text": "Dr. Jekyll requests a search for a specific drug due to previous samples being impure.", "source_chunk": "jekyll_hyde-40"}
{"type": "rule", "entity": "Dr", "text": "Dr. Jekyll emphasizes the importance of obtaining pure drug samples.", "source_chunk": "jekyll_hyde-40"}
{"type": "organization", "entity": "Messrs. Maw", "text": "Dr. Jekyll communicates with Messrs. Maw regarding the quality of drug samples.", "source_chunk": "jekyll_hyde-40"}
{"type": "setting", "entity": "theatre", "text": "Poole describes entering the theatre from the garden where he saw Dr. Jekyll.", "source_chunk": "jekyll_hyde-40"}
{"type": "event", "entity": "Poole", "text": "Poole witnesses Dr. Jekyll in a state of distress while searching for the drug.", "source_chunk": "jekyll_hyde-40"}
{"type": "event", "entity": "Dr", "text": "Dr. Jekyll is seen wearing a mask, raising concerns about his identity.", "source_chunk": "jekyll_hyde-40"}
{"type": "event", "entity": "Poole", "text": "Poole witnesses a masked figure that he believes is not his master.", "source_chunk": "jekyll_hyde-41"}
{"type": "rule", "entity": "Utterson", "text": "Utterson feels a duty to investigate the truth behind the masked figure.", "source_chunk": "jekyll_hyde-41"}
{"type": "setting", "entity": "cabinet", "text": "The scene takes place in a cabinet where the masked figure is seen.", "source_chunk": "jekyll_hyde-41"}
{"type": "organization", "entity": "lawyer", "text": "Utterson is identified as a lawyer who is concerned about his friend's well-being.", "source_chunk": "jekyll_hyde-41"}
{"type": "event", "entity": "Poole", "text": "Poole expresses belief that murder has occurred.", "source_chunk": "jekyll_hyde-41"}
{"type": "rule", "entity": "Poole", "text": "Poole asserts his long service allows him to recognize his master.", "source_chunk": "jekyll_hyde-41"}
{"type": "event", "entity": "Utterson", "text": "Utterson and Poole prepare to break down a door.", "source_chunk": "jekyll_hyde-42"}
{"type": "event", "entity": "Utterson", "text": "Utterson and Poole discuss the presence of a masked figure.", "source_chunk": "jekyll_hyde-42"}
{"type": "organization", "entity": "theatre", "text": "An axe is mentioned to be in the theatre.", "source_chunk": "jekyll_hyde-42"}
{"type": "rule", "entity": "Utterson", "text": "Utterson expresses duty to ensure Poole is not a loser in their perilous situation.", "source_chunk": "jekyll_hyde-42"}
{"type": "location", "entity": "laboratory", "text": "The laboratory door is referenced as a point of entry for Mr. Hyde.", "source_chunk": "jekyll_hyde-42"}
{"type": "event", "entity": "Mr. Hyde", "text": "Poole suspects the masked figure to be Mr. Hyde.", "source_chunk": "jekyll_hyde-42"}
{"type": "event", "entity": "Utterson", "text": "Utterson acknowledges feeling something unsettling about Mr. Hyde.", "source_chunk": "jekyll_hyde-42"}
{"type": "event", "entity": "Poole", "text": "Poole describes a masked figure resembling a monkey jumping from among chemicals.", "source_chunk": "jekyll_hyde-43"}
{"type": "event", "entity": "Mr. Hyde", "text": "Poole believes the masked figure was Mr. Hyde.", "source_chunk": "jekyll_hyde-43"}
{"type": "event", "entity": "Harry", "text": "Lawyer fears that Harry is killed and believes his murderer is still present.", "source_chunk": "jekyll_hyde-43"}
{"type": "rule", "entity": "Lawyer", "text": "Lawyer intends to force entry into the cabinet to confront the situation.", "source_chunk": "jekyll_hyde-43"}
{"type": "location", "entity": "laboratory", "text": "Bradshaw and the boy are instructed to guard the laboratory door.", "source_chunk": "jekyll_hyde-43"}
{"type": "setting", "entity": "London", "text": "London is described as humming solemnly around the characters.", "source_chunk": "jekyll_hyde-43"}
{"type": "event", "entity": "Characters", "text": "Characters wait silently in the shelter of the theatre.", "source_chunk": "jekyll_hyde-43"}
{"type": "event", "entity": "Footfall", "text": "Footfall moving to and fro along the cabinet floor.", "source_chunk": "jekyll_hyde-44"}
{"type": "event", "entity": "Poole", "text": "Poole mentions a break when a new sample comes from the chemist.", "source_chunk": "jekyll_hyde-44"}
{"type": "event", "entity": "Poole", "text": "Poole hears weeping, described as like a woman or a lost soul.", "source_chunk": "jekyll_hyde-44"}
{"type": "event", "entity": "Utterson", "text": "Utterson demands to see Jekyll, threatening to use brute force.", "source_chunk": "jekyll_hyde-44"}
{"type": "event", "entity": "Utterson", "text": "Utterson recognizes Hyde's voice instead of Jekyll's.", "source_chunk": "jekyll_hyde-44"}
{"type": "event", "entity": "Poole", "text": "Poole swings an axe to break down the door.", "source_chunk": "jekyll_hyde-44"}
{"type": "setting", "entity": "Quiet", "text": "Quiet of the night.", "source_chunk": "jekyll_hyde-44"}
{"type": "location", "entity": "cabinet", "text": "Footfall and weeping occur in the cabinet.", "source_chunk": "jekyll_hyde-44"}
{"type": "event", "entity": "Besiegers", "text": "Besiegers broke down the door of a cabinet.", "source_chunk": "jekyll_hyde-45"}
{"type": "setting", "entity": "cabinet", "text": "Cabinet contained a body, a fire glowing, and items laid out for tea.", "source_chunk": "jekyll_hyde-45"}
{"type": "event", "entity": "Edward Hyde", "text": "Body of Edward Hyde was found, contorted and still twitching.", "source_chunk": "jekyll_hyde-45"}
{"type": "rule", "entity": "Utterson", "text": "Utterson stated they had come too late to save or punish Hyde.", "source_chunk": "jekyll_hyde-45"}
{"type": "location", "entity": "theatre", "text": "Building occupied by a theatre and a cabinet.", "source_chunk": "jekyll_hyde-45"}
{"type": "location", "entity": "London", "text": "Setting described as commonplace that night in London.", "source_chunk": "jekyll_hyde-45"}
{"type": "location", "entity": "theatre", "text": "The theatre to the door on the by-street.", "source_chunk": "jekyll_hyde-46"}
{"type": "location", "entity": "cellar", "text": "Cellar filled with crazy lumber, mostly dating from the times of the surgeon who was Jekyll’s predecessor.", "source_chunk": "jekyll_hyde-46"}
{"type": "event", "entity": "Thorough", "text": "Thorough examination of empty closets and a cellar sealed by cobweb.", "source_chunk": "jekyll_hyde-46"}
{"type": "event", "entity": "Discovery", "text": "Discovery of a locked door in the by-street with a rusty key nearby.", "source_chunk": "jekyll_hyde-46"}
{"type": "event", "entity": "Traces", "text": "Traces of chemical work found in the cabinet.", "source_chunk": "jekyll_hyde-46"}
{"type": "event", "entity": "Kettle", "text": "Kettle boiled over, indicating recent activity at the fireside.", "source_chunk": "jekyll_hyde-46"}
{"type": "setting", "entity": "Fireside", "text": "Fireside with easy-chair and tea things ready", "source_chunk": "jekyll_hyde-47"}
{"type": "event", "entity": "Jekyll", "text": "Jekyll expressed great esteem for a pious work, annotated with blasphemies", "source_chunk": "jekyll_hyde-47"}
{"type": "event", "entity": "Poole", "text": "Poole whispers about the cheval-glass having seen strange things", "source_chunk": "jekyll_hyde-47"}
{"type": "event", "entity": "Utterson", "text": "Utterson finds a will naming him instead of Edward Hyde", "source_chunk": "jekyll_hyde-47"}
{"type": "rule", "entity": "Will", "text": "Will serves as testament in case of death and deed of gift in case of disappearance", "source_chunk": "jekyll_hyde-47"}
{"type": "event", "entity": "Utterson", "text": "Utterson receives a note from Jekyll indicating his imminent disappearance.", "source_chunk": "jekyll_hyde-48"}
{"type": "event", "entity": "Utterson", "text": "Utterson and Poole discuss the implications of Jekyll's potential suicide.", "source_chunk": "jekyll_hyde-48"}
{"type": "organization", "entity": "police", "text": "Utterson plans to send for the police after reading the documents.", "source_chunk": "jekyll_hyde-48"}
{"type": "setting", "entity": "theatre", "text": "Utterson and Poole lock the door of the theatre behind them.", "source_chunk": "jekyll_hyde-48"}
{"type": "rule", "entity": "Utterson", "text": "Utterson decides to keep the contents of the paper secret to protect Jekyll's credit.", "source_chunk": "jekyll_hyde-48"}
{"type": "event", "entity": "Letter", "text": "Letter received by Dr. Lanyon from Henry Jekyll on January 9.", "source_chunk": "jekyll_hyde-49"}
{"type": "event", "entity": "Jekyll", "text": "Jekyll expresses urgency and desperation in letter.", "source_chunk": "jekyll_hyde-49"}
{"type": "rule", "entity": "Jekyll", "text": "Jekyll requests Lanyon to prioritize his request over other engagements.", "source_chunk": "jekyll_hyde-49"}
{"type": "location", "entity": "Jekyll's house", "text": "Lanyon instructed to go to Jekyll's house.", "source_chunk": "jekyll_hyde-49"}
{"type": "organization", "entity": "Poole", "text": "Poole, Jekyll's butler, is involved in the plan.", "source_chunk": "jekyll_hyde-49"}
{"type": "setting", "entity": "cabinet", "text": "Lanyon directed to force open Jekyll's cabinet.", "source_chunk": "jekyll_hyde-49"}
{"type": "event", "entity": "Lanyon", "text": "Lanyon to retrieve specific items from Jekyll's cabinet.", "source_chunk": "jekyll_hyde-49"}
{"type": "location", "entity": "Cavendish Square", "text": "Drawer to be carried back to Cavendish Square exactly as it stands.", "source_chunk": "jekyll_hyde-50"}
{"type": "event", "entity": "Request", "text": "Request to be alone in consulting room at midnight.", "source_chunk": "jekyll_hyde-50"}
{"type": "rule", "entity": "Must", "text": "Must admit a man presenting himself in the name of the sender.", "source_chunk": "jekyll_hyde-50"}
{"type": "event", "entity": "Failure", "text": "Failure to follow arrangements could lead to death or shipwreck of reason.", "source_chunk": "jekyll_hyde-50"}
{"type": "organization", "entity": "post-office", "text": "Concern about the post-office failing to deliver the letter.", "source_chunk": "jekyll_hyde-50"}
{"type": "event", "entity": "Letter", "text": "Letter may not reach recipient until next morning.", "source_chunk": "jekyll_hyde-51"}
{"type": "event", "entity": "Henry Jekyll", "text": "If night passes without event, last seen of Henry Jekyll.", "source_chunk": "jekyll_hyde-51"}
{"type": "location", "entity": "Jekyll’s house", "text": "Colleague drove straight to Jekyll’s house.", "source_chunk": "jekyll_hyde-51"}
{"type": "organization", "entity": "Cavendish Square", "text": "Returned with drawer to Cavendish Square.", "source_chunk": "jekyll_hyde-51"}
{"type": "setting", "entity": "Dr. Denman’s surgical theatre", "text": "Private cabinet conveniently entered from Dr. Denman’s surgical theatre.", "source_chunk": "jekyll_hyde-51"}
{"type": "rule", "entity": "Colleague", "text": "Colleague felt bound to do as requested despite doubts.", "source_chunk": "jekyll_hyde-51"}
{"type": "event", "entity": "Butler", "text": "Butler received registered letter of instruction.", "source_chunk": "jekyll_hyde-51"}
{"type": "event", "entity": "Locksmith", "text": "Locksmith and carpenter called to assist with door.", "source_chunk": "jekyll_hyde-51"}
{"type": "event", "entity": "Door", "text": "Door opened after two hours of work.", "source_chunk": "jekyll_hyde-51"}
{"type": "event", "entity": "Contents", "text": "Contents of drawer examined, revealing private manufacture.", "source_chunk": "jekyll_hyde-51"}
{"type": "setting", "entity": "London", "text": "Twelve o’clock had scarce rung out over London", "source_chunk": "jekyll_hyde-52"}
{"type": "event", "entity": "arrival of messenger", "text": "knocker sounded very gently on the door", "source_chunk": "jekyll_hyde-52"}
{"type": "organization", "entity": "Dr. Jekyll", "text": "Are you come from Dr. Jekyll?", "source_chunk": "jekyll_hyde-52"}
{"type": "rule", "entity": null, "text": "received by me in secret", "source_chunk": "jekyll_hyde-52"}
{"type": "event", "entity": "cerebral disease", "text": "dealing with a case of cerebral disease", "source_chunk": "jekyll_hyde-52"}
{"type": "location", "entity": "portico", "text": "small man crouching against the pillars of the portico", "source_chunk": "jekyll_hyde-52"}
{"type": "event", "entity": "self-defence", "text": "loaded an old revolver, that I might be found in some posture of self-defence", "source_chunk": "jekyll_hyde-52"}
{"type": "event", "entity": "Visitor", "text": "Visitor enters consulting room after a searching glance into the darkness.", "source_chunk": "jekyll_hyde-53"}
{"type": "location", "entity": "consulting room", "text": "Bright light of the consulting room contrasts with the darkness of the square.", "source_chunk": "jekyll_hyde-53"}
{"type": "organization", "entity": "police", "text": "Policeman advancing with a bull’s eye open.", "source_chunk": "jekyll_hyde-53"}
{"type": "rule", "entity": "Presence", "text": "Presence of policeman causes visitor to start and make greater haste.", "source_chunk": "jekyll_hyde-53"}
{"type": "setting", "entity": "Atmosphere", "text": "Atmosphere described as having a marked sinking of the pulse and incipient rigour.", "source_chunk": "jekyll_hyde-53"}
{"type": "event", "entity": "Visitor", "text": "Visitor's appearance causes disgustful curiosity.", "source_chunk": "jekyll_hyde-53"}
{"type": "setting", "entity": "Visitor", "text": "Visitor's clothing is described as ludicrous and abnormal.", "source_chunk": "jekyll_hyde-53"}
{"type": "event", "entity": "Visitor", "text": "Visitor expresses impatience and urgency regarding a piece of business.", "source_chunk": "jekyll_hyde-54"}
{"type": "organization", "entity": "Dr. Henry Jekyll", "text": "Visitor comes at the instance of Dr. Henry Jekyll.", "source_chunk": "jekyll_hyde-54"}
{"type": "setting", "entity": "Interaction", "text": "Interaction occurs in a private space with a drawer covered by a sheet.", "source_chunk": "jekyll_hyde-54"}
{"type": "rule", "entity": "Politeness", "text": "Politeness is expected in social interactions, as noted by the visitor's apology.", "source_chunk": "jekyll_hyde-54"}
{"type": "event", "entity": "Visitor", "text": "Visitor experiences physical symptoms of anxiety and hysteria.", "source_chunk": "jekyll_hyde-54"}
{"type": "event", "entity": "Visitor", "text": "Visitor experiences immense relief upon uncovering the contents.", "source_chunk": "jekyll_hyde-55"}
{"type": "event", "entity": "Visitor", "text": "Visitor prepares a chemical mixture that changes color and effervesces.", "source_chunk": "jekyll_hyde-55"}
{"type": "rule", "entity": "Decision", "text": "Decision to allow visitor to leave with the glass or to pursue knowledge.", "source_chunk": "jekyll_hyde-55"}
{"type": "setting", "entity": "Interaction", "text": "Interaction occurs in a room with a table and a graduated glass.", "source_chunk": "jekyll_hyde-55"}
{"type": "organization", "entity": "Knowledge", "text": "Knowledge and power are presented as rewards for curiosity.", "source_chunk": "jekyll_hyde-55"}
{"type": "event", "entity": null, "text": "A visitor drinks from a glass, leading to a transformation.", "source_chunk": "jekyll_hyde-56"}
{"type": "event", "entity": "Henry Jekyll", "text": "Henry Jekyll appears transformed after the visitor drinks.", "source_chunk": "jekyll_hyde-56"}
{"type": "rule", "entity": "Vows", "text": "Vows are mentioned, indicating a code of conduct in a profession.", "source_chunk": "jekyll_hyde-56"}
{"type": "setting", "entity": "The", "text": "The scene takes place in a room.", "source_chunk": "jekyll_hyde-56"}
{"type": "location", "entity": null, "text": "A new province of knowledge is suggested to be accessible.", "source_chunk": "jekyll_hyde-56"}
{"type": "event", "entity": "The", "text": "The narrator experiences terror and disbelief after witnessing the transformation.", "source_chunk": "jekyll_hyde-56"}
{"type": "event", "entity": "Hyde", "text": "Hyde known as the murderer of Carew.", "source_chunk": "jekyll_hyde-57"}
{"type": "rule", "entity": "Moral", "text": "Moral turpitude causes horror and incredulity.", "source_chunk": "jekyll_hyde-57"}
{"type": "setting", "entity": "Deadliest", "text": "Deadliest terror present at all hours.", "source_chunk": "jekyll_hyde-57"}
{"type": "event", "entity": "Days", "text": "Days are numbered and death is imminent.", "source_chunk": "jekyll_hyde-57"}
{"type": "event", "entity": "Birth", "text": "Birth to a large fortune and excellent parts.", "source_chunk": "jekyll_hyde-58"}
{"type": "rule", "entity": "Concealment", "text": "Concealment of pleasures due to high aspirations.", "source_chunk": "jekyll_hyde-58"}
{"type": "setting", "entity": "Reflection", "text": "Reflection on progress and position in the world.", "source_chunk": "jekyll_hyde-58"}
{"type": "rule", "entity": "Morbid", "text": "Morbid sense of shame regarding faults.", "source_chunk": "jekyll_hyde-58"}
{"type": "event", "entity": "Commitment", "text": "Commitment to a profound duplicity of life.", "source_chunk": "jekyll_hyde-58"}
{"type": "rule", "entity": "Severance", "text": "Severance of good and ill within man's dual nature.", "source_chunk": "jekyll_hyde-58"}
{"type": "rule", "entity": "Reflection", "text": "Reflection on the hard law of life related to religion.", "source_chunk": "jekyll_hyde-58"}
{"type": "event", "entity": "Scientific", "text": "Scientific studies leading towards the mystic and transcendental.", "source_chunk": "jekyll_hyde-58"}
{"type": "event", "entity": "Discovery", "text": "Discovery of the duality of man leading to a moral and intellectual struggle.", "source_chunk": "jekyll_hyde-59"}
{"type": "rule", "entity": "Man", "text": "Man is not truly one, but truly two, representing a duality in nature.", "source_chunk": "jekyll_hyde-59"}
{"type": "setting", "entity": "Consciousness", "text": "Consciousness as a battleground for conflicting moral and intellectual natures.", "source_chunk": "jekyll_hyde-59"}
{"type": "concept", "entity": "Separation", "text": "Separation of moral and immoral identities to relieve life's burdens.", "source_chunk": "jekyll_hyde-59"}
{"type": "organization", "entity": "Future", "text": "Future scientific advancements will further explore the duality of man.", "source_chunk": "jekyll_hyde-59"}
{"type": "rule", "entity": "Doom", "text": "Doom and burden of life is bound for ever on man's shoulders.", "source_chunk": "jekyll_hyde-60"}
{"type": "event", "entity": "Attempt", "text": "Attempt to cast off life's burden returns with more pressure.", "source_chunk": "jekyll_hyde-60"}
{"type": "setting", "entity": "laboratory", "text": "Side light began to shine upon the subject from the laboratory table.", "source_chunk": "jekyll_hyde-60"}
{"type": "event", "entity": "Discovery", "text": "Discovery of a drug that controls identity.", "source_chunk": "jekyll_hyde-60"}
{"type": "rule", "entity": "Risk", "text": "Risk of death from drug that controls identity.", "source_chunk": "jekyll_hyde-60"}
{"type": "event", "entity": "Hesitation", "text": "Hesitation before testing the theory of identity change.", "source_chunk": "jekyll_hyde-60"}
{"type": "event", "entity": "Compounded", "text": "Compounded elements and drank potion leading to transformation.", "source_chunk": "jekyll_hyde-61"}
{"type": "setting", "entity": "Nighttime", "text": "Nighttime, with inmates locked in slumber.", "source_chunk": "jekyll_hyde-61"}
{"type": "rule", "entity": "Discovery", "text": "Discovery of a profound potion leads to a moral and physical transformation.", "source_chunk": "jekyll_hyde-61"}
{"type": "location", "entity": "Room", "text": "Room without a mirror, later brought for transformations.", "source_chunk": "jekyll_hyde-61"}
{"type": "event", "entity": "Experiencing", "text": "Experiencing sensations of youth, lightness, and wickedness after potion.", "source_chunk": "jekyll_hyde-61"}
{"type": "setting", "entity": "house", "text": "House was locked in rigorous hours of slumber.", "source_chunk": "jekyll_hyde-62"}
{"type": "event", "entity": "appearance of Edward Hyde", "text": "First time seeing the appearance of Edward Hyde.", "source_chunk": "jekyll_hyde-62"}
{"type": "rule", "entity": "Evil", "text": "Evil side of nature was less robust and developed than good side.", "source_chunk": "jekyll_hyde-62"}
{"type": "rule", "entity": "Evil", "text": "Evil is considered the lethal side of man.", "source_chunk": "jekyll_hyde-62"}
{"type": "location", "entity": "corridors", "text": "Stole through the corridors, feeling like a stranger in own house.", "source_chunk": "jekyll_hyde-62"}
{"type": "organization", "entity": "Human", "text": "Human beings are commingled out of good and evil.", "source_chunk": "jekyll_hyde-62"}
{"type": "event", "entity": "Wearing", "text": "Wearing semblance of Edward Hyde caused visible misgiving in others.", "source_chunk": "jekyll_hyde-62"}
{"type": "rule", "entity": "Human", "text": "Human beings are commingled out of good and evil.", "source_chunk": "jekyll_hyde-63"}
{"type": "event", "entity": "experiment", "text": "Conclusive experiment to determine loss of identity.", "source_chunk": "jekyll_hyde-63"}
{"type": "setting", "entity": "cabinet", "text": "Preparation and consumption of the transformative drug.", "source_chunk": "jekyll_hyde-63"}
{"type": "event", "entity": "cross-roads", "text": "Moment of decision regarding the nature of the experiment.", "source_chunk": "jekyll_hyde-63"}
{"type": "rule", "entity": "Drug", "text": "Drug has no discriminating action; it reveals true nature.", "source_chunk": "jekyll_hyde-63"}
{"type": "organization", "entity": "Philippi", "text": "Reference to captives of Philippi to illustrate transformation.", "source_chunk": "jekyll_hyde-63"}
{"type": "event", "entity": "new power", "text": "Temptation leading to moral decline.", "source_chunk": "jekyll_hyde-63"}
{"type": "setting", "entity": "Life", "text": "Life of study perceived as dry and unwelcome.", "source_chunk": "jekyll_hyde-63"}
{"type": "location", "entity": "Soho", "text": "Took and furnished that house in Soho, to which Hyde was tracked by the police.", "source_chunk": "jekyll_hyde-64"}
{"type": "event", "entity": "Drank", "text": "Drank the cup to doff the body of the noted professor and assume that of Edward Hyde.", "source_chunk": "jekyll_hyde-64"}
{"type": "organization", "entity": "police", "text": "Hyde was tracked by the police.", "source_chunk": "jekyll_hyde-64"}
{"type": "rule", "entity": "Drew", "text": "Drew up a will to enter on that of Edward Hyde without pecuniary loss.", "source_chunk": "jekyll_hyde-64"}
{"type": "event", "entity": "First", "text": "First to hire bravos for pleasures while maintaining public respectability.", "source_chunk": "jekyll_hyde-64"}
{"type": "setting", "entity": "Laboratory", "text": "Laboratory door where the draught was mixed and swallowed.", "source_chunk": "jekyll_hyde-64"}
{"type": "location", "entity": null, "text": "study", "source_chunk": "jekyll_hyde-65"}
{"type": "event", "entity": "Edward Hyde", "text": "acts of Edward Hyde centered on self and drinking pleasure with bestial avidity", "source_chunk": "jekyll_hyde-65"}
{"type": "rule", "entity": null, "text": "situation was apart from ordinary laws, insidiously relaxed the grasp of conscience", "source_chunk": "jekyll_hyde-65"}
{"type": "organization", "entity": "doctor", "text": "doctor and the child’s family joined in anger against Edward Hyde", "source_chunk": "jekyll_hyde-65"}
{"type": "event", "entity": null, "text": "act of cruelty to a child aroused anger of a passer-by", "source_chunk": "jekyll_hyde-65"}
{"type": "event", "entity": "Henry Jekyll", "text": "Edward Hyde paid in a cheque drawn in the name of Henry Jekyll", "source_chunk": "jekyll_hyde-65"}
{"type": "event", "entity": "Edward Hyde", "text": "Edward Hyde pacifies resentment by paying with a cheque drawn in the name of Henry Jekyll.", "source_chunk": "jekyll_hyde-66"}
{"type": "event", "entity": "Edward Hyde", "text": "Edward Hyde opens an account at another bank to eliminate future dangers.", "source_chunk": "jekyll_hyde-66"}
{"type": "setting", "entity": "Soho", "text": "Edward Hyde is accustomed to sleep in a little room in Soho.", "source_chunk": "jekyll_hyde-66"}
{"type": "setting", "entity": "mid-London", "text": "The scene takes place in mid-London during the morning.", "source_chunk": "jekyll_hyde-66"}
{"type": "rule", "entity": "Edward Hyde", "text": "Edward Hyde uses a signature supplied by Henry Jekyll to operate beyond the reach of fate.", "source_chunk": "jekyll_hyde-66"}
{"type": "event", "entity": "Sir Danvers", "text": "Murder of Sir Danvers occurs two months after the events described.", "source_chunk": "jekyll_hyde-66"}
{"type": "setting", "entity": "Henry Jekyll", "text": "Description of Henry Jekyll's hand as professional in shape and size.", "source_chunk": "jekyll_hyde-66"}
{"type": "setting", "entity": "Edward Hyde", "text": "Description of Edward Hyde's hand as lean, corded, knuckly, and dusky.", "source_chunk": "jekyll_hyde-66"}
{"type": "event", "entity": "transformation", "text": "Henry Jekyll awakens as Edward Hyde.", "source_chunk": "jekyll_hyde-67"}
{"type": "setting", "entity": "anatomical theatre", "text": "Location described as part of the journey to retrieve drugs.", "source_chunk": "jekyll_hyde-67"}
{"type": "rule", "entity": "Alteration", "text": "Alteration in stature cannot be concealed.", "source_chunk": "jekyll_hyde-67"}
{"type": "organization", "entity": "servants", "text": "Servants are accustomed to the coming and going of the second self.", "source_chunk": "jekyll_hyde-67"}
{"type": "event", "entity": "breakfast", "text": "Dr. Jekyll feigns breakfast after transformation.", "source_chunk": "jekyll_hyde-67"}
{"type": "rule", "entity": "Reflection", "text": "Reflection on the dangers of a double existence.", "source_chunk": "jekyll_hyde-67"}
{"type": "event", "entity": "danger", "text": "Concern about the balance of nature being permanently overthrown.", "source_chunk": "jekyll_hyde-67"}
{"type": "event", "entity": "Prolonged", "text": "Prolonged use of the drug risks permanent loss of original self.", "source_chunk": "jekyll_hyde-68"}
{"type": "rule", "entity": "Power", "text": "Power of voluntary change can be forfeited.", "source_chunk": "jekyll_hyde-68"}
{"type": "setting", "entity": "Edward Hyde", "text": "Character of Edward Hyde may become irrevocably dominant.", "source_chunk": "jekyll_hyde-68"}
{"type": "event", "entity": "Drug", "text": "Drug effectiveness has varied; early failure led to increased dosage.", "source_chunk": "jekyll_hyde-68"}
{"type": "rule", "entity": "Choice", "text": "Choice between two natures leads to loss of original self.", "source_chunk": "jekyll_hyde-68"}
{"type": "organization", "entity": "Jekyll", "text": "Jekyll represents the original self with sensitive apprehensions.", "source_chunk": "jekyll_hyde-68"}
{"type": "organization", "entity": "Hyde", "text": "Hyde represents the indulgent, indifferent side of the character.", "source_chunk": "jekyll_hyde-68"}
{"type": "event", "entity": "Choosing Jekyll", "text": "Choosing Jekyll means sacrificing indulgent appetites.", "source_chunk": "jekyll_hyde-68"}
{"type": "event", "entity": "Choosing Hyde", "text": "Choosing Hyde means losing interests and becoming friendless.", "source_chunk": "jekyll_hyde-68"}
{"type": "event", "entity": "Choice", "text": "Choice made between the life of Jekyll and Hyde.", "source_chunk": "jekyll_hyde-69"}
{"type": "rule", "entity": "Temptation", "text": "Temptation and moral struggle are common to humanity.", "source_chunk": "jekyll_hyde-69"}
{"type": "setting", "entity": "Soho", "text": "House in Soho remains as a reminder of Hyde.", "source_chunk": "jekyll_hyde-69"}
{"type": "event", "entity": "Two", "text": "Two months of strict adherence to a moral life.", "source_chunk": "jekyll_hyde-69"}
{"type": "event", "entity": "Return", "text": "Return to indulgence with the consumption of the transforming draught.", "source_chunk": "jekyll_hyde-69"}
{"type": "rule", "entity": "Moral", "text": "Moral insensibility leads to punishment.", "source_chunk": "jekyll_hyde-69"}
{"type": "organization", "entity": "conscience", "text": "Conscience initially provides approval but becomes routine.", "source_chunk": "jekyll_hyde-69"}
{"type": "rule", "entity": "Moral", "text": "Moral insensibility and readiness to evil are leading characters.", "source_chunk": "jekyll_hyde-70"}
{"type": "event", "entity": "Transformation", "text": "Transformation into Edward Hyde leads to violent behavior.", "source_chunk": "jekyll_hyde-70"}
{"type": "setting", "entity": "Soho", "text": "Scene of fleeing after committing a crime.", "source_chunk": "jekyll_hyde-70"}
{"type": "event", "entity": "Destruction", "text": "Destruction of papers to cover up actions.", "source_chunk": "jekyll_hyde-70"}
{"type": "event", "entity": "Gloating", "text": "Gloating over crime while fearing retribution.", "source_chunk": "jekyll_hyde-70"}
{"type": "rule", "entity": "Temptation", "text": "Temptation leads to inevitable moral failure.", "source_chunk": "jekyll_hyde-70"}
{"type": "event", "entity": "Pledge", "text": "Pledge made to the dead man during a moment of transformation.", "source_chunk": "jekyll_hyde-71"}
{"type": "event", "entity": "Henry Jekyll", "text": "Henry Jekyll falls to his knees in gratitude and remorse.", "source_chunk": "jekyll_hyde-71"}
{"type": "rule", "entity": "Self", "text": "Self-indulgence is renounced and replaced with humility and restrictions of natural life.", "source_chunk": "jekyll_hyde-71"}
{"type": "event", "entity": "News", "text": "News of a murder linked to Hyde, a man of public estimation.", "source_chunk": "jekyll_hyde-71"}
{"type": "location", "entity": "city of refuge", "text": "Jekyll serves as a refuge from Hyde.", "source_chunk": "jekyll_hyde-71"}
{"type": "event", "entity": "Resolve", "text": "Resolve to redeem the past and relieve suffering.", "source_chunk": "jekyll_hyde-71"}
{"type": "event", "entity": "Resolve", "text": "Resolve was fruitful of some good; laboured to relieve suffering.", "source_chunk": "jekyll_hyde-72"}
{"type": "setting", "entity": "Regent’s Park", "text": "Regent’s Park was full of winter chirrupings and sweet with spring odours.", "source_chunk": "jekyll_hyde-72"}
{"type": "rule", "entity": "Cursed", "text": "Cursed with duality of purpose; temptation to trifle with conscience.", "source_chunk": "jekyll_hyde-72"}
{"type": "event", "entity": "Fall", "text": "Fall seemed natural, like a return to old days before discovery.", "source_chunk": "jekyll_hyde-72"}
{"type": "event", "entity": "Comparison", "text": "Comparison with neighbours; active good-will versus lazy cruelty.", "source_chunk": "jekyll_hyde-72"}
{"type": "emotion", "entity": "Felt", "text": "Felt a horrid nausea and deadly shuddering.", "source_chunk": "jekyll_hyde-72"}
{"type": "event", "entity": "Transformation", "text": "Transformation from Jekyll to Hyde, leading to a change in thoughts and feelings.", "source_chunk": "jekyll_hyde-73"}
{"type": "setting", "entity": "Portland Street", "text": "Location where Hyde drives to an hotel.", "source_chunk": "jekyll_hyde-73"}
{"type": "rule", "entity": "Hyde", "text": "Hyde is a known murderer and hunted by mankind.", "source_chunk": "jekyll_hyde-73"}
{"type": "organization", "entity": "Lanyon", "text": "Thought of Lanyon as a means to access Jekyll's cabinet.", "source_chunk": "jekyll_hyde-73"}
{"type": "event", "entity": "Hyde", "text": "Hyde's struggle to obtain drugs from Jekyll's cabinet.", "source_chunk": "jekyll_hyde-73"}
{"type": "setting", "entity": "Hyde", "text": "Hyde's laboratory door is closed, preventing access.", "source_chunk": "jekyll_hyde-73"}
{"type": "rule", "entity": "Hyde", "text": "Hyde must employ another hand to retrieve the drugs.", "source_chunk": "jekyll_hyde-73"}
{"type": "location", "entity": "Portland Street", "text": "Hotel located in Portland Street.", "source_chunk": "jekyll_hyde-74"}
{"type": "setting", "entity": "Private", "text": "Private room in an inn where the character sat alone.", "source_chunk": "jekyll_hyde-74"}
{"type": "event", "entity": "Character", "text": "Character composed two important letters to Lanyon and Poole.", "source_chunk": "jekyll_hyde-74"}
{"type": "event", "entity": "Character", "text": "Character sat over the fire, gnawing nails, and dined alone.", "source_chunk": "jekyll_hyde-74"}
{"type": "event", "entity": "Character", "text": "Character discharged the cab and ventured on foot.", "source_chunk": "jekyll_hyde-74"}
{"type": "rule", "entity": "Character", "text": "Character's appearance caused attendants to tremble and act obsequiously.", "source_chunk": "jekyll_hyde-74"}
{"type": "event", "entity": "Character", "text": "Character felt fear and hatred, marked out for observation.", "source_chunk": "jekyll_hyde-74"}
{"type": "event", "entity": null, "text": "A woman offered a box of lights but was smote in the face.", "source_chunk": "jekyll_hyde-75"}
{"type": "event", "entity": "Lanyon", "text": "Condemnation received partly in a dream.", "source_chunk": "jekyll_hyde-75"}
{"type": "setting", "entity": "home", "text": "Character felt gratitude for escape while at home.", "source_chunk": "jekyll_hyde-75"}
{"type": "rule", "entity": "Character", "text": "Character experiences a change from fear of gallows to horror of being Hyde.", "source_chunk": "jekyll_hyde-75"}
{"type": "event", "entity": "Indescribable", "text": "Indescribable sensations heralded a change, leading to a return of Hyde.", "source_chunk": "jekyll_hyde-75"}
{"type": "rule", "entity": "Only", "text": "Only under stimulation of the drug could the character maintain the countenance of Jekyll.", "source_chunk": "jekyll_hyde-75"}
{"type": "event", "entity": "Transformation", "text": "Transformation into Hyde occurs during sleep or when the drug's effects wear off.", "source_chunk": "jekyll_hyde-76"}
{"type": "setting", "entity": "State", "text": "State of continuous impending doom and sleeplessness.", "source_chunk": "jekyll_hyde-76"}
{"type": "rule", "entity": "Strain", "text": "Strain of transformation leads to physical and mental weakness.", "source_chunk": "jekyll_hyde-76"}
{"type": "event", "entity": "Awakening", "text": "Awakening as Hyde after dozing or sleeping.", "source_chunk": "jekyll_hyde-76"}
{"type": "rule", "entity": "Hyde", "text": "Hyde's powers grow as Jekyll's health declines.", "source_chunk": "jekyll_hyde-76"}
{"type": "event", "entity": "Jekyll", "text": "Jekyll experiences distress from the duality of his existence.", "source_chunk": "jekyll_hyde-76"}
{"type": "rule", "entity": "Hyde", "text": "Hyde is perceived as hellish and inorganic.", "source_chunk": "jekyll_hyde-76"}
{"type": "setting", "entity": "Jekyll", "text": "Jekyll feels a close, caged connection to Hyde.", "source_chunk": "jekyll_hyde-76"}
{"type": "event", "entity": "Hatred", "text": "Hatred of Hyde for Jekyll drives him to commit temporary suicide.", "source_chunk": "jekyll_hyde-77"}
{"type": "event", "entity": "Hyde", "text": "Hyde plays tricks, scrawling blasphemies and destroying letters.", "source_chunk": "jekyll_hyde-77"}
{"type": "event", "entity": "Jekyll", "text": "Jekyll's punishment might have continued for years without the last calamity.", "source_chunk": "jekyll_hyde-77"}
{"type": "event", "entity": "Jekyll", "text": "Jekyll's supply of salt runs low, affecting his experiments.", "source_chunk": "jekyll_hyde-77"}
{"type": "location", "entity": "London", "text": "Jekyll has had London ransacked for supplies.", "source_chunk": "jekyll_hyde-77"}
{"type": "rule", "entity": "Fear", "text": "Fear of death drives Hyde's actions and loathing of necessity.", "source_chunk": "jekyll_hyde-77"}
{"type": "setting", "entity": "Jekyll", "text": "Jekyll experiences a callousness of soul and acquiescence of despair.", "source_chunk": "jekyll_hyde-77"}
{"type": "event", "entity": "Henry Jekyll", "text": "Henry Jekyll finishing statement under influence of old powders.", "source_chunk": "jekyll_hyde-78"}
{"type": "event", "entity": "Henry Jekyll", "text": "Henry Jekyll fears transformation into Hyde while writing.", "source_chunk": "jekyll_hyde-78"}
{"type": "setting", "entity": "Room", "text": "Room described as last earthly refuge.", "source_chunk": "jekyll_hyde-78"}
{"type": "rule", "entity": "Combination", "text": "Combination of great prudence and great good luck has preserved narrative.", "source_chunk": "jekyll_hyde-78"}
{"type": "event", "entity": "Henry Jekyll", "text": "Henry Jekyll anticipates his own death and transformation.", "source_chunk": "jekyll_hyde-78"}
{"type": "organization", "entity": "London", "text": "London ransacked in search of supplies.", "source_chunk": "jekyll_hyde-78"}