-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathtest.txt
2717 lines (2717 loc) · 775 KB
/
test.txt
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
{"token": ["the", "most", "common", "audits", "were", "about", "waste", "and", "recycling", "."], "h": {"name": "audits", "pos": [3, 4]}, "t": {"name": "waste", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "thesis", "defines", "the", "clinical", "characteristics", "of", "amyloid", "disease", "."], "h": {"name": "thesis", "pos": [1, 2]}, "t": {"name": "clinical characteristics", "pos": [4, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "outline", "focuses", "on", "spirituality", ",", "esotericism", ",", "mysticism", ",", "religion", "and/or", "parapsychology", "."], "h": {"name": "outline", "pos": [1, 2]}, "t": {"name": "spirituality", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["many", "of", "his", "literary", "pieces", "narrate", "and", "mention", "stories", "that", "took", "place", "in", "lipa", "."], "h": {"name": "pieces", "pos": [4, 5]}, "t": {"name": "stories", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["news", "programs", "commented", "on", "the", "violence", "from", "the", "game", "and", "expressed", "worries", "on", "how", "it", "would", "affect", "the", "players", "'", "personalities", "."], "h": {"name": "news programs", "pos": [0, 2]}, "t": {"name": "violence", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["in", "the", "article", ",", "the", "authors", "explore", "the", "use", "of", "technology", "in", "small", "pharmacy", "chains", "."], "h": {"name": "article", "pos": [2, 3]}, "t": {"name": "use", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "magazine", "was", "founded", "in", "order", "to", "keep", "athletes", "serving", "as", "soldiers", "informed", "about", "their", "sport", "back", "home", "."], "h": {"name": "magazine", "pos": [1, 2]}, "t": {"name": "sport", "pos": [15, 16]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["many", "films", "have", "portrayed", "mental", "illness", "or", "used", "it", "as", "a", "backdrop", "for", "other", "themes", "."], "h": {"name": "films", "pos": [1, 2]}, "t": {"name": "mental illness", "pos": [4, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "volume", "analyzes", "central", "concepts", "of", "the", "contemporary", "political", "debate", "."], "h": {"name": "volume", "pos": [1, 2]}, "t": {"name": "concepts", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "aim", "of", "this", "section", "is", "the", "interpretation", "of", "the", "results", "and", "their", "relation", "to", "the", "existing", "knowledge", "."], "h": {"name": "section", "pos": [4, 5]}, "t": {"name": "interpretation", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["david", "mamet", "took", "questions", "from", "the", "audience", "and", "shared", "his", "views", "on", "topics", "such", "as", "television", ",", "the", "democracy", "of", "culture", "and", "the", "english", "accent", "."], "h": {"name": "views", "pos": [10, 11]}, "t": {"name": "television", "pos": [15, 16]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["additionally", ",", "the", "chapter", "points", "out", "the", "importance", "of", "new", "employee", "orientation", "and", "lists", "some", "of", "the", "important", "things", "to", "cover", "during", "that", "process", "."], "h": {"name": "chapter", "pos": [3, 4]}, "t": {"name": "importance", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "major", "theme", "of", "the", "book", "is", "the", "beauty", "of", "a", "dream", "."], "h": {"name": "book", "pos": [5, 6]}, "t": {"name": "beauty", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["his", "speech", "criticised", "the", "idea", "of", "religious", "education", "as", "a", "journey", "around", "the", "various", "religions", "."], "h": {"name": "speech", "pos": [1, 2]}, "t": {"name": "idea", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["he", "weaves", "complex", "tales", "concerning", "the", "romantic", "concerns", "of", "happiness", ",", "love", "and", "sufferance", "."], "h": {"name": "tales", "pos": [3, 4]}, "t": {"name": "concerns", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["several", "texts", "relate", "mythological", "anecdotes", "associated", "with", "his", "birth", "and", "exploits", "and", "explain", "his", "distinct", "iconography", "."], "h": {"name": "texts", "pos": [1, 2]}, "t": {"name": "anecdotes", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["these", "new", "documents", "point", "out", "a", "number", "of", "troubling", "strategies", "utilized", "by", "enron", "."], "h": {"name": "documents", "pos": [2, 3]}, "t": {"name": "strategies", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "document", "is", "about", "illegal", "drugs", ",", "which", ",", "it", "claims", ",", "are", "illegal", "because", "they", "are", "harmful", "."], "h": {"name": "document", "pos": [1, 2]}, "t": {"name": "drugs", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["he", "has", "combined", "intelligent", "history", "with", "moving", "prose", ",", "creating", "an", "informative", ",", "inspiring", "narrative", "telling", "the", "history", "of", "a", "great", "people", "."], "h": {"name": "narrative", "pos": [14, 15]}, "t": {"name": "history", "pos": [17, 18]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "second", "format", "is", "that", "of", "roundtables", "organised", "around", "keywords", ",", "that", "offer", "students", "the", "opportunity", "to", "participate", "in", "dialogue", "."], "h": {"name": "roundtables", "pos": [6, 7]}, "t": {"name": "keywords", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["he", "directed", "his", "criticism", "at", "media", "coverage", "of", "the", "catholic", "church", "."], "h": {"name": "criticism", "pos": [3, 4]}, "t": {"name": "media coverage", "pos": [5, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["debate", "flourishes", "on", "the", "relative", "roles", "of", "the", "ancient", "greeks", ",", "mesopotamians", "and", "romans", "."], "h": {"name": "debate", "pos": [0, 1]}, "t": {"name": "roles", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["these", "investigations", "provided", "statistical", "evidence", "for", "genuine", "moral", "concern", "for", "the", "poor", "."], "h": {"name": "investigations", "pos": [1, 2]}, "t": {"name": "evidence", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "book", "takes", "into", "account", "various", "phases", "of", "the", "life", "of", "the", "muhammad", "."], "h": {"name": "book", "pos": [1, 2]}, "t": {"name": "phases", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "song", "basically", "criticizes", "the", "hypocrisy", "and", "lack", "of", "care", "from", "politicians", "."], "h": {"name": "song", "pos": [1, 2]}, "t": {"name": "hypocrisy", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["we", "are", "happy", "to", "relay", "the", "news", "that", "the", "various", "rights", "issues", "have", "been", "resolved", "."], "h": {"name": "news", "pos": [6, 7]}, "t": {"name": "rights issues", "pos": [10, 12]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "new", "york", "times", "printed", "a", "story", "alleging", "the", "existence", "of", "a", "classified", "military", "space", "shuttle", "."], "h": {"name": "story", "pos": [6, 7]}, "t": {"name": "existence", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "film", "revolves", "around", "a", "cadaver", "who", "seems", "to", "bring", "misfortune", "on", "those", "who", "come", "in", "contact", "with", "it", "."], "h": {"name": "film", "pos": [1, 2]}, "t": {"name": "cadaver", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["i", "welcome", "the", "news", "that", "a", "comprehensive", "agreement", "on", "bananas", "has", "now", "been", "reached", "."], "h": {"name": "news", "pos": [3, 4]}, "t": {"name": "agreement", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["i", "read", "the", "report", "from", "somalia", "on", "the", "agreement", "reached", "by", "faction", "leaders", "on", "the", "form", "of", "a", "future", "government", "that", "has", "been", "warmly", "welcomed", "."], "h": {"name": "report", "pos": [3, 4]}, "t": {"name": "agreement", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "article", "explains", "the", "speech", "and", "language", "difficulties", "pre-school", "children", "encounter", "and", "how", "parents", "and", "early", "years", "workers", "can", "help", "."], "h": {"name": "article", "pos": [1, 2]}, "t": {"name": "difficulties", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["a", "panel", "discussion", "focusing", "on", "issues", "such", "as", "domestic", "violence", "and", "fearful", "relationships", "was", "held", "at", "the", "university", "of", "rio", "grande", "."], "h": {"name": "discussion", "pos": [2, 3]}, "t": {"name": "violence", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["however", ",", "only", "20", "research", "articles", "were", "identified", "on", "the", "topic", "of", "health", "promotion", "at", "retirement", "."], "h": {"name": "articles", "pos": [5, 6]}, "t": {"name": "promotion", "pos": [13, 14]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["at", "a", "recent", "meeting", "on", "the", "thorny", "subject", "of", "the", "gas", "trade", "between", "russia", "and", "ukraine", ",", "russian", "prime", "minister", "vladimir", "putin", "said", "mrs", "tymoshenko", "was", "a", "woman", "with", "whom", "he", "could", "do", "business", "."], "h": {"name": "meeting", "pos": [3, 4]}, "t": {"name": "trade", "pos": [11, 12]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["desperados", "is", "a", "cbbc", "children", "'s", "drama", "series", "following", "a", "wheelchair", "basketball", "team", "."], "h": {"name": "drama series", "pos": [6, 8]}, "t": {"name": "team", "pos": [12, 13]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "shows", "were", "marred", "by", "some", "controversy", "in", "regard", "to", "tickets", "."], "h": {"name": "controversy", "pos": [6, 7]}, "t": {"name": "tickets", "pos": [10, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "document", "looks", "at", "the", "diversity", "of", "arts", "and", "creativity", "in", "rural", "england", ",", "and", "the", "key", "role", "that", "the", "arts", "play", "in", "rural", "regeneration", "."], "h": {"name": "document", "pos": [1, 2]}, "t": {"name": "diversity", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["a", "question", "was", "raised", "in", "regard", "to", "the", "public", "announcement", "of", "the", "names", "of", "the", "three", "finalists", "."], "h": {"name": "question", "pos": [1, 2]}, "t": {"name": "announcement", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "movie", "featured", "a", "mutated", "sheep", "as", "the", "titular", "monster", ",", "which", "grew", "larger", "throughout", "the", "movie", ",", "until", "it", "exploded", "in", "the", "climactic", "scene", "."], "h": {"name": "movie", "pos": [1, 2]}, "t": {"name": "sheep", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "first", "part", "gives", "an", "introduction", "to", "safety", "techniques", ",", "where", "risk", "analysis", "plays", "an", "important", "part", "."], "h": {"name": "first part", "pos": [1, 3]}, "t": {"name": "techniques", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["his", "paper", "narrated", "the", "discovery", "chronologically", "."], "h": {"name": "paper", "pos": [1, 2]}, "t": {"name": "discovery", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "majority", "of", "the", "announced", "reforms", "had", "to", "do", "with", "changes", "in", "allocation", "mechanisms", "."], "h": {"name": "reforms", "pos": [5, 6]}, "t": {"name": "changes", "pos": [10, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["we", "use", "newspaper", "advertising", "primarily", "to", "inform", "customers", "about", "new", "selections", "available", "."], "h": {"name": "advertising", "pos": [3, 4]}, "t": {"name": "selections", "pos": [10, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["therefore", ",", "we", "have", "made", "a", "new", "8-page", "leaflet", "informing", "about", "all", "the", "qualities", "of", "our", "large", "range", "of", "pressure", "filters", "."], "h": {"name": "leaflet", "pos": [8, 9]}, "t": {"name": "qualities", "pos": [13, 14]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "newsletter", "is", "published", "once", "a", "fortnight", "to", "keep", "families", "informed", "on", "school", "happenings", "."], "h": {"name": "newsletter", "pos": [1, 2]}, "t": {"name": "happenings", "pos": [13, 14]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["however", ",", "there", "are", "many", "universal", "humanitarian", "laws", "applying", "to", "war", "."], "h": {"name": "laws", "pos": [7, 8]}, "t": {"name": "war", "pos": [10, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["discussion", "took", "place", "on", "the", "function", "of", "this", "committee", "."], "h": {"name": "discussion", "pos": [0, 1]}, "t": {"name": "function", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["it", "is", "a", "formal", "legal", "document", "that", "sets", "out", "the", "facts", "and", "legal", "reasons", "."], "h": {"name": "document", "pos": [5, 6]}, "t": {"name": "facts", "pos": [10, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "document", "established", "levels", "of", "voltage", "distortion", "acceptable", "to", "the", "distribution", "system", "."], "h": {"name": "document", "pos": [1, 2]}, "t": {"name": "levels", "pos": [3, 4]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["also", "in", "the", "programme", "we", "consider", "the", "subject", "of", "happiness", "."], "h": {"name": "programme", "pos": [3, 4]}, "t": {"name": "happiness", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "internal", "memo", "gives", "details", "of", "morgan", "stanley", "'s", "new", "management", "lineup", "."], "h": {"name": "memo", "pos": [2, 3]}, "t": {"name": "lineup", "pos": [11, 12]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "u.s.", "transportation", "security", "administration", "(", "tsa", ")", "has", "lost", "a", "hard", "drive", "containing", "information", "about", "100,000", "former", "and", "current", "employees", "."], "h": {"name": "information", "pos": [14, 15]}, "t": {"name": "employees", "pos": [20, 21]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "swedish", "society", "for", "eighteenth", "century", "studies", "is", "an", "interdisciplinary", "forum", "for", "researchers", "specialized", "in", "eighteenth", "century", "."], "h": {"name": "forum", "pos": [10, 11]}, "t": {"name": "eighteenth century", "pos": [15, 17]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["robert", "redford", "'s", "historical", "drama", "about", "the", "aftermath", "of", "the", "assassination", "of", "abraham", "lincoln", "looks", "set", "to", "get", "under", "way", "."], "h": {"name": "drama", "pos": [4, 5]}, "t": {"name": "aftermath", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "paper", "includes", "both", "an", "essay", "surveying", "the", "literature", "and", "a", "descriptor-indexed", "bibliography", "of", "over", "200", "papers", "and", "books", "."], "h": {"name": "essay", "pos": [5, 6]}, "t": {"name": "literature", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "page", "explains", "commonly", "used", "terms", "in", "chess", "in", "alphabetical", "order", "."], "h": {"name": "page", "pos": [1, 2]}, "t": {"name": "terms", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["at", "the", "seminar", ",", "we", "gave", "an", "account", "of", "the", "current", "education", "system", "and", "teacher", "education", "environment", "in", "hong", "kong", "."], "h": {"name": "seminar", "pos": [2, 3]}, "t": {"name": "system", "pos": [12, 13]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["a", "new", "regulation", "governing", "the", "access", "to", "documents", "in", "the", "custody", "of", "national", "archives", "came", "into", "effect", "on", "the", "26th", "of", "february", "2003", "."], "h": {"name": "regulation", "pos": [2, 3]}, "t": {"name": "access", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "paper", "thus", "presents", "a", "detailed", "review", "of", "previous", "work", "that", "evaluates", "the", "optimum", "operational", "decisions", "of", "an", "lse", "."], "h": {"name": "paper", "pos": [1, 2]}, "t": {"name": "review", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "journal", "takes", "an", "inter-disciplinary", "approach", ",", "examining", "the", "history", ",", "culture", "and", "theory", "of", "anarchism", "."], "h": {"name": "journal", "pos": [1, 2]}, "t": {"name": "history", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "display", "showing", "signal", "and", "battery", "status", "also", "incorporates", "feedback", "from", "machinery", "being", "operated", "."], "h": {"name": "display", "pos": [1, 2]}, "t": {"name": "status", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["one", "chapter", "of", "the", "book", "relates", "attempts", "made", "by", "the", "us", "to", "establish", "a", "similar", "alliance", "with", "yemen", "."], "h": {"name": "chapter", "pos": [1, 2]}, "t": {"name": "attempts", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "fairy", "tale", "describes", "a", "giant", "with", "a", "pair", "of", "magic", "boots", "that", "allow", "the", "wearer", "to", "cover", "seven", "leagues", "in", "one", "stride", "."], "h": {"name": "fairy tale", "pos": [1, 3]}, "t": {"name": "giant", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "table", "serves", "as", "an", "example", "of", "the", "data", "and", "observations", "routinely", "collected", "in", "the", "horner", "rootstock", "trial", "."], "h": {"name": "table", "pos": [1, 2]}, "t": {"name": "data", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["general", "contract", "law", "issues", "are", "examined", ",", "as", "is", "the", "law", "covering", "the", "registration", "of", "hotel", "guests", "."], "h": {"name": "law", "pos": [10, 11]}, "t": {"name": "registration", "pos": [13, 14]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["patriarch", "cerularius", "eventually", "wrote", "a", "tract", "against", "the", "western", "liturgical", "practices", "."], "h": {"name": "tract", "pos": [5, 6]}, "t": {"name": "liturgical practices", "pos": [9, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["gatrell", "illuminates", "the", "debate", "over", "public", "execution", "that", "raged", "in", "polite", "society", "."], "h": {"name": "debate", "pos": [3, 4]}, "t": {"name": "public execution", "pos": [5, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["you", "have", "been", "asked", "to", "make", "notes", "about", "a", "telephone", "call", "left", "by", "a", "colleague", "in", "the", "german", "office", "of", "the", "bank", "."], "h": {"name": "notes", "pos": [6, 7]}, "t": {"name": "telephone call", "pos": [9, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["questions", "on", "various", "aspects", "of", "the", "study", "were", "raised", "and", "discussed", "."], "h": {"name": "questions", "pos": [0, 1]}, "t": {"name": "aspects", "pos": [3, 4]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["he", "is", "the", "author", "of", "eight", "books", "which", "have", "charted", "the", "transformation", "of", "europe", "over", "the", "last", "quarter-century", "."], "h": {"name": "books", "pos": [6, 7]}, "t": {"name": "transformation", "pos": [11, 12]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "story", "portrays", "a", "boy", "who", "encounters", "a", "young", "woman", "whom", "he", "must", "serve", "."], "h": {"name": "story", "pos": [1, 2]}, "t": {"name": "boy", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["our", "whole", "evening", "was", "centered", "on", "the", "topic", "of", "courage", "."], "h": {"name": "evening", "pos": [2, 3]}, "t": {"name": "courage", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "documentary", "film", "reveals", "a", "shocking", "insight", "into", "the", "jamaican", "economy", "and", "everyday", "life", "."], "h": {"name": "film", "pos": [2, 3]}, "t": {"name": "economy", "pos": [10, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "focus", "of", "the", "chapter", "is", "the", "impact", "of", "diversification", "on", "the", "performance", "of", "pe", "funds", "."], "h": {"name": "chapter", "pos": [4, 5]}, "t": {"name": "impact", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "commission", "has", "published", "an", "annual", "report", "giving", "a", "summary", "of", "committee", "activities", "during", "the", "previous", "year", "."], "h": {"name": "report", "pos": [6, 7]}, "t": {"name": "activities", "pos": [12, 13]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["typically", ",", "statutes", "declare", "policy", "."], "h": {"name": "statutes", "pos": [2, 3]}, "t": {"name": "policy", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "bulletin", "informed", "key", "persons", "and", "opinion", "leaders", "about", "the", "project", ",", "its", "background", ",", "objectives", ",", "activities", ",", "and", "results", "."], "h": {"name": "bulletin", "pos": [1, 2]}, "t": {"name": "project", "pos": [10, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "book", "introduces", "modern", "geographical", "theory", "in", "an", "accessible", "format", "and", "reflects", "the", "changing", "nature", "of", "the", "subject", "."], "h": {"name": "book", "pos": [1, 2]}, "t": {"name": "geographical theory", "pos": [4, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["preliminary", "talks", "between", "the", "association", "and", "nigel", "worthington", "regarding", "a", "new", "contract", "took", "place", "last", "week", "and", "these", "talks", "are", "still", "ongoing", "."], "h": {"name": "talks", "pos": [1, 2]}, "t": {"name": "contract", "pos": [11, 12]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "weather", "report", "informed", "me", "about", "the", "high", "wind", "storm", "conditions", "that", "was", "already", "in", "place", "."], "h": {"name": "weather report", "pos": [1, 3]}, "t": {"name": "storm conditions", "pos": [9, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["it", "has", "been", "asserted", "in", "the", "literature", "that", "the", "recognition", "of", "speech", "takes", "place", "not", "because", "of", "phonemic", "distinctions", "only", "."], "h": {"name": "literature", "pos": [6, 7]}, "t": {"name": "recognition", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "second", "lesson", "points", "to", "the", "predominant", "role", "of", "quality", "over", "quantity", "."], "h": {"name": "lesson", "pos": [2, 3]}, "t": {"name": "predominant", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "report", "provides", "a", "full", "account", "of", "the", "societal", "impacts", "of", "car", "production", "."], "h": {"name": "report", "pos": [1, 2]}, "t": {"name": "societal impacts", "pos": [8, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "icon", "is", "generally", "a", "flat", "panel", "painting", "depicting", "a", "holy", "being", "or", "object", "."], "h": {"name": "painting", "pos": [7, 8]}, "t": {"name": "being", "pos": [11, 12]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["one", "of", "the", "few", "clear", "and", "non-controversial", "norms", "governing", "issues", "of", "state", "succession", "are", "the", "customary", "rules", "enshrined", "in", "article", "11", "."], "h": {"name": "norms", "pos": [7, 8]}, "t": {"name": "issues", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "controversy", "has", "centered", "mainly", "on", "intelligence", "."], "h": {"name": "controversy", "pos": [1, 2]}, "t": {"name": "intelligence", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "blog", "tracks", "and", "comments", "on", "news", "relevant", "to", "the", "interplay", "of", "science", "&", "religion", "."], "h": {"name": "news", "pos": [6, 7]}, "t": {"name": "interplay", "pos": [10, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["below", "you", "find", "my", "ideas", "with", "regard", "to", "this", "issue", "."], "h": {"name": "ideas", "pos": [4, 5]}, "t": {"name": "issue", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "second", "hypothesis", "asserting", "economic", "domination", "is", "rejected", ",", "and", "the", "third", "largely", "accepted", "."], "h": {"name": "hypothesis", "pos": [2, 3]}, "t": {"name": "domination", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "volume", "synthesizes", "current", "understanding", "of", "the", "ecology", "of", "alaska", "'s", "boreal", "forests", "."], "h": {"name": "volume", "pos": [1, 2]}, "t": {"name": "understanding", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "rest", "of", "the", "volume", "presents", "the", "inscriptions", ",", "giving", "the", "circumstances", "of", "finding", "."], "h": {"name": "volume", "pos": [4, 5]}, "t": {"name": "inscriptions", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["each", "question", "requires", "a", "text", "note", "to", "explain", "the", "rating", "."], "h": {"name": "note", "pos": [5, 6]}, "t": {"name": "rating", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "weekly", "economic", "publication", "analyzes", "and", "interprets", "financial", ",", "commercial", "and", "industrial", "developments", "."], "h": {"name": "publication", "pos": [3, 4]}, "t": {"name": "developments", "pos": [12, 13]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "exhibition", "examines", "the", "first", "sustained", "contacts", "between", "american", "people", "and", "european", "explorers", ",", "conquerors", "and", "settlers", "from", "1492", "to", "1600", "."], "h": {"name": "exhibition", "pos": [1, 2]}, "t": {"name": "contacts", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "petition", "described", "the", "oil", "as", "being", "useful", "for", "salads", "and", "culinary", "purposes", "."], "h": {"name": "petition", "pos": [1, 2]}, "t": {"name": "oil", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["most", "of", "his", "speeches", "at", "the", "rallies", "have", "been", "about", "the", "economy", "and", "the", "need", "to", "fight", "against", "corruption", "."], "h": {"name": "speeches", "pos": [3, 4]}, "t": {"name": "economy", "pos": [11, 12]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["one", "year", "later", ",", "a", "follow-up", "workshop", "was", "held", "to", "provide", "a", "focused", "discussion", "on", "these", "issues", "from", "a", "research", ",", "practice", "and", "policy", "perspective", "."], "h": {"name": "discussion", "pos": [13, 14]}, "t": {"name": "issues", "pos": [16, 17]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "book", "asserts", "the", "intrinsic", "relationship", "between", "psychotherapy", ",", "human", "rights", "and", "politics", "."], "h": {"name": "book", "pos": [1, 2]}, "t": {"name": "relationship", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["his", "'intensely", "personal", "'", "talk", "tackles", "the", "great", "challenges", "facing", "immigrants", "today", "."], "h": {"name": "talk", "pos": [4, 5]}, "t": {"name": "challenges", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "purpose", "of", "the", "class", "was", "to", "examine", "the", "therapeutic", "benefits", "of", "writing", "and", "to", "discern", "whether", "writing", "can", "be", "a", "help", "or", "a", "hinderance", "in", "some", "situations", "."], "h": {"name": "class", "pos": [4, 5]}, "t": {"name": "therapeutic benefits", "pos": [9, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "game", "received", "mixed", "reviews", ",", "with", "some", "of", "video", "games", "publications", "commenting", "on", "the", "similarities", "between", "other", "games", "from", "dragon", "ball", "."], "h": {"name": "publications", "pos": [11, 12]}, "t": {"name": "similarities", "pos": [15, 16]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["there", "are", "a", "series", "of", "books", "dealing", "with", "the", "identification", "of", "groups", "of", "birds", "."], "h": {"name": "books", "pos": [5, 6]}, "t": {"name": "identification", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "document", "is", "a", "summary", "of", "an", "interrogation", "of", "the", "witness", "conducted", "on", "the", "noted", "date", "."], "h": {"name": "document", "pos": [1, 2]}, "t": {"name": "interrogation", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "dialogue", "at", "the", "summit", "also", "covered", "the", "economic", "impact", "of", "ict", "literacy", "."], "h": {"name": "dialogue", "pos": [1, 2]}, "t": {"name": "economic impact", "pos": [8, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["most", "americans", "are", "interested", "in", "topics", "or", "questions", "that", "have", "to", "do", "with", "cultural", "differences", "and", "with", "language", "."], "h": {"name": "questions", "pos": [7, 8]}, "t": {"name": "cultural differences", "pos": [13, 15]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["a", "local", "fm", "radio", "keeps", "the", "town", "informed", "about", "local", "and", "international", "development", "."], "h": {"name": "radio", "pos": [3, 4]}, "t": {"name": "development", "pos": [12, 13]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "conference", "'s", "final", "statement", "was", "a", "summary", "of", "all", "the", "topics", "the", "speakers", "had", "touched", "on", "during", "two", "days", "of", "meetings", "in", "cordoba", "."], "h": {"name": "statement", "pos": [4, 5]}, "t": {"name": "topics", "pos": [11, 12]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["i", "have", "recently", "found", "a", "little", "article", "claiming", "that", "music", "affects", "our", "health", "both", "improving", "and", "worsening", "it", "."], "h": {"name": "article", "pos": [6, 7]}, "t": {"name": "music", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["these", "rules", "regulate", "human", "'s", "behavior", "toward", "eachother", "and", "serve", "to", "maintain", "a", "sense", "of", "social", "unity", "."], "h": {"name": "rules", "pos": [1, 2]}, "t": {"name": "behavior", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "first", "five-day", "workshop", "introduced", "tools", "for", "identifying", "and", "exploiting", "market", "opportunities", "."], "h": {"name": "workshop", "pos": [3, 4]}, "t": {"name": "tools", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["bertolli", "takes", "pages", "and", "pages", "of", "text", "to", "explain", "the", "significance", "of", "flours", "."], "h": {"name": "pages", "pos": [2, 3]}, "t": {"name": "significance", "pos": [10, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "theme", "is", "centered", "around", "urban", "street", "vision", ",", "with", "a", "philosophical", "future", "edge", "."], "h": {"name": "theme", "pos": [1, 2]}, "t": {"name": "street vision", "pos": [6, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["a", "full", "written", "report", "supplying", "motives", "for", "your", "action", "has", "been", "prepared", "."], "h": {"name": "report", "pos": [3, 4]}, "t": {"name": "motives", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "second", "report", "assesses", "the", "degree", "of", "climate", "policy", "integration", "in", "six", "different", "european", "countries", "."], "h": {"name": "report", "pos": [2, 3]}, "t": {"name": "degree", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "sheets", "are", "concerned", "with", "aspects", "of", "speaking", "the", "language", "."], "h": {"name": "sheets", "pos": [1, 2]}, "t": {"name": "aspects", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["some", "of", "my", "most", "recent", "blogs", "were", "concerned", "with", "life", "on", "the", "croft", "in", "various", "seasons", "."], "h": {"name": "blogs", "pos": [5, 6]}, "t": {"name": "life", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["his", "previous", "work", "has", "explored", "archetypal", "and", "symbolic", "themes", "."], "h": {"name": "work", "pos": [2, 3]}, "t": {"name": "themes", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["quarterly", "magazine", "covers", "the", "latest", "political", ",", "economic", ",", "social", ",", "cultural", "and", "sporting", "developments", "in", "africa", "."], "h": {"name": "magazine", "pos": [1, 2]}, "t": {"name": "developments", "pos": [14, 15]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["a", "reconstruction", "drawing", "from", "1954", "shows", "a", "man", "wearing", "the", "cape", "over", "his", "shoulders", "."], "h": {"name": "drawing", "pos": [2, 3]}, "t": {"name": "man", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["he", "signed", "a", "proclamation", "that", "declares", "the", "flu", "a", "national", "emergency", "."], "h": {"name": "proclamation", "pos": [3, 4]}, "t": {"name": "flu", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "cornish", "pirates", "have", "signed", "a", "declaration", "to", "tackle", "climate", "change", "as", "part", "of", "their", "commitment", "to", "save", "energy", "and", "reduce", "their", "environmental", "footprint", "."], "h": {"name": "declaration", "pos": [6, 7]}, "t": {"name": "climate change", "pos": [9, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["a", "french", "initiative", "aimed", "at", "tackling", "childhood", "obesity", "is", "adopted", "in", "a", "town", "in", "north", "lanarkshire", "."], "h": {"name": "initiative", "pos": [2, 3]}, "t": {"name": "obesity", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "book", "provides", "a", "powerful", "analysis", "of", "the", "role", "that", "information", "and", "communication", "technologies", "can", "have", "in", "teaching", "and", "learning", "."], "h": {"name": "book", "pos": [1, 2]}, "t": {"name": "role", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["in", "this", "article", ",", "he", "explores", "impulsivity", "in", "detail", "."], "h": {"name": "article", "pos": [2, 3]}, "t": {"name": "impulsivity", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["she", "received", "a", "letter", "discussing", "her", "teaching", "duties", "."], "h": {"name": "letter", "pos": [3, 4]}, "t": {"name": "teaching duties", "pos": [6, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "rcmp", "released", "its", "report", "this", "week", "on", "the", "death", "of", "robert", "dziekanski", "."], "h": {"name": "report", "pos": [4, 5]}, "t": {"name": "death", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "book", "is", "rich", "in", "social", "history", "as", "more", "traces", "the", "origins", "and", "subsequent", "careers", "of", "numerous", "students", "and", "the", "experiences", "of", "numerous", "faculty", "."], "h": {"name": "book", "pos": [1, 2]}, "t": {"name": "social history", "pos": [5, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["most", "of", "the", "verses", "of", "the", "plantation", "songs", "had", "some", "reference", "to", "freedom", "."], "h": {"name": "verses", "pos": [3, 4]}, "t": {"name": "freedom", "pos": [12, 13]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["warning", "labels", "on", "cigarette", "packs", "and", "ads", "inform", "about", "dangers", "and", ",", "implicitly", ",", "to", "discourage", "use", "."], "h": {"name": "ads", "pos": [6, 7]}, "t": {"name": "dangers", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "three-part", "irish", "crime", "documentary", "series", "examined", "three", "memorable", "and", "notorious", "large-scale", "crimes", "committed", "in", "the", "country", "."], "h": {"name": "series", "pos": [5, 6]}, "t": {"name": "crimes", "pos": [12, 13]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["he", "published", "important", "works", "on", "epistemology", ",", "as", "well", "as", "works", "relevant", "to", "religion", ",", "law", ",", "and", "history", "."], "h": {"name": "works", "pos": [3, 4]}, "t": {"name": "epistemology", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "discussion", "around", "content", "shifts", "to", "a", "curation", "model", "."], "h": {"name": "discussion", "pos": [1, 2]}, "t": {"name": "content", "pos": [3, 4]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["parent", "verbalizations", "were", "focused", "on", "story-relevant", "questions", "."], "h": {"name": "verbalizations", "pos": [1, 2]}, "t": {"name": "questions", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "whole", "excerpt", "revolved", "around", "one", "single", "theme", "."], "h": {"name": "excerpt", "pos": [2, 3]}, "t": {"name": "theme", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["in", "this", "paper", "we", "describe", "the", "derivation", "of", "a", "blastocyst", "following", "heterologous", "nuclear", "transfer", "(", "nt", ")", "into", "a", "human", "oocyte", "."], "h": {"name": "paper", "pos": [2, 3]}, "t": {"name": "derivation", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["dr.", "legome", "discussed", "the", "hospital", "'s", "response", "to", "the", "news", "that", "a", "plane", "had", "crashed", "into", "a", "river", "."], "h": {"name": "news", "pos": [9, 10]}, "t": {"name": "plane", "pos": [12, 13]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "letter", "contained", "details", "on", "the", "dispute", "."], "h": {"name": "letter", "pos": [1, 2]}, "t": {"name": "dispute", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "included", "writing", "an", "account", "of", "their", "character", "and", "a", "speech", "on", "the", "subject", "of", "child", "labour", "."], "h": {"name": "speech", "pos": [10, 11]}, "t": {"name": "child labour", "pos": [15, 17]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "next", "paragraphs", "introduce", "some", "simple", "ideas", "from", "weighted", "digraph", "analysis", "."], "h": {"name": "paragraphs", "pos": [2, 3]}, "t": {"name": "ideas", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["a", "calendar", "of", "saints", "forms", "a", "way", "of", "organising", "a", "liturgical", "year", "on", "the", "finely-granulated", "level", "of", "days", "by", "assigning", "each", "day", "to", "association", "with", "a", "saint", "."], "h": {"name": "calendar", "pos": [1, 2]}, "t": {"name": "saints", "pos": [3, 4]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "rail", "accident", "investigation", "branch", "has", "released", "its", "report", "on", "the", "derailment", "."], "h": {"name": "report", "pos": [8, 9]}, "t": {"name": "derailment", "pos": [11, 12]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["he", "wrote", "out", "a", "sketch", "setting", "out", "his", "basic", "ideas", "on", "transmutation", "of", "species", "."], "h": {"name": "sketch", "pos": [4, 5]}, "t": {"name": "ideas", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "guide", "outlines", "the", "issues", "to", "consider", "before", "submitting", "your", "junior", "reporter", "pieces", "."], "h": {"name": "guide", "pos": [1, 2]}, "t": {"name": "issues", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["it", "is", "a", "tutorial", "by", "mark", "levine", "that", "aims", "to", "summarise", "the", "musical", "theory", ",", "including", "jazz", "harmony", ",", "required", "by", "an", "aspiring", "jazz", "pianist", "."], "h": {"name": "tutorial", "pos": [3, 4]}, "t": {"name": "musical theory", "pos": [12, 14]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "files", "reveal", "militarist", "plot", "to", "kill", "yoshida", "."], "h": {"name": "files", "pos": [1, 2]}, "t": {"name": "plot", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["however", ",", "in", "1819", "the", "united", "states", "had", "by", "statute", "declared", "the", "slave", "trade", "to", "be", "piracy", "and", "subject", "to", "the", "death", "penalty", "."], "h": {"name": "statute", "pos": [9, 10]}, "t": {"name": "trade", "pos": [13, 14]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["feminist", "science", "fiction", "tends", "to", "deal", "with", "women", "'s", "roles", "in", "society", "."], "h": {"name": "science fiction", "pos": [1, 3]}, "t": {"name": "roles", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["during", "her", "talk", "she", "related", "some", "of", "the", "tricks", "that", "orville", "liked", "to", "play", "on", "people", "."], "h": {"name": "talk", "pos": [2, 3]}, "t": {"name": "tricks", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["some", "of", "the", "medical", "information", "in", "the", "book", "pertaining", "to", "medical", "procedures", ",", "drugs", ",", "etc.", ",", "is", "out", "of", "date", "and", "i", "check", "anything", "i", "am", "unsure", "of", "with", "my", "health", "care", "provider", "."], "h": {"name": "medical information", "pos": [3, 5]}, "t": {"name": "medical procedures", "pos": [10, 12]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["he", "had", "a", "wonderful", "story", "to", "tell", "of", "the", "conquest", "of", "a", "continent", "by", "a", "people", "through", "thrift", ",", "endurance", ",", "sacrifice", "and", "grit", "."], "h": {"name": "story", "pos": [4, 5]}, "t": {"name": "conquest", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["newsted", "'s", "statement", "revealed", "his", "departure", "was", "based", "on", "private", "and", "personal", "reasons", "."], "h": {"name": "statement", "pos": [2, 3]}, "t": {"name": "departure", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "main", "theme", "of", "the", "play", "is", "ambition", "and", "how", "it", "can", "destroy", "a", "courageous", ",", "trustworthy", ",", "noble", "man", "."], "h": {"name": "play", "pos": [5, 6]}, "t": {"name": "ambition", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["each", "of", "these", "contain", "many", "modules", "on", "different", "topics", ",", "such", "as", "apostrophes", ",", "silent", "letters", ",", "personal", "pronouns", ",", "spelling", "plurals", ",", "etc", "."], "h": {"name": "modules", "pos": [5, 6]}, "t": {"name": "apostrophes", "pos": [12, 13]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["he", "also", "used", "his", "speech", "to", "set", "out", "his", "belief", "that", "the", "country", "'s", "``", "greatest", "challenge", "''", "was", "social", "breakdown", "."], "h": {"name": "speech", "pos": [4, 5]}, "t": {"name": "belief", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["they", "are", "massive", "artworks", "that", "reveal", "a", "wide", ",", "all-encompassing", "view", "of", "a", "particular", "subject", ",", "often", "a", "landscape", ",", "military", "battle", ",", "or", "historical", "event", "."], "h": {"name": "artworks", "pos": [3, 4]}, "t": {"name": "view", "pos": [10, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["it", "is", "a", "rural", "community", "and", "the", "stories", "narrate", "family", "life", "on", "a", "smallholding", "in", "the", "farming", "world", "."], "h": {"name": "stories", "pos": [7, 8]}, "t": {"name": "life", "pos": [10, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "book", "is", "a", "collection", "of", "his", "lectures", "and", "papers", "that", "summarised", "his", "thoughts", "on", "the", "philosophy", "of", "science", "."], "h": {"name": "lectures", "pos": [7, 8]}, "t": {"name": "thoughts", "pos": [13, 14]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "talk", "was", "about", "peacekeeping", "operations", "."], "h": {"name": "talk", "pos": [1, 2]}, "t": {"name": "operations", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "article", "narrates", "baseball", "player", "terry", "pendleton", "'s", "experiences", "of", "several", "baseball", "matches", "."], "h": {"name": "article", "pos": [1, 2]}, "t": {"name": "experiences", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "is", "a", "clear", "and", "concise", "guide", "to", "the", "work", "of", "one", "of", "the", "twentieth", "century", "'s", "most", "influential", "thinkers", "."], "h": {"name": "guide", "pos": [6, 7]}, "t": {"name": "work", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["douglas", "was", "giving", "a", "speech", "addressing", "the", "harmful", "practices", "of", "the", "army", "corps", "of", "engineers", "."], "h": {"name": "speech", "pos": [4, 5]}, "t": {"name": "practices", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "figure", "illustrates", "typical", "results", "of", "various", "operating", "parameters", "during", "these", "studies", "."], "h": {"name": "figure", "pos": [1, 2]}, "t": {"name": "results", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "release", "notes", "give", "details", "of", "the", "technical", "changes", "."], "h": {"name": "notes", "pos": [2, 3]}, "t": {"name": "changes", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "film", "asserts", "the", "astonishingly", "intricate", "tenacity", "with", "which", "class", "is", "intimately", "mingled", "with", "severine", "'s", "sense", "of", "identity", "."], "h": {"name": "film", "pos": [1, 2]}, "t": {"name": "tenacity", "pos": [6, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "small", "photographic", "exhibition", "studies", "the", "linear", "qualities", "present", "through", "natural", "and", "man-created", "subjects", "."], "h": {"name": "exhibition", "pos": [3, 4]}, "t": {"name": "qualities", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "classroom", "discussion", "made", "this", "concept", "clear", "to", "the", "candidates", "."], "h": {"name": "discussion", "pos": [2, 3]}, "t": {"name": "concept", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["it", "is", "a", "certificate", ",", "declaring", "sales", "tax", "exemption", ",", "presented", "to", "a", "vendor", "when", "making", "a", "purchase", "for", "the", "agency", "."], "h": {"name": "certificate", "pos": [3, 4]}, "t": {"name": "exemption", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "gaa", "'s", "central", "council", "passed", "a", "number", "of", "motions", "regarding", "discipline", "at", "a", "special", "meeting", "on", "saturday", "."], "h": {"name": "motions", "pos": [9, 10]}, "t": {"name": "discipline", "pos": [11, 12]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "effect", "is", "a", "series", "of", "poems", "relating", "a", "story", "of", "one", "man", "'s", "journey", "to", "find", "happiness", "."], "h": {"name": "series of poems", "pos": [4, 7]}, "t": {"name": "story", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["it", "is", "the", "only", "journal", "dedicated", "to", "veterinary", "imaging", "."], "h": {"name": "journal", "pos": [4, 5]}, "t": {"name": "veterinary imaging", "pos": [7, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["these", "documents", "survey", "the", "literature", "and", "recommend", "limits", "for", "worker", "exposure", "to", "hazards", "."], "h": {"name": "documents", "pos": [1, 2]}, "t": {"name": "literature", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["for", "20", "years", "the", "magazine", "has", "been", "dedicated", "to", "american", "old-time", "music", "."], "h": {"name": "magazine", "pos": [4, 5]}, "t": {"name": "music", "pos": [11, 12]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["he", "wrote", "an", "article", ",", "that", "pointed", "out", "factual", "problems", "in", "the", "work", "of", "new", "york", "times", "columnist", "and", "author", "david", "brooks", "."], "h": {"name": "article", "pos": [3, 4]}, "t": {"name": "problems", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["another", "manuscript", "introduced", "justice", "in", "terms", "of", "contractual", "justice", "."], "h": {"name": "manuscript", "pos": [1, 2]}, "t": {"name": "justice", "pos": [3, 4]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "course", "studies", "in", "depth", "the", "complex", "interaction", "between", "issues", "of", "conflict", ",", "security", "and", "development", "."], "h": {"name": "course", "pos": [1, 2]}, "t": {"name": "interaction", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["steroid", "nation", "(", "tm", ")", "is", "an", "online", "journal", "looking", "at", "the", "use", "of", "anabolic", "steroids", "in", "sports", ",", "youth", ",", "and", "society", "."], "h": {"name": "journal", "pos": [8, 9]}, "t": {"name": "use", "pos": [12, 13]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "album", "comes", "with", "rambling", "notes", "from", "wolf", "detailing", "the", "ideas", "behind", "each", "song", "."], "h": {"name": "notes", "pos": [5, 6]}, "t": {"name": "ideas", "pos": [10, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["controversy", "and", "even", "heated", "debate", "with", "respect", "to", "the", "ethical", "issues", "involved", "has", "broken", "out", "in", "germany", "and", "other", "parts", "of", "the", "world", "."], "h": {"name": "debate", "pos": [4, 5]}, "t": {"name": "ethical issues", "pos": [9, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["contemporary", "criticism", "commented", "on", "the", "weaknesses", "of", "the", "opera", "'s", "characters", "and", "the", "storyline", "."], "h": {"name": "criticism", "pos": [1, 2]}, "t": {"name": "weaknesses", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["entrepreneur", "creates", "a", "debate", "over", "'amber", "alert", "'", "kiosks", "."], "h": {"name": "debate", "pos": [3, 4]}, "t": {"name": "kiosks", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "page", "is", "a", "guide", "to", "the", "floating", "world", "of", "cyberspace", "."], "h": {"name": "guide", "pos": [4, 5]}, "t": {"name": "world", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["one", "of", "the", "recurring", "themes", "of", "the", "book", "is", "the", "influence", "of", "religion", "in", "motivating", "and", "structuring", "dutch", "emigration", "."], "h": {"name": "book", "pos": [7, 8]}, "t": {"name": "influence", "pos": [10, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "exhibition", "displayed", "a", "historical", "view", "of", "video", "game", "development", "from", "early", "arcade", "games", "to", "the", "present", "."], "h": {"name": "exhibition", "pos": [1, 2]}, "t": {"name": "view", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "humorous", "fable", "illustrates", "the", "progress", "of", "education", "and", "gives", "valuable", "insights", "into", "how", "it", "could", "continue", "to", "develop", "in", "the", "decades", "to", "come", "."], "h": {"name": "fable", "pos": [2, 3]}, "t": {"name": "progress", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "notification", "declares", "the", "names", "of", "plants", ",", "plant", "pests", "or", "carriers", "that", "are", "considered", "to", "be", "prohibited", "."], "h": {"name": "notification", "pos": [1, 2]}, "t": {"name": "names", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "gist", "of", "his", "message", "was", "that", "the", "religious", "social", "structure", "was", "in", "crisis", "and", "should", "be", "saved", "."], "h": {"name": "message", "pos": [4, 5]}, "t": {"name": "social structure", "pos": [9, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "exhibition", "looks", "at", "the", "dynamic", "connections", "that", "occurred", "from", "the", "mid-1960s", "to", "the", "mid-1970s", "with", "a", "display", "of", "early", "media", "works", "presented", "alongside", "related", "drawings", ",", "prints", ",", "and", "photographs", "."], "h": {"name": "exhibition", "pos": [1, 2]}, "t": {"name": "dynamic connections", "pos": [5, 7]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "world", "health", "organization", "co-sponsored", "a", "meeting", "on", "avian", "influenza", "and", "human", "pandemic", "influenza", "."], "h": {"name": "meeting", "pos": [6, 7]}, "t": {"name": "influenza", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "lyrics", "point", "toward", "sexual", "politics", ",", "and", "the", "lack", "of", "understanding", "between", "boys", "and", "girls", "."], "h": {"name": "lyrics", "pos": [1, 2]}, "t": {"name": "sexual politics", "pos": [4, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["most", "of", "the", "discussion", "has", "been", "about", "the", "words", "he", "used", "."], "h": {"name": "discussion", "pos": [3, 4]}, "t": {"name": "words", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["we", "have", "seen", "that", "many", "software", "patents", "covering", "well-known", "algorithms", "and", "techniques", "hinder", "the", "software", "industry", "in", "the", "united", "states", "of", "america", "and", "around", "the", "world", "."], "h": {"name": "patents", "pos": [6, 7]}, "t": {"name": "algorithms", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "same", "rule", "governs", "the", "use", "of", "the", "reversed", "and", "the", "monochrome", "versions", "of", "the", "logo", "."], "h": {"name": "rule", "pos": [2, 3]}, "t": {"name": "use", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["take", "me", "to", "the", "edge", "is", "a", "british", "reality", "series", "investigating", "global", "rites", "of", "passage", "."], "h": {"name": "series", "pos": [9, 10]}, "t": {"name": "rites", "pos": [12, 13]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "show", "offers", "a", "constructive", "discussion", "of", "a", "hot-button", "topic", "with", "leading", "m", "&", "a", "experts", "."], "h": {"name": "show", "pos": [1, 2]}, "t": {"name": "discussion", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "united", "states", "has", "laws", "that", "limit", "magazine", "size", ",", "too", "."], "h": {"name": "laws", "pos": [4, 5]}, "t": {"name": "size", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["his", "speech", "was", "a", "summary", "of", "known", "problems", "."], "h": {"name": "speech", "pos": [1, 2]}, "t": {"name": "problems", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["it", "is", "a", "free", "online", "resource", "documenting", "pennsylvania", "political", "election", "results", "dating", "back", "to", "1796", "."], "h": {"name": "resource", "pos": [5, 6]}, "t": {"name": "results", "pos": [10, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "revealer", "is", "an", "online", "journal", "of", "media", "criticism", "related", "to", "the", "subject", "of", "religion", "in", "the", "press", "."], "h": {"name": "criticism", "pos": [8, 9]}, "t": {"name": "religion", "pos": [14, 15]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["a", "congressman", "from", "the", "state", "of", "texas", ",", "presented", "a", "bill", "regulating", "interstate", "commerce", "carried", "on", "railways", "."], "h": {"name": "bill", "pos": [10, 11]}, "t": {"name": "commerce", "pos": [13, 14]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["new", "york", "is", "a", "weekly", "magazine", "concerned", "with", "the", "life", ",", "culture", ",", "politics", ",", "and", "style", "of", "new", "york", "city", "."], "h": {"name": "magazine", "pos": [5, 6]}, "t": {"name": "life", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "speech", "was", "about", "a", "conversation", "i", "had", "with", "my", "daughter", "."], "h": {"name": "speech", "pos": [1, 2]}, "t": {"name": "conversation", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["other", "orders", "on", "environmental", "legislation", "and", "abortion", "issues", "were", "also", "under", "consideration", "."], "h": {"name": "orders", "pos": [1, 2]}, "t": {"name": "legislation", "pos": [4, 5]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "poem", "consists", "of", "short", "verses", "reflecting", "on", "nature", "and", "travel", "through", "the", "landscape", "."], "h": {"name": "verses", "pos": [5, 6]}, "t": {"name": "nature", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["he", "also", "provides", "the", "news", "that", "the", "300-year", "old", "tradition", "of", "paying", "by", "cheque", "is", "on", "the", "way", "out", "."], "h": {"name": "news", "pos": [4, 5]}, "t": {"name": "tradition", "pos": [9, 10]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["both", "novels", "tackle", "with", "political", "questions", "in", "a", "direct", "manner", "."], "h": {"name": "novels", "pos": [1, 2]}, "t": {"name": "questions", "pos": [5, 6]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "sections", "of", "the", "book", "pertaining", "to", "quantitative", "methods", "are", "written", "clearly", "and", "contain", "more", "detail", "than", "usually", "is", "found", "in", "similar", "books", "."], "h": {"name": "sections", "pos": [1, 2]}, "t": {"name": "quantitative methods", "pos": [7, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["this", "book", "chapter", "provides", "pluralistic", "yet", "concise", "introduction", "to", "the", "doctrine", "and", "theory", "of", "employment", "discrimination", "law", "."], "h": {"name": "book chapter", "pos": [1, 3]}, "t": {"name": "doctrine", "pos": [10, 11]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["it", "is", "text", "at", "the", "top", "of", "a", "newspaper", "article", "indicating", "the", "nature", "of", "the", "article", "below", "it", "."], "h": {"name": "text", "pos": [2, 3]}, "t": {"name": "nature", "pos": [12, 13]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["these", "observations", "determine", "the", "high", "spatial", "resolution", "stellar", "kinematics", "within", "the", "nuclei", "of", "these", "galaxies", "."], "h": {"name": "observations", "pos": [1, 2]}, "t": {"name": "kinematics", "pos": [8, 9]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "three", "themes", "for", "the", "conference", "were", "pluralism", ",", "sustainability", "and", "innovation", "."], "h": {"name": "conference", "pos": [5, 6]}, "t": {"name": "pluralism", "pos": [7, 8]}, "relation": "Message-Topic(e1,e2)"}
{"token": ["the", "company", "fabricates", "plastic", "chairs", "."], "h": {"name": "company", "pos": [1, 2]}, "t": {"name": "chairs", "pos": [4, 5]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "family", "constructed", "some", "tcu", "horned", "frog", "supporting", "snow", "features", "as", "well", "as", "just", "a", "really", "nice", "picture", "of", "an", "old", "fashioned", "light", "post", "."], "h": {"name": "family", "pos": [1, 2]}, "t": {"name": "features", "pos": [9, 10]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "ubc", "graduate", "student", "spent", "his", "free", "time", "creating", "an", "application", "called", "colorsplash", "that", "lets", "people", "play", "with", "the", "colour", "in", "their", "digital", "photos", "."], "h": {"name": "student", "pos": [3, 4]}, "t": {"name": "application", "pos": [10, 11]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "software", "company", "addressed", "the", "problem", "with", "the", "publication", "of", "a", "fix", "on", "saturday", "."], "h": {"name": "company", "pos": [2, 3]}, "t": {"name": "publication", "pos": [8, 9]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "foundry", "'s", "major", "product", "lines", "include", "manhole", "frames", "and", "utility", "covers", ",", "airport", "castings", ",", "drainage", "products", ",", "trench", "grates", ",", "hydrant", "and", "valve", "components", ",", "and", "industrial", "castings", "."], "h": {"name": "foundry", "pos": [1, 2]}, "t": {"name": "frames", "pos": [8, 9]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "placenta", "fully", "functions", "at", "this", "time", "and", "the", "fetus", "makes", "insulin", "and", "urinates", "."], "h": {"name": "fetus", "pos": [9, 10]}, "t": {"name": "insulin", "pos": [11, 12]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["to", "test", "the", "punch", ",", "the", "punchcutter", "makes", "an", "imprint", "on", "a", "piece", "of", "paper", "after", "coating", "the", "punch", "with", "soot", "from", "an", "open", "flame", "."], "h": {"name": "punchcutter", "pos": [6, 7]}, "t": {"name": "imprint", "pos": [9, 10]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["researchers", "synthesized", "the", "basic", "ingredients", "."], "h": {"name": "researchers", "pos": [0, 1]}, "t": {"name": "ingredients", "pos": [4, 5]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["simply", "taking", "something", "because", "it", "'s", "there", "is", "unfair", "to", "the", "person", "who", "created", "the", "content", ",", "and", "whose", "rights", "come", "first", "."], "h": {"name": "person", "pos": [11, 12]}, "t": {"name": "content", "pos": [15, 16]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["andronicus", "wrote", "a", "work", "upon", "aristotle", ",", "the", "fifth", "book", "of", "which", "contained", "a", "complete", "list", "of", "the", "philosopher", "'s", "writings", "."], "h": {"name": "philosopher", "pos": [18, 19]}, "t": {"name": "writings", "pos": [20, 21]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["in", "the", "foreground", "a", "large", "upright", "stone", ",", "carved", "in", "roman", "capitals", ",", "still", "exhibits", "the", "name", "of", "a", "builder", "of", "mausoleums", "and", "cenotaphs", "."], "h": {"name": "builder", "pos": [19, 20]}, "t": {"name": "cenotaphs", "pos": [23, 24]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["my", "grandfather", "reveals", "some", "of", "his", "ancestors", "by", "telling", "a", "humorous", "family", "story", "."], "h": {"name": "grandfather", "pos": [1, 2]}, "t": {"name": "story", "pos": [12, 13]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "county", "commissioners", "had", "deeded", "the", "district", "an", "acre", "of", "land", ",", "and", "volunteer", "labor", "had", "put", "up", "a", "building", "."], "h": {"name": "labor", "pos": [14, 15]}, "t": {"name": "building", "pos": [19, 20]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["tributes", "have", "been", "paid", "to", "the", "writer", "who", "created", "goodness", "gracious", "me", ",", "the", "hit", "bbc", "television", "series", "."], "h": {"name": "writer", "pos": [6, 7]}, "t": {"name": "series", "pos": [17, 18]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["a", "musician", "who", "has", "written", "an", "album", "describing", "suicide", "bombers", "has", "said", "he", "is", "prepared", "to", "be", "imprisoned", "under", "new", "anti-terrorism", "legislation", "."], "h": {"name": "musician", "pos": [1, 2]}, "t": {"name": "album", "pos": [6, 7]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["certainly", "it", "did", "to", "the", "writer", "at", "ad", "agency", "saatchi", "'s", "who", "pencilled", "up", "a", "storyboard", "showing", "a", "landcruiser", "emerging", "from", "the", "far", "side", "of", "the", "world", "."], "h": {"name": "writer", "pos": [5, 6]}, "t": {"name": "storyboard", "pos": [15, 16]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["in", "the", "1960s", ",", "a", "university", "of", "wisconsin", "graduate", "student", "named", "thomas", "crocker", "came", "up", "with", "a", "novel", "solution", "for", "environmental", "problems", "."], "h": {"name": "student", "pos": [9, 10]}, "t": {"name": "solution", "pos": [18, 19]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "outspoken", "cricket", "commentator", "'s", "obscenity", "as", "south", "africa", "lost", "their", "sixth", "wicket", "was", "heard", "by", "listeners", "."], "h": {"name": "commentator", "pos": [3, 4]}, "t": {"name": "obscenity", "pos": [5, 6]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["it", "is", "used", "by", "the", "grasshoppers", "to", "force", "a", "burrow", "in", "the", "earth", "to", "receive", "the", "eggs", "."], "h": {"name": "grasshoppers", "pos": [5, 6]}, "t": {"name": "burrow", "pos": [9, 10]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "students", "had", "decorated", "the", "blackboard", "with", "a", "drawing", "of", "a", "young", "woman", "and", "a", "bright", "yellow", "moon", "."], "h": {"name": "students", "pos": [1, 2]}, "t": {"name": "drawing", "pos": [8, 9]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["in", "march", "1995", "the", "defendant", "swore", "an", "affidavit", "in", "which", "he", "referred", "to", "sales", "of", "parts", "of", "the", "farm", "land", "and", "an", "offer", "for", "the", "wareham", "property", "."], "h": {"name": "defendant", "pos": [4, 5]}, "t": {"name": "affidavit", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["a", "major", "product", "of", "the", "factory", "was", "decorative", "quarry", "glass", "which", "was", "mass-produced", "by", "moulding", "and", "printing", ",", "rather", "than", "hand-cutting", "and", "painting", "."], "h": {"name": "factory", "pos": [5, 6]}, "t": {"name": "glass", "pos": [9, 10]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "purported", "author", "of", "the", "nancy", "drew", "mystery", "series", ",", "``", "carolyn", "keene", "''", ",", "is", "actually", "a", "pseudonym", "for", "a", "series", "of", "ghostwriters", "who", "write", "books", "in", "the", "same", "style", "using", "a", "template", "of", "basic", "information", "about", "the", "book", "'s", "characters", "and", "their", "fictional", "universe", "."], "h": {"name": "ghostwriters", "pos": [23, 24]}, "t": {"name": "books", "pos": [26, 27]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["under", "the", "ownership", "of", "max", "blanck", "and", "isaac", "harris", ",", "the", "factory", "produced", "women", "'s", "blouses", "(", "known", "at", "the", "time", "as", "``", "shirtwaists", "''", ")", "."], "h": {"name": "factory", "pos": [11, 12]}, "t": {"name": "blouses", "pos": [15, 16]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["there", "were", "no", "vegetarian", "entrees", "on", "the", "menu", ",", "but", "the", "kitchen", "quickly", "prepared", "a", "beautiful", "meal", "of", "8", "different", "steamed", "vegetables", "."], "h": {"name": "kitchen", "pos": [11, 12]}, "t": {"name": "meal", "pos": [16, 17]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["already", "by", "the", "middle", "of", "the", "eighteenth", "century", ",", "several", "small", "clockmaking", "shops", "produced", "cuckoo", "clocks", "with", "wooden", "gears", "."], "h": {"name": "shops", "pos": [12, 13]}, "t": {"name": "clocks", "pos": [15, 16]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "new", "pencil", "and", "graphite", "drawing", "is", "the", "painter", "'s", "first", "self-portrait", "in", "35", "years", "and", "took", "six", "years", "to", "complete", "."], "h": {"name": "painter", "pos": [8, 9]}, "t": {"name": "self-portrait", "pos": [11, 12]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["in", "antiquity", ",", "people", "knew", "that", "bees", "produce", "delicious", "honey", ",", "that", "they", "sting", ",", "and", "that", "they", "increase", "their", "numbers", "by", "swarming", "."], "h": {"name": "bees", "pos": [6, 7]}, "t": {"name": "honey", "pos": [9, 10]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["it", "was", "terrific", "having", "lagravenese", "aboard", ",", "because", "he", "was", "the", "guy", "who", "thought", "up", "the", "whole", "story", ",", "and", "to", "ask", "his", "opinion", "was", "very", "valuable", "."], "h": {"name": "guy", "pos": [11, 12]}, "t": {"name": "story", "pos": [17, 18]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["technicians", "quickly", "prepared", "the", "stage", "for", "the", "headliner", "."], "h": {"name": "technicians", "pos": [0, 1]}, "t": {"name": "stage", "pos": [4, 5]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["each", "day", "during", "the", "breeding", "season", ",", "the", "male", "digs", "a", "pit", "into", "his", "mound", "and", "sticks", "his", "head", "in", "."], "h": {"name": "male", "pos": [8, 9]}, "t": {"name": "pit", "pos": [11, 12]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "23-year-old", "rapper", "has", "recently", "completed", "a", "song", "with", "the", "hip-hop", "superstar", "and", "announced", "it", "would", "appear", "on", "his", "debut", "lp", "thank", "me", "later", "."], "h": {"name": "rapper", "pos": [2, 3]}, "t": {"name": "song", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["mouth", "blown", "by", "a", "glass-blower", ",", "each", "vase", "is", "slightly", "different", "."], "h": {"name": "glass-blower", "pos": [4, 5]}, "t": {"name": "vase", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["chinese", "construction", "workers", "build", "the", "port", "at", "hambantota", "that", "analysts", "believe", "will", "become", "a", "base", "for", "its", "navy", "."], "h": {"name": "workers", "pos": [2, 3]}, "t": {"name": "port", "pos": [5, 6]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "ombudsman", "'s", "report", "concluded", "that", "``", "a", "large", "part", "of", "the", "package", "was", "not", "provided", "''", "."], "h": {"name": "ombudsman", "pos": [1, 2]}, "t": {"name": "report", "pos": [3, 4]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["twisters", "generally", "fill", "their", "creations", "with", "a", "gas", "other", "than", "helium", ",", "as", "these", "designs", "will", "not", "usually", "float", "anyway", "."], "h": {"name": "twisters", "pos": [0, 1]}, "t": {"name": "creations", "pos": [4, 5]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["during", "experiments", "in", "captivity", ",", "capuchins", "have", "made", "flint", "knives", "after", "banging", "a", "piece", "of", "flint", "against", "the", "floor", "until", "it", "broke", "."], "h": {"name": "capuchins", "pos": [5, 6]}, "t": {"name": "knives", "pos": [9, 10]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["my", "neighbour", "has", "erected", "a", "fence", "and", "it", "has", "been", "built", "on", "our", "land", ",", "not", "on", "the", "boundary", "."], "h": {"name": "neighbour", "pos": [1, 2]}, "t": {"name": "fence", "pos": [5, 6]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["one", "soldier", "was", "brutally", "frank", "in", "a", "message", "posted", "on", "a", "website", "last", "week", "."], "h": {"name": "soldier", "pos": [1, 2]}, "t": {"name": "message", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["in", "another", "two", "short", "sessions", ",", "the", "duo", "produced", "six", "or", "seven", "songs", ",", "two", "of", "which", "just", "did", "n't", "fit", "the", "mood", "of", "the", "album", "."], "h": {"name": "duo", "pos": [7, 8]}, "t": {"name": "songs", "pos": [12, 13]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "founder", "of", "a", "growing", "advertising", "agency", "is", "happy", "to", "see", "his", "business", "flourish", ",", "but", "is", "left", "wondering", "what", "his", "role", "is", "now", "that", "others", "have", "taken", "over", "."], "h": {"name": "founder", "pos": [1, 2]}, "t": {"name": "agency", "pos": [6, 7]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["i", "was", "very", "lucky", "to", "have", "my", "friend", "from", "ballet", "knit", "a", "baby", "blanket", "for", "my", "daughter", "and", "my", "friend", "'s", "mother", "from", "austria", "knit", "a", "baby", "sweater", "."], "h": {"name": "mother", "pos": [21, 22]}, "t": {"name": "sweater", "pos": [27, 28]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "city", "has", "constructed", "some", "tourism", "facilities", "and", "a", "new", "police", "station", "in", "the", "showcase", "area", ",", "but", "no", "new", "houses", "are", "to", "be", "built", "here", "."], "h": {"name": "city", "pos": [1, 2]}, "t": {"name": "station", "pos": [11, 12]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "polish", "competition", "authority", "condemns", "a", "producer", "of", "paid", "tv", "programs", "for", "abusing", "of", "its", "dominant", "position", "in", "the", "licensing", "agreement", "with", "the", "cable", "tv", "operator", "."], "h": {"name": "producer", "pos": [6, 7]}, "t": {"name": "programs", "pos": [10, 11]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["patterson", "and", "a", "half-dozen", "scientists", "from", "several", "institutions", "compiled", "the", "global", "map", "using", "images", "from", "nasa", "'s", "historic", "voyager", "and", "galileo", "missions", "."], "h": {"name": "scientists", "pos": [4, 5]}, "t": {"name": "map", "pos": [11, 12]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["a", "man", "drew", "up", "a", "hit", "list", "before", "shooting", "ten", "people", "dead", "."], "h": {"name": "man", "pos": [1, 2]}, "t": {"name": "list", "pos": [6, 7]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["students", "worked", "together", "to", "create", "their", "own", "wiki", "on", "a", "given", "topic", "."], "h": {"name": "students", "pos": [0, 1]}, "t": {"name": "wiki", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["self-educated", "malawi", "boy", "builds", "windmills", "out", "of", "junk", "."], "h": {"name": "boy", "pos": [2, 3]}, "t": {"name": "windmills", "pos": [4, 5]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "world", "'s", "largest", "shipyard", "in", "ulsan", "slips", "a", "newly-built", ",", "multi-million", "dollar", "vessel", "into", "the", "water", "every", "four", "working", "days", "."], "h": {"name": "shipyard", "pos": [4, 5]}, "t": {"name": "vessel", "pos": [13, 14]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "historic", "district", "commission", "members", "drafted", "a", "demolition", "delay", "ordinance", "that", "went", "before", "the", "board", "of", "selectmen", "last", "year", "."], "h": {"name": "members", "pos": [4, 5]}, "t": {"name": "ordinance", "pos": [9, 10]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "company", "has", "constructed", "a", "demonstration", "house", "at", "the", "bre", "innovation", "park", ",", "at", "watford", ",", "using", "the", "same", "combination", "of", "timber", "and", "hemcrete", "."], "h": {"name": "company", "pos": [1, 2]}, "t": {"name": "house", "pos": [6, 7]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "administration", "has", "established", "a", "number", "of", "health", "posts", "and", "health", "centres", "to", "provide", "health", "care", "to", "amerindians", "."], "h": {"name": "administration", "pos": [1, 2]}, "t": {"name": "centres", "pos": [11, 12]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "man", "dug", "a", "three-foot-deep", "fire", "pit", "to", "roast", "a", "pig", ",", "but", "somehow", "fell", "into", "the", "fiery", "hole", "."], "h": {"name": "man", "pos": [1, 2]}, "t": {"name": "pit", "pos": [6, 7]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["a", "mother", "was", "seen", "to", "have", "built", "a", "small", "raft", "out", "of", "birch", "bark", "for", "her", "and", "her", "children", ",", "but", "it", "promptly", "sank", "among", "the", "ice", "floes", "."], "h": {"name": "mother", "pos": [1, 2]}, "t": {"name": "raft", "pos": [9, 10]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "official", "is", "one", "of", "the", "senior", "officials", "involved", "in", "drawing", "up", "the", "september", "dossier", "."], "h": {"name": "officials", "pos": [7, 8]}, "t": {"name": "dossier", "pos": [14, 15]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["a", "person", "who", "prepares", "baked", "goods", "as", "a", "profession", "is", "called", "a", "baker", "."], "h": {"name": "person", "pos": [1, 2]}, "t": {"name": "goods", "pos": [5, 6]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["human", "hands", "built", "this", "extravagant", "tomb", "for", "the", "god", "king", "."], "h": {"name": "hands", "pos": [1, 2]}, "t": {"name": "tomb", "pos": [5, 6]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["microsoft", "has", "put", "a", "price", "of", "$", "250000", "on", "the", "head", "of", "the", "creator", "of", "the", "conficker", "internet", "worm", "."], "h": {"name": "creator", "pos": [13, 14]}, "t": {"name": "worm", "pos": [18, 19]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["many", "tribes", "used", "animal", "hides", "to", "build", "houses", "such", "as", "tepees", "and", "wigwams", "."], "h": {"name": "tribes", "pos": [1, 2]}, "t": {"name": "houses", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "bank", "has", "drawn", "up", "plans", "for", "the", "same", "and", "may", "start", "scouting", "for", "partners", "over", "next", "few", "months", "."], "h": {"name": "bank", "pos": [1, 2]}, "t": {"name": "plans", "pos": [5, 6]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "bureau", "established", "an", "audit-and-risk", "committee", "based", "on", "the", "large", "number", "of", "receiverships", "and", "an", "external", "auditor", "was", "appointed", "to", "review", "all", "2009", "receivership", "files", "."], "h": {"name": "bureau", "pos": [1, 2]}, "t": {"name": "committee", "pos": [5, 6]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "convict", "protects", "pip", "with", "a", "claim", "that", "he", "stole", "the", "items", "himself", "."], "h": {"name": "convict", "pos": [1, 2]}, "t": {"name": "claim", "pos": [6, 7]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["in", "its", "last", "12", "meetings", "this", "year", "the", "committee", "has", "made", "about", "30-35", "recommendations", "."], "h": {"name": "committee", "pos": [8, 9]}, "t": {"name": "recommendations", "pos": [13, 14]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["an", "employee", "posted", "a", "negative", "comment", "about", "the", "company", "on", "facebook", "."], "h": {"name": "employee", "pos": [1, 2]}, "t": {"name": "comment", "pos": [5, 6]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "cappuccino", "'s", "climate", "change", "impact", "depends", "on", "whether", "the", "cafe", "is", "double-glazed", ",", "the", "decisions", "the", "staff", "and", "i", "take", "to", "get", "there", ",", "the", "diet", "of", "the", "methane-producing", "cow", "that", "produced", "the", "milk", "and", "the", "source", "of", "power", "for", "the", "espresso", "machine", "."], "h": {"name": "cow", "pos": [30, 31]}, "t": {"name": "milk", "pos": [34, 35]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "chief", "executive", "of", "bottega", "veneta", ",", "the", "italian", "maker", "of", "the", "coveted", "and", "distinctive", "woven", "handbags", ",", "is", "planning", "for", "the", "worst", "while", "hoping", "for", "something", "better", "."], "h": {"name": "maker", "pos": [9, 10]}, "t": {"name": "handbags", "pos": [16, 17]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "contestant", "gave", "an", "answer", "that", "drew", "a", "mixed", "reaction", "from", "the", "audience", "."], "h": {"name": "contestant", "pos": [1, 2]}, "t": {"name": "answer", "pos": [4, 5]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "researchers", "produced", "a", "report", "which", "has", ",", "literally", ",", "saved", "their", "jobs", "."], "h": {"name": "researchers", "pos": [1, 2]}, "t": {"name": "report", "pos": [4, 5]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["this", "lot", "are", "simply", "an", "ace", "young", "british", "pop", "band", ",", "who", "recorded", "the", "most", "consistent", "power-pop", "album", "of", "2009", "."], "h": {"name": "band", "pos": [9, 10]}, "t": {"name": "album", "pos": [17, 18]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "marketing", "research", "firm", "reeased", "a", "recent", "report", "saying", "the", "number", "of", "americans", "watching", "online", "video", "has", "more", "than", "tripled", "in", "the", "last", "5", "years", "."], "h": {"name": "firm", "pos": [3, 4]}, "t": {"name": "report", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "archives", "also", "publish", "historical", "and", "scientific", "studies", "."], "h": {"name": "archives", "pos": [1, 2]}, "t": {"name": "studies", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["scientists", "responsible", "for", "analysing", "the", "seizures", "have", "given", "a", "warning", "that", "traffickers", "are", "turning", "to", "hospital", "x-ray", "equipment", "and", "laboratory", "supplies", "as", "an", "illicit", "source", "of", "radioactive", "material", "."], "h": {"name": "scientists", "pos": [0, 1]}, "t": {"name": "warning", "pos": [9, 10]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "poet", "'s", "sizable", "oeuvre", "includes", "very", "little", "prose", "but", "more", "than", "500", "published", "poems", "."], "h": {"name": "poet", "pos": [1, 2]}, "t": {"name": "poems", "pos": [14, 15]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["well", ",", "he", "'s", "only", "the", "creator", "of", "possibly", "the", "most", "played", "computer", "game", "ever", "written", "."], "h": {"name": "creator", "pos": [6, 7]}, "t": {"name": "game", "pos": [13, 14]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["why", "exactly", "the", "physicist", "came", "up", "with", "the", "term", "``", "black", "hole", "''", "i", "'m", "not", "sure", "of", ",", "but", "you", "might", "be", "able", "to", "find", "out", "in", "his", "autobiography", "."], "h": {"name": "physicist", "pos": [3, 4]}, "t": {"name": "term", "pos": [8, 9]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["during", "his", "reign", ",", "two", "working", "groups", "under", "the", "lead", "of", "the", "engineer", "eupalinos", "dug", "a", "tunnel", "through", "mount", "kastro", "."], "h": {"name": "groups", "pos": [6, 7]}, "t": {"name": "tunnel", "pos": [16, 17]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["in", "1993", "the", "party", "won", "the", "governorship", "with", "a", "pledge", "to", "cut", "income", "taxes", "30", "%", "."], "h": {"name": "party", "pos": [3, 4]}, "t": {"name": "pledge", "pos": [9, 10]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "partners", "were", "a", "producer", "of", "required", "machinery", "and", "a", "research", "institute", "."], "h": {"name": "producer", "pos": [4, 5]}, "t": {"name": "machinery", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["my", "8", "year", "old", "daughter", "came", "up", "with", "an", "extremely", "good", "idea", "."], "h": {"name": "daughter", "pos": [4, 5]}, "t": {"name": "idea", "pos": [11, 12]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "sculpture", "is", "considered", "among", "the", "artist", "'s", "most", "restrained", "creations", "."], "h": {"name": "artist", "pos": [6, 7]}, "t": {"name": "creations", "pos": [10, 11]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["this", "musician", "and", "instrument", "maker", "makes", "dulcimers", "that", "meet", "his", "own", "demanding", "requirements", "as", "a", "player", "."], "h": {"name": "musician", "pos": [1, 2]}, "t": {"name": "dulcimers", "pos": [6, 7]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["beavers", "also", "build", "canals", "to", "float", "build", "materials", "that", "are", "difficult", "to", "haul", "over", "land", "."], "h": {"name": "beavers", "pos": [0, 1]}, "t": {"name": "canals", "pos": [3, 4]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "world", "'s", "top", "golfer", "said", "in", "a", "statement", "on", "his", "website", "that", "he", "had", "let", "his", "family", "down", "and", "that", "he", "regretted", "those", "``", "transgressions", "with", "all", "of", "my", "heart", "''", "."], "h": {"name": "golfer", "pos": [4, 5]}, "t": {"name": "statement", "pos": [8, 9]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["to", "solve", "this", "problem", "tommy", "flowers", ",", "an", "engineer", "who", "worked", "for", "the", "post", "office", ",", "designed", "a", "machine", "which", "worked", "on", "the", "digital", "data", "stream", "of", "the", "lorenz", "traffic", "and", "could", "carry", "out", "the", "statistical", "tests", "needed", "to", "find", "the", "key", "."], "h": {"name": "engineer", "pos": [8, 9]}, "t": {"name": "machine", "pos": [18, 19]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["i", "dunno", ",", "i", "'m", "kinda", "leaning", "towards", "some", "props", "for", "the", "person", "that", "came", "up", "with", "brakes", "."], "h": {"name": "person", "pos": [12, 13]}, "t": {"name": "brakes", "pos": [17, 18]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["annie", "'s", "the", "inventor", "of", "the", "astoundingly", "clever", "flip", "knit", ",", "a", "low", "tech", ",", "portable", "alternative", "to", "knitting", "videos", "."], "h": {"name": "inventor", "pos": [3, 4]}, "t": {"name": "alternative", "pos": [16, 17]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["in", "1950", "the", "factory", "began", "to", "manufacture", "banduras", ",", "initially", "using", "the", "construction", "plans", "of", "chernihiv", "bandura", "maker", "."], "h": {"name": "factory", "pos": [3, 4]}, "t": {"name": "banduras", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["researchers", "have", "turned", "a", "mouse", "into", "a", "factory", "for", "human", "liver", "cells", "."], "h": {"name": "factory", "pos": [7, 8]}, "t": {"name": "cells", "pos": [11, 12]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["a", "cooper", "makes", "leak", "proof", "wooden", "barrels", ",", "tubs", ",", "and", "pails", "."], "h": {"name": "cooper", "pos": [1, 2]}, "t": {"name": "barrels", "pos": [6, 7]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["to", "oversimplify", ",", "in", "a", "village", "the", "potter", "makes", "a", "pot", "for", "the", "brewer", "and", "the", "brewer", "compensates", "the", "potter", "by", "giving", "him", "a", "certain", "amount", "of", "beer", "."], "h": {"name": "potter", "pos": [7, 8]}, "t": {"name": "pot", "pos": [10, 11]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "italian", "manager", "has", "drawn", "up", "a", "list", "of", "potential", "targets", "to", "reinforce", "his", "depleted", "defensive", "options", "."], "h": {"name": "manager", "pos": [2, 3]}, "t": {"name": "list", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["since", "leaving", "the", "bay", "area", "for", "brooklyn", "in", "1999", ",", "the", "violinist", "has", "constructed", "a", "mind-bogglingly", "disparate", "body", "of", "work", "."], "h": {"name": "violinist", "pos": [11, 12]}, "t": {"name": "body", "pos": [17, 18]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "government", "established", "an", "independent", "agency", "which", "is", "to", "boost", "quality", "in", "higher", "education", "."], "h": {"name": "government", "pos": [1, 2]}, "t": {"name": "agency", "pos": [5, 6]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["halfway", "into", "the", "flight", "to", "la", ",", "a", "passenger", "took", "a", "photograph", "and", "the", "icy", "blue", "flash", "from", "the", "camera", "bounced", "momentarily", "across", "the", "dimly", "lit", "cabin", "."], "h": {"name": "passenger", "pos": [8, 9]}, "t": {"name": "photograph", "pos": [11, 12]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "same", "stone", "mason", "who", "did", "the", "stonework", "of", "the", "first", "mill", "dam", "put", "up", "the", "walls", "."], "h": {"name": "mason", "pos": [3, 4]}, "t": {"name": "walls", "pos": [16, 17]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["mozart", "'s", "piano", "concertos", "are", "the", "composer", "'s", "finest", "instrumental", "works", "."], "h": {"name": "composer", "pos": [6, 7]}, "t": {"name": "works", "pos": [10, 11]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["a", "spanish", "man", "built", "a", "homemade", "submersible", "to", "carry", "cocaine", "."], "h": {"name": "man", "pos": [2, 3]}, "t": {"name": "submersible", "pos": [6, 7]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "evangelist", "blasts", "the", "patrons", "with", "the", "news", "that", "they", "'re", "going", "to", "hell", ",", "if", "they", "do", "n't", "come", "to", "his", "meeting", "and", "get", "saved", "."], "h": {"name": "evangelist", "pos": [1, 2]}, "t": {"name": "news", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["within", "a", "matter", "of", "months", ",", "tavi", "gevinson", ",", "the", "author", "of", "a", "blog", "called", "style", "rookie", ",", "was", "feted", "by", "designers", "."], "h": {"name": "author", "pos": [10, 11]}, "t": {"name": "blog", "pos": [13, 14]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["a", "computer", "program", "called", "trakl'bigi", "generates", "poems", "in", "the", "style", "of", "the", "expressionist", "poet", "georg", "trakl", "."], "h": {"name": "program", "pos": [2, 3]}, "t": {"name": "poems", "pos": [6, 7]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "foundry", "'s", "main", "business", "is", "the", "manufacture", "of", "church", "bells", "and", "their", "fittings", "and", "accessories", "."], "h": {"name": "foundry", "pos": [1, 2]}, "t": {"name": "bells", "pos": [10, 11]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "work", "was", "such", "a", "popular", "success", "that", "the", "poet", "wrote", "a", "sequel", "."], "h": {"name": "poet", "pos": [9, 10]}, "t": {"name": "sequel", "pos": [12, 13]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "company", "has", "assembled", "a", "portfolio", "of", "precious", "and", "base", "metal", "exploration", "prospects", "in", "ontario", ",", "saskatchewan", ",", "and", "the", "north", "west", "territories", "."], "h": {"name": "company", "pos": [1, 2]}, "t": {"name": "portfolio", "pos": [5, 6]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["members", "of", "the", "bletchley", "team", "went", "on", "to", "build", "the", "first", "post-war", "computers", "in", "the", "uk", ",", "at", "manchester", "and", "cambridge", "."], "h": {"name": "members", "pos": [0, 1]}, "t": {"name": "computers", "pos": [12, 13]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["a", "year", "later", ",", "in", "september", "1941", ",", "he", "and", "a", "fellow", "prisoner", "dug", "a", "tunnel", "from", "an", "incinerator", "to", "a", "point", "beyond", "the", "perimeter", "."], "h": {"name": "prisoner", "pos": [12, 13]}, "t": {"name": "tunnel", "pos": [15, 16]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["an", "eyewitness", "account", "to", "a", "turning", "point", "in", "the", "civil", "war", ",", "from", "the", "pen", "of", "a", "she-rebel", "chronicles", "not", "only", "a", "community", "'s", "near", "destruction", "but", "also", "its", "endurance", "."], "h": {"name": "eyewitness", "pos": [1, 2]}, "t": {"name": "account", "pos": [2, 3]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "country", "has", "resumed", "manufacturing", "of", "components", "and", "assembly", "of", "centrifuge", "machines", "under", "iaea", "supervision", "."], "h": {"name": "country", "pos": [1, 2]}, "t": {"name": "machines", "pos": [11, 12]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "designer", "made", "up", "these", "sets", "for", "us", "from", "leftover", "fabirc", "."], "h": {"name": "designer", "pos": [1, 2]}, "t": {"name": "sets", "pos": [5, 6]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "researcher", "started", "the", "interview", "with", "a", "question", "on", "relationships", "and", "their", "relation", "to", "staff", "retention", "in", "an", "acute", "perioperative", "environment", "."], "h": {"name": "researcher", "pos": [1, 2]}, "t": {"name": "question", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["a", "catfish", ",", "some", "fish", "that", "have", "spawned", "eggs", "and", "an", "anglerfish", "is", "all", "i", "can", "remember", "."], "h": {"name": "fish", "pos": [4, 5]}, "t": {"name": "eggs", "pos": [8, 9]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["boston", "university", "biomedical", "engineers", "have", "devised", "a", "method", "for", "making", "future", "genome", "sequencing", "faster", "and", "cheaper", "."], "h": {"name": "engineers", "pos": [3, 4]}, "t": {"name": "method", "pos": [7, 8]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["questions", "about", "pullman", "'s", "plans", "for", "new", "his", "dark", "materials", "'", "books", "reveal", "that", "the", "author", "has", "just", "finished", "a", "short", "book", "."], "h": {"name": "author", "pos": [15, 16]}, "t": {"name": "book", "pos": [21, 22]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "chicago", "museum", "dug", "a", "pit", "in", "front", "of", "the", "building", "and", "built", "a", "new", "display", "area", "for", "the", "zephyr", ",", "where", "it", "could", "be", "displayed", "year-round", "."], "h": {"name": "museum", "pos": [2, 3]}, "t": {"name": "pit", "pos": [5, 6]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["in", "1792", ",", "the", "emperor", "issued", "a", "29-point", "decree", "which", "appeared", "to", "tighten", "qing", "control", "over", "tibet", "."], "h": {"name": "emperor", "pos": [4, 5]}, "t": {"name": "decree", "pos": [8, 9]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["in", "berlin", ",", "the", "communists", "threw", "up", "a", "wall", "of", "barbed", "wire", "and", "stone", "to", "block", "the", "exit", "of", "freedom-seeking", "germans", "."], "h": {"name": "communists", "pos": [4, 5]}, "t": {"name": "wall", "pos": [8, 9]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["a", "model", "maker", "is", "a", "professional", "craftsperson", "who", "creates", "a", "3-dimensional", "representation", "of", "a", "design", "or", "concept", "."], "h": {"name": "craftsperson", "pos": [6, 7]}, "t": {"name": "representation", "pos": [11, 12]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "sweetcorn", "produced", "a", "massive", "box", "of", "earwig", "filled", "sweet", "cobs", "."], "h": {"name": "sweetcorn", "pos": [1, 2]}, "t": {"name": "cobs", "pos": [10, 11]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["a", "chocolate", "maker", ",", "on", "the", "other", "hand", ",", "is", "the", "person", "who", "physically", "creates", "the", "couverture", "from", "cacao", "beans", "and", "other", "ingredients", "."], "h": {"name": "person", "pos": [11, 12]}, "t": {"name": "couverture", "pos": [16, 17]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["yesterday", "the", "team", "recycled", "200kg", "of", "unwanted", "knitting", "wool", "into", "insulation", "."], "h": {"name": "team", "pos": [2, 3]}, "t": {"name": "insulation", "pos": [10, 11]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["a", "preface", "(", "pronounced", "``", "preffus", "''", ")", "is", "an", "introduction", "to", "a", "book", "written", "by", "the", "author", "of", "the", "book", "."], "h": {"name": "author", "pos": [17, 18]}, "t": {"name": "book", "pos": [20, 21]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["along", "the", "way", "the", "women", "developed", "a", "distinctive", "style", ",", "noted", "for", "its", "lively", "improvisations", "and", "geometric", "simplicity", "."], "h": {"name": "women", "pos": [4, 5]}, "t": {"name": "style", "pos": [8, 9]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["fuller", "'s", "is", "a", "brewer", "of", "distinguished", ",", "prize-winning", "british", "ales", "crafted", "with", "over", "150", "years", "of", "pride", "and", "tradition", "."], "h": {"name": "brewer", "pos": [4, 5]}, "t": {"name": "ales", "pos": [10, 11]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "director", "shot", "some", "additional", "footage", "."], "h": {"name": "director", "pos": [1, 2]}, "t": {"name": "footage", "pos": [5, 6]}, "relation": "Product-Producer(e2,e1)"}
{"token": ["the", "school", "master", "teaches", "the", "lesson", "with", "a", "stick", "."], "h": {"name": "master", "pos": [2, 3]}, "t": {"name": "stick", "pos": [8, 9]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "witch", "is", "able", "to", "change", "events", "by", "using", "magic", "."], "h": {"name": "witch", "pos": [1, 2]}, "t": {"name": "magic", "pos": [9, 10]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "bedouin", "mediator", "again", "returned", "her", "when", "her", "father", "promised", "not", "to", "hurt", "her", ",", "and", "then", "her", "father", "killed", "her", "with", "an", "iron", "bar", "."], "h": {"name": "father", "pos": [18, 19]}, "t": {"name": "bar", "pos": [24, 25]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["many", "professional", "cartomancers", "use", "a", "regular", "deck", "of", "playing", "cards", "for", "divination", "."], "h": {"name": "cartomancers", "pos": [2, 3]}, "t": {"name": "cards", "pos": [9, 10]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["carpenters", "build", "many", "things", "from", "wood", "and", "other", "materials", ",", "like", "buildings", "and", "boats", "."], "h": {"name": "carpenters", "pos": [0, 1]}, "t": {"name": "wood", "pos": [5, 6]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["with", "our", "help", ",", "non-profit", "human", "service", "organizations", "effectively", "manage", "their", "resources", "and", "succeed", "in", "the", "modern", "era", "of", "human", "services", "."], "h": {"name": "organizations", "pos": [7, 8]}, "t": {"name": "resources", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "multi-purpose", "electrician", "pliers", "tool", "is", "crucial", "for", "severing", "any", "gauge", "wire", "with", "which", "the", "electrician", "is", "working", "."], "h": {"name": "electrician", "pos": [2, 3]}, "t": {"name": "tool", "pos": [4, 5]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["hospitals", "today", "use", "a", "``", "blowby", "''", "apparatus", "for", "this", "purpose", "."], "h": {"name": "hospitals", "pos": [0, 1]}, "t": {"name": "apparatus", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["analysts", "assess", "distribution", "and", "changes", "in", "distribution", "over", "time", "by", "using", "frequency", "."], "h": {"name": "analysts", "pos": [0, 1]}, "t": {"name": "frequency", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "core", "of", "the", "analyzer", "first", "identifies", "the", "infeasible", "paths", "using", "the", "constraint", "propagation", "method", "."], "h": {"name": "analyzer", "pos": [4, 5]}, "t": {"name": "method", "pos": [14, 15]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "busy", "crew", "behind", "the", "counter", "assembles", "the", "sandwiches", "with", "two", "pieces", "of", "fried", "chicken", "breast", ",", "which", "are", "beautifully", "battered", "."], "h": {"name": "crew", "pos": [2, 3]}, "t": {"name": "breast", "pos": [15, 16]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["silent", "black-and-white", "flashbacks", "show", "his", "brother", "punching", "him", "with", "gloves", "as", "his", "father", "looks", "on", "."], "h": {"name": "brother", "pos": [5, 6]}, "t": {"name": "gloves", "pos": [9, 10]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "port", "st.", "lucie", "man", "who", "stole", "a", "delivery", "driver", "'s", "keys", "to", "get", "back", "at", "him", "over", "a", "grudge", "has", "been", "arrested", "on", "felony", "burglary", "charges", "."], "h": {"name": "driver", "pos": [9, 10]}, "t": {"name": "keys", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "swat", "team", "breaks", "open", "a", "2nd-floor", "door", "with", "a", "battering", "ram", "."], "h": {"name": "team", "pos": [2, 3]}, "t": {"name": "ram", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["for", "example", ",", "the", "photo", "at", "the", "top", "of", "the", "page", "shows", "a", "pilot", "'s", "emergency", "kit", "with", "a", "watch", "type", "compass", "included", "."], "h": {"name": "pilot", "pos": [13, 14]}, "t": {"name": "kit", "pos": [16, 17]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["your", "doctor", "tells", "your", "blood", "pressure", "by", "using", "a", "sphygmomanometer", ",", "which", "is", "the", "instrument", "for", "measuring", "blood", "pressure", "."], "h": {"name": "doctor", "pos": [1, 2]}, "t": {"name": "sphygmomanometer", "pos": [9, 10]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["ansari", "allegdely", "bombed", "jhaveri", "bazaar", "and", "the", "family", "took", "the", "taxi", "to", "the", "gateway", "of", "india", "."], "h": {"name": "family", "pos": [7, 8]}, "t": {"name": "taxi", "pos": [10, 11]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["after", "they", "finish", "wiring", ",", "electricians", "use", "ohmmeters", ",", "voltmeters", ",", "and", "oscilloscopes", "to", "measure", "the", "amount", "of", "electricity", "running", "through", "the", "system", "."], "h": {"name": "electricians", "pos": [5, 6]}, "t": {"name": "ohmmeters", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["on", "instruments", "with", "stoppable", "strings", ",", "such", "as", "the", "violin", "or", "guitar", ",", "the", "player", "shortens", "the", "vibrating", "length", "of", "the", "string", "."], "h": {"name": "player", "pos": [14, 15]}, "t": {"name": "string", "pos": [21, 22]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["condo", "associations", "are", "turning", "to", "receiverships", "to", "collect", "rent", "on", "foreclosed", "units", "."], "h": {"name": "associations", "pos": [1, 2]}, "t": {"name": "receiverships", "pos": [5, 6]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["her", "husband", "copes", "well", "with", "his", "handicap", "in", "using", "a", "wooden", "leg", "."], "h": {"name": "husband", "pos": [1, 2]}, "t": {"name": "leg", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["she", "had", "struggled", "violently", "with", "her", "attacker", ",", "who", "killed", "her", "with", "a", "blunt", "instrument", "."], "h": {"name": "attacker", "pos": [6, 7]}, "t": {"name": "instrument", "pos": [14, 15]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "farmer", "ploughed", "the", "fields", "with", "this", "2-piece", "farm", "tractor", "."], "h": {"name": "farmer", "pos": [1, 2]}, "t": {"name": "tractor", "pos": [9, 10]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "playwright", "creates", "tension", "using", "many", "stage", "directions", "."], "h": {"name": "playwright", "pos": [1, 2]}, "t": {"name": "directions", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["rather", "than", "call", "a", "mobile", "mechanic", ",", "the", "drivers", "fixed", "the", "hole", "with", "a", "toothpick", "."], "h": {"name": "drivers", "pos": [8, 9]}, "t": {"name": "toothpick", "pos": [14, 15]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "first", "time", ",", "the", "guy", "hid", "the", "taximeter", "with", "a", "map", "and", "tried", "to", "get", "35", "euros", "instead", "of", "12", "."], "h": {"name": "guy", "pos": [5, 6]}, "t": {"name": "map", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["he", "encourages", "students", "to", "read", "beyond", "the", "mandatory", "texts", "in", "order", "to", "prepare", "for", "his", "exam", "."], "h": {"name": "students", "pos": [2, 3]}, "t": {"name": "texts", "pos": [8, 9]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["here", "a", "batter", "has", "mistakenly", "used", "his", "balls", "to", "hit", "the", "bat", "into", "the", "crowd", ",", "scoring", "a", "home", "run", "and", "extra", "casualties", "."], "h": {"name": "batter", "pos": [2, 3]}, "t": {"name": "balls", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "punks", "carefully", "chose", "objects", "to", "be", "used", "in", "a", "nihilistic", "approach", "to", "style", "."], "h": {"name": "punks", "pos": [1, 2]}, "t": {"name": "objects", "pos": [4, 5]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["at", "other", "times", ",", "the", "researcher", "approached", "the", "data", "with", "predetermined", "categories", "in", "mind", "."], "h": {"name": "researcher", "pos": [5, 6]}, "t": {"name": "categories", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["'wellness", "'", "tracker", "lures", "seniors", "to", "a", "data", "driven", "lifestyle", "."], "h": {"name": "seniors", "pos": [4, 5]}, "t": {"name": "data", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["once", "the", "data", "is", "collected", ",", "an", "emissions", "inventory", "is", "completed", "by", "staff", "using", "calculation", "tools", "from", "the", "ghg", "protocol", "."], "h": {"name": "staff", "pos": [12, 13]}, "t": {"name": "tools", "pos": [15, 16]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "server", "identifies", "the", "exam", "using", "the", "identifier", "and", "retrieves", "the", "corresponding", "template", "."], "h": {"name": "server", "pos": [1, 2]}, "t": {"name": "identifier", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["in", "a", "poetic", "series", "of", "alternately", "charming", ",", "dry", "and", "sometimes", "tragic", "aphorisms", "the", "biographer", "constructs", "a", "personality", "from", "minutiae", "."], "h": {"name": "biographer", "pos": [14, 15]}, "t": {"name": "minutiae", "pos": [19, 20]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "launcher", "receives", "the", "balls", "through", "a", "similar", "belt", "system", "leading", "up", "the", "neck", "of", "the", "robot", "from", "the", "ground", "."], "h": {"name": "launcher", "pos": [1, 2]}, "t": {"name": "system", "pos": [9, 10]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["as", "i", "travelled", "the", "world", "and", "had", "facials", "in", "every", "corner", ",", "i", "have", "finally", "found", "a", "therapist", "with", "such", "a", "perfect", "way", "of", "touching", "my", "face", "."], "h": {"name": "therapist", "pos": [17, 18]}, "t": {"name": "way", "pos": [22, 23]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["professional", "photographers", "use", "digital", "cameras", "."], "h": {"name": "photographers", "pos": [1, 2]}, "t": {"name": "cameras", "pos": [4, 5]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "girls", "drank", "the", "vodka", "out", "of", "plastic", "water", "bottles", "."], "h": {"name": "girls", "pos": [1, 2]}, "t": {"name": "bottles", "pos": [9, 10]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["many", "times", ",", "the", "problem", "of", "keeping", "track", "of", "depreciation", "rates", "in", "you", "fixed", "assets", "is", "attempted", "by", "managers", "using", "spreadsheets", "which", "they", "program", "themselves", "."], "h": {"name": "managers", "pos": [18, 19]}, "t": {"name": "spreadsheets", "pos": [20, 21]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["at", "my", "work", ",", "an", "electronic", "engineer", "has", "migrated", "into", "embedded", "software", "."], "h": {"name": "electronic engineer", "pos": [5, 7]}, "t": {"name": "embedded software", "pos": [10, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "law-maker", "narrowly", "escaped", "by", "fleeing", "from", "his", "house", "on", "a", "horse", "."], "h": {"name": "law-maker", "pos": [1, 2]}, "t": {"name": "horse", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "writer", "has", "a", "'bottle", "of", "ink", ",", "a", "pen", "and", "a", "blotter", "'", "."], "h": {"name": "writer", "pos": [1, 2]}, "t": {"name": "ink", "pos": [6, 7]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["to", "prepare", "for", "his", "exam", ",", "the", "student", "visited", "the", "isa", "website", "."], "h": {"name": "student", "pos": [7, 8]}, "t": {"name": "website", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["women", "improve", "lives", "of", "their", "families", "with", "the", "help", "of", "a", "few", "sheep", "."], "h": {"name": "women", "pos": [0, 1]}, "t": {"name": "sheep", "pos": [12, 13]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "definition", "of", "the", "vcard", "specification", "made", "use", "of", "a", "number", "of", "existing", "standards", "."], "h": {"name": "definition", "pos": [1, 2]}, "t": {"name": "standards", "pos": [13, 14]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "mess", "was", "rapidly", "cleaned", "by", "one", "of", "the", "waiters", "with", "a", "mop", "and", "disinfectant", "and", "the", "meal", "continued", "."], "h": {"name": "waiters", "pos": [9, 10]}, "t": {"name": "mop", "pos": [12, 13]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "shop", "has", "since", "``", "fixed", "''", "the", "problem", "with", "a", "method", "of", "their", "own", "(", "with", "approval", "from", "fsa", "apparently", ")", "and", "i", "have", "the", "cranks", "on", "my", "bike", "ready", "to", "use", "."], "h": {"name": "shop", "pos": [1, 2]}, "t": {"name": "method", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["we", "were", "forced", "to", "get", "off", "the", "bus", "and", "find", "accommodation", "for", "the", "night", ",", "while", "the", "police", "officers", "took", "the", "bus", "to", "the", "scene", "of", "the", "incident", ";", "apparently", "they", "were", "lacking", "their", "own", "transportation", "."], "h": {"name": "officers", "pos": [18, 19]}, "t": {"name": "bus", "pos": [21, 22]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "gunman", "bought", "his", "weapons", "legally", "from", "a", "champaign", "gun", "dealer", "."], "h": {"name": "gunman", "pos": [1, 2]}, "t": {"name": "weapons", "pos": [4, 5]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "baby", "uses", "a", "box", "of", "baby", "wipes", "per", "week", "."], "h": {"name": "baby", "pos": [1, 2]}, "t": {"name": "wipes", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["student", "support", "by", "telephone", "has", "a", "long", "tradition", "in", "open", "and", "distance", "learning", "."], "h": {"name": "student", "pos": [0, 1]}, "t": {"name": "telephone", "pos": [3, 4]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "user", "activates", "the", "device", "with", "the", "power-on", "button", "."], "h": {"name": "user", "pos": [1, 2]}, "t": {"name": "button", "pos": [8, 9]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["an", "artist", "creates", "sculptures", "using", "up", "to", "250000", "colouring", "crayons", "."], "h": {"name": "artist", "pos": [1, 2]}, "t": {"name": "crayons", "pos": [9, 10]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "technician", "uses", "an", "in-circuit", "emulator", "on", "the", "host", "pc", "to", "set", "breakpoints", ",", "read/write", "internal", "registers", ",", "dump", "memory", ",", "and", "perform", "other", "debugger-like", "functions", "."], "h": {"name": "technician", "pos": [1, 2]}, "t": {"name": "in-circuit emulator", "pos": [4, 6]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "bootlegger", "bought", "his", "staples", "there", ",", "as", "well", "as", "apples", "for", "his", "mash", "."], "h": {"name": "bootlegger", "pos": [1, 2]}, "t": {"name": "staples", "pos": [4, 5]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["in", "the", "sequence", ",", "the", "raven", "looks", "on", "as", "the", "witch", "stirs", "the", "cauldron", "with", "a", "huge", "bone", "."], "h": {"name": "witch", "pos": [10, 11]}, "t": {"name": "bone", "pos": [17, 18]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "man", "attacked", "women", "with", "a", "baseball", "bat", "."], "h": {"name": "man", "pos": [1, 2]}, "t": {"name": "bat", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "solid", "fuel", "in", "a", "conventional", "grill", "remains", "stationary", ",", "unless", "the", "cook", "manually", "stirs", "the", "coals", "with", "a", "stick", "or", "similar", "tool", "."], "h": {"name": "cook", "pos": [12, 13]}, "t": {"name": "coals", "pos": [16, 17]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "man", "pulled", "it", "and", "the", "staples", "off", "the", "door", ",", "prying", "gently", "with", "a", "putty", "knife", "."], "h": {"name": "man", "pos": [1, 2]}, "t": {"name": "knife", "pos": [16, 17]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["that", "night", ",", "at", "dinnertime", ",", "the", "prime", "mover", "eats", "the", "philosophical", "pickle", "with", "a", "hamburger", "."], "h": {"name": "mover", "pos": [8, 9]}, "t": {"name": "hamburger", "pos": [15, 16]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["as", "a", "strategic", "move", ",", "the", "researcher", "started", "the", "school", "with", "a", "third-year", "programme", "with", "mature", "students", "."], "h": {"name": "researcher", "pos": [6, 7]}, "t": {"name": "programme", "pos": [13, 14]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["instead", ",", "the", "architect", "measures", "'the", "sage", "'", "with", "a", "flexible", "strip", "of", "metal", "."], "h": {"name": "architect", "pos": [3, 4]}, "t": {"name": "strip", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["they", "chose", "a", "shop", "that", "oven", "bakes", "the", "paint", "in", "a", "down", "draft", "paint", "booth", "."], "h": {"name": "shop", "pos": [3, 4]}, "t": {"name": "booth", "pos": [14, 15]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "quarterback", "then", "wins", "the", "game", "with", "a", "``", "hail", "mary", "''", "pass", "."], "h": {"name": "quarterback", "pos": [1, 2]}, "t": {"name": "pass", "pos": [12, 13]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["pressure", "regulation", "using", "the", "valve", "and", "different", "amounts", "of", "fluid", "goes", "a", "long", "way", "in", "keeping", "your", "hydraulic", "log", "splitter", "in", "action", "."], "h": {"name": "regulation", "pos": [1, 2]}, "t": {"name": "valve", "pos": [4, 5]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["this", "government", "views", "science", "simply", "as", "a", "tool", "for", "profit", "generation", "."], "h": {"name": "government", "pos": [1, 2]}, "t": {"name": "science", "pos": [3, 4]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["this", "is", "an", "allegory", "illustrating", "a", "flemish", "proverb", "which", "shows", "a", "merchant", "with", "a", "basket", "of", "seven", "duct-flutes", "for", "sale", "."], "h": {"name": "merchant", "pos": [11, 12]}, "t": {"name": "duct-flutes", "pos": [17, 18]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "meeting", "decided", "definitively", "by", "secret", "vote", "of", "at", "least", "2/3", "of", "those", "present", "entitled", "to", "vote", "."], "h": {"name": "meeting", "pos": [1, 2]}, "t": {"name": "vote", "pos": [6, 7]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "project", "uses", "art", "as", "an", "instrument", "to", "provide", "viewers", "different", "insights", "."], "h": {"name": "project", "pos": [1, 2]}, "t": {"name": "art", "pos": [3, 4]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["he", "proposed", "writing", "a", "teacher", "'s", "guide", "to", "blackboard", "drawing", "."], "h": {"name": "teacher", "pos": [4, 5]}, "t": {"name": "blackboard", "pos": [8, 9]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["until", "1864", "vessels", "in", "the", "service", "of", "certain", "uk", "public", "offices", "defaced", "the", "red", "ensign", "with", "the", "badge", "of", "their", "office", "."], "h": {"name": "vessels", "pos": [2, 3]}, "t": {"name": "badge", "pos": [17, 18]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["experienced", "bakers", "hold", "the", "door", "open", "a", "crack", "with", "a", "wooden", "spoon", "handle", "."], "h": {"name": "bakers", "pos": [1, 2]}, "t": {"name": "handle", "pos": [12, 13]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "prince", "decorated", "the", "cake", "with", "a", "frosting", "i", "pre-made", "from", "confectioner", "'s", "sugar", "."], "h": {"name": "prince", "pos": [1, 2]}, "t": {"name": "frosting", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "folks", "at", "the", "lilly", "endowment", "were", "interested", "in", "the", "study", "of", "philanthropy", "through", "a", "biographical", "lens", "."], "h": {"name": "folks", "pos": [1, 2]}, "t": {"name": "lens", "pos": [16, 17]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "grower", "had", "to", "``", "flip", "plow", "''", "the", "field", "with", "a", "modified", "moldboard", "."], "h": {"name": "grower", "pos": [1, 2]}, "t": {"name": "moldboard", "pos": [13, 14]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["at", "5:30am", "my", "son", "was", "right", "behind", "the", "officer", "who", "battered", "the", "door", "down", "with", "a", "huge", "steel", "ram", "."], "h": {"name": "officer", "pos": [8, 9]}, "t": {"name": "ram", "pos": [18, 19]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["and", "you", "thought", "a", "dentist", "with", "a", "drill", "was", "scary", "."], "h": {"name": "dentist", "pos": [4, 5]}, "t": {"name": "drill", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "guest", "of", "honour", "breaks", "open", "the", "clay", "with", "a", "mallet", ",", "allowing", "a", "fragrant", "aroma", "to", "escape", "."], "h": {"name": "guest", "pos": [1, 2]}, "t": {"name": "mallet", "pos": [10, 11]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "artist", "moves", "a", "pointer", "attached", "to", "one", "part", "of", "the", "pantograph", "along", "the", "outline", "of", "the", "original", "flat", "image", ",", "and", "a", "pencil", "attached", "to", "another", "part", "traces", "out", "the", "image", "but", "at", "a", "larger", "scale", "."], "h": {"name": "artist", "pos": [1, 2]}, "t": {"name": "pointer", "pos": [4, 5]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["hands", "wield", "the", "sword", "in", "the", "realm", "of", "the", "flesh", ",", "but", "the", "intellect", "wields", "the", "pen", "in", "the", "realm", "of", "understanding", ",", "or", "of", "the", "spirit", "."], "h": {"name": "intellect", "pos": [13, 14]}, "t": {"name": "pen", "pos": [16, 17]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["these", "tests", "work", "by", "using", "a", "substance", "that", "changes", "color", "once", "it", "is", "bound", "to", "hcg", "."], "h": {"name": "tests", "pos": [1, 2]}, "t": {"name": "substance", "pos": [6, 7]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["``", "national", "discourse", "''", "(", "1780", ")", "shows", "a", "stout", "british", "sailor", "with", "a", "cudgel", "staring", "down", "a", "relatively", "effete", "french", "seaman", "with", "a", "sword", "."], "h": {"name": "sailor", "pos": [11, 12]}, "t": {"name": "cudgel", "pos": [14, 15]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["lumberjacks", "hold", "the", "axe", "handle", "nearer", "the", "axe", "head", "."], "h": {"name": "lumberjacks", "pos": [0, 1]}, "t": {"name": "handle", "pos": [4, 5]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["for", "very", "young", "children", "the", "fitter", "measures", "the", "foot", "with", "a", "little", "hand", "gauge", "but", "when", "the", "child", "gets", "older", "they", "get", "to", "go", "on", "the", "state", "of", "the", "art", "."], "h": {"name": "fitter", "pos": [5, 6]}, "t": {"name": "gauge", "pos": [13, 14]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "idea", "is", "the", "heatsink", "removes", "the", "heat", "from", "the", "cpu", "and", "the", "fan", "blasts", "the", "heatsink", "with", "the", "surrounding", "air", "cooling", "it", "down", "."], "h": {"name": "fan", "pos": [13, 14]}, "t": {"name": "air", "pos": [20, 21]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "supreme", "court", "has", "applied", "the", "protections", "of", "this", "amendment", "to", "the", "states", "through", "the", "due", "process", "clause", "of", "the", "fourteenth", "amendment", "."], "h": {"name": "supreme court", "pos": [1, 3]}, "t": {"name": "amendment", "pos": [9, 10]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["lasers", "work", "by", "using", "various", "soft", "pulsing", "light", "wavelengths", "and", "intensities", "to", "help", "reshape", "scar", "tissue", "."], "h": {"name": "lasers", "pos": [0, 1]}, "t": {"name": "wavelengths", "pos": [8, 9]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "court", "instead", "achieved", "the", "desired", "flexibility", "using", "a", "harmless", "error", "rule", "."], "h": {"name": "court", "pos": [1, 2]}, "t": {"name": "rule", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "man", "ran", "him", "over", "with", "his", "own", "truck", ",", "and", "then", "left", "the", "country", "."], "h": {"name": "man", "pos": [1, 2]}, "t": {"name": "truck", "pos": [8, 9]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "shaman", "cured", "him", "with", "herbs", "."], "h": {"name": "shaman", "pos": [1, 2]}, "t": {"name": "herbs", "pos": [5, 6]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "monks", "scaled", "the", "sheer", "rock", "faces", "by", "inserting", "pieces", "of", "timber", "into", "crevices", "."], "h": {"name": "monks", "pos": [1, 2]}, "t": {"name": "pieces", "pos": [9, 10]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["real", "metrosexuals", "use", "moisturizers", "."], "h": {"name": "metrosexuals", "pos": [1, 2]}, "t": {"name": "moisturizers", "pos": [3, 4]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "display", "receives", "the", "output", "through", "a", "15", "pin", "d", "connector", "cable", "."], "h": {"name": "display", "pos": [1, 2]}, "t": {"name": "cable", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "motor", "drives", "the", "blade", "using", "a", "belt", "rather", "than", "being", "directly", "connected", "like", "the", "portable", "models", "."], "h": {"name": "motor", "pos": [1, 2]}, "t": {"name": "belt", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["scientists", "are", "turning", "to", "music", "to", "put", "across", "their", "messages", ":", "whether", "informing", "the", "public", "or", "campaigning", "."], "h": {"name": "scientists", "pos": [0, 1]}, "t": {"name": "music", "pos": [4, 5]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "mechanic", "tightens", "the", "bolt", "with", "a", "spanner", "0.25", "m", "long", "."], "h": {"name": "mechanic", "pos": [1, 2]}, "t": {"name": "spanner", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "top", "photo", "shows", "a", "worker", "with", "a", "poorly", "fitting", "dust", "mask", "."], "h": {"name": "worker", "pos": [5, 6]}, "t": {"name": "mask", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "generator", "creates", "electricity", "using", "much", "the", "same", "principle", "as", "the", "alternator", "on", "your", "car", "(", "depending", "on", "the", "turbine", "type", ")", "."], "h": {"name": "generator", "pos": [1, 2]}, "t": {"name": "principle", "pos": [8, 9]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["selecting", "the", "dry", "gourds", "according", "to", "their", "shape", ",", "the", "artisan", "carves", "the", "decorative", "motifs", "with", "a", "burin", "."], "h": {"name": "artisan", "pos": [10, 11]}, "t": {"name": "burin", "pos": [17, 18]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["parties", "appear", "by", "telephone", "when", "circumstances", "prevent", "their", "appearance", "in", "person", "."], "h": {"name": "parties", "pos": [0, 1]}, "t": {"name": "telephone", "pos": [3, 4]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "user", "inputs", "spatio-temporal", "information", "intuitively", "by", "using", "gestures", "."], "h": {"name": "user", "pos": [1, 2]}, "t": {"name": "gestures", "pos": [8, 9]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["but", "scientists", "successfully", "treated", "the", "mice", "with", "broad-spectrum", "antiboitics", "."], "h": {"name": "scientists", "pos": [1, 2]}, "t": {"name": "antiboitics", "pos": [8, 9]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "teacher", "explores", "the", "various", "reactions", "and", "ideas", "by", "using", "literature", "."], "h": {"name": "teacher", "pos": [1, 2]}, "t": {"name": "literature", "pos": [10, 11]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "company", "is", "able", "to", "determine", "a", "range", "of", "restrictions", "for", "the", "selection", "of", "the", "perspective", "countries", "by", "using", "benchmarking", "."], "h": {"name": "company", "pos": [1, 2]}, "t": {"name": "benchmarking", "pos": [19, 20]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "lonely", "teacher", "finds", "a", "friend", "with", "the", "help", "of", "an", "umbrella", "."], "h": {"name": "teacher", "pos": [2, 3]}, "t": {"name": "umbrella", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["doctor", "saves", "boy", "with", "a", "drill", "."], "h": {"name": "doctor", "pos": [0, 1]}, "t": {"name": "drill", "pos": [5, 6]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "little", "girl", "finds", "a", "lost", "shoe", "with", "the", "help", "of", "her", "imaginary", "dinosaur", "companion", "."], "h": {"name": "girl", "pos": [2, 3]}, "t": {"name": "companion", "pos": [14, 15]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["their", "ancestors", "reached", "the", "island", "using", "bamboo", "rafts", "."], "h": {"name": "ancestors", "pos": [1, 2]}, "t": {"name": "rafts", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["rather", ",", "the", "avenger", "killed", "the", "victim", "with", "a", "rifle", ",", "often", "from", "a", "secure", "hiding", "place", "or", "in", "ambush", "."], "h": {"name": "avenger", "pos": [3, 4]}, "t": {"name": "rifle", "pos": [9, 10]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "galileoscope", "is", "named", "after", "the", "italian", "astronomer", ",", "who", "first", "observed", "the", "heavens", "through", "a", "telescope", "400", "years", "ago", "."], "h": {"name": "astronomer", "pos": [7, 8]}, "t": {"name": "telescope", "pos": [16, 17]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["there", "was", "a", "man", "with", "shovel", "and", "hoe", "."], "h": {"name": "man", "pos": [3, 4]}, "t": {"name": "shovel", "pos": [5, 6]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "soft-spoken", ",", "professorial", "chef", "spoke", "with", "knife", "in", "hand", "passionately", "about", "why", "he", "'s", "been", "drawn", "to", "thai", "cooking", "for", "twenty-five", "years", "."], "h": {"name": "chef", "pos": [4, 5]}, "t": {"name": "knife", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "certificated", "security", "for", "which", "the", "certificate", "has", "been", "surrendered", "to", "the", "issuer", "is", "reached", "by", "a", "creditor", "by", "legal", "process", "upon", "the", "issuer", "."], "h": {"name": "creditor", "pos": [17, 18]}, "t": {"name": "process", "pos": [20, 21]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["at", "73", "meters", "underwater", ",", "a", "petty", "officer", "reached", "the", "surface", "using", "his", "drager", "apparatus", "."], "h": {"name": "officer", "pos": [7, 8]}, "t": {"name": "apparatus", "pos": [14, 15]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["my", "apartment", "complex", "treated", "the", "yard", "with", "a", "poison", "to", "kill", "locusts", "."], "h": {"name": "complex", "pos": [2, 3]}, "t": {"name": "poison", "pos": [8, 9]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "musician", "also", "treated", "the", "wood", "with", "a", "preparation", "of", "borax", "in", "the", "manner", "of", "stradivari", "."], "h": {"name": "musician", "pos": [1, 2]}, "t": {"name": "preparation", "pos": [8, 9]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "team", "then", "sequenced", "the", "captured", "dna", "with", "the", "gs", "flx", "titanium", "series", "chemistry", "."], "h": {"name": "team", "pos": [1, 2]}, "t": {"name": "chemistry", "pos": [13, 14]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["surveys", "were", "completed", "by", "respondents", "using", "a", "variety", "of", "browser", "software", "programs", ",", "each", "configured", "differently", "with", "different", "displays", "."], "h": {"name": "respondents", "pos": [4, 5]}, "t": {"name": "programs", "pos": [11, 12]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "act", "promotes", "efficiency", "through", "limitation", "of", "the", "copyright", "owner", "'s", "available", "monetary", "damages", "."], "h": {"name": "act", "pos": [1, 2]}, "t": {"name": "limitation", "pos": [5, 6]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["a", "student", "relaxes", "with", "a", "book", "in", "a", "cambridge", "park", "."], "h": {"name": "student", "pos": [1, 2]}, "t": {"name": "book", "pos": [5, 6]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "engine", "revved", "a", "bit", "in", "the", "lower", "gears", ",", "but", "was", "adjusted", "immediately", "by", "the", "guy", "with", "a", "knob", "."], "h": {"name": "guy", "pos": [16, 17]}, "t": {"name": "knob", "pos": [19, 20]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["this", "invertebrate", "builds", "armor", "from", "coconut", "halves", "."], "h": {"name": "invertebrate", "pos": [1, 2]}, "t": {"name": "halves", "pos": [6, 7]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["one", "design", "shows", "a", "farmer", "with", "a", "hoe", "and", "reads", "``", "genuine", "dirt", "farmer", "descendant", "''", "."], "h": {"name": "farmer", "pos": [4, 5]}, "t": {"name": "hoe", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "county", "replaces", "the", "mailbox", "with", "a", "standard", "metal", "mailbox", "acceptable", "for", "delivery", "of", "mail", "by", "the", "united", "states", "."], "h": {"name": "county", "pos": [1, 2]}, "t": {"name": "mailbox", "pos": [9, 10]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["electricians", "start", "by", "reading", "maps", "-", "called", "blueprints", "-", "that", "show", "how", "electricity", "flows", "."], "h": {"name": "electricians", "pos": [0, 1]}, "t": {"name": "maps", "pos": [4, 5]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "second", "man", ",", "who", "struck", "him", "with", "a", "paving", "stone", ",", "was", "accordingly", "discharged", "."], "h": {"name": "man", "pos": [2, 3]}, "t": {"name": "stone", "pos": [10, 11]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "glow", "from", "the", "blacksmith", "'s", "forge", "led", "civilization", "from", "the", "dark", "ages", "and", "brought", "humankind", "to", "the", "standard", "of", "living", "enjoyed", "today", "."], "h": {"name": "blacksmith", "pos": [4, 5]}, "t": {"name": "forge", "pos": [6, 7]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["thus", ",", "the", "fisherman", "bought", "his", "own", "boat", "in", "1991", ",", "after", "renting", "one", "many", "years", "."], "h": {"name": "fisherman", "pos": [3, 4]}, "t": {"name": "boat", "pos": [7, 8]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["when", "she", "got", "home", ",", "the", "child", ",", "who", "was", "waiting", "for", "her", ",", "killed", "her", "with", "a", "rusty", "nail", "."], "h": {"name": "child", "pos": [6, 7]}, "t": {"name": "nail", "pos": [19, 20]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["politicians", "are", "discovering", "sufi", "teachings", "as", "a", "means", "against", "religious", "extremism", "."], "h": {"name": "politicians", "pos": [0, 1]}, "t": {"name": "teachings", "pos": [4, 5]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["for", "a", "sit-down", "snack", "the", "cook", "bakes", "the", "batter", "in", "a", "mini-muffin", "pan", "and", "serves", "the", "smaller", "version", "muffins", "with", "a", "lemon", "cream", "on", "the", "side", "."], "h": {"name": "cook", "pos": [5, 6]}, "t": {"name": "pan", "pos": [12, 13]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "manufacturer", "assembles", "the", "order", "using", "parts", "supplied", "by", "his", "preferred", "supplier", ",", "and", "ships", "the", "order", "to", "the", "retailer", "."], "h": {"name": "manufacturer", "pos": [1, 2]}, "t": {"name": "parts", "pos": [6, 7]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "group", "dug", "into", "the", "ground", "with", "their", "ceremonial", "shovels", "."], "h": {"name": "group", "pos": [1, 2]}, "t": {"name": "shovels", "pos": [9, 10]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["after", "seating", "all", "the", "idols", ",", "which", "itself", "takes", "hours", ",", "the", "traditional", "king", "sweeps", "the", "chariot", "with", "a", "golden", "broom", "."], "h": {"name": "king", "pos": [13, 14]}, "t": {"name": "broom", "pos": [20, 21]}, "relation": "Instrument-Agency(e2,e1)"}
{"token": ["the", "suspect", "dumped", "the", "dead", "body", "into", "a", "local", "reservoir", "."], "h": {"name": "body", "pos": [5, 6]}, "t": {"name": "reservoir", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["ten", "million", "quake", "survivors", "moved", "into", "makeshift", "houses", "."], "h": {"name": "survivors", "pos": [3, 4]}, "t": {"name": "houses", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["nasa", "kepler", "mission", "sends", "names", "into", "space", "."], "h": {"name": "names", "pos": [4, 5]}, "t": {"name": "space", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "famous", "actress", "arrived", "at", "the", "airport", "."], "h": {"name": "actress", "pos": [2, 3]}, "t": {"name": "airport", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "accident", "has", "spread", "oil", "into", "the", "ocean", "."], "h": {"name": "oil", "pos": [4, 5]}, "t": {"name": "ocean", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["then", ",", "the", "target", "pet", "bottle", "was", "put", "inside", "of", "a", "metal", "container", ",", "which", "was", "grounded", "."], "h": {"name": "bottle", "pos": [5, 6]}, "t": {"name": "container", "pos": [12, 13]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["as", "vinay", "collapsed", "in", "pain", ",", "the", "villagers", "poured", "acid", "into", "his", "eyes", "."], "h": {"name": "acid", "pos": [9, 10]}, "t": {"name": "eyes", "pos": [12, 13]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["i", "have", "inserted", "a", "clock", "into", "the", "presentations", "."], "h": {"name": "clock", "pos": [4, 5]}, "t": {"name": "presentations", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["he", "put", "a", "rebound", "into", "an", "open", "net", "for", "his", "eighth", "goal", "."], "h": {"name": "rebound", "pos": [3, 4]}, "t": {"name": "net", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "man", "was", "carried", "into", "a", "waiting", "police", "car", "from", "coleraine", "times", "."], "h": {"name": "man", "pos": [1, 2]}, "t": {"name": "car", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "probe", "tube", "is", "introduced", "into", "a", "reaction", "container", "for", "measuring", "the", "operating", "condition", "of", "a", "medium", "in", "the", "interior", "of", "the", "container", "."], "h": {"name": "tube", "pos": [2, 3]}, "t": {"name": "container", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["we", "poured", "the", "pulp", "into", "the", "tupperware", "tub", "filled", "with", "water", "."], "h": {"name": "pulp", "pos": [3, 4]}, "t": {"name": "tupperware tub", "pos": [6, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "ale", "poured", "slowly", "into", "a", "mug", ",", "at", "first", "all", "foam", ",", "then", "turning", "translucent", "before", "suddenly", "clarifying", "into", "a", "brilliant", "suds-topped", "amber", "."], "h": {"name": "ale", "pos": [1, 2]}, "t": {"name": "mug", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "man", "was", "travelling", "into", "neighboring", "countries", "without", "a", "permission", "."], "h": {"name": "man", "pos": [1, 2]}, "t": {"name": "countries", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["molten", "core", "have", "been", "dropped", "into", "the", "river", "to", "investigate", "the", "conditions", "of", "the", "occurrence", "of", "a", "steam", "."], "h": {"name": "molten core", "pos": [0, 2]}, "t": {"name": "river", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["these", "attributes", "are", "inherited", "to", "their", "children", "."], "h": {"name": "attributes", "pos": [1, 2]}, "t": {"name": "children", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["meanwhile", ",", "we", "placed", "the", "potatoes", "in", "a", "steaming", "basket", "that", "was", "fitting", "inside", "a", "large", "pot", "."], "h": {"name": "potatoes", "pos": [5, 6]}, "t": {"name": "basket", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["this", "song", "has", "been", "entered", "into", "the", "contest", "unofficially", "."], "h": {"name": "song", "pos": [1, 2]}, "t": {"name": "contest", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["he", "invested", "dollars", "into", "real", "estate", "investment", "trusts", "."], "h": {"name": "dollars", "pos": [2, 3]}, "t": {"name": "trusts", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["sixty-two", "containers", "fell", "into", "the", "dam", "."], "h": {"name": "containers", "pos": [1, 2]}, "t": {"name": "dam", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["we", "dissolved", "the", "contents", "of", "one", "packet", "in", "a", "carafe", "of", "water", "and", "ran", "the", "brew", "cycle", "."], "h": {"name": "contents", "pos": [3, 4]}, "t": {"name": "carafe", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["we", "all", "worked", "together", "to", "mix", "the", "ingredients", ",", "poured", "the", "mix", "into", "the", "two", "cake", "pans", "and", "put", "them", "into", "the", "oven", "."], "h": {"name": "mix", "pos": [11, 12]}, "t": {"name": "pans", "pos": [16, 17]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["he", "has", "just", "sent", "spam", "to", "the", "clients", "."], "h": {"name": "spam", "pos": [4, 5]}, "t": {"name": "clients", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["last", "night", ",", "my", "friend", "ran", "into", "a", "legendary", "surfer", "at", "a", "bar", "."], "h": {"name": "friend", "pos": [4, 5]}, "t": {"name": "surfer", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "prosecution", "seeks", "to", "enter", "motives", "into", "gibbs", "trial", "."], "h": {"name": "motives", "pos": [5, 6]}, "t": {"name": "trial", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "car", "went", "into", "the", "river", "with", "a", "man", "and", "a", "baby", "inside", "."], "h": {"name": "car", "pos": [1, 2]}, "t": {"name": "river", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["these", "gardeners", "blew", "the", "leaves", "into", "the", "street", "."], "h": {"name": "leaves", "pos": [4, 5]}, "t": {"name": "street", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "construction", "workers", "delivered", "the", "petition", "to", "the", "governor", "."], "h": {"name": "petition", "pos": [5, 6]}, "t": {"name": "governor", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "research", "team", "is", "going", "into", "the", "deep", "jungle", "in", "the", "amazon", "."], "h": {"name": "team", "pos": [2, 3]}, "t": {"name": "jungle", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["our", "staff", "has", "approached", "many", "people", "for", "the", "product", "survey", "."], "h": {"name": "staff", "pos": [1, 2]}, "t": {"name": "people", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "shipments", "have", "arrived", "into", "the", "stock", "."], "h": {"name": "shipments", "pos": [1, 2]}, "t": {"name": "stock", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "wheelchair", "foundation", "donated", "wheelchairs", "to", "people", "with", "physical", "problems", "in", "hundred", "countries", "."], "h": {"name": "wheelchairs", "pos": [4, 5]}, "t": {"name": "people", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["we", "sent", "the", "hostname", "to", "the", "primary", "server", "."], "h": {"name": "hostname", "pos": [3, 4]}, "t": {"name": "server", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["rythmbox", "moves", "the", "song", "into", "the", "mp", "player", "."], "h": {"name": "song", "pos": [3, 4]}, "t": {"name": "mp player", "pos": [6, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "mice", "brains", "were", "removed", "into", "a", "35mm", "dish", "."], "h": {"name": "brains", "pos": [2, 3]}, "t": {"name": "dish", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "heavy", "storm", "is", "moving", "into", "the", "town", "."], "h": {"name": "storm", "pos": [2, 3]}, "t": {"name": "town", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["i", "'m", "importing", "old", "document", "files", "into", "the", "new", "software", "."], "h": {"name": "files", "pos": [5, 6]}, "t": {"name": "software", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["already", "in", "recent", "years", ",", "iowa-raised", "swans", "have", "migrated", "into", "regions", "in", "illinois", "near", "savanna", "where", "they", "have", "had", "a", "successful", "nesting", "."], "h": {"name": "swans", "pos": [6, 7]}, "t": {"name": "regions", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["my", "feet", "have", "sunk", "into", "the", "floor", "."], "h": {"name": "feet", "pos": [1, 2]}, "t": {"name": "floor", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "air", "is", "blown", "into", "the", "mouthpiece", "."], "h": {"name": "air", "pos": [1, 2]}, "t": {"name": "mouthpiece", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["this", "scholarship", "was", "awarded", "to", "an", "outstanding", "student", "for", "recognizing", "her", "academic", "excellence", "."], "h": {"name": "scholarship", "pos": [1, 2]}, "t": {"name": "student", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "inquiry", "takes", "the", "investments", "into", "the", "21st", "century", "."], "h": {"name": "investments", "pos": [4, 5]}, "t": {"name": "century", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["in", "effect", ",", "rich", "countries", "have", "exported", "dirty", "industries", "to", "emerging", "economies", "."], "h": {"name": "industries", "pos": [8, 9]}, "t": {"name": "economies", "pos": [11, 12]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "body", "that", "was", "removed", "for", "an", "autopsy", "was", "placed", "in", "a", "lead", "coffin", ",", "which", "was", "put", "inside", "a", "wooden", "case", "."], "h": {"name": "body", "pos": [1, 2]}, "t": {"name": "coffin", "pos": [13, 14]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["i", "accidentally", "dropped", "my", "mobile", "phone", "into", "the", "toilet", "."], "h": {"name": "mobile phone", "pos": [4, 6]}, "t": {"name": "toilet", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["one", "young", "pilot", "placed", "the", "medallion", "in", "a", "small", "leather", "pouch", "that", "he", "wore", "about", "his", "neck", "."], "h": {"name": "medallion", "pos": [5, 6]}, "t": {"name": "pouch", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "company", "inserted", "needles", "into", "small", "lunch-size", "pork", "packs", "."], "h": {"name": "needles", "pos": [3, 4]}, "t": {"name": "packs", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["plants", "from", "the", "tissue", "culture", "laboratory", "were", "brought", "into", "plant", "growth", "rooms", "."], "h": {"name": "plants", "pos": [0, 1]}, "t": {"name": "rooms", "pos": [11, 12]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "offers", "have", "been", "placed", "into", "our", "catalog", "."], "h": {"name": "offers", "pos": [1, 2]}, "t": {"name": "catalog", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["douglas", "obeyed", "the", "king", ",", "and", "the", "heart", "was", "enclosed", "in", "a", "silver", "casket", "."], "h": {"name": "heart", "pos": [7, 8]}, "t": {"name": "casket", "pos": [13, 14]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "first", "hyperlink", "in", "the", "post", "was", "inserted", "into", "a", "custom", "field", "."], "h": {"name": "hyperlink", "pos": [2, 3]}, "t": {"name": "field", "pos": [11, 12]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["for", "once", ",", "the", "aid", "is", "flowing", "into", "the", "areas", "destroyed", "by", "the", "typhoon", "."], "h": {"name": "aid", "pos": [4, 5]}, "t": {"name": "areas", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "newly", "recruited", "soldiers", "arrived", "to", "the", "training", "camp", "."], "h": {"name": "soldiers", "pos": [3, 4]}, "t": {"name": "camp", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["animations", "are", "exported", "to", "the", "new", "adobe", "version", "."], "h": {"name": "animations", "pos": [0, 1]}, "t": {"name": "version", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "cells", "migrated", "into", "the", "inflammatory", "tissues", "."], "h": {"name": "cells", "pos": [1, 2]}, "t": {"name": "tissues", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["everything", "from", "flour", "to", "coffee", "beans", "to", "spices", "were", "neatly", "labelled", "in", "cannisters", "and", ",", "through", "a", "viewing", "window", ",", "a", "young", "girl", "poured", "flour", "into", "hessian", "sacks", "."], "h": {"name": "flour", "pos": [24, 25]}, "t": {"name": "sacks", "pos": [27, 28]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["paul", "bunyan", "'s", "parents", "took", "the", "boy", "and", "put", "him", "in", "a", "cradle", "out", "in", "the", "ocean", "."], "h": {"name": "boy", "pos": [6, 7]}, "t": {"name": "cradle", "pos": [12, 13]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["he", "has", "added", "the", "medicine", "into", "the", "food", "for", "his", "cat", "."], "h": {"name": "medicine", "pos": [4, 5]}, "t": {"name": "food", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "stephen", "colbert", "treadmill", "has", "been", "installed", "in", "the", "international", "space", "station", "."], "h": {"name": "treadmill", "pos": [3, 4]}, "t": {"name": "space station", "pos": [10, 12]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["finally", ",", "the", "escape", "artist", "was", "put", "inside", "a", "locked", "milk", "can", "filled", "with", "water", "at", "the", "old", "town", "square", "in", "fort", "collins", "."], "h": {"name": "artist", "pos": [4, 5]}, "t": {"name": "can", "pos": [11, 12]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["for", "15", "years", ",", "nasa", "'s", "shuttles", "have", "journeyed", "into", "space", "."], "h": {"name": "shuttles", "pos": [6, 7]}, "t": {"name": "space", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "size", "of", "the", "hole", "meant", "that", "when", "the", "server", "was", "put", "inside", "the", "cabinet", "it", "was", "dead", "easy", "to", "put", "the", "power", "and", "network", "wires", "through", "the", "hole", "."], "h": {"name": "server", "pos": [9, 10]}, "t": {"name": "cabinet", "pos": [14, 15]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["he", "assigned", "an", "interview", "with", "a", "presidential", "candidate", "to", "the", "next", "show", "."], "h": {"name": "interview", "pos": [3, 4]}, "t": {"name": "next show", "pos": [10, 12]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["my", "completed", "torrent", "files", "are", "going", "into", "this", "folder", "."], "h": {"name": "files", "pos": [3, 4]}, "t": {"name": "folder", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["we", "have", "put", "the", "ingredients", "into", "a", "big", "mixing", "ball", "long", "before", "we", "started", "baking", "the", "plain", "naan", "."], "h": {"name": "ingredients", "pos": [4, 5]}, "t": {"name": "mixing ball", "pos": [8, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["their", "water", "has", "become", "discolored", ",", "foul-smelling", ",", "or", "even", "flammable", "because", "methane", "from", "disturbed", "gas", "deposits", "has", "migrated", "into", "water", "wells", "."], "h": {"name": "methane", "pos": [12, 13]}, "t": {"name": "wells", "pos": [21, 22]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "numismatic", "topics", "were", "placed", "into", "categories", "."], "h": {"name": "topics", "pos": [2, 3]}, "t": {"name": "categories", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["lymphoeytes", "are", "drained", "into", "efferent", "lymphatics", "."], "h": {"name": "lymphoeytes", "pos": [0, 1]}, "t": {"name": "lymphatics", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["after", "the", "fox", ",", "the", "hunter", "ran", "into", "a", "small", "cave", "."], "h": {"name": "hunter", "pos": [5, 6]}, "t": {"name": "cave", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "psi-comp", "implant", "hardwire", "has", "been", "put", "into", "the", "human", "brain", "."], "h": {"name": "hardwire", "pos": [3, 4]}, "t": {"name": "brain", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "neuroscientists", "have", "implanted", "electrodes", "into", "patient", "'s", "brain", "."], "h": {"name": "electrodes", "pos": [4, 5]}, "t": {"name": "brain", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["critical", "audience", "studies", "are", "migrating", "into", "intellectual", "inquiry", "focused", "on", "participation", "developing", "the", "stress", "on", "processes", "of", "interactive", "engagement", "."], "h": {"name": "studies", "pos": [2, 3]}, "t": {"name": "inquiry", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "closely", "guarded", "raffles", "recipe", "was", "locked", "in", "a", "safe", "that", "still", "remains", "onsite", "today", "."], "h": {"name": "recipe", "pos": [4, 5]}, "t": {"name": "safe", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "man", "threw", "a", "child", "into", "an", "outlet", "."], "h": {"name": "child", "pos": [4, 5]}, "t": {"name": "outlet", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["i", "poured", "some", "powder", "into", "a", "canteen", "cup", "and", "found", "that", "the", "cocoa", "was", "mixed", "with", "sugar", "granules", "."], "h": {"name": "powder", "pos": [3, 4]}, "t": {"name": "canteen cup", "pos": [6, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "team", "is", "travelling", "into", "uncharted", "territory", "."], "h": {"name": "team", "pos": [1, 2]}, "t": {"name": "territory", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["we", "poured", "flour", "into", "a", "large", "mixing", "bowl", ",", "adding", "slightly", "more", "than", "the", "recipe", "calls", "for", "."], "h": {"name": "flour", "pos": [2, 3]}, "t": {"name": "bowl", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["he", "rolled", "up", "towel", "and", "dump", "specimens", "into", "the", "pint", "jar", "."], "h": {"name": "specimens", "pos": [6, 7]}, "t": {"name": "jar", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "ongoing", "drought", "means", "that", "there", "is", "little", "water", "flowing", "into", "the", "lakes", "."], "h": {"name": "water", "pos": [8, 9]}, "t": {"name": "lakes", "pos": [12, 13]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["you", "have", "added", "complexity", "into", "the", "mix", "by", "not", "having", "the", "proxy", "server", "and", "media", "server", "together", "."], "h": {"name": "complexity", "pos": [3, 4]}, "t": {"name": "mix", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "workers", "poured", "concrete", "into", "the", "three", "new", "stepped", "piers", "."], "h": {"name": "concrete", "pos": [3, 4]}, "t": {"name": "piers", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "bottom", "section", "of", "the", "mast", "has", "been", "mounted", "onto", "the", "ship", "."], "h": {"name": "mast", "pos": [5, 6]}, "t": {"name": "ship", "pos": [11, 12]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "users", "sent", "an", "array", "to", "the", "responder", "."], "h": {"name": "array", "pos": [4, 5]}, "t": {"name": "responder", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["sterile", "distilled", "water", "was", "put", "inside", "the", "fifth", "well", "to", "serve", "as", "negative", "control", "while", "gentamicin", "was", "used", "as", "positive", "control", "in", "the", "fourth", "well", "."], "h": {"name": "water", "pos": [2, 3]}, "t": {"name": "well", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["three", "days", "later", ",", "the", "new-born", "baby", "was", "brought", "into", "her", "home", "."], "h": {"name": "baby", "pos": [6, 7]}, "t": {"name": "home", "pos": [11, 12]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["non-native", "species", "are", "spreading", "into", "new", "areas", "increasingly", "rapidly", "through", "human", "activities", "as", "international", "trade", ",", "transportation", "and", "travel", "intensify", "."], "h": {"name": "species", "pos": [1, 2]}, "t": {"name": "areas", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["saudi", "arabia", "has", "exported", "wheat", "to", "30", "countries", "including", "china", "."], "h": {"name": "wheat", "pos": [4, 5]}, "t": {"name": "countries", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "guests", "arrived", "to", "the", "wedding", "on", "time", "."], "h": {"name": "guests", "pos": [1, 2]}, "t": {"name": "wedding", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["urgent", "needs", "are", "approaching", "the", "society", ",", "which", "requires", "dynamic", "changes", "."], "h": {"name": "needs", "pos": [1, 2]}, "t": {"name": "society", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["i", "removed", "the", "chemical", "disposes", "into", "the", "designated", "area", "only", "."], "h": {"name": "disposes", "pos": [4, 5]}, "t": {"name": "area", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "squatters", "have", "moved", "into", "the", "building", "."], "h": {"name": "squatters", "pos": [1, 2]}, "t": {"name": "building", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "researchers", "placed", "the", "compound", "in", "a", "tube", ",", "which", "then", "was", "put", "inside", "a", "magnet", "."], "h": {"name": "compound", "pos": [4, 5]}, "t": {"name": "tube", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "setup", "was", "put", "inside", "a", "chimney", "in", "order", "to", "enhance", "the", "natural", "convection", "cooling", "."], "h": {"name": "setup", "pos": [1, 2]}, "t": {"name": "chimney", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "bottles", "have", "leaked", "poison", "into", "the", "milk", "."], "h": {"name": "poison", "pos": [4, 5]}, "t": {"name": "milk", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["at", "this", "moment", ",", "a", "certain", "amount", "of", "chlorine", "gas", "was", "placed", "inside", "a", "cylinder", "with", "a", "movable", "piston", "at", "one", "end", "."], "h": {"name": "amount", "pos": [6, 7]}, "t": {"name": "cylinder", "pos": [14, 15]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["finally", ",", "the", "holiday", "items", "arrived", "to", "the", "local", "store", "."], "h": {"name": "items", "pos": [4, 5]}, "t": {"name": "store", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "exhibitors", "have", "entered", "the", "exhibits", "into", "the", "fall", "fair", "."], "h": {"name": "exhibits", "pos": [5, 6]}, "t": {"name": "fall fair", "pos": [8, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["cambodian", "troops", "arrived", "to", "areas", "in", "chad", ",", "central", "african", "republic", "where", "us", "forces", "had", "settled", "already", "."], "h": {"name": "troops", "pos": [1, 2]}, "t": {"name": "areas", "pos": [4, 5]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["he", "grabbed", "and", "put", "all", "dirty", "clothing", "in", "a", "hamper", "."], "h": {"name": "clothing", "pos": [6, 7]}, "t": {"name": "hamper", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "ocean", "exploration", "is", "now", "moving", "into", "deeper", "waters", "."], "h": {"name": "exploration", "pos": [2, 3]}, "t": {"name": "waters", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "football", "club", "has", "rescheduled", "the", "trials", "to", "the", "next", "day", "due", "to", "recent", "wet", "weather", "."], "h": {"name": "trials", "pos": [6, 7]}, "t": {"name": "day", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["all", "your", "posts", "are", "imported", "into", "the", "standard", "wordpress", "installation", "."], "h": {"name": "posts", "pos": [2, 3]}, "t": {"name": "installation", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "editors", "have", "inserted", "narration", "into", "the", "description", "."], "h": {"name": "narration", "pos": [4, 5]}, "t": {"name": "description", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["extending", "ninject", "injects", "dependencies", "into", "action", "filters", "."], "h": {"name": "dependencies", "pos": [3, 4]}, "t": {"name": "filters", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "athlete", "ran", "into", "a", "hurdle", "."], "h": {"name": "athlete", "pos": [1, 2]}, "t": {"name": "hurdle", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["i", "inserted", "an", "old", "tape", "into", "my", "brand", "new", "handycam", "."], "h": {"name": "tape", "pos": [4, 5]}, "t": {"name": "handycam", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "organisms", "are", "spreading", "into", "uninhabited", "areas", "."], "h": {"name": "organisms", "pos": [1, 2]}, "t": {"name": "areas", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["$", "600", "billion", "dollars", "have", "been", "put", "into", "the", "us", "economy", "."], "h": {"name": "dollars", "pos": [3, 4]}, "t": {"name": "economy", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "substance", "is", "exported", "to", "the", "cytoplasm", "."], "h": {"name": "substance", "pos": [1, 2]}, "t": {"name": "cytoplasm", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["approximately", "20", "dl", "of", "water", "was", "put", "in", "a", "fish", "tank", "."], "h": {"name": "water", "pos": [4, 5]}, "t": {"name": "tank", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "worker", "inserts", "the", "small", "spring", "in", "the", "device", "and", "then", "installs", "the", "buttons", "."], "h": {"name": "spring", "pos": [5, 6]}, "t": {"name": "device", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["nitrogen", "is", "falling", "into", "remote", "lakes", "."], "h": {"name": "nitrogen", "pos": [0, 1]}, "t": {"name": "lakes", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["more", "than", "40", "years", "have", "passed", "since", "the", "spacecraft", "departed", "into", "the", "outer-space", "with", "a", "fuel", "cell", "on-board", "."], "h": {"name": "spacecraft", "pos": [8, 9]}, "t": {"name": "outer-space", "pos": [12, 13]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["researchers", "put", "bio-energetics", "into", "bio-magnification", "."], "h": {"name": "bio-energetics", "pos": [2, 3]}, "t": {"name": "bio-magnification", "pos": [4, 5]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "celebrity", "poured", "money", "into", "modern", "artwork", "."], "h": {"name": "money", "pos": [3, 4]}, "t": {"name": "artwork", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "request", "has", "been", "sent", "to", "the", "moderator", "."], "h": {"name": "request", "pos": [1, 2]}, "t": {"name": "moderator", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["we", "placed", "the", "buns", "into", "the", "steamer", ",", "leaving", "1-2", "inches", "between", "each", "bun", "."], "h": {"name": "buns", "pos": [3, 4]}, "t": {"name": "steamer", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "famous", "poet", "has", "entered", "his", "poems", "into", "three", "current", "contests", "."], "h": {"name": "poems", "pos": [6, 7]}, "t": {"name": "contests", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["an", "encapsulating", "composition", "is", "infused", "into", "the", "channel", "to", "encapsulate", "the", "tissue", "in", "a", "capsule", "."], "h": {"name": "tissue", "pos": [11, 12]}, "t": {"name": "capsule", "pos": [14, 15]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["greasy", "or", "oily", "rags", "or", "materials", "subject", "to", "spontaneous", "ignition", "are", "deposited", "in", "a", "receptacle", "."], "h": {"name": "rags", "pos": [3, 4]}, "t": {"name": "receptacle", "pos": [14, 15]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["i", "moved", "the", "file", "into", "the", "folder", "."], "h": {"name": "file", "pos": [3, 4]}, "t": {"name": "folder", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["i", "have", "added", "references", "into", "the", "name", "index", "."], "h": {"name": "references", "pos": [3, 4]}, "t": {"name": "name index", "pos": [6, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["two", "voters", "put", "cameras", "into", "their", "booths", "."], "h": {"name": "cameras", "pos": [3, 4]}, "t": {"name": "booths", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["dioxide", "has", "been", "released", "into", "the", "atmosphere", "."], "h": {"name": "dioxide", "pos": [0, 1]}, "t": {"name": "atmosphere", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "shocking", "macro-economics", "numbers", "have", "postponed", "the", "recovery", "to", "next", "year", "."], "h": {"name": "recovery", "pos": [7, 8]}, "t": {"name": "next year", "pos": [9, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["we", "have", "injected", "the", "code", "into", "the", "native", "process", "."], "h": {"name": "code", "pos": [4, 5]}, "t": {"name": "process", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "braidwood", "generating", "station", ",", "owned", "by", "the", "exelon", "corporation", ",", "has", "leaked", "tritium", "into", "underground", "water", "."], "h": {"name": "tritium", "pos": [13, 14]}, "t": {"name": "water", "pos": [16, 17]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["yesterday", "a", "big", "huge", "beautiful", "orange", "butterfly", "flew", "into", "my", "patio", "."], "h": {"name": "butterfly", "pos": [6, 7]}, "t": {"name": "patio", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["it", "was", "schoener", "who", "placed", "the", "maps", "in", "a", "portfolio", "that", "was", "later", "acquired", "by", "a", "german", "prince", "and", "stored", "in", "a", "castle", "for", "nearly", "400", "years", "."], "h": {"name": "maps", "pos": [6, 7]}, "t": {"name": "portfolio", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["seven", "tears", "have", "flown", "into", "the", "river", "."], "h": {"name": "tears", "pos": [1, 2]}, "t": {"name": "river", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "stranger", "approached", "my", "little", "brother", "."], "h": {"name": "stranger", "pos": [1, 2]}, "t": {"name": "brother", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "52-year-old", "rocket", "enthusiast", "suffered", "minor", "injuries", "when", "a", "motor", "exploded", "as", "he", "packed", "powder", "into", "the", "casing", ",", "blowing", "his", "garage", "door", "off", "its", "hinges", "."], "h": {"name": "powder", "pos": [14, 15]}, "t": {"name": "casing", "pos": [17, 18]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["accidentally", ",", "my", "remote", "control", "fell", "into", "the", "water", "."], "h": {"name": "remote control", "pos": [3, 5]}, "t": {"name": "water", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["parental", "influenza", "virion", "nucleocapsids", "were", "efficiently", "transported", "into", "the", "nuclei", "of", "murine", "cells", "."], "h": {"name": "nucleocapsids", "pos": [3, 4]}, "t": {"name": "nuclei", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["his", "niece", "moved", "into", "this", "apartment", "last", "month", "."], "h": {"name": "niece", "pos": [1, 2]}, "t": {"name": "apartment", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["every", "morning", "he", "put", "a", "stone", "into", "the", "cup", "without", "knowing", "that", "one", "of", "his", "friends", "put", "a", "handful", "of", "stones", "in", "it", ",", "to", "play", "a", "trick", "on", "him", "."], "h": {"name": "stone", "pos": [5, 6]}, "t": {"name": "cup", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["they", "have", "dumped", "chemicals", "into", "the", "local", "river", "."], "h": {"name": "chemicals", "pos": [3, 4]}, "t": {"name": "river", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "preview", "of", "a", "new", "dell", "laptop", "has", "been", "leaked", "to", "this", "blog", "."], "h": {"name": "preview", "pos": [1, 2]}, "t": {"name": "blog", "pos": [12, 13]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "old", "lady", "moved", "the", "boxes", "in", "the", "corridor", "into", "her", "own", "house", "."], "h": {"name": "boxes", "pos": [5, 6]}, "t": {"name": "house", "pos": [12, 13]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["they", "misplaced", "mastiffs", "into", "homes", "."], "h": {"name": "mastiffs", "pos": [2, 3]}, "t": {"name": "homes", "pos": [4, 5]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["then", ",", "padding", "was", "then", "put", "inside", "the", "helmets", "so", "they", "fit", "comfortably", "and", "securely", "."], "h": {"name": "padding", "pos": [2, 3]}, "t": {"name": "helmets", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["individualized", "letters", "have", "been", "sent", "to", "the", "following", "addresses", "."], "h": {"name": "letters", "pos": [1, 2]}, "t": {"name": "addresses", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["another", "device", "was", "inserted", "into", "another", "usb", "port", "."], "h": {"name": "device", "pos": [1, 2]}, "t": {"name": "port", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["during", "the", "period", "of", "economy", "growth", ",", "those", "people", "have", "migrated", "into", "the", "urban", "areas", "."], "h": {"name": "people", "pos": [8, 9]}, "t": {"name": "areas", "pos": [14, 15]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "mob", "wanna-be", "graphically", "described", "yesterday", "how", "he", "put", "a", "bullet", "into", "a", "gangster", "'s", "head", "in", "a", "twisted", "attempt", "to", "earn", "respect", "in", "his", "brooklyn", "neighborhood", "."], "h": {"name": "bullet", "pos": [10, 11]}, "t": {"name": "head", "pos": [15, 16]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "daughter", "donated", "her", "kidney", "to", "her", "father", "."], "h": {"name": "kidney", "pos": [4, 5]}, "t": {"name": "father", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["then", "a", "polyurethane", "catheter", "was", "inserted", "distally", "into", "the", "hepatic", "artery", "and", "connected", "to", "the", "reservoir", "through", "a", "3-4", "cm", "subcutaneous", "tunnel", "."], "h": {"name": "catheter", "pos": [3, 4]}, "t": {"name": "artery", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["santiago", "meza", "lopez", ",", "known", "as", "the", "stew", "maker", ",", "stuffed", "bodies", "into", "barrels", "of", "lye", "for", "drug", "cartels", "."], "h": {"name": "bodies", "pos": [11, 12]}, "t": {"name": "barrels", "pos": [13, 14]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "magazines", "were", "delivered", "to", "the", "subscribers", "on", "tuesday", "."], "h": {"name": "magazines", "pos": [1, 2]}, "t": {"name": "subscribers", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["traditionally", "aid", "has", "been", "delivered", "to", "african", "countries", "by", "international", "charities", "."], "h": {"name": "aid", "pos": [1, 2]}, "t": {"name": "countries", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["he", "put", "a", "book", "into", "the", "cupboard", "."], "h": {"name": "book", "pos": [3, 4]}, "t": {"name": "cupboard", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "injected", "fluid", "is", "slowly", "spread", "to", "the", "body", "."], "h": {"name": "fluid", "pos": [2, 3]}, "t": {"name": "body", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["just", "before", "serving", ",", "the", "olive", "oil", "was", "poured", "into", "the", "salad", "."], "h": {"name": "olive oil", "pos": [5, 7]}, "t": {"name": "salad", "pos": [11, 12]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["this", "is", "the", "right", "time", "to", "apply", "as", "many", "new", "projects", "are", "landing", "into", "markets", "in", "india", "."], "h": {"name": "projects", "pos": [10, 11]}, "t": {"name": "markets", "pos": [14, 15]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["he", "handed", "the", "suspects", "over", "to", "the", "police", "."], "h": {"name": "suspects", "pos": [3, 4]}, "t": {"name": "police", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["they", "opened", "the", "text", "file", "and", "dumped", "the", "text", "into", "the", "text", "box", "."], "h": {"name": "text", "pos": [8, 9]}, "t": {"name": "text box", "pos": [11, 13]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["molten", "copper", "is", "poured", "into", "molds", "at", "chuquicamata", "copper", "refinery", "."], "h": {"name": "copper", "pos": [1, 2]}, "t": {"name": "molds", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "coffee", "grounds", "fall", "to", "the", "bottom", "of", "the", "pot", ",", "and", "the", "coffee", "is", "poured", "off", "into", "a", "second", "pot", "known", "as", "a", "mutbak", "."], "h": {"name": "coffee", "pos": [13, 14]}, "t": {"name": "pot", "pos": [20, 21]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "man", "was", "taken", "into", "the", "building", "."], "h": {"name": "man", "pos": [1, 2]}, "t": {"name": "building", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["it", "took", "the", "dirt", "out", "of", "the", "house", "into", "a", "canister", "which", "was", "located", "in", "the", "garage", "."], "h": {"name": "dirt", "pos": [3, 4]}, "t": {"name": "canister", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["furthermore", ",", "several", "areas", "have", "also", "been", "added", "to", "the", "spaces", "."], "h": {"name": "areas", "pos": [3, 4]}, "t": {"name": "spaces", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["all", "librivox", "recordings", "have", "been", "released", "into", "the", "public", "domain", "."], "h": {"name": "recordings", "pos": [2, 3]}, "t": {"name": "public domain", "pos": [8, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["insurgents", "in", "asadabad", "have", "thrown", "a", "grenade", "into", "the", "crowd", "."], "h": {"name": "grenade", "pos": [6, 7]}, "t": {"name": "crowd", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["we", "put", "the", "trampoline", "data", "into", "the", "read-only", "section", "since", "a", "cpu", "hot", "plug", "was", "supported", "."], "h": {"name": "data", "pos": [4, 5]}, "t": {"name": "section", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "lot", "of", "effort", "has", "gone", "into", "the", "development", "of", "a", "suitable", "statistical", "method", "."], "h": {"name": "effort", "pos": [3, 4]}, "t": {"name": "development", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["victims", "from", "the", "factory", "have", "been", "transported", "into", "the", "emergency", "room", "."], "h": {"name": "victims", "pos": [0, 1]}, "t": {"name": "room", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["some", "9000", "marines", "are", "moving", "into", "the", "small", "afghan", "towns", "near", "the", "border", "to", "stop", "taliban", "soldiers", "."], "h": {"name": "marines", "pos": [2, 3]}, "t": {"name": "towns", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "company", "is", "moving", "plant", "material", "into", "queensland", "'s", "suburb", "."], "h": {"name": "plant material", "pos": [4, 6]}, "t": {"name": "suburb", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["goods", "such", "as", "soaps", "and", "towels", "were", "transported", "into", "countries", "in", "central", "africa", "."], "h": {"name": "goods", "pos": [0, 1]}, "t": {"name": "countries", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["climate", "change", "talks", "have", "been", "moving", "into", "overtime", "."], "h": {"name": "talks", "pos": [2, 3]}, "t": {"name": "overtime", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "grade", "i", "certificate", "was", "awarded", "to", "the", "product", "."], "h": {"name": "certificate", "pos": [3, 4]}, "t": {"name": "product", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "funds", "are", "invested", "into", "renewable", "energy", "schemes", "."], "h": {"name": "funds", "pos": [1, 2]}, "t": {"name": "schemes", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["an", "aids", "test", "is", "added", "to", "the", "physical", "exam", "."], "h": {"name": "test", "pos": [2, 3]}, "t": {"name": "exam", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "order", "is", "posted", "to", "an", "overseas", "address", "."], "h": {"name": "order", "pos": [1, 2]}, "t": {"name": "overseas address", "pos": [6, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["to", "reheat", "the", "turkey", "without", "drying", "it", "out", ",", "we", "placed", "the", "slices", "in", "a", "steamer", "basket", "set", "in", "a", "pot", "of", "simmering", "water", "."], "h": {"name": "slices", "pos": [12, 13]}, "t": {"name": "basket", "pos": [16, 17]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["enteric-formulated", "lactoferrin", "was", "more", "effectively", "transported", "into", "the", "blood", "."], "h": {"name": "lactoferrin", "pos": [1, 2]}, "t": {"name": "blood", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["this", "flame", "was", "put", "inside", "a", "hollowed-out", "turnip", "to", "keep", "it", "glowing", "."], "h": {"name": "flame", "pos": [1, 2]}, "t": {"name": "turnip", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["an", "actress", "'s", "nude", "photos", "have", "been", "leaked", "to", "a", "local", "journal", "."], "h": {"name": "photos", "pos": [4, 5]}, "t": {"name": "journal", "pos": [11, 12]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "file", "is", "added", "to", "the", "directory", "."], "h": {"name": "file", "pos": [1, 2]}, "t": {"name": "directory", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["pentagon", "moves", "the", "troops", "into", "the", "middle", "eastern", "region", "."], "h": {"name": "troops", "pos": [3, 4]}, "t": {"name": "region", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "stone", "was", "put", "inside", "a", "freshly", "made", "pot", ",", "then", "it", "was", "pressed", "against", "the", "metal", "."], "h": {"name": "stone", "pos": [1, 2]}, "t": {"name": "pot", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["an", "assam", "rebel", "leader", "was", "handed", "over", "to", "the", "police", "."], "h": {"name": "leader", "pos": [3, 4]}, "t": {"name": "police", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["they", "packed", "the", "sketch", "into", "a", "thick", "stiff", "cardboard", "sleeve", "so", "that", "it", "would", "n't", "get", "bent", "."], "h": {"name": "sketch", "pos": [3, 4]}, "t": {"name": "sleeve", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["wendy", "'s", "has", "added", "orange", "slices", "into", "children", "'s", "meals", "."], "h": {"name": "orange slices", "pos": [4, 6]}, "t": {"name": "meals", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "pilot", "crash-landed", "into", "a", "mall", "parking", "lot", "."], "h": {"name": "pilot", "pos": [1, 2]}, "t": {"name": "parking lot", "pos": [6, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["we", "all", "are", "spreading", "viruses", "to", "other", "people", "since", "we", "are", "not", "washing", "our", "hands", "well", "."], "h": {"name": "viruses", "pos": [4, 5]}, "t": {"name": "people", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "income", "went", "to", "the", "administration", "."], "h": {"name": "income", "pos": [1, 2]}, "t": {"name": "administration", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["you", "placed", "two", "bare", "ends", "of", "the", "wire", "into", "a", "beaker", "filled", "halfway", "with", "distilled", "water", "."], "h": {"name": "wire", "pos": [7, 8]}, "t": {"name": "beaker", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["in", "the", "movie", ",", "meatballs", "are", "dropped", "onto", "the", "ground", "."], "h": {"name": "meatballs", "pos": [4, 5]}, "t": {"name": "ground", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "molten", "metal", "was", "poured", "into", "an", "unheated", "chamber", "from", "an", "external", "melting", "container", "."], "h": {"name": "metal", "pos": [2, 3]}, "t": {"name": "chamber", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "exhibition", "profit", "was", "donated", "to", "a", "cancer", "research", "center", "."], "h": {"name": "profit", "pos": [2, 3]}, "t": {"name": "cancer research center", "pos": [7, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["then", "antibiotic", "ointment", "was", "put", "inside", "my", "lower", "eyelid", "and", "they", "patched", "my", "eye", "closed", "."], "h": {"name": "ointment", "pos": [2, 3]}, "t": {"name": "eyelid", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["tony", "found", "that", "when", "he", "poured", "water", "into", "a", "crack", "in", "a", "rock", "sample", "and", "froze", "it", ",", "then", "allowed", "it", "to", "thaw", ",", "the", "crack", "was", "actually", "wider", "."], "h": {"name": "water", "pos": [6, 7]}, "t": {"name": "crack", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["over", "the", "six", "years", ",", "this", "club", "donated", "a", "large", "amount", "of", "money", "to", "local", "children", "'s", "charities", "and", "families", "."], "h": {"name": "amount", "pos": [10, 11]}, "t": {"name": "charities", "pos": [17, 18]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["then", "he", "put", "a", "forkful", "into", "his", "mouth", ",", "chewing", "with", "discernment", "the", "toothsome", "pliant", "meat", "."], "h": {"name": "forkful", "pos": [4, 5]}, "t": {"name": "mouth", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["wind", "driven", "rain", "has", "come", "into", "the", "downtown", "."], "h": {"name": "rain", "pos": [2, 3]}, "t": {"name": "downtown", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["junk", "mails", "were", "automatically", "put", "into", "a", "spam", "folder", "."], "h": {"name": "junk mails", "pos": [0, 2]}, "t": {"name": "spam folder", "pos": [7, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["they", "packed", "yeast", "into", "toothpaste", "tubes", "."], "h": {"name": "yeast", "pos": [2, 3]}, "t": {"name": "tubes", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["carbon", "nanotubes", "introduced", "into", "the", "abdominal", "cavity", "of", "mice", "show", "asbestos-like", "pathogenicity", "."], "h": {"name": "nanotubes", "pos": [1, 2]}, "t": {"name": "cavity", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "award", "has", "been", "given", "to", "the", "scholar", "who", "proved", "the", "mathematical", "theory", "."], "h": {"name": "award", "pos": [1, 2]}, "t": {"name": "scholar", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["cip", "has", "been", "bestowing", "awards", "to", "honour", "planning", "projects", "."], "h": {"name": "awards", "pos": [4, 5]}, "t": {"name": "projects", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "fire", "drug", "was", "put", "inside", "of", "bamboo", "tubes", "and", "thrown", "in", "the", "fire", "to", "be", "ignited", "."], "h": {"name": "drug", "pos": [2, 3]}, "t": {"name": "tubes", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["16", "hp", "onan", "engine", "blew", "oil", "into", "the", "air", "filter", "."], "h": {"name": "oil", "pos": [5, 6]}, "t": {"name": "filter", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["he", "has", "illegally", "carried", "guns", "into", "the", "bar", "."], "h": {"name": "guns", "pos": [4, 5]}, "t": {"name": "bar", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["he", "gave", "two", "candies", "to", "each", "child", "."], "h": {"name": "candies", "pos": [3, 4]}, "t": {"name": "child", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "transcontinental", "railroad", "brought", "more", "settlers", "into", "the", "southern", "regions", "."], "h": {"name": "settlers", "pos": [5, 6]}, "t": {"name": "regions", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "technician", "rescheduled", "the", "installation", "to", "the", "next", "week", "."], "h": {"name": "installation", "pos": [4, 5]}, "t": {"name": "next week", "pos": [7, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["i", "entered", "text", "into", "several", "files", "one", "after", "the", "other", "."], "h": {"name": "text", "pos": [2, 3]}, "t": {"name": "files", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["then", "the", "driver", "turned", "the", "car", "into", "a", "dark", "and", "narrow", "street", "and", "reduced", "his", "speed", "."], "h": {"name": "driver", "pos": [2, 3]}, "t": {"name": "street", "pos": [11, 12]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "sino-u.s.", "joint", "statement", "takes", "the", "ties", "into", "a", "positive", "era", "."], "h": {"name": "ties", "pos": [6, 7]}, "t": {"name": "era", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "ship", "leaked", "oil", "into", "brisbane", "river", "."], "h": {"name": "oil", "pos": [3, 4]}, "t": {"name": "river", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "internal", "auditors", "are", "moved", "into", "specific", "pre-selected", "locations", "."], "h": {"name": "internal auditors", "pos": [1, 3]}, "t": {"name": "locations", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "boy", "inserted", "pepper", "into", "his", "little", "brother", "'s", "toy", "."], "h": {"name": "pepper", "pos": [3, 4]}, "t": {"name": "toy", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["2", "deposits", "have", "been", "put", "into", "my", "account", "."], "h": {"name": "deposits", "pos": [1, 2]}, "t": {"name": "account", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["he", "spent", "that", "time", "slaughtering", "a", "young", "pig", "and", "carefully", "catching", "all", "its", "blood", "in", "a", "ewer", "."], "h": {"name": "blood", "pos": [13, 14]}, "t": {"name": "ewer", "pos": [16, 17]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["their", "parental", "responsibilities", "are", "handed", "over", "into", "another", "'s", "care", "."], "h": {"name": "responsibilities", "pos": [2, 3]}, "t": {"name": "care", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["we", "have", "delivered", "containers", "to", "retail", "stores", "for", "excess", "of", "inventory", "."], "h": {"name": "containers", "pos": [3, 4]}, "t": {"name": "retail stores", "pos": [5, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["this", "item", "is", "already", "shipped", "to", "the", "customer", "."], "h": {"name": "item", "pos": [1, 2]}, "t": {"name": "customer", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "current", "study", "has", "proved", "that", "humans", "send", "pollution", "into", "the", "stratosphere", "."], "h": {"name": "pollution", "pos": [8, 9]}, "t": {"name": "stratosphere", "pos": [11, 12]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["she", "invested", "all", "her", "retirement", "fund", "into", "this", "business", "."], "h": {"name": "fund", "pos": [5, 6]}, "t": {"name": "business", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["soon", "after", ",", "the", "ship", "departed", "to", "the", "next", "destination", "."], "h": {"name": "ship", "pos": [4, 5]}, "t": {"name": "destination", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["i", "only", "put", "enough", "water", "in", "a", "kettle", "for", "just", "a", "single", "small", "cup", "of", "tea", "."], "h": {"name": "water", "pos": [4, 5]}, "t": {"name": "kettle", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["wintry", "conditions", "are", "spreading", "into", "adjacent", "areas", "."], "h": {"name": "conditions", "pos": [1, 2]}, "t": {"name": "areas", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["we", "have", "poured", "cement", "into", "3", "inch", "forms", "."], "h": {"name": "cement", "pos": [3, 4]}, "t": {"name": "forms", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["this", "bug", "flew", "into", "my", "garage", "."], "h": {"name": "bug", "pos": [1, 2]}, "t": {"name": "garage", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["all", "items", "have", "been", "shipped", "out", "to", "the", "customer", "."], "h": {"name": "items", "pos": [1, 2]}, "t": {"name": "customer", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["original", "mammography", "films", "are", "being", "delivered", "to", "viewers", "."], "h": {"name": "films", "pos": [2, 3]}, "t": {"name": "viewers", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "polluted", "water", "has", "been", "poured", "into", "a", "local", "river", "."], "h": {"name": "water", "pos": [2, 3]}, "t": {"name": "river", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "woman", "placed", "the", "baby", "in", "a", "plastic", "bio-hazard", "bag", "and", "threw", "it", "out", "."], "h": {"name": "baby", "pos": [4, 5]}, "t": {"name": "bag", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "hero", "enters", "into", "the", "building", "."], "h": {"name": "hero", "pos": [1, 2]}, "t": {"name": "building", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "big", "fish", "has", "been", "pushed", "into", "the", "deeper", "sea", "."], "h": {"name": "fish", "pos": [2, 3]}, "t": {"name": "sea", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["by", "now", ",", "our", "early", "radio", "wave", "is", "travelling", "into", "outer", "space", "."], "h": {"name": "radio wave", "pos": [5, 7]}, "t": {"name": "outer space", "pos": [10, 12]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "soldiers", "moved", "into", "the", "newest", "post", "."], "h": {"name": "soldiers", "pos": [1, 2]}, "t": {"name": "post", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["u.s.", "astronauts", "took", "weapons", "into", "space", "with", "them", "."], "h": {"name": "weapons", "pos": [3, 4]}, "t": {"name": "space", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["it", "was", "in", "this", "period", "that", "the", "new", "religion", "spread", "into", "the", "empire", "."], "h": {"name": "religion", "pos": [8, 9]}, "t": {"name": "empire", "pos": [12, 13]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "products", "of", "business", "entity", "within", "the", "export", "processing", "zone", "are", "shipped", "to", "non-bonded", "areas", "."], "h": {"name": "products", "pos": [1, 2]}, "t": {"name": "areas", "pos": [14, 15]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["hundreds", "of", "bomb", "have", "been", "dropped", "into", "the", "target", "region", "."], "h": {"name": "bomb", "pos": [2, 3]}, "t": {"name": "region", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["iraqi", "air", "force", "pilots", "took", "flight", "into", "history", "."], "h": {"name": "pilots", "pos": [3, 4]}, "t": {"name": "history", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["his", "efforts", "have", "been", "invested", "into", "this", "main", "objective", "."], "h": {"name": "efforts", "pos": [1, 2]}, "t": {"name": "objective", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "ornaments", "were", "blown", "into", "complicated", ",", "multi-piece", "molds", "."], "h": {"name": "ornaments", "pos": [1, 2]}, "t": {"name": "molds", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["my", "father", "is", "going", "into", "college", "at", "his", "old", "age", "."], "h": {"name": "father", "pos": [1, 2]}, "t": {"name": "college", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "popular", "soap", "has", "been", "moved", "to", "prime", "time", "."], "h": {"name": "soap", "pos": [2, 3]}, "t": {"name": "prime time", "pos": [7, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["figures", "show", "that", "the", "crisis", "is", "spreading", "into", "israel", "'s", "economy", "."], "h": {"name": "crisis", "pos": [4, 5]}, "t": {"name": "economy", "pos": [10, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "singer", "arrived", "to", "the", "outdoor", "stage", "for", "rehearsal", "."], "h": {"name": "singer", "pos": [1, 2]}, "t": {"name": "outdoor stage", "pos": [5, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "award", "was", "bestowed", "to", "the", "organization", "."], "h": {"name": "award", "pos": [1, 2]}, "t": {"name": "organization", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["nasa", "is", "sending", "astronauts", "to", "an", "asteroid", "."], "h": {"name": "astronauts", "pos": [3, 4]}, "t": {"name": "asteroid", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["she", "was", "pouring", "the", "hot", "agarose", "into", "the", "casting", "tray", "."], "h": {"name": "agarose", "pos": [5, 6]}, "t": {"name": "tray", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["whatever", "the", "case", ",", "we", "have", "added", "tessellate", "into", "our", "favorite", "songs", "."], "h": {"name": "tessellate", "pos": [7, 8]}, "t": {"name": "songs", "pos": [11, 12]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["grace", "did", "as", "she", "was", "told", "as", "adele", "poured", "flour", "into", "the", "liquid", "mixture", "."], "h": {"name": "flour", "pos": [9, 10]}, "t": {"name": "mixture", "pos": [13, 14]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["other", "early", "organisms", "have", "released", "barium", "into", "sulphate", "depleted", "pore-waters", "."], "h": {"name": "barium", "pos": [5, 6]}, "t": {"name": "sulphate", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "preforms", "were", "blown", "into", "the", "bottles", "."], "h": {"name": "preforms", "pos": [1, 2]}, "t": {"name": "bottles", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["karzai", "brought", "more", "technocrats", "into", "his", "government", "."], "h": {"name": "technocrats", "pos": [3, 4]}, "t": {"name": "government", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "basin", "has", "sunk", "into", "a", "deep", "depression", "."], "h": {"name": "basin", "pos": [1, 2]}, "t": {"name": "depression", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "exotic", "species", "are", "imported", "into", "the", "country", "illegally", "."], "h": {"name": "species", "pos": [2, 3]}, "t": {"name": "country", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["pipe", "bombs", "have", "been", "thrown", "into", "two", "parked", "cars", "in", "londonderry", "."], "h": {"name": "bombs", "pos": [1, 2]}, "t": {"name": "cars", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "officer", "threw", "a", "prisoner", "into", "a", "cell", "."], "h": {"name": "prisoner", "pos": [4, 5]}, "t": {"name": "cell", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["they", "leaked", "oil", "into", "the", "radiator", "."], "h": {"name": "oil", "pos": [2, 3]}, "t": {"name": "radiator", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "medicine", "was", "given", "to", "the", "patient", "."], "h": {"name": "medicine", "pos": [1, 2]}, "t": {"name": "patient", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "operator", "moved", "the", "data", "into", "the", "text", "box", "from", "the", "database", "table", "column", "."], "h": {"name": "data", "pos": [4, 5]}, "t": {"name": "text box", "pos": [7, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["212", "vehicles", "were", "brought", "into", "this", "city", "under", "personal", "imports", "."], "h": {"name": "vehicles", "pos": [1, 2]}, "t": {"name": "city", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["we", "have", "thrown", "the", "balls", "into", "the", "basket", "."], "h": {"name": "balls", "pos": [4, 5]}, "t": {"name": "basket", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "man", "who", "tried", "to", "cool", "out", "his", "hyper", "cat", "by", "stuffing", "the", "animal", "into", "a", "boxlike", "homemade", "bong", "faces", "cruelty", "charges", "."], "h": {"name": "animal", "pos": [13, 14]}, "t": {"name": "bong", "pos": [18, 19]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["eight", "yachts", "have", "arrived", "into", "the", "harbor", "."], "h": {"name": "yachts", "pos": [1, 2]}, "t": {"name": "harbor", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["new", "emails", "arrive", "into", "my", "mail", "box", "every", "1", "min", ";", "this", "includes", "a", "lot", "of", "spam", "."], "h": {"name": "emails", "pos": [1, 2]}, "t": {"name": "mail box", "pos": [5, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "drain", "was", "only", "half", "way", "through", "the", "bale", "wall", ",", "so", "when", "it", "stormed", ",", "the", "water", "poured", "right", "into", "the", "straw-bales", "."], "h": {"name": "water", "pos": [17, 18]}, "t": {"name": "straw-bales", "pos": [22, 23]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["i", "have", "inserted", "various", "cartridges", "into", "that", "old", "printer", ",", "but", "still", "the", "printer", "is", "not", "working", "."], "h": {"name": "cartridges", "pos": [4, 5]}, "t": {"name": "printer", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["radial", "mixing", "processes", "have", "transported", "such", "material", "into", "outer", "disc", "regions", "."], "h": {"name": "material", "pos": [6, 7]}, "t": {"name": "outer disc regions", "pos": [8, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "photographer", "journeyed", "into", "america", "'s", "heartland", "as", "a", "lone", "artist", "."], "h": {"name": "photographer", "pos": [1, 2]}, "t": {"name": "heartland", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["one", "ounce", "of", "pure", "gold", "was", "sealed", "in", "a", "quartz", "tube", "and", "a", "section", "of", "5-mm", "inside", "diameter", "quartz", "tube", "was", "sealed", "on", "the", "quartz-gold", "tube", "."], "h": {"name": "gold", "pos": [4, 5]}, "t": {"name": "quartz tube", "pos": [9, 11]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["i", "have", "put", "these", "images", "into", "my", "web", "page", "."], "h": {"name": "images", "pos": [4, 5]}, "t": {"name": "web page", "pos": [7, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["we", "then", "placed", "the", "tube", "in", "a", "beaker", "of", "iodine", "water", "."], "h": {"name": "tube", "pos": [4, 5]}, "t": {"name": "beaker", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "queen", "was", "put", "inside", "her", "cage", "and", "then", "placed", "in", "the", "box", "with", "a", "bunch", "of", "worker", "bees", "four", "days", "ago", "."], "h": {"name": "queen", "pos": [1, 2]}, "t": {"name": "cage", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["instead", "i", "again", "poured", "water", "into", "the", "hole", "and", "again", "water", "came", "dripping", "down", "in", "the", "place", "."], "h": {"name": "water", "pos": [4, 5]}, "t": {"name": "hole", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["i", "already", "posted", "the", "product", "to", "your", "house", "last", "friday", "."], "h": {"name": "product", "pos": [4, 5]}, "t": {"name": "house", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "strong", "winds", "blew", "snow", "into", "the", "snowdrifts", "."], "h": {"name": "snow", "pos": [4, 5]}, "t": {"name": "snowdrifts", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "little", "sparrows", "have", "flown", "into", "the", "wall", "."], "h": {"name": "sparrows", "pos": [2, 3]}, "t": {"name": "wall", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "injured", "children", "were", "handed", "over", "to", "their", "relatives", "in", "mannaar", "."], "h": {"name": "children", "pos": [2, 3]}, "t": {"name": "relatives", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["he", "was", "releasing", "information", "into", "the", "public", "domain", "without", "understanding", "what", "that", "was", "."], "h": {"name": "information", "pos": [3, 4]}, "t": {"name": "public domain", "pos": [6, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "kids", "are", "blowing", "bubbles", "into", "the", "air", "."], "h": {"name": "bubbles", "pos": [4, 5]}, "t": {"name": "air", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["he", "posted", "his", "gifts", "to", "a", "military", "base", "in", "middle", "east", "asia", "."], "h": {"name": "gifts", "pos": [3, 4]}, "t": {"name": "base", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["since", "the", "chops", "were", "brown", ",", "the", "chef", "drained", "the", "drippings", "into", "the", "sauerkraut", "."], "h": {"name": "drippings", "pos": [10, 11]}, "t": {"name": "sauerkraut", "pos": [13, 14]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["anti-crime", "rap", "is", "sent", "to", "mobiles", "."], "h": {"name": "anti-crime rap", "pos": [0, 2]}, "t": {"name": "mobiles", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["cross-network", "instant", "messenger", "service", ",", "meebo", ",", "has", "added", "games", "into", "chatting", "."], "h": {"name": "games", "pos": [9, 10]}, "t": {"name": "chatting", "pos": [11, 12]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["skydivers", "are", "dropped", "into", "the", "island", "."], "h": {"name": "skydivers", "pos": [0, 1]}, "t": {"name": "island", "pos": [5, 6]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["seacrest", "students", "donated", "uniforms", "to", "shadowlawn", "students", "."], "h": {"name": "uniforms", "pos": [3, 4]}, "t": {"name": "students", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["now", "we", "deliver", "all", "products", "to", "overseas", "."], "h": {"name": "products", "pos": [4, 5]}, "t": {"name": "overseas", "pos": [6, 7]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "new", "module", "has", "been", "imported", "into", "the", "mozilla", "browser", "."], "h": {"name": "module", "pos": [2, 3]}, "t": {"name": "browser", "pos": [9, 10]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["the", "money", "was", "handed", "over", "into", "notarial", "custody", "for", "the", "purpose", "of", "securing", "an", "obligation", "."], "h": {"name": "money", "pos": [1, 2]}, "t": {"name": "custody", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["a", "woman", "has", "been", "placed", "into", "the", "house", "as", "well", "."], "h": {"name": "woman", "pos": [1, 2]}, "t": {"name": "house", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["husseys", "sent", "their", "key", "players", "to", "the", "stadium", "for", "the", "decisive", "game", "."], "h": {"name": "players", "pos": [4, 5]}, "t": {"name": "stadium", "pos": [7, 8]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["more", "weapons", "are", "being", "delivered", "to", "the", "french", "navy", "."], "h": {"name": "weapons", "pos": [1, 2]}, "t": {"name": "navy", "pos": [8, 9]}, "relation": "Entity-Destination(e1,e2)"}
{"token": ["avian", "influenza", "is", "an", "infectious", "disease", "of", "birds", "caused", "by", "type", "a", "strains", "of", "the", "influenza", "virus", "."], "h": {"name": "influenza", "pos": [1, 2]}, "t": {"name": "virus", "pos": [16, 17]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "same", "effect", "is", "achieved", "the", "traditional", "way", ",", "with", "a", "team", "of", "workers", "like", "keebler", "elves", "."], "h": {"name": "effect", "pos": [2, 3]}, "t": {"name": "way", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "slide", ",", "which", "was", "triggered", "by", "an", "avalanche-control", "crew", ",", "damaged", "one", "home", "and", "blocked", "the", "road", "for", "most", "of", "the", "day", "."], "h": {"name": "slide", "pos": [1, 2]}, "t": {"name": "crew", "pos": [9, 10]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["it", "spilled", "more", "than", "53000", "gallons", "of", "crude", "oil", "into", "the", "surrounding", "marshes", "one", "of", "the", "bigger", "spills", "caused", "by", "the", "hurricane", "."], "h": {"name": "spills", "pos": [17, 18]}, "t": {"name": "hurricane", "pos": [21, 22]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "diseases", "are", "caused", "by", "gene", "mutations", "on", "the", "x", "chromosome", "."], "h": {"name": "diseases", "pos": [1, 2]}, "t": {"name": "gene mutations", "pos": [5, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["lisa", "took", "great", "joy", "from", "laughing", ",", "volunteering", "at", "school", ",", "taking", "pictures", ",", "chatting", ",", "the", "twins", "and", "vikings", ",", "playing", "softball", "and", "volleyball", ",", "and", "time", "at", "lake", "vermilion", "."], "h": {"name": "joy", "pos": [3, 4]}, "t": {"name": "laughing", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["as", "a", "result", ",", "pollution", "from", "cars", "is", "causing", "serious", "health", "problems", "for", "americans", "."], "h": {"name": "pollution", "pos": [4, 5]}, "t": {"name": "cars", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["his", "trademark", "steam-engine", "puffing", "is", "revealed", "as", "a", "sound", "made", "by", "a", "viper", "spitting", "venom", "at", "his", "prey", "before", "swallowing", "her", "whole", "."], "h": {"name": "sound", "pos": [8, 9]}, "t": {"name": "viper", "pos": [12, 13]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "deadly", "train", "crash", "was", "caused", "by", "terrorist", "attack", "."], "h": {"name": "crash", "pos": [3, 4]}, "t": {"name": "attack", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["all", "the", "decking", "on", "the", "ramps", "need", "to", "be", "replaced", "(", "for", "the", "second", "time", ")", "because", "of", "the", "damage", "caused", "by", "the", "misuse", "of", "the", "facility", "."], "h": {"name": "damage", "pos": [19, 20]}, "t": {"name": "misuse", "pos": [23, 24]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["these", "types", "of", "scripts", "help", "visually", "impaired", "individuals", "to", "get", "more", "enjoyment", "from", "programming", "because", "the", "action", "on-screen", "is", "described", "for", "them", "."], "h": {"name": "enjoyment", "pos": [11, 12]}, "t": {"name": "programming", "pos": [13, 14]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "third", "conflict", "has", "been", "caused", "by", "the", "highly", "polluted", "wastewater", "from", "the", "industrial", "park", "around", "the", "town", "of", "kemalpasha", "."], "h": {"name": "conflict", "pos": [2, 3]}, "t": {"name": "wastewater", "pos": [10, 11]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "fujita", "scale", "is", "used", "to", "rate", "the", "intensity", "of", "a", "tornado", "by", "examining", "the", "damage", "caused", "by", "the", "tornado", "after", "it", "has", "passed", "over", "a", "man-made", "structure", "."], "h": {"name": "damage", "pos": [15, 16]}, "t": {"name": "tornado", "pos": [19, 20]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["this", "is", "one", "of", "the", "more", "common", "causes", "of", "hair", "loss", "caused", "by", "stress", "and", "when", "you", "are", "losing", "hair", "because", "of", "this", "your", "hair", "stops", "growing", "and", "lies", "dormant", "."], "h": {"name": "hair loss", "pos": [9, 11]}, "t": {"name": "stress", "pos": [13, 14]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "colors", "of", "the", "rainbow", "are", "caused", "by", "the", "dispersion", "of", "light", "as", "it", "passes", "through", "a", "prism", "."], "h": {"name": "colors", "pos": [1, 2]}, "t": {"name": "dispersion", "pos": [9, 10]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["i", "wo", "n't", "tell", "you", "how", "much", "music", "means", "now", ",", "in", "these", "times", ",", "when", "you", "are", "battling", "depression", "from", "unemployment", "."], "h": {"name": "depression", "pos": [19, 20]}, "t": {"name": "unemployment", "pos": [21, 22]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["a", "good", "neck", "support", "pillow", "can", "be", "used", "while", "you", "are", "sleeping", "to", "remedy", "the", "neck", "pain", "which", "has", "been", "caused", "by", "the", "stresses", "and", "strains", "of", "your", "daily", "routine", "."], "h": {"name": "pain", "pos": [16, 17]}, "t": {"name": "strains", "pos": [25, 26]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "damage", "caused", "by", "a", "bullet", "depends", "on", "the", "amount", "of", "energy", "which", "it", "transfers", "to", "the", "tissues", "."], "h": {"name": "damage", "pos": [1, 2]}, "t": {"name": "bullet", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "distribution", "of", "the", "damage", "caused", "by", "the", "earthquake", "in", "valdivia", "in", "relation", "to", "the", "form", "of", "the", "terrane", "."], "h": {"name": "damage", "pos": [4, 5]}, "t": {"name": "earthquake", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "misinterpretation", "has", "been", "caused", "by", "the", "italian", "word", "for", "vacuum", "tubes", ",", "which", "is", "valvole", "(", "or", "tubi", "a", "vuoto", ")", "."], "h": {"name": "misinterpretation", "pos": [1, 2]}, "t": {"name": "word", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "current", "iraqi", "government", "is", "seeking", "financial", "compensation", "from", "israel", "for", "the", "damage", "caused", "by", "the", "bombing", "of", "the", "osirak", "nuclear", "reactor", "in", "1981", "."], "h": {"name": "damage", "pos": [12, 13]}, "t": {"name": "bombing", "pos": [16, 17]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "sheer", "scale", "of", "the", "death", "and", "destruction", "caused", "by", "the", "2004", "boxing", "day", "tsunami", "is", "impossible", "to", "fathom", ",", "even", "five", "years", "on", "."], "h": {"name": "death", "pos": [5, 6]}, "t": {"name": "tsunami", "pos": [14, 15]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["as", "a", "guitarist", "i", "get", "so", "much", "satisfaction", "from", "the", "playing", "and", "performing", "of", "music", "."], "h": {"name": "satisfaction", "pos": [7, 8]}, "t": {"name": "playing", "pos": [10, 11]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["in", "this", "paper", ",", "we", "propose", "a", "web-based", "system", "for", "prevention", "of", "the", "confidential", "information", "leakage", "caused", "by", "the", "person", "who", "is", "authorized", "to", "access", "."], "h": {"name": "leakage", "pos": [15, 16]}, "t": {"name": "person", "pos": [19, 20]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["finally", ",", "slone", "'s", "fear", "of", "aids", "and", "the", "mental", "distress", "she", "suffered", "from", "this", "fear", "were", "caused", "by", "the", "needle", "stab", "."], "h": {"name": "fear", "pos": [4, 5]}, "t": {"name": "stab", "pos": [21, 22]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "suffering", "caused", "by", "the", "embargo", "is", "sometimes", "reported", "here", "as", "well", "."], "h": {"name": "suffering", "pos": [1, 2]}, "t": {"name": "embargo", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["sorace", "was", "unaware", "that", "her", "anger", "was", "caused", "by", "the", "abuse", "."], "h": {"name": "anger", "pos": [5, 6]}, "t": {"name": "abuse", "pos": [10, 11]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "idea", "of", "roman", "expansion", "into", "north", "africa", "started", "with", "the", "fear", "and", "jealousy", "caused", "by", "the", "great", "economic", "power", "of", "carthage", "."], "h": {"name": "fear", "pos": [11, 12]}, "t": {"name": "power", "pos": [19, 20]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["tides", "are", "caused", "by", "the", "gravitational", "pull", "of", "the", "moon", "and", "sun", ",", "and", "the", "rotation", "of", "the", "earth", "."], "h": {"name": "tides", "pos": [0, 1]}, "t": {"name": "gravitational pull", "pos": [5, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "dramatic", "streaks", "we", "see", "in", "the", "sky", "are", "caused", "by", "particles", "that", "incinerate", "before", "they", "hit", "the", "ground", "."], "h": {"name": "streaks", "pos": [2, 3]}, "t": {"name": "particles", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "pain", "from", "an", "ulcer", "is", "usually", "more", "severe", "than", "pain", "from", "indigestion", ",", "often", "gnawing", "in", "nature", ",", "it", "sometimes", "goes", "through", "to", "the", "back", "."], "h": {"name": "pain", "pos": [10, 11]}, "t": {"name": "indigestion", "pos": [12, 13]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "kids", "get", "great", "joy", "from", "eating", "the", "tomatoes", "right", "off", "the", "vine", "."], "h": {"name": "joy", "pos": [4, 5]}, "t": {"name": "eating", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["i", "still", "shiver", "as", "i", "remember", "trying", "to", "page", "through", "economics", "texts", "by", "the", "flicker", "from", "candles", "while", "clad", "in", "overcoat", ",", "scarf", ",", "and", "little", "knitted", "gloves", "with", "the", "fingertips", "cut", "off", ",", "in", "the", "4", "p.m", "."], "h": {"name": "flicker", "pos": [14, 15]}, "t": {"name": "candles", "pos": [16, 17]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "worst", "pain", "of", "all", "was", "caused", "by", "the", "torment", "to", "her", "head", "which", "was", "like", "the", "pain", "of", "thorns", "pressing", "into", "her", "."], "h": {"name": "pain", "pos": [2, 3]}, "t": {"name": "torment", "pos": [9, 10]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["overall", ",", "discomfort", "from", "braces", "is", "typically", "short", "in", "duration", "and", "easily", "managed", "."], "h": {"name": "discomfort", "pos": [2, 3]}, "t": {"name": "braces", "pos": [4, 5]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["immediately", "a", "soft", "glow", "appeared", "on", "her", "lovely", "face", "as", "the", "light", "was", "radiating", "from", "her", "soft", "winged", "friend", "."], "h": {"name": "light", "pos": [11, 12]}, "t": {"name": "friend", "pos": [18, 19]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["amateur", "video", "has", "been", "posted", "online", "that", "shows", "some", "of", "the", "devastation", "caused", "by", "the", "tsunami", "waves", "."], "h": {"name": "devastation", "pos": [11, 12]}, "t": {"name": "waves", "pos": [16, 17]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "two", "trains", "caught", "fire", "after", "the", "collision", "and", "were", "burned", "."], "h": {"name": "fire", "pos": [4, 5]}, "t": {"name": "collision", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["seniors", "get", "much", "joy", "from", "animals", "."], "h": {"name": "joy", "pos": [3, 4]}, "t": {"name": "animals", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["i", "get", "tons", "of", "satisfaction", "and", "joy", "from", "watching", "the", "little", "fur", "ball", "become", "the", "hunter", "it", "was", "bred", "to", "be", "."], "h": {"name": "satisfaction", "pos": [4, 5]}, "t": {"name": "watching", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "pollution", "was", "caused", "by", "the", "shipwreck", "."], "h": {"name": "pollution", "pos": [1, 2]}, "t": {"name": "shipwreck", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["until", "now", ",", "no", "paper", "has", "been", "presented", "on", "predicting", "the", "interior", "noise", "caused", "by", "a", "powertrain", "on", "the", "basis", "of", "hybrid", "tpa", "with", "a", "real", "vehicle", "."], "h": {"name": "noise", "pos": [12, 13]}, "t": {"name": "powertrain", "pos": [16, 17]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["world", "aids", "day", ",", "observed", "december", "1", "each", "year", ",", "is", "dedicated", "to", "raising", "awareness", "of", "the", "aids", "pandemic", "caused", "by", "the", "spread", "of", "hiv", "infection", "."], "h": {"name": "pandemic", "pos": [18, 19]}, "t": {"name": "infection", "pos": [25, 26]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["in", "the", "last", "couple", "of", "years", "i", "have", "been", "working", "with", "my", "fear", "from", "darkness", "."], "h": {"name": "fear", "pos": [12, 13]}, "t": {"name": "darkness", "pos": [14, 15]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["a", "large", "tsunami", "triggered", "by", "the", "earthquake", "spread", "outward", "from", "off", "the", "sumatran", "coast", "."], "h": {"name": "tsunami", "pos": [2, 3]}, "t": {"name": "earthquake", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["cutler", "ended", "up", "with", "a", "bleeding", "stomach", "ulcer", "caused", "by", "the", "stress", "and", "hard", "work", "supervising", "their", "tours", "twenty-four", "hours", "a", "day", "."], "h": {"name": "ulcer", "pos": [7, 8]}, "t": {"name": "stress", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["recessions", "are", "caused", "by", "an", "excess", "demand", "for", "money", "combined", "with", "rational", "downward", "price", "rigidity", "."], "h": {"name": "recessions", "pos": [0, 1]}, "t": {"name": "excess demand", "pos": [5, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["in", "the", "present", "recession", ",", "which", "has", "been", "triggered", "by", "a", "collapse", "in", "land", "prices", ",", "land-value", "taxation", "would", "reverse", "the", "collapse", "-", "not", "by", "re-inflating", "a", "temporary", "speculative", "bubble", ",", "but", "by", "inducing", "investment", "in", "infrastructure", "that", "permanently", "enhances", "the", "utility", "of", "the", "land", "."], "h": {"name": "recession", "pos": [3, 4]}, "t": {"name": "collapse", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["hiroshima", "has", "rejected", "the", "demands", "of", "some", "citizens", "and", "victims", "groups", "that", "the", "newly", "renovated", "museum", "include", "an", "exhibition", "on", "japan", "'s", "``", "aggressive", "role", "''", "in", "world", "war", "ii", ",", "alongside", "the", "gruesome", "displays", "of", "the", "suffering", "and", "devastation", "caused", "by", "the", "bomb", "."], "h": {"name": "suffering", "pos": [37, 38]}, "t": {"name": "bomb", "pos": [43, 44]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["many", "problems", "have", "ensued", "from", "the", "new", "policy", ",", "most", "of", "them", "unforeseen", "and", "based", "on", "ethnic", "differences", "."], "h": {"name": "problems", "pos": [1, 2]}, "t": {"name": "policy", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "bleeding", "was", "caused", "by", "an", "injury", ",", "such", "as", "a", "fall", "or", "something", "hitting", "your", "face", "."], "h": {"name": "bleeding", "pos": [1, 2]}, "t": {"name": "injury", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["they", "made", "the", "effect", "even", "more", "dramatic", "by", "lighting", "the", "talent", "with", "a", "light", "placed", "on", "the", "floor", "and", "focused", "on", "the", "face", "."], "h": {"name": "effect", "pos": [3, 4]}, "t": {"name": "light", "pos": [13, 14]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "thin", "f", "ring", "on", "the", "left", "of", "the", "image", "shows", "the", "perturbations", "caused", "by", "the", "moon", "prometheus", "."], "h": {"name": "perturbations", "pos": [12, 13]}, "t": {"name": "moon", "pos": [16, 17]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["we", "have", "recently", "determined", "the", "corruption", "was", "(", "ironically", ")", "triggered", "by", "the", "smart", "utilities", "."], "h": {"name": "corruption", "pos": [5, 6]}, "t": {"name": "utilities", "pos": [14, 15]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["he", "preserved", "the", "working", "ranches", "of", "the", "west", ",", "while", "achieving", "an", "expansion", "of", "the", "ranch", "'s", "value", "through", "development", "and", "management", "of", "the", "recreational", "ecosystem", "within", "the", "ranch", "."], "h": {"name": "expansion", "pos": [12, 13]}, "t": {"name": "development", "pos": [19, 20]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["a", "really", "enjoyable", "drinking", "experience", "ensued", "from", "this", "red", "blend", "from", "this", "boutique", "winery", "from", "the", "cowra", "area", "of", "central", "western", "nsw", "."], "h": {"name": "experience", "pos": [4, 5]}, "t": {"name": "blend", "pos": [9, 10]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "spill", "was", "caused", "by", "the", "iraqi", "fuel", "tanker", "zainab", ",", "suspected", "of", "smuggling", "around", "1,300", "tonnes", "of", "fuel", "oil", "from", "iraq", ",", "as", "it", "ran", "into", "trouble", "on", "its", "way", "to", "a", "holding", "area", "in", "international", "waters", "."], "h": {"name": "spill", "pos": [1, 2]}, "t": {"name": "tanker", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["police", "investigators", "later", "found", "brake", "discs", "on", "the", "car", "were", "broken", ",", "though", "experts", "from", "the", "italian", "car", "manufacturers", "insist", "the", "damage", "was", "caused", "by", "the", "collision", "and", "the", "car", "had", "been", "in", "perfect", "condition", "."], "h": {"name": "damage", "pos": [21, 22]}, "t": {"name": "collision", "pos": [26, 27]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["aware", "of", "the", "suffering", "caused", "by", "exploitation", ",", "social", "injustice", ",", "stealing", ",", "and", "oppression", ",", "i", "am", "committed", "to", "cultivate", "loving", "kindness", "and", "learn", "ways", "to", "work", "for", "the", "well-being", "of", "people", ",", "animals", ",", "plants", ",", "and", "minerals", "."], "h": {"name": "suffering", "pos": [3, 4]}, "t": {"name": "exploitation", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["witness", "the", "gangs", "in", "los", "angeles", "who", "stopped", "killing", "one", "another", "for", "a", "time", "after", "the", "riots", "triggered", "by", "the", "rodney", "king", "bashing", "verdict", "."], "h": {"name": "riots", "pos": [16, 17]}, "t": {"name": "verdict", "pos": [23, 24]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["from", "banishing", "cold", "and", "flu", "germs", "to", "preventing", "foodborne", "illnesses", ",", "frequent", "hand-washing", "is", "one", "of", "the", "smartest", "preventive", "habits", "you", "can", "adopt", "."], "h": {"name": "cold", "pos": [2, 3]}, "t": {"name": "germs", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["human", "growth", "hormone", "is", "described", "by", "some", "as", "the", "key", "to", "slowing", "the", "aging", "process", "."], "h": {"name": "growth", "pos": [1, 2]}, "t": {"name": "hormone", "pos": [2, 3]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "election", "was", "caused", "by", "the", "appointment", "of", "donald", "sumner", ",", "formerly", "conservative", "mp", "for", "orpington", ",", "to", "be", "a", "county", "court", "judge", "."], "h": {"name": "election", "pos": [1, 2]}, "t": {"name": "appointment", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["this", "was", "our", "first", "day", "back", "volunteering", "there", "but", "he", "was", "n't", "feeling", "good", ",", "had", "a", "fever", "from", "immunizations", "."], "h": {"name": "fever", "pos": [17, 18]}, "t": {"name": "immunizations", "pos": [19, 20]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "acidity", "is", "caused", "by", "the", "gradual", "buildup", "of", "carbon", "dioxide", "(", "co2", ")", "in", "the", "atmosphere", ",", "dissolving", "into", "the", "oceans", "."], "h": {"name": "acidity", "pos": [1, 2]}, "t": {"name": "carbon dioxide", "pos": [9, 11]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "straight", ",", "blue", "ion", "tail", "is", "caused", "by", "the", "solar", "wind", "and", "the", "curved", "dust", "tail", "is", "caused", "by", "solar", "radiation", "pressure", "."], "h": {"name": "tail", "pos": [5, 6]}, "t": {"name": "solar wind", "pos": [10, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["infectious", "diseases", "or", "communicable", "diseases", "are", "caused", "by", "bacteria", ",", "viruses", ",", "and", "parasites", "."], "h": {"name": "infectious diseases", "pos": [0, 2]}, "t": {"name": "parasites", "pos": [13, 14]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["on", "this", "basis", ",", "the", "vibronically", "coupled", "cd", "bands", "of", "lutein", "diacetate", "are", "attributed", "to", "an", "excitonic", "interaction", "arose", "from", "the", "twisted", "nematic", "layers", "."], "h": {"name": "interaction", "pos": [17, 18]}, "t": {"name": "layers", "pos": [23, 24]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "pension", "crisis", "has", "been", "caused", "by", "the", "escalating", "cost", "of", "funding", "``", "copper", "bottomed", "''", "final", "salary", "pension", "schemes", "still", "provided", ",", "unlike", "most", "companies", ",", "by", "councils", "and", "other", "public", "sector", "employers", "such", "as", "transport", "for", "london", "."], "h": {"name": "crisis", "pos": [2, 3]}, "t": {"name": "cost", "pos": [9, 10]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["a", "third", "of", "the", "injuries", "are", "caused", "by", "illegally", "obtained", "fireworks", ",", "and", "burns", "account", "for", "half", "the", "injuries", "."], "h": {"name": "injuries", "pos": [4, 5]}, "t": {"name": "fireworks", "pos": [10, 11]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["in", "addition", "to", "the", "threat", "from", "cable", "television", ",", "analog", "terrestrial", "television", "is", "now", "also", "subject", "to", "competition", "from", "satellite", "television", "and", "distribution", "of", "video", "and", "film", "content", "over", "the", "internet", "."], "h": {"name": "threat", "pos": [4, 5]}, "t": {"name": "television", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["i", "write", "as", "both", "a", "doctor/medical", "director", "of", "the", "me", "association", "and", "as", "someone", "who", "suffers", "from", "the", "illness", ",", "which", "was", "triggered", "by", "an", "attack", "of", "chickenpox", "."], "h": {"name": "illness", "pos": [18, 19]}, "t": {"name": "chickenpox", "pos": [27, 28]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["i", "know", "plenty", "of", "people", "with", "oily", "skin", "and", "wrinkles", "from", "the", "sun", "and", "they", "'re", "in", "their", "30s", "."], "h": {"name": "wrinkles", "pos": [9, 10]}, "t": {"name": "sun", "pos": [12, 13]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "mosaicism", "observed", "in", "the", "proband", "was", "derived", "from", "a", "postzygotic", "somatic", "mutation", "of", "the", "normal", "maternal", "y", "chromosome", "."], "h": {"name": "mosaicism", "pos": [1, 2]}, "t": {"name": "mutation", "pos": [12, 13]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "deleveraging", "triggered", "by", "the", "crisis", "implies", "that", "countries", "that", "hoarded", "reserves", "have", "been", "reaping", "the", "benefits", "."], "h": {"name": "deleveraging", "pos": [1, 2]}, "t": {"name": "crisis", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["headaches", ",", "dizziness", ",", "balance", "problems", ",", "and", "neck", "and", "back", "pain", "were", "caused", "by", "the", "work", "injury", "."], "h": {"name": "dizziness", "pos": [2, 3]}, "t": {"name": "injury", "pos": [17, 18]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["heat", "burns", ",", "or", "thermal", "burns", ",", "are", "caused", "by", "steam", ",", "fire", ",", "hot", "objects", "or", "hot", "liquids", "."], "h": {"name": "burns", "pos": [1, 2]}, "t": {"name": "liquids", "pos": [18, 19]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "flooding", ",", "caused", "by", "a", "cyclone", ",", "came", "on", "the", "heels", "of", "a", "prolonged", "drought", ",", "which", "destroyed", "60", "percent", "of", "fiji", "'s", "sugar", "cane", "crop", "last", "year", "and", "cost", "more", "than", "50", "million", "fijian", "dollars", "(", "25", "million", "us", ")", "in", "relief", "and", "rehabilitation", "."], "h": {"name": "flooding", "pos": [1, 2]}, "t": {"name": "cyclone", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["one", "of", "the", "most", "dreaded", "types", "of", "scars", "are", "contracture", "scars", "from", "burns", "."], "h": {"name": "scars", "pos": [10, 11]}, "t": {"name": "burns", "pos": [12, 13]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["children", "stand", "near", "houses", "in", "padang", "that", "caught", "fire", "after", "the", "earthquake", "."], "h": {"name": "fire", "pos": [8, 9]}, "t": {"name": "earthquake", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["individual", "donors", "make", "a", "significant", "difference", "in", "addressing", "the", "suffering", "caused", "by", "the", "economic", "crisis", "."], "h": {"name": "suffering", "pos": [9, 10]}, "t": {"name": "crisis", "pos": [14, 15]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["this", "is", "a", "yeast", "infection", "of", "the", "esophagus", "caused", "by", "the", "same", "fungus", "that", "causes", "vaginal", "yeast", "infections", "."], "h": {"name": "infection", "pos": [4, 5]}, "t": {"name": "fungus", "pos": [12, 13]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["tonsillitis", "is", "caused", "by", "infection", "by", "a", "variety", "of", "different", "micro-organisms", "."], "h": {"name": "tonsillitis", "pos": [0, 1]}, "t": {"name": "micro-organisms", "pos": [10, 11]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["hiccups", "are", "caused", "by", "a", "spasm", "contracting", "the", "diaphragm", ",", "a", "muscle", "essential", "in", "human", "respiration", "."], "h": {"name": "hiccups", "pos": [0, 1]}, "t": {"name": "spasm", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["he", "took", "a", "shower", "after", "using", "hair", "cream", "to", "avoid", "skin", "irritation", "from", "the", "chemicals", "in", "the", "product", "."], "h": {"name": "irritation", "pos": [11, 12]}, "t": {"name": "chemicals", "pos": [14, 15]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "humiliation", "comes", "from", "authorities", "and", "people", "making", "him", "loose", "faith", "in", "humanity", "."], "h": {"name": "humiliation", "pos": [1, 2]}, "t": {"name": "people", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["increased", "reproductive", "toxicity", "of", "landfill", "leachate", "after", "degradation", "was", "caused", "by", "nitrite", "."], "h": {"name": "reproductive toxicity", "pos": [1, 3]}, "t": {"name": "nitrite", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["a", "controversy", "arose", "from", "an", "equivocal", "assignment", "of", "the", "metastable", "150-mev", "vibrational", "peak", "."], "h": {"name": "controversy", "pos": [1, 2]}, "t": {"name": "assignment", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["picture", "of", "a", "woodcut", "portraying", "the", "harm", "caused", "by", "the", "quake", "."], "h": {"name": "harm", "pos": [6, 7]}, "t": {"name": "quake", "pos": [10, 11]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "variations", "are", "caused", "by", "stratospheric", "winds", "and", "the", "chemical", "production", "and", "destruction", "of", "ozone", "."], "h": {"name": "variations", "pos": [1, 2]}, "t": {"name": "stratospheric winds", "pos": [5, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["much", "of", "the", "bloodshed", "was", "caused", "by", "the", "growth", "of", "gangs", "."], "h": {"name": "bloodshed", "pos": [3, 4]}, "t": {"name": "growth", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "anxiety", "caused", "by", "the", "accident", ",", "which", "appears", "to", "show", "no", "sign", "of", "diminishing", ",", "and", "its", "negative", "impact", "on", "the", "living", "conditions", "in", "the", "affected", "areas", ",", "may", "be", "the", "principal", "reason", "for", "the", "increase", "in", "poor", "reported", "health", "."], "h": {"name": "anxiety", "pos": [1, 2]}, "t": {"name": "accident", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "energy", "is", "going", "away", "from", "the", "source", "at", "the", "group", "velocity", "cg", "."], "h": {"name": "energy", "pos": [1, 2]}, "t": {"name": "source", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["this", "mild", "and", "relatively", "common", "form", "of", "acne", "is", "caused", "by", "cosmetics", "."], "h": {"name": "acne", "pos": [7, 8]}, "t": {"name": "cosmetics", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "light", "was", "radiating", "from", "the", "face", "of", "jesus", "christ", "."], "h": {"name": "light", "pos": [1, 2]}, "t": {"name": "face", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "output", "noise", "was", "caused", "by", "the", "biasing", "resistors", "and", "the", "shot", "noises", "of", "the", "base", "currents", "of", "q1", "and", "q4", "."], "h": {"name": "noise", "pos": [2, 3]}, "t": {"name": "resistors", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "only", "light", "was", "from", "two", "turrets", "of", "bulletproof", "glass", "."], "h": {"name": "light", "pos": [2, 3]}, "t": {"name": "turrets", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["dogs", "develop", "a", "fever", "from", "stress", "and/or", "pain", "such", "as", "in", "a", "severe", "flea", "infestation", "."], "h": {"name": "fever", "pos": [3, 4]}, "t": {"name": "stress", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["every", "schoolchild", "is", "taught", "that", "the", "monsoons", "are", "caused", "by", "the", "change", "in", "wind", "patterns", "when", "a", "large", "body", "of", "warm", "air", "rises", "."], "h": {"name": "monsoons", "pos": [6, 7]}, "t": {"name": "change", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["both", "reached", "the", "same", "basic", "conclusion", ",", "that", "the", "ship", "had", "been", "destroyed", "by", "a", "magazine", "explosion", "which", "was", "triggered", "by", "an", "external", "blast", "."], "h": {"name": "explosion", "pos": [16, 17]}, "t": {"name": "blast", "pos": [23, 24]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["by", "far", "the", "greatest", "damage", "has", "been", "caused", "by", "the", "illicit", "use", "of", "the", "hallucinogens", "."], "h": {"name": "damage", "pos": [4, 5]}, "t": {"name": "hallucinogens", "pos": [14, 15]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "full", "amount", "paid", "to", "aardman", "for", "the", "blaze", ",", "which", "was", "triggered", "by", "an", "electrical", "fault", ",", "was", "not", "disclosed", "."], "h": {"name": "blaze", "pos": [8, 9]}, "t": {"name": "fault", "pos": [16, 17]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["two", "of", "my", "girls", "had", "the", "high", "fever", "from", "vaccines", ",", "and", "our", "family", "doctor", "thought", "nothing", "of", "it", "."], "h": {"name": "fever", "pos": [7, 8]}, "t": {"name": "vaccines", "pos": [9, 10]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["acne", "is", "caused", "by", "oily", "skin", "and", "often", "has", "black", "or", "whiteheads", ",", "inflamed", "sores", ",", "and", "infected", "sores", "along", "with", "scars", "."], "h": {"name": "acne", "pos": [0, 1]}, "t": {"name": "oily skin", "pos": [4, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "rainbows", "are", "caused", "by", "the", "refraction", ",", "or", "bending", ",", "of", "sunlight", "as", "it", "passes", "through", "the", "raindrops", "."], "h": {"name": "rainbows", "pos": [1, 2]}, "t": {"name": "refraction", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "response", "to", "the", "harm", "caused", "by", "the", "flood", ",", "although", "institutionally", "organized", ",", "relied", "mostly", "on", "individuals", "joined", "in", "a", "common", "purpose", "rather", "than", "on", "an", "orchestrated", "effort", "by", "established", "hand", "binderies", "."], "h": {"name": "harm", "pos": [4, 5]}, "t": {"name": "flood", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "uterine", "contractions", "are", "caused", "by", "prostaglandins", "."], "h": {"name": "contractions", "pos": [2, 3]}, "t": {"name": "prostaglandins", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["slaanesh", "enjoys", "every", "aspect", "of", "experience", ",", "deriving", "pleasure", "from", "pain", "and", "suffering", "."], "h": {"name": "pleasure", "pos": [8, 9]}, "t": {"name": "suffering", "pos": [12, 13]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["so", "solar", "thermal", "power", "generation", "works", "essentially", "the", "same", "as", "generation", "from", "fossil", "fuels", "except", "that", "instead", "of", "using", "steam", "produced", "from", "the", "combustion", "of", "fossil", "fuels", ",", "the", "steam", "is", "produced", "by", "the", "heat", "collected", "from", "sunlight", "."], "h": {"name": "steam", "pos": [19, 20]}, "t": {"name": "combustion", "pos": [23, 24]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "shifts", "are", "caused", "by", "gas", "flows", "going", "up", "one", "leg", "and", "returning", "down", "the", "other", "."], "h": {"name": "shifts", "pos": [1, 2]}, "t": {"name": "gas flows", "pos": [5, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["khzz", "experienced", "competition", "from", "former", "oldies", "station", "khyl", ",", "but", "both", "stations", "ended", "up", "giving", "up", "the", "format", ",", "with", "khzz", "turning", "to", "oldies", "."], "h": {"name": "competition", "pos": [2, 3]}, "t": {"name": "station", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["a", "plasma", "was", "generated", "by", "an", "electric", "discharge", "between", "electrodes", "located", "in", "the", "focal", "plane", "of", "the", "lens", "and", "separated", "by", "~", "1", "cm", "from", "one", "another", "."], "h": {"name": "plasma", "pos": [1, 2]}, "t": {"name": "discharge", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "cause", "for", "the", "jump", "to", "over", "30,000", "was", "the", "deterioration", "in", "the", "economy", "triggered", "by", "a", "series", "of", "bankruptcies", "among", "banks", "and", "securities", "firms", "."], "h": {"name": "jump", "pos": [4, 5]}, "t": {"name": "deterioration", "pos": [10, 11]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["saosin", "shook", "himself", "off", ",", "coughing", "from", "inhaling", "the", "smoke", ",", "and", "then", "stood", "up", "in", "an", "awkward", "fashion", "."], "h": {"name": "coughing", "pos": [5, 6]}, "t": {"name": "inhaling", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["a", "polio", "outbreak", "in", "nigeria", "was", "caused", "by", "the", "vaccine", "designed", "to", "stop", "it", ",", "leaving", "at", "least", "69", "children", "paralyzed", "."], "h": {"name": "outbreak", "pos": [2, 3]}, "t": {"name": "vaccine", "pos": [9, 10]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "drop", "was", "caused", "by", "the", "recession", "and", "the", "usual", "seasonal", "factors", ",", "with", "fruit", "and", "vegetable", "prices", "lower", "in", "the", "summer", "months", "."], "h": {"name": "drop", "pos": [1, 2]}, "t": {"name": "recession", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "pandemic", "was", "caused", "by", "the", "virus", "yesinia", "pestis", ",", "better", "known", "as", "the", "bubonic", "black", "plague", ",", "which", "infected", "the", "flees", "on", "the", "black", "rodents", "."], "h": {"name": "pandemic", "pos": [1, 2]}, "t": {"name": "virus", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["acne", "is", "caused", "by", "irritants", "like", "fabrics", ",", "hair", "gels", "and", "makeup", "."], "h": {"name": "acne", "pos": [0, 1]}, "t": {"name": "irritants", "pos": [4, 5]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "word", "``", "song", "''", "is", "used", "to", "describe", "the", "pattern", "of", "regular", "and", "predictable", "sounds", "made", "by", "some", "species", "of", "whales", ",", "notably", "the", "humpback", "whale", "."], "h": {"name": "sounds", "pos": [15, 16]}, "t": {"name": "species", "pos": [19, 20]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["that", "being", "said", ",", "i", "do", "love", "the", "game", "and", "play", "it", "all", "the", "time", "but", "would", "appreciate", "a", "little", "less", "frustration", "from", "programming", "and", "debugging", ",", "and", "sticking", "strictly", "with", "the", "frustration", "that", "comes", "from", "hitting", "bad", "shots", "."], "h": {"name": "frustration", "pos": [21, 22]}, "t": {"name": "debugging", "pos": [25, 26]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["you", "see", "and", "hear", "hackman", "'s", "screaming", "after", "the", "dreadful", "shooting", "."], "h": {"name": "screaming", "pos": [6, 7]}, "t": {"name": "shooting", "pos": [10, 11]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "crash", "has", "been", "caused", "by", "a", "meteor", "."], "h": {"name": "crash", "pos": [1, 2]}, "t": {"name": "meteor", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "man", "was", "on", "his", "knees", ",", "sdiraya", "neck", "with", "the", "rope", "and", "coughing", "from", "suffocation", "."], "h": {"name": "coughing", "pos": [13, 14]}, "t": {"name": "suffocation", "pos": [15, 16]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "south", "china", "tigers", "are", "verging", "on", "the", "brink", "on", "extinction", "from", "hunting", "and", "deforestation", ",", "and", "these", "magestic", "animals", "are", "so", "close", "to", "being", "gone", "forever", "."], "h": {"name": "extinction", "pos": [10, 11]}, "t": {"name": "deforestation", "pos": [14, 15]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "environmental", "and", "health", "consequences", "of", "the", "evacuation", "after", "the", "chernobyl", "accident", "."], "h": {"name": "evacuation", "pos": [7, 8]}, "t": {"name": "accident", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "queen", "has", "expressed", "her", "shock", "at", "the", "devastation", "caused", "by", "the", "flooding", "."], "h": {"name": "devastation", "pos": [8, 9]}, "t": {"name": "flooding", "pos": [12, 13]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["comedy", "was", "employed", "in", "a", "cathartic", "role", "against", "the", "tension", ",", "fear", "and", "grief", "caused", "by", "the", "fighting", "."], "h": {"name": "tension", "pos": [9, 10]}, "t": {"name": "fighting", "pos": [17, 18]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["since", "1972", ",", "when", "jewish", "settler", "organizations", "were", "successful", "in", "falsely", "registering", "the", "land", "with", "the", "israeli", "land", "registrar", ",", "the", "family", "have", "suffered", "the", "stress", "and", "anxiety", "caused", "by", "the", "constant", "legal", "battles", "involved", "in", "fighting", "for", "the", "right", "to", "stay", "in", "the", "homes", "in", "which", "many", "of", "them", "were", "born", "."], "h": {"name": "stress", "pos": [25, 26]}, "t": {"name": "battles", "pos": [33, 34]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["all", "thirty", "of", "the", "patches", "sewn", "into", "the", "cloth", "in", "1534", "by", "the", "poor", "clare", "nuns", "to", "repair", "the", "devastation", "caused", "by", "the", "1532", "fire", "were", "removed", "."], "h": {"name": "devastation", "pos": [19, 20]}, "t": {"name": "fire", "pos": [24, 25]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "storm", "was", "generated", "by", "an", "intense", "cold", "front", "moving", "across", "drought-affected", "areas", "in", "south", "australia", "and", "nsw", "."], "h": {"name": "storm", "pos": [1, 2]}, "t": {"name": "cold front", "pos": [7, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["joint", "problems", "are", "caused", "by", "osteoarthitis", "(", "degenerative", "joint", "disease", ")", ",", "subluxations", ",", "sprains", ",", "intervertebral", "disc", "."], "h": {"name": "joint problems", "pos": [0, 2]}, "t": {"name": "osteoarthitis", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["he", "created", "and", "advocated", "``", "flower", "power", ",", "''", "a", "strategy", "in", "which", "antiwar", "demonstrators", "promoted", "positive", "values", "like", "peace", "and", "love", "to", "dramatize", "their", "opposition", "to", "the", "destruction", "and", "death", "caused", "by", "the", "war", "in", "vietnam", "."], "h": {"name": "destruction", "pos": [28, 29]}, "t": {"name": "war", "pos": [34, 35]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["i", "'ve", "suffered", "from", "an", "injury", "that", "has", "been", "caused", "by", "the", "negligence", "of", "another", "person", ",", "and", "i", "'ve", "filed", "an", "injury", "claim", "."], "h": {"name": "injury", "pos": [5, 6]}, "t": {"name": "person", "pos": [15, 16]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["a", "mother", "carries", "her", "children", "inside", "a", "public", "school", "used", "as", "an", "evacuation", "center", "for", "victims", "of", "the", "floods", "caused", "by", "the", "continuous", "rains", "of", "typhoon", "ketsana", ",", "in", "the", "town", "of", "tanay", ",", "rizal", "east", "of", "manila", "september", "28", ",", "2009", "."], "h": {"name": "floods", "pos": [18, 19]}, "t": {"name": "rains", "pos": [23, 24]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "electron", "beam", "is", "generated", "by", "an", "explosive", "emission", "cathode", "."], "h": {"name": "beam", "pos": [2, 3]}, "t": {"name": "emission", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["three", "people", "had", "been", "killed", "in", "a", "fire", "after", "the", "quake", "and", "hundreds", "of", "people", "were", "injured", "."], "h": {"name": "fire", "pos": [7, 8]}, "t": {"name": "quake", "pos": [10, 11]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["some", "have", "argued", "that", "the", "money", "the", "pirates", "demand", "is", "very", "little", "compared", "to", "the", "devastation", "that", "has", "been", "caused", "by", "the", "toxic", "waste", ",", "which", "includes", "nuclear", "waste", "."], "h": {"name": "devastation", "pos": [15, 16]}, "t": {"name": "waste", "pos": [28, 29]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "paper", "reported", "a", "'palpable", "sense", "of", "disappointment", "'", "from", "the", "audience", "."], "h": {"name": "disappointment", "pos": [7, 8]}, "t": {"name": "audience", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["scientists", "warn", "that", "the", "damage", "caused", "by", "the", "fishing", "industry", "is", "irreparable", "."], "h": {"name": "damage", "pos": [4, 5]}, "t": {"name": "industry", "pos": [9, 10]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["fetal", "alcohol", "spectrum", "disorders", ",", "or", "fasds", ",", "are", "caused", "by", "drinking", "alcohol", "during", "pregnancy", "."], "h": {"name": "disorders", "pos": [3, 4]}, "t": {"name": "drinking", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["little", "irish", "girl", "becky", "called", "a", "demolition", "company", "and", "asked", "if", "they", "would", "knock", "her", "school", "down", "."], "h": {"name": "demolition", "pos": [6, 7]}, "t": {"name": "company", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["adam", "smith", "'s", "first", "measure", "of", "fame", "was", "gained", "from", "a", "series", "of", "public", "lectures", "on", "rhetoric", "and", "belles", "lettres", "delivered", "in", "edinburgh", "from", "1748", "to", "1751", "."], "h": {"name": "measure", "pos": [4, 5]}, "t": {"name": "lectures", "pos": [14, 15]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "devastation", "caused", "by", "the", "earthquake-generated", "tsunami", "is", "seen", "on", "the", "south", "coast", "of", "western", "samoa", "."], "h": {"name": "devastation", "pos": [1, 2]}, "t": {"name": "tsunami", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["scars", "from", "burns", "happen", "when", "the", "entire", "depth", "of", "the", "skin", "is", "destroyed", "by", "heat", "."], "h": {"name": "scars", "pos": [0, 1]}, "t": {"name": "burns", "pos": [2, 3]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "march", "'s", "goal", "is", "to", "raise", "awareness", "of", "the", "crisis", "caused", "by", "the", "israeli", "blockade", "and", "bring", "much", "needed", "humanitarian", "relief", "."], "h": {"name": "crisis", "pos": [10, 11]}, "t": {"name": "blockade", "pos": [15, 16]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "truck", "carried", "homemade", "weapons", ",", "and", "the", "blast", "was", "caused", "by", "the", "mishandling", "of", "weapons", "."], "h": {"name": "blast", "pos": [8, 9]}, "t": {"name": "mishandling", "pos": [13, 14]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["thursday", "afternoon", "the", "staff", "from", "the", "university", "of", "wisconsin-madison", "near", "lake", "mendota", "felt", "a", "shake", "and", "heard", "a", "noise", "like", "a", "boom", "which", "was", "triggered", "by", "an", "ice", "quake", "."], "h": {"name": "noise", "pos": [18, 19]}, "t": {"name": "quake", "pos": [28, 29]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["chronic", "coughing", "from", "smoking", "increases", "the", "risk", "of", "developing", "a", "hernia", "."], "h": {"name": "coughing", "pos": [1, 2]}, "t": {"name": "smoking", "pos": [3, 4]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "delays", "are", "caused", "by", "local", "governments", "trying", "to", "wring", "more", "money", "out", "of", "the", "feder", "."], "h": {"name": "delays", "pos": [1, 2]}, "t": {"name": "governments", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["information", "about", "the", "foodborne", "illness", "caused", "by", "salmonella", "bacteria", "."], "h": {"name": "illness", "pos": [4, 5]}, "t": {"name": "bacteria", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["i", "'m", "close", "to", "taking", "a", "writing", "break", "myself", "-", "to", "mention", "the", "frustration", "from", "rejection", ",", "but", "i", "got", "the", "rosetta", "stone", "spanish", "cd", ";", "s", "a", "couple", "of", "years", "ago", ",", "and", "they", "'ve", "taken", "a", "back-seat", "in", "the", "priority", "list", "-", "not", "much", "time", "with", "work", "and", "the", "hubby", "and", "kids", "."], "h": {"name": "frustration", "pos": [13, 14]}, "t": {"name": "rejection", "pos": [15, 16]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["when", "the", "force", "was", "generated", "via", "the", "joystick", ",", "the", "reproduced", "force", "matched", "the", "original", "force", "much", "more", "accurately", "."], "h": {"name": "force", "pos": [2, 3]}, "t": {"name": "joystick", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["acne", "is", "caused", "by", "hormonal", "imbalance", "within", "the", "body", ",", "but", "there", "are", "many", "other", "contributing", "factors", "to", "acne", "outbreaks", "."], "h": {"name": "acne", "pos": [0, 1]}, "t": {"name": "hormonal imbalance", "pos": [4, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["genetic", "disorders", "are", "caused", "by", "the", "mutation", "of", "a", "gene", "."], "h": {"name": "disorders", "pos": [1, 2]}, "t": {"name": "mutation", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["power", "is", "generated", "by", "an", "electrochemical", "reaction", "of", "hydrogen", "and", "oxygen", "that", "yields", "as", "its", "by-product", "only", "heat", "and", "h2o", "."], "h": {"name": "power", "pos": [0, 1]}, "t": {"name": "reaction", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "storm", "is", "generated", "by", "an", "upwelling", "of", "warmer", "air", ",", "similar", "to", "a", "terrestrial", "thunderhead", "."], "h": {"name": "storm", "pos": [1, 2]}, "t": {"name": "upwelling", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["light", "blue", "shows", "the", "additional", "extent", "of", "an", "extreme", "flood", "from", "rivers", "or", "the", "sea", "."], "h": {"name": "flood", "pos": [9, 10]}, "t": {"name": "sea", "pos": [14, 15]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["from", "the", "outset", ",", "the", "tv", "reporters", "started", "talking", "about", "two", "disasters", ":", "the", "natural", "disaster", "which", "was", "caused", "by", "the", "hurricane", "and", "the", "man-made", "disaster", "which", "happened", "in", "new", "orleans", ",", "the", "blame", "for", "which", "was", "laid", "at", "the", "hands", "of", "george", "bush", "."], "h": {"name": "disaster", "pos": [15, 16]}, "t": {"name": "hurricane", "pos": [21, 22]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["another", "reason", "for", "the", "impression", "of", "energy", "and", "optimism", "caused", "by", "many", "posters", "is", "their", "very", "nature", "as", "images", "of", "propaganda", "."], "h": {"name": "energy", "pos": [6, 7]}, "t": {"name": "posters", "pos": [12, 13]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["timoshenko", "commented", "its", "laughter", "after", "the", "joke", "of", "putin", "about", "yushchenko", "and", "of", "."], "h": {"name": "laughter", "pos": [3, 4]}, "t": {"name": "joke", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "video", "then", "shows", "the", "damage", "caused", "by", "the", "aircraft", "as", "it", "hit", "the", "north", "tower", ",", "follows", "the", "disintegrating", "plane", "through", "the", "interior", ",", "and", "then", "shows", "the", "airplane", "metal", ",", "ignited", "fuel", ",", "dust", "and", "smoke", "exiting", "the", "building", "on", "the", "opposite", "side", "."], "h": {"name": "damage", "pos": [5, 6]}, "t": {"name": "aircraft", "pos": [9, 10]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["during", "the", "first", "documented", "outbreak", "of", "human", "infections", "with", "h5n1", ",", "which", "occurred", "in", "hong", "kong", "in", "1997", ",", "the", "18", "human", "cases", "coincided", "with", "an", "outbreak", "of", "highly", "pathogenic", "avian", "influenza", ",", "caused", "by", "a", "virtually", "identical", "virus", ",", "in", "poultry", "farms", "and", "live", "markets", "."], "h": {"name": "influenza", "pos": [31, 32]}, "t": {"name": "virus", "pos": [38, 39]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["wrinkles", "from", "laughing", "is", "a", "good", "sign", "of", "a", "healthy", ",", "happy", "life", "."], "h": {"name": "wrinkles", "pos": [0, 1]}, "t": {"name": "laughing", "pos": [2, 3]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "damage", "caused", "by", "the", "``", "w32/sircam", "''", "computer", "virus", "is", "expanding", "in", "japan", "."], "h": {"name": "damage", "pos": [1, 2]}, "t": {"name": "virus", "pos": [9, 10]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["he", "has", "fear", "from", "darkness", ",", "ghosts", ",", "robbers", "&", "being", "alone", ",", "of", "thunder", ",", "in", "the", "crowd", ",", "of", "death", ",", "of", "disease", ",", "of", "evil", ",", "that", "something", "may", "happen", "."], "h": {"name": "fear", "pos": [2, 3]}, "t": {"name": "robbers", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["much", "of", "the", "difference", "in", "the", "total", "damage", "caused", "by", "the", "nisqually", "and", "the", "northridge", "earthquakes", "can", "be", "attributed", "to", "the", "nisqually", "earthquake", "'s", "location", "."], "h": {"name": "damage", "pos": [7, 8]}, "t": {"name": "earthquakes", "pos": [15, 16]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["breast", "abscess", "is", "caused", "by", "infection", "of", "the", "engorged", "glandular", "system", "of", "the", "breasts", "."], "h": {"name": "abscess", "pos": [1, 2]}, "t": {"name": "infection", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "contamination", "was", "caused", "by", "residues", "of", "the", "aromatic", "hydrocarbons", "."], "h": {"name": "contamination", "pos": [1, 2]}, "t": {"name": "residues", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "incident", "was", "caused", "by", "the", "entry", "of", "high", "pressure", "gas", "from", "a", "deep", "formation", "that", "got", "confined", "in", "the", "porthole", "of", "the", "well", "."], "h": {"name": "incident", "pos": [1, 2]}, "t": {"name": "entry", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["almost", "suddenly", ",", "i", "was", "overcome", "with", "an", "uncontrollable", "fear", "which", "was", "triggered", "by", "the", "death", "of", "my", "friend", "."], "h": {"name": "fear", "pos": [9, 10]}, "t": {"name": "death", "pos": [15, 16]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["my", "view", "of", "how", "the", "brain", "works", "is", "rooted", "in", "an", "evolutionary", "perspective", "that", "moves", "from", "the", "fact", "that", "our", "mental", "life", "reflects", "the", "actions", "of", "many", "."], "h": {"name": "view", "pos": [1, 2]}, "t": {"name": "perspective", "pos": [12, 13]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["among", "the", "first", "to", "survey", "the", "devastation", "caused", "by", "the", "april", "earthquake", ",", "the", "team", "discusses", "what", "they", "observed", "and", "learned", "from", "the", "damaged", "buildings", "."], "h": {"name": "devastation", "pos": [6, 7]}, "t": {"name": "earthquake", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["known", "by", "the", "medical", "field", "as", "tinea", "cruris", ",", "jock", "itch", "is", "a", "persistent", "reddish", ",", "flaky", ",", "and", "itchy", "rash", "in", "the", "groin", "and", "around", "the", "anus", "caused", "by", "a", "fungal", "imbalance", "on", "the", "skin", "."], "h": {"name": "rash", "pos": [20, 21]}, "t": {"name": "fungal imbalance", "pos": [31, 33]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["tsunamis", "are", "caused", "by", "the", "sudden", "displacement", "of", "large", "volumes", "of", "water", "."], "h": {"name": "tsunamis", "pos": [0, 1]}, "t": {"name": "displacement", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "recent", "decline", "has", "been", "caused", "by", "the", "environmentally-induced", "collapse", "of", "fish", "catches", "from", "the", "black", "sea", "."], "h": {"name": "decline", "pos": [2, 3]}, "t": {"name": "collapse", "pos": [9, 10]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["i", "ended", "up", "going", "to", "the", "doctor", ",", "although", "it", "was", "just", "coughing", "from", "allergies", "."], "h": {"name": "coughing", "pos": [12, 13]}, "t": {"name": "allergies", "pos": [14, 15]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["three", "times", "(", "every", "1200", "years", ")", ",", "the", "gods", "were", "distressed", "by", "the", "disturbance", "from", "human", "overpopulation", "."], "h": {"name": "disturbance", "pos": [14, 15]}, "t": {"name": "overpopulation", "pos": [17, 18]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["a", "method", "for", "computing", "the", "deformation", "of", "the", "crust", "caused", "by", "the", "filling", "of", "large", "lakes", "."], "h": {"name": "deformation", "pos": [5, 6]}, "t": {"name": "filling", "pos": [12, 13]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["i", "had", "been", "constipated", "for", "over", "30", "years", ",", "had", "significant", "sleep", "requirements", "(", "average", "9+", "hours", "a", "night", ")", ",", "and", "had", "recurring", "headaches", "from", "fatigue", "and", "allergies", "."], "h": {"name": "headaches", "pos": [24, 25]}, "t": {"name": "allergies", "pos": [28, 29]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["social", "breakdown", "and", "poverty", "caused", "by", "civil", "war", "in", "several", "african", "countries", "has", "caused", "further", "increases", "in", "the", "rate", "of", "prostitution", "in", "those", "countries", "."], "h": {"name": "breakdown", "pos": [1, 2]}, "t": {"name": "war", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["however", ",", "recent", "research", "demonstrates", "that", "most", "ulcers", "of", "the", "duodenum", "are", "caused", "by", "an", "infectious", "agent", "named", "helicobacter", "pylori", "or", "h.", "pylori", "."], "h": {"name": "ulcers", "pos": [7, 8]}, "t": {"name": "infectious agent", "pos": [15, 17]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["to", "alleviate", "the", "inconvenience", "caused", "by", "the", "fence", ",", "the", "cabinet", "approved", "a", "plan", "to", "construct", "11", "passages", "through", "the", "barrier", "to", "facilitate", "movement", "in", "and", "out", "of", "the", "city", "."], "h": {"name": "inconvenience", "pos": [3, 4]}, "t": {"name": "fence", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["in", "ionic", "conduction", "charge", "carriers", "are", "affected", "by", "the", "electromagnetic", "radiation", "from", "the", "microwaves", "by", "being", "attracted", "or", "repelled", "by", "the", "electric", "field", "."], "h": {"name": "radiation", "pos": [10, 11]}, "t": {"name": "microwaves", "pos": [13, 14]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["plaintiffs", "seek", "compensatory", "damages", "for", "personal", "injuries", ",", "property", "damage", ",", "emotional", "distress", ",", "and", "expenses", "resulting", "from", "the", "evacuation", "after", "the", "explosion", "."], "h": {"name": "evacuation", "pos": [19, 20]}, "t": {"name": "explosion", "pos": [22, 23]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "complication", "arose", "from", "the", "light", "irradiation", "."], "h": {"name": "complication", "pos": [1, 2]}, "t": {"name": "irradiation", "pos": [6, 7]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "error", "was", "caused", "by", "the", "illegal", "embedded", "code", "tags", "."], "h": {"name": "error", "pos": [1, 2]}, "t": {"name": "tags", "pos": [9, 10]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "poet", "essex", "hemphill", "conquered", "sorrow", "after", "the", "loss", "of", "a", "friend", "by", "taking", "up", "the", "cause", "of", "that", "friend", "."], "h": {"name": "sorrow", "pos": [5, 6]}, "t": {"name": "loss", "pos": [8, 9]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "winds", "are", "caused", "by", "moisture", ",", "originating", "off", "the", "pacific", "coast", ",", "cooling", "as", "they", "climb", "the", "western", "slopes", ",", "and", "then", "rapidly", "warming", "as", "they", "drop", "down", "the", "eastern", "side", "of", "the", "mountains", "."], "h": {"name": "winds", "pos": [1, 2]}, "t": {"name": "moisture", "pos": [5, 6]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "drag", "caused", "by", "the", "earth", "'s", "atmosphere", "works", "against", "a", "rocket", "or", "a", "water", "molecule", "."], "h": {"name": "drag", "pos": [1, 2]}, "t": {"name": "atmosphere", "pos": [7, 8]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["most", "of", "the", "flooding", "has", "been", "caused", "by", "the", "clogging", "of", "drains", "."], "h": {"name": "flooding", "pos": [3, 4]}, "t": {"name": "clogging", "pos": [9, 10]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "dips", "are", "caused", "by", "the", "thermal", "diffuse", "of", "y-rays", "which", "is", "reflected", "secondarily", "by", "the", "net", "planes", "in", "the", "same", "crystal", "."], "h": {"name": "dips", "pos": [1, 2]}, "t": {"name": "y-rays", "pos": [9, 10]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "jnc", "also", "is", "currently", "accepting", "applications", "for", "the", "vacancy", "created", "by", "the", "retirement", "of", "judge", "edwin", "b.", "browning", ",", "jr", "."], "h": {"name": "vacancy", "pos": [9, 10]}, "t": {"name": "retirement", "pos": [13, 14]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "evening", "'s", "performance", "was", "a", "great", "production", "by", "a", "first-class", "company", "-", "and", "not", "expensive", "."], "h": {"name": "performance", "pos": [3, 4]}, "t": {"name": "company", "pos": [11, 12]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["she", "was", "looking", "beautiful", "in", "the", "dim", "light", "that", "emanated", "from", "my", "broken", "table-lamp", "."], "h": {"name": "light", "pos": [7, 8]}, "t": {"name": "table-lamp", "pos": [13, 14]}, "relation": "Cause-Effect(e2,e1)"}
{"token": ["the", "ear", "of", "the", "african", "elephant", "is", "significantly", "larger", "--", "measuring", "183", "cm", "by", "114", "cm", "in", "the", "bush", "elephant", "."], "h": {"name": "ear", "pos": [1, 2]}, "t": {"name": "elephant", "pos": [5, 6]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["the", "disgusting", "scene", "was", "retaliation", "against", "her", "brother", "philip", "who", "rents", "the", "room", "inside", "this", "apartment", "house", "on", "lombard", "street", "."], "h": {"name": "room", "pos": [12, 13]}, "t": {"name": "house", "pos": [16, 17]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["when", "i", "'m", "walking", "alone", ",", "i", "count", "the", "steps", "of", "the", "stairs", ",", "and", "i", "also", "guess", "approximately", "how", "many", "steps", "are", "left", "till", "i", "reach", "the", "next", "street", "."], "h": {"name": "steps", "pos": [9, 10]}, "t": {"name": "stairs", "pos": [12, 13]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["the", "man", "at", "the", "helm", "was", "watching", "the", "luff", "of", "the", "sail", "and", "whistling", "away", "gently", "to", "himself", ",", "and", "that", "was", "the", "only", "sound", "excepting", "the", "swish", "of", "the", "sea", "."], "h": {"name": "luff", "pos": [8, 9]}, "t": {"name": "sail", "pos": [11, 12]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["the", "committee", "is", "an", "integral", "part", "of", "our", "organisation", "."], "h": {"name": "committee", "pos": [1, 2]}, "t": {"name": "organisation", "pos": [8, 9]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["the", "safety", "bar", "of", "the", "seats", "has", "to", "be", "folded", "down", "by", "the", "passenger", "and", "it", "has", "to", "be", "kept", "closed", "during", "the", "journey", "."], "h": {"name": "bar", "pos": [2, 3]}, "t": {"name": "seats", "pos": [5, 6]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["by", "1715", "the", "cabriole", "leg", "was", "in", "general", "use", ",", "and", "the", "back", "of", "the", "chair", "had", "started", "to", "become", "square", "in", "shape", ":", "no", "longer", "was", "it", "the", "characteristic", "tall", "and", "narrow", "feature", "of", "the", "previous", "century", "."], "h": {"name": "back", "pos": [12, 13]}, "t": {"name": "chair", "pos": [15, 16]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["lawhammer", "coat", ":", "a", "slang", "term", "for", "a", "man", "'s", "formal", "evening", "coat", ",", "because", "split", "tails", "resemble", "the", "claw", "of", "a", "hammer", "."], "h": {"name": "claw", "pos": [19, 20]}, "t": {"name": "hammer", "pos": [22, 23]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["we", "used", "fried", "cheese", "as", "an", "element", "in", "a", "dish", "."], "h": {"name": "cheese", "pos": [3, 4]}, "t": {"name": "dish", "pos": [9, 10]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["the", "castle", "was", "inside", "a", "museum", "."], "h": {"name": "castle", "pos": [1, 2]}, "t": {"name": "museum", "pos": [5, 6]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["bunn", "has", "recalled", "35,600", "single-cup", "pod", "brewers", "because", "the", "drawer", "of", "the", "coffeemaker", "opens", "unexpectedly", "during", "a", "brew", "cycle", ",", "posing", "a", "burn", "hazard", "to", "consumers", "."], "h": {"name": "drawer", "pos": [9, 10]}, "t": {"name": "coffeemaker", "pos": [12, 13]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["unlike", "the", "forebrain", "(", "telencephalon", "or", "cerebrum", ")", "of", "mammals", ",", "birds", ",", "and", "fish", ",", "the", "forebrain", "of", "amphibians", "is", "similar", "across", "all", "three", "orders", "of", "amphibians", ":", "the", "anurons", "(", "frogs", "and", "toads", ")", ",", "the", "urodiles", "(", "salamanders", "and", "newts", ")", ",", "and", "the", "caecilians", "."], "h": {"name": "forebrain", "pos": [17, 18]}, "t": {"name": "amphibians", "pos": [19, 20]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["the", "swim", "bladder", "of", "aquatic", "animals", "gives", "them", "the", "ability", "to", "manioulate", "gravity", "and", "should", "be", "researched", "more", "."], "h": {"name": "swim bladder", "pos": [1, 3]}, "t": {"name": "animals", "pos": [5, 6]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["our", "visit", "is", "part", "of", "the", "general", "strategy", "to", "engage", "the", "global", "community", "to", "benefit", "our", "economy", ",", "to", "enhance", "our", "national", "security", "and", "of", "course", ",", "to", "promote", "the", "welfare", "of", "our", "ofws", "--", "the", "biggest", "community", "of", "which", "is", "right", "here", "in", "the", "kingdom", "of", "saudi", "arabia", "."], "h": {"name": "visit", "pos": [1, 2]}, "t": {"name": "strategy", "pos": [7, 8]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["on", "the", "back", "wall", "of", "the", "store", ",", "beverages", "within", "the", "cooler", "pop", "thanks", "to", "led", "lighting", ",", "which", "also", "helps", "cut", "down", "on", "the", "store", "'s", "energy", "costs", "."], "h": {"name": "wall", "pos": [3, 4]}, "t": {"name": "store", "pos": [6, 7]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["tissues", "from", "the", "dorsal", "lobe", "of", "the", "pancreas", "of", "8", "starlings", "(", "sturnus", "vulgaris", ")", "were", "examined", "electron", "microscopically", "using", "conventionally", "prepared", "samples", "."], "h": {"name": "lobe", "pos": [4, 5]}, "t": {"name": "pancreas", "pos": [7, 8]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["musicians", "used", "their", "real", "nails", "of", "the", "right", "hand", "to", "pluck", "the", "strings", "."], "h": {"name": "nails", "pos": [4, 5]}, "t": {"name": "hand", "pos": [8, 9]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["a", "``", "green", "bean", "''", "which", "is", "actually", "a", "fruit", "with", "seeds", "inside", "."], "h": {"name": "fruit", "pos": [9, 10]}, "t": {"name": "seeds", "pos": [11, 12]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["broken", "bones", "(", "also", "called", "fractures", ")", "in", "the", "foot", "are", "very", "common", "."], "h": {"name": "bones", "pos": [1, 2]}, "t": {"name": "foot", "pos": [9, 10]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["in", "the", "stem", "of", "that", "tree", "is", "a", "cute", "little", "house", "."], "h": {"name": "stem", "pos": [2, 3]}, "t": {"name": "tree", "pos": [5, 6]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["the", "following", "protocol", "is", "used", "for", "patients", "who", "do", "feel", "the", "strings", "of", "the", "device", "at", "the", "external", "cervical", "os", "."], "h": {"name": "strings", "pos": [11, 12]}, "t": {"name": "device", "pos": [14, 15]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["an", "increased", "expression", "of", "cyclin", "d1", "was", "seen", "in", "our", "experiments", "in", "the", "lungs", "of", "the", "ferrets", "supplemented", "with", "high", "dose", "beta-carotene", "."], "h": {"name": "lungs", "pos": [13, 14]}, "t": {"name": "ferrets", "pos": [16, 17]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["the", "keel", "acts", "as", "the", "backbone", "of", "the", "ship", "."], "h": {"name": "keel", "pos": [1, 2]}, "t": {"name": "ship", "pos": [8, 9]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["the", "stem", "of", "the", "plant", "is", "used", "for", "making", "mats", "for", "floor", "covering", "as", "well", "as", "decoration", "."], "h": {"name": "stem", "pos": [1, 2]}, "t": {"name": "plant", "pos": [4, 5]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["the", "ribs", "are", "reinforced", "with", "metal", "tips", ",", "to", "which", "the", "fabric", "of", "the", "umbrella", "is", "sewn", "."], "h": {"name": "ribs", "pos": [1, 2]}, "t": {"name": "umbrella", "pos": [14, 15]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["this", "test", "is", "performed", "with", "the", "patient", "sitting", "or", "standing", "and", "with", "the", "examiner", "holding", "the", "arm", "of", "the", "patient", "flexed", "to", "90", "degrees", "."], "h": {"name": "arm", "pos": [16, 17]}, "t": {"name": "patient", "pos": [19, 20]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["sounds", "of", "trumpets", ",", "bagpipes", ",", "and", "church", "organ", "all", "appear", "from", "the", "strings", "of", "the", "cello", "."], "h": {"name": "strings", "pos": [13, 14]}, "t": {"name": "cello", "pos": [16, 17]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["she", "guessed", "the", "backpage", "of", "the", "news", "paper", ",", "and", "she", "won", "."], "h": {"name": "backpage", "pos": [3, 4]}, "t": {"name": "news paper", "pos": [6, 8]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["transport", "authorities", "in", "the", "western", "cape", "have", "warned", "of", "hefty", "fines", "for", "motorists", "who", "ignore", "dedicated", "lane", "for", "buses", "and", "minibus", "taxis", "on", "the", "road", "."], "h": {"name": "lane", "pos": [16, 17]}, "t": {"name": "road", "pos": [24, 25]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["there", "is", "a", "curb", "between", "the", "sidewalk", "and", "the", "shared", "bus", "and", "bike", "lane", "on", "the", "road", "."], "h": {"name": "lane", "pos": [13, 14]}, "t": {"name": "road", "pos": [16, 17]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["the", "handgrip", "of", "the", "micrometer", "has", "a", "circumference", "of", "exactly", "2", "in.", ",", "so", "that", "lateral", "movement", "of", ".", "1", "in", ".", "results", "in", "the", "expulsion", "of", "0.005", "ml", ".", "of", "fluid", "."], "h": {"name": "handgrip", "pos": [1, 2]}, "t": {"name": "micrometer", "pos": [4, 5]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["unit", "direct", "injection", "also", "injects", "fuel", "directly", "into", "the", "cylinder", "of", "the", "engine", "."], "h": {"name": "cylinder", "pos": [9, 10]}, "t": {"name": "engine", "pos": [12, 13]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["the", "glass", "spindle", "of", "the", "areometer", "(", "see", "figure", "2.3.39", ")", "is", "immersed", "in", "the", "liquid", "under", "analysis", "."], "h": {"name": "spindle", "pos": [2, 3]}, "t": {"name": "areometer", "pos": [5, 6]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["the", "chapel", "in", "the", "manor", "house", "was", "dedicated", "to", "the", "nowadays", "somewhat", "obscure", "st", "blaise", "."], "h": {"name": "chapel", "pos": [1, 2]}, "t": {"name": "manor house", "pos": [4, 6]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["the", "maritime", "administration", "of", "latvia", "is", "the", "arm", "of", "the", "government", ",", "under", "the", "ministry", "of", "transport", ",", "which", "has", "the", "overall", "responsibility", "for", "overseeing", "maritime", "concerns", "."], "h": {"name": "arm", "pos": [7, 8]}, "t": {"name": "government", "pos": [10, 11]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["the", "windshield", "of", "the", "cockpit", "is", "much", "like", "other", "windshields", "except", "for", "a", "few", "things", ",", "laser", "sensors", "on", "the", "plane", "find", "other", "planes", "within", "a", "45", "mile", "radius", "."], "h": {"name": "windshield", "pos": [1, 2]}, "t": {"name": "cockpit", "pos": [4, 5]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["the", "small", "photoreceptors", "of", "the", "retina", "(", "the", "inner", "surface", "at", "the", "back", "of", "the", "eye", ")", "sense", "light", "and", "transmit", "impulses", "to", "the", "optic", "nerve", "."], "h": {"name": "photoreceptors", "pos": [2, 3]}, "t": {"name": "retina", "pos": [5, 6]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["the", "lead", "locomotive", "of", "the", "train", "had", "a", "video", "camera", "that", "recorded", "the", "view", "in", "front", "of", "the", "train", "."], "h": {"name": "locomotive", "pos": [2, 3]}, "t": {"name": "train", "pos": [5, 6]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["a", "hinge", "assembly", "attaches", "a", "cover", "pivotally", "to", "a", "base", "of", "an", "electronic", "device", "and", "has", "a", "pivoting", "leaf", "and", "a", "stationary", "leaf", "."], "h": {"name": "assembly", "pos": [2, 3]}, "t": {"name": "cover", "pos": [5, 6]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["i", "then", "widened", "the", "opening", "for", "the", "seat", "in", "the", "cockpit", "tub", "a", "tiny", "bit", "."], "h": {"name": "seat", "pos": [7, 8]}, "t": {"name": "cockpit", "pos": [10, 11]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["blood", "splattered", "his", "boots", "from", "the", "nose", "of", "the", "man", "."], "h": {"name": "nose", "pos": [6, 7]}, "t": {"name": "man", "pos": [9, 10]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["the", "mainmast", "of", "the", "bark", "caught", "her", "on", "top", "of", "the", "pilot", "house", ",", "and", "capt", ".", "curler", "escaped", "by", "crawling", "out", "of", "the", "dow", "."], "h": {"name": "mainmast", "pos": [1, 2]}, "t": {"name": "bark", "pos": [4, 5]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["when", "the", "flange", "is", "close", "to", "90", "degrees", ",", "lower", "the", "bending", "leaf", "and", "unclamp", "the", "sheet", "metal", "by", "raising", "the", "clamping", "leaf", "handles", "of", "the", "hand", "brake", "."], "h": {"name": "handles", "pos": [23, 24]}, "t": {"name": "hand brake", "pos": [26, 28]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["he", "run", "the", "shear", "form", "over", "the", "nose", "to", "continue", "shaping", "the", "nose", "of", "the", "surfboard", "."], "h": {"name": "nose", "pos": [12, 13]}, "t": {"name": "surfboard", "pos": [15, 16]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["there", "were", "women", "in", "headscarves", "on", "the", "corridors", "of", "the", "hospital", "and", "men", "wearing", "traditional", "caps", "."], "h": {"name": "corridors", "pos": [7, 8]}, "t": {"name": "hospital", "pos": [10, 11]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["a", "more", "spare", ",", "less", "robust", "use", "of", "classical", "motifs", "is", "evident", "in", "a", "ewer", "of", "1784-85", "."], "h": {"name": "motifs", "pos": [9, 10]}, "t": {"name": "ewer", "pos": [14, 15]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["the", "strings", "of", "a", "guitar", "are", "normally", "tuned", "to", "fourths", "(", "excepting", "the", "g", "and", "b", "strings", "in", "standard", "tuning", ")", ",", "as", "are", "the", "strings", "of", "the", "bass", "guitar", "and", "double", "bass", "."], "h": {"name": "strings", "pos": [1, 2]}, "t": {"name": "guitar", "pos": [4, 5]}, "relation": "Component-Whole(e1,e2)"}
{"token": ["the", "order", ",", "issued", "nov.", "16", "by", "eric", "landoll", ",", "the", "city", "'s", "code", "administrator", ",", "states", "that", "the", "roof", "of", "the", "building", "is", "allowing", "rain", "to", "fall", "into", "the", "interior", "of", "the", "building", "and", "because", "of", "this", "the", "interior", "floors", "are", "structurally", "unsound", "and", "there", "is", "mold", "and", "mildew", "throughout", "the", "building", "causing", "health", "concerns", "for", "anyone", "entering", "the", "building", "."], "h": {"name": "roof", "pos": [19, 20]}, "t": {"name": "building", "pos": [22, 23]}, "relation": "Component-Whole(e1,e2)"}