-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsenseval2.mfs.txt
2282 lines (2282 loc) · 73.3 KB
/
senseval2.mfs.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
d000.s042.t001 fall%2:38:03::
d000.s062.t000 torrent%1:19:01::
d000.s060.t003 equal_opportunity%1:07:00::
d000.s028.t011 degree%1:07:00::
d002.s015.t004 degree%1:07:00::
d000.s057.t009 third%1:23:00::
d001.s044.t005 miss%2:39:00::
d001.s045.t001 miss%2:39:00::
d001.s082.t012 miss%2:39:00::
d001.s083.t005 miss%2:39:00::
d002.s043.t007 concern%2:42:00::
d000.s025.t009 small%3:00:00::
d000.s054.t007 small%3:00:00::
d001.s081.t002 implicate%2:42:01::
d002.s006.t007 creativity%1:09:00::
d002.s007.t002 creativity%1:09:00::
d002.s011.t002 creativity%1:09:00::
d002.s014.t001 creativity%1:09:00::
d001.s071.t003 constitute%2:42:00::
d001.s041.t007 microscope%1:06:00::
d001.s044.t000 microscope%1:06:00::
d000.s031.t002 fill%2:30:01::
d002.s030.t003 in_the_first_place%4:02:01::
d000.s012.t004 dance%1:10:00::
d000.s051.t002 recognize%2:31:02::
d002.s027.t002 inspiring%3:00:00::
d001.s025.t015 study%1:04:00::
d001.s076.t012 study%1:04:00::
d002.s067.t014 study%1:04:00::
d002.s077.t000 study%1:04:00::
d002.s077.t001 study%1:04:00::
d001.s010.t015 malignant%3:00:02::
d001.s012.t004 malignant%3:00:02::
d001.s013.t014 malignant%3:00:02::
d001.s059.t008 malignant%3:00:02::
d001.s061.t007 malignant%3:00:02::
d001.s061.t011 malignant%3:00:02::
d002.s077.t008 interference%1:10:00::
d000.s007.t003 britain%1:15:00::
d000.s059.t012 britain%1:15:00::
d000.s060.t000 britain%1:15:00::
d001.s033.t007 britain%1:15:00::
d002.s051.t003 blame%2:32:00::
d001.s016.t009 especially%4:02:00::
d001.s036.t006 especially%4:02:00::
d001.s087.t008 especially%4:02:00::
d002.s057.t003 especially%4:02:00::
d000.s021.t000 variation%1:11:01::
d002.s077.t007 outside%3:00:00::
d002.s004.t002 dominate%2:42:00::
d002.s024.t005 commit%2:41:00::
d001.s028.t000 to_date%4:02:00::
d001.s005.t008 trigger%2:36:00::
d002.s044.t000 inevitably%4:02:00::
d002.s077.t009 govern%2:41:02::
d000.s027.t003 stare%2:39:00::
d001.s027.t003 advance%1:11:00::
d000.s004.t004 door%1:06:00::
d000.s006.t005 enjoy%2:37:00::
d002.s020.t004 pass%2:38:00::
d000.s017.t008 europe%1:17:00::
d002.s057.t011 demagogic%3:01:00::
d001.s091.t006 reverse%2:30:00::
d000.s003.t014 call%2:32:02::
d000.s027.t008 call%2:32:02::
d001.s008.t001 call%2:32:02::
d001.s011.t008 call%2:32:02::
d001.s030.t007 call%2:32:02::
d001.s056.t010 call%2:32:02::
d001.s073.t011 call%2:32:02::
d002.s018.t003 call%2:32:02::
d000.s040.t004 congregation%1:14:00::
d000.s045.t015 congregation%1:14:00::
d002.s076.t005 measure%1:04:01::
d000.s005.t001 man%1:18:00::
d000.s064.t001 man%1:18:00::
d002.s069.t004 man%1:18:00::
d000.s019.t002 start%2:30:00::
d000.s028.t012 start%2:30:00::
d001.s000.t002 start%2:30:00::
d000.s049.t005 relations%1:24:00::
d002.s003.t006 cherished%5:00:00:loved:00
d002.s003.t017 cherished%5:00:00:loved:00
d002.s045.t008 comprehensive%3:00:00::
d002.s046.t000 comprehensive%3:00:00::
d002.s010.t001 generation%1:14:01::
d002.s025.t002 generation%1:14:01::
d000.s046.t005 active%3:00:02::
d002.s068.t002 undemocratic%3:00:00::
d001.s026.t009 basic%3:00:00::
d001.s027.t005 basic%3:00:00::
d000.s006.t004 churchgoer%1:18:00::
d002.s048.t001 childcare%1:04:00::
d002.s011.t013 talent%1:09:00::
d000.s000.t003 english%1:10:00::
d000.s017.t010 english%1:10:00::
d000.s018.t002 english%1:10:00::
d000.s028.t009 madly%4:02:02::
d001.s000.t001 scientist%1:18:00::
d001.s001.t000 scientist%1:18:00::
d001.s004.t001 scientist%1:18:00::
d001.s008.t000 scientist%1:18:00::
d001.s017.t008 scientist%1:18:00::
d001.s028.t001 scientist%1:18:00::
d001.s041.t002 scientist%1:18:00::
d001.s075.t006 scientist%1:18:00::
d001.s076.t000 scientist%1:18:00::
d001.s080.t000 scientist%1:18:00::
d001.s089.t002 scientist%1:18:00::
d000.s062.t018 frequently%4:02:00::
d000.s060.t007 surface%2:38:00::
d001.s077.t001 suddenly%4:02:02::
d001.s013.t012 proliferate%2:30:00::
d002.s067.t005 gifted%3:00:00::
d002.s067.t011 gifted%3:00:00::
d002.s044.t006 controversial%3:00:00::
d002.s036.t012 constituency%1:14:00::
d000.s000.t009 world%1:17:01::
d002.s067.t017 world%1:17:01::
d001.s092.t002 patient%1:18:00::
d001.s068.t005 flip%2:38:00::
d000.s050.t014 care%1:04:01::
d002.s043.t004 mute%5:00:00:inarticulate:00
d000.s037.t004 strong-willed%5:00:00:stubborn:00
d000.s037.t008 strong-willed%5:00:00:stubborn:00
d001.s059.t007 increasingly%4:02:00::
d001.s021.t004 possible%3:00:00::
d001.s026.t006 possible%3:00:00::
d001.s093.t000 possible%3:00:00::
d001.s035.t014 prostate%1:08:00::
d000.s044.t003 feel%2:37:00::
d000.s029.t006 swing%1:26:01::
d002.s050.t008 involvement%1:04:00::
d002.s055.t001 involvement%1:04:00::
d001.s090.t003 company%1:14:01::
d000.s003.t006 stone%1:17:00::
d000.s013.t003 youth%1:18:00::
d000.s052.t002 attack%2:33:00::
d002.s000.t002 read%2:31:00::
d002.s075.t013 read%2:31:00::
d001.s072.t003 dubious%5:00:00:uncertain:02
d002.s073.t000 dubious%5:00:00:uncertain:02
d000.s032.t003 admit%2:32:00::
d000.s046.t000 admit%2:32:00::
d000.s030.t001 detective_story%1:10:00::
d002.s057.t000 locally%4:02:00::
d000.s060.t002 file%2:32:02::
d000.s003.t015 faithful%1:14:01::
d002.s023.t001 dump%2:40:00::
d000.s003.t008 stand%2:35:00::
d000.s025.t001 stand%2:35:00::
d002.s038.t002 sure%3:00:00::
d002.s011.t001 notion%1:09:02::
d002.s068.t000 notion%1:09:02::
d000.s007.t012 morning%1:28:00::
d002.s014.t003 adolescent%3:01:00::
d002.s053.t007 spend%2:42:00::
d002.s063.t010 spend%2:42:00::
d001.s031.t005 evidence%1:09:00::
d001.s036.t000 evidence%1:09:00::
d001.s067.t001 evidence%1:09:00::
d001.s078.t000 evidence%1:09:00::
d002.s037.t001 evidence%1:09:00::
d002.s038.t001 evidence%1:09:00::
d001.s009.t003 protein%1:27:00::
d001.s010.t009 protein%1:27:00::
d001.s015.t002 protein%1:27:00::
d001.s091.t010 protein%1:27:00::
d001.s092.t003 protein%1:27:00::
d001.s032.t008 disease%1:26:00::
d001.s043.t010 disease%1:26:00::
d002.s049.t012 wash%2:35:02::
d002.s006.t004 wish%2:37:00::
d002.s039.t000 wish%2:37:00::
d001.s026.t002 tragic%5:00:00:sad:00
d000.s015.t002 take%2:41:04::
d000.s023.t003 take%2:41:04::
d001.s082.t007 take%2:41:04::
d001.s083.t008 take%2:41:04::
d002.s021.t000 take%2:41:04::
d000.s062.t010 quite%4:02:02::
d001.s033.t008 race%2:38:00::
d000.s012.t000 try%2:41:00::
d002.s058.t001 try%2:41:00::
d001.s021.t008 threat%1:26:00::
d000.s020.t003 begin%2:30:00::
d001.s027.t007 begin%2:30:00::
d001.s060.t002 begin%2:30:00::
d001.s061.t000 begin%2:30:00::
d001.s016.t000 person%1:03:00::
d002.s027.t000 remember%2:31:00::
d002.s011.t007 instruction%1:10:04::
d002.s018.t010 instruction%1:10:04::
d001.s055.t005 set_out%2:30:00::
d001.s070.t006 length%1:07:00::
d000.s017.t006 carillon%1:06:00::
d000.s035.t010 worship%1:04:00::
d001.s023.t001 new_year%1:28:00::
d000.s025.t006 stance%1:07:00::
d000.s020.t009 steady%3:00:00::
d001.s035.t005 appear%2:39:00::
d000.s005.t003 pull%2:35:00::
d000.s025.t007 pull%2:35:00::
d002.s003.t016 violate%2:42:00::
d002.s063.t008 past%3:00:00::
d002.s037.t004 equal%3:00:00::
d002.s070.t002 equal%3:00:00::
d001.s027.t011 soon%4:02:00::
d001.s031.t000 soon%4:02:00::
d001.s085.t001 soon%4:02:00::
d000.s020.t005 order%1:10:03::
d000.s010.t003 include%2:42:00::
d002.s011.t017 undefined%3:00:00::
d000.s017.t001 complicated%5:00:00:complex:00
d000.s024.t005 district%1:15:00::
d002.s003.t005 relinquish%2:40:01::
d000.s035.t001 complete%2:30:02::
d000.s037.t011 attend%2:42:00::
d000.s038.t006 attend%2:42:00::
d000.s022.t005 method%1:09:00::
d002.s074.t016 method%1:09:00::
d001.s007.t010 state%1:15:01::
d000.s010.t012 keep%2:42:00::
d000.s013.t007 keep%2:42:00::
d000.s056.t004 keep%2:42:00::
d000.s030.t008 passion%1:12:00::
d000.s033.t000 passion%1:12:00::
d000.s003.t007 church%1:14:00::
d000.s004.t003 church%1:14:00::
d000.s007.t002 church%1:14:00::
d000.s010.t009 church%1:14:00::
d000.s010.t010 church%1:14:00::
d000.s015.t007 church%1:14:00::
d000.s019.t012 church%1:14:00::
d000.s024.t004 church%1:14:00::
d000.s030.t003 church%1:14:00::
d000.s034.t004 church%1:14:00::
d000.s042.t005 church%1:14:00::
d000.s044.t002 church%1:14:00::
d000.s047.t004 church%1:14:00::
d000.s051.t007 church%1:14:00::
d000.s059.t015 church%1:14:00::
d000.s007.t014 service%1:04:08::
d000.s011.t001 service%1:04:08::
d000.s037.t012 service%1:04:08::
d000.s038.t007 service%1:04:08::
d000.s030.t010 satisfaction%1:12:00::
d001.s091.t004 drug%1:06:00::
d000.s003.t000 scene%1:15:00::
d000.s039.t001 treat%2:41:00::
d001.s019.t015 birth%1:28:00::
d002.s035.t005 spread%2:35:00::
d000.s021.t001 change%1:11:00::
d000.s022.t003 change%1:11:00::
d000.s023.t002 change%1:11:00::
d000.s029.t011 change%1:11:00::
d000.s035.t000 change%1:11:00::
d000.s059.t003 found%2:41:00::
d001.s090.t009 anticipated%5:00:00:expected:00
d000.s034.t006 bottom%1:15:00::
d000.s031.t006 ritual%1:04:00::
d001.s004.t003 test%1:09:02::
d001.s017.t002 test%1:09:02::
d001.s022.t000 test%1:09:02::
d001.s024.t000 test%1:09:02::
d001.s090.t012 test%1:09:02::
d002.s019.t009 test%1:09:02::
d000.s027.t012 thus%4:02:00::
d002.s045.t000 thus%4:02:00::
d000.s057.t000 bright%3:00:00::
d002.s025.t001 bright%3:00:00::
d002.s014.t004 illiteracy%1:09:01::
d001.s004.t005 newly%4:02:00::
d001.s011.t000 newly%4:02:00::
d001.s048.t003 newly%4:02:00::
d002.s059.t001 increased%3:00:00::
d002.s032.t002 factor%1:11:00::
d001.s059.t005 case%1:11:00::
d002.s019.t007 minimize%2:30:00::
d002.s044.t005 least%3:00:00::
d001.s045.t007 critical%3:00:01::
d001.s067.t005 critical%3:00:01::
d001.s032.t006 lethal%5:00:00:fatal:00
d002.s063.t000 mystery%1:09:00::
d000.s062.t007 male%3:00:00::
d000.s061.t007 frequency%1:28:00::
d000.s033.t004 however%4:02:00::
d000.s058.t002 however%4:02:00::
d001.s012.t012 cause%2:36:00::
d001.s075.t002 cause%2:36:00::
d002.s049.t011 quickly%4:02:00::
d002.s009.t001 end_up%2:30:01::
d002.s021.t005 end_up%2:30:01::
d002.s062.t006 structure%1:06:00::
d001.s017.t001 genetic%5:00:00:inheritable:00
d001.s022.t003 genetic%5:00:00:inheritable:00
d001.s037.t010 genetic%5:00:00:inheritable:00
d001.s048.t007 genetic%5:00:00:inheritable:00
d001.s059.t015 genetic%5:00:00:inheritable:00
d001.s060.t011 genetic%5:00:00:inheritable:00
d001.s061.t003 genetic%5:00:00:inheritable:00
d001.s070.t011 genetic%5:00:00:inheritable:00
d001.s047.t003 lead%2:38:01::
d001.s051.t007 lead%2:38:01::
d001.s089.t001 lead%2:38:01::
d000.s023.t005 hour%1:28:00::
d001.s039.t003 second%5:00:00:ordinal:00
d001.s049.t007 second%5:00:00:ordinal:00
d001.s057.t005 second%5:00:00:ordinal:00
d001.s064.t001 second%5:00:00:ordinal:00
d000.s020.t008 alter%2:30:01::
d001.s007.t003 alter%2:30:01::
d001.s008.t003 class%1:14:00::
d002.s061.t007 class%1:14:00::
d001.s025.t010 doctor%1:18:00::
d000.s025.t011 high%3:00:02::
d000.s051.t005 high%3:00:02::
d001.s062.t001 coherent%3:00:00::
d001.s077.t003 obscure%5:00:00:unclear:00
d002.s049.t010 difference%1:07:00::
d000.s010.t004 octogenarian%1:18:00::
d000.s051.t006 priority%1:26:00::
d000.s047.t003 people%1:14:00::
d001.s036.t001 people%1:14:00::
d001.s087.t001 people%1:14:00::
d002.s003.t014 people%1:14:00::
d002.s010.t003 people%1:14:00::
d002.s025.t006 people%1:14:00::
d000.s050.t003 theological%3:01:00::
d000.s003.t010 sound%1:07:00::
d000.s026.t006 sound%1:07:00::
d000.s047.t000 sound%1:07:00::
d001.s002.t000 emerge%2:30:00::
d001.s062.t005 emerge%2:30:00::
d001.s078.t002 emerge%2:30:00::
d001.s065.t000 clear%3:00:00::
d001.s032.t009 collectively%4:02:00::
d000.s006.t002 modern%3:00:00::
d002.s067.t016 modern%3:00:00::
d002.s039.t001 serious%3:00:00::
d000.s004.t005 member%1:18:00::
d000.s040.t003 member%1:18:00::
d001.s080.t007 member%1:18:00::
d002.s074.t004 poorly%4:02:00::
d000.s061.t012 back%4:02:04::
d001.s041.t000 back%4:02:04::
d001.s050.t001 medicine%1:09:00::
d000.s062.t019 unwashed%5:00:00:lowborn:00
d000.s028.t007 wheel%1:06:00::
d000.s003.t005 ancient%5:00:00:past:00
d000.s016.t002 ancient%5:00:00:past:00
d001.s019.t008 risk%1:26:00::
d001.s022.t013 risk%1:26:00::
d001.s075.t009 suppress%2:30:00::
d002.s067.t013 necessary%3:00:00::
d001.s004.t010 predict%2:32:00::
d001.s024.t002 predict%2:32:00::
d001.s006.t006 molecular%3:01:00::
d001.s047.t004 molecular%3:01:00::
d001.s055.t001 molecular%3:01:00::
d001.s066.t003 molecular%3:01:00::
d000.s046.t006 bell_ringer%1:18:01::
d000.s053.t003 bell_ringer%1:18:01::
d001.s010.t003 radiation%1:19:00::
d001.s037.t011 defect%1:26:01::
d001.s049.t006 defect%1:26:01::
d002.s060.t004 classroom%1:06:00::
d002.s010.t006 incompetence%1:07:00::
d000.s062.t021 flatulent%5:00:00:indigestible:00
d001.s041.t012 contain%2:42:00::
d001.s045.t003 contain%2:42:00::
d001.s004.t000 already%4:02:00::
d001.s090.t000 already%4:02:00::
d002.s062.t003 already%4:02:00::
d002.s076.t009 matter%1:09:01::
d000.s045.t014 exit%1:06:00::
d002.s011.t012 latent%5:00:00:potential:00
d002.s067.t008 clearly%4:02:00::
d002.s028.t003 competent%3:00:00::
d002.s031.t000 competent%3:00:00::
d000.s019.t010 use%2:34:01::
d000.s027.t006 use%2:34:01::
d000.s029.t002 use%2:34:01::
d001.s022.t001 use%2:34:01::
d001.s048.t001 use%2:34:01::
d001.s070.t002 use%2:34:01::
d002.s071.t002 use%2:34:01::
d000.s057.t002 grow%2:30:03::
d000.s038.t012 promptly%4:02:02::
d000.s029.t005 retard%2:30:01::
d000.s014.t000 history%1:28:00::
d002.s024.t006 conscientious%5:00:00:careful:00
d002.s028.t004 conscientious%5:00:00:careful:00
d002.s031.t001 conscientious%5:00:00:careful:00
d002.s053.t003 truant%5:00:00:absent:00
d000.s006.t009 autumn%1:28:00::
d001.s048.t009 track%2:38:02::
d000.s009.t002 live%2:42:08::
d000.s048.t000 live%2:42:08::
d000.s054.t003 live%2:42:08::
d002.s075.t009 conceptual%5:00:00:abstract:00
d001.s068.t002 identity%1:07:00::
d001.s002.t003 expect%2:31:00::
d001.s024.t005 expect%2:31:00::
d001.s019.t007 chance%1:26:00::
d002.s063.t007 sharply%4:02:00::
d001.s017.t014 diagnosis%1:04:00::
d002.s057.t008 generally%4:02:02::
d002.s071.t000 generally%4:02:02::
d002.s011.t008 regard_as%2:31:00::
d000.s061.t000 writer%1:18:00::
d000.s050.t006 bell_ringing%1:11:00::
d000.s059.t000 bell_ringing%1:11:00::
d001.s026.t003 uncommon%3:00:00::
d001.s031.t011 lung%1:08:00::
d001.s032.t001 lung%1:08:00::
d001.s057.t010 lung%1:08:00::
d001.s081.t003 lung%1:08:00::
d001.s082.t008 lung%1:08:00::
d001.s087.t009 lung%1:08:00::
d001.s088.t006 lung%1:08:00::
d000.s038.t015 protest%1:10:00::
d000.s060.t011 weekly%5:00:00:periodic:00
d000.s036.t000 well%4:02:00::
d002.s026.t001 well%4:02:00::
d002.s031.t003 well%4:02:00::
d000.s051.t009 experience%1:09:01::
d002.s056.t001 experience%1:09:01::
d002.s073.t006 experience%1:09:01::
d001.s057.t002 attention%1:09:00::
d001.s045.t009 set_off%2:36:00::
d002.s041.t000 conversely%4:02:00::
d001.s013.t004 believe%2:31:00::
d001.s017.t009 believe%2:31:00::
d001.s055.t003 believe%2:31:00::
d001.s058.t000 believe%2:31:00::
d001.s087.t000 believe%2:31:00::
d002.s070.t001 believe%2:31:00::
d001.s033.t004 laboratory%1:06:00::
d001.s072.t004 search%1:04:00::
d001.s021.t010 face%2:32:00::
d001.s022.t011 face%2:32:00::
d000.s019.t004 high-pitched%3:00:00::
d002.s010.t009 good%3:00:01::
d000.s025.t004 ahead%4:02:00::
d000.s027.t005 ahead%4:02:00::
d000.s034.t001 often%4:02:00::
d000.s035.t005 often%4:02:00::
d000.s037.t009 often%4:02:00::
d001.s058.t008 often%4:02:00::
d001.s059.t000 often%4:02:00::
d001.s060.t005 often%4:02:00::
d001.s080.t004 often%4:02:00::
d002.s019.t010 often%4:02:00::
d002.s072.t003 often%4:02:00::
d002.s067.t001 main%5:00:00:important:00
d000.s029.t010 place%1:15:00::
d000.s030.t006 novelist%1:18:00::
d001.s063.t003 knock_out%2:30:01::
d002.s044.t001 inclined%3:00:02::
d000.s011.t000 even%4:02:00::
d001.s019.t002 even%4:02:00::
d002.s004.t006 even%4:02:00::
d002.s019.t005 even%4:02:00::
d002.s055.t002 even%4:02:00::
d002.s058.t005 even%4:02:00::
d002.s061.t005 even%4:02:00::
d001.s068.t008 full-blown%5:00:00:mature:01
d000.s019.t009 scale%1:24:03::
d000.s024.t006 give%2:40:03::
d000.s055.t006 partly%4:02:00::
d001.s006.t007 level%1:07:00::
d002.s066.t005 level%1:07:00::
d000.s031.t001 add%2:30:00::
d000.s056.t007 add%2:30:00::
d002.s075.t006 add%2:30:00::
d001.s045.t006 loss%1:21:01::
d001.s051.t003 loss%1:21:01::
d001.s056.t005 loss%1:21:01::
d001.s067.t004 loss%1:21:01::
d000.s039.t005 premises%1:15:00::
d000.s004.t001 stop%2:38:00::
d001.s064.t004 delete%2:35:00::
d001.s006.t001 decade%1:28:00::
d002.s061.t000 decade%1:28:00::
d000.s050.t009 booklet%1:10:00::
d002.s076.t008 curriculum%1:10:00::
d000.s027.t007 peripheral_vision%1:09:00::
d000.s045.t016 prayer%1:04:00::
d000.s009.t001 today%1:28:00::
d000.s040.t002 today%1:28:00::
d000.s053.t005 today%1:28:00::
d000.s057.t011 today%1:28:00::
d001.s007.t000 today%1:28:00::
d001.s017.t000 emerging%5:00:00:future:00
d000.s029.t009 swap%2:40:00::
d000.s060.t004 suit%1:06:00::
d002.s073.t001 psychological%5:00:00:mental:00
d001.s004.t009 time%1:11:00::
d001.s051.t001 time%1:11:00::
d002.s053.t009 time%1:11:00::
d002.s057.t005 city%1:15:00::
d002.s058.t007 city%1:15:00::
d001.s030.t008 impair%2:30:00::
d000.s059.t014 prestigious%5:00:00:reputable:00
d002.s035.t004 mind%2:32:00::
d001.s015.t008 arise%2:42:00::
d001.s058.t004 arise%2:42:00::
d001.s053.t000 true%3:00:00::
d001.s053.t002 true%3:00:00::
d000.s026.t005 much%3:00:00::
d000.s051.t001 mr%1:10:00::
d000.s052.t000 mr%1:10:00::
d000.s055.t009 mr%1:10:00::
d000.s057.t005 enter%2:38:00::
d002.s067.t015 enter%2:38:00::
d001.s016.t004 suppressor_gene%1:08:00::
d001.s022.t009 suppressor_gene%1:08:00::
d001.s058.t007 suppressor_gene%1:08:00::
d001.s078.t003 suppressor_gene%1:08:00::
d001.s088.t003 suppressor_gene%1:08:00::
d000.s055.t000 council%1:14:01::
d002.s062.t002 flow%2:38:01::
d002.s040.t002 school%1:14:00::
d002.s041.t003 school%1:14:00::
d002.s051.t004 school%1:14:00::
d002.s052.t005 school%1:14:00::
d002.s054.t001 school%1:14:00::
d002.s058.t003 school%1:14:00::
d002.s076.t002 school%1:14:00::
d002.s077.t006 school%1:14:00::
d002.s079.t000 school%1:14:00::
d002.s049.t004 schooling%1:04:00::
d000.s006.t000 also%4:02:00::
d000.s052.t001 also%4:02:00::
d000.s054.t000 also%4:02:00::
d001.s039.t006 also%4:02:00::
d001.s058.t003 also%4:02:00::
d001.s085.t003 also%4:02:00::
d001.s088.t004 also%4:02:00::
d002.s015.t009 also%4:02:00::
d002.s020.t000 also%4:02:00::
d002.s036.t000 also%4:02:00::
d000.s027.t000 totally%4:02:00::
d001.s076.t009 identical%5:00:00:same:00
d002.s053.t012 report_card%1:10:00::
d000.s052.t004 problem%1:26:00::
d000.s060.t006 problem%1:26:00::
d002.s033.t000 problem%1:26:00::
d002.s033.t003 problem%1:26:00::
d001.s082.t011 test%2:41:00::
d001.s012.t007 normal%3:00:01::
d001.s038.t009 normal%3:00:01::
d001.s039.t004 normal%3:00:01::
d001.s073.t013 normal%3:00:01::
d001.s021.t006 january%1:28:00::
d002.s061.t008 effect%1:19:00::
d001.s054.t000 audacious%5:00:00:bold:00
d002.s003.t003 education%1:04:00::
d002.s011.t003 education%1:04:00::
d002.s013.t007 education%1:04:00::
d002.s015.t001 education%1:04:00::
d002.s016.t000 education%1:04:00::
d002.s018.t001 education%1:04:00::
d002.s028.t000 education%1:04:00::
d002.s039.t003 education%1:04:00::
d002.s045.t004 education%1:04:00::
d002.s050.t002 education%1:04:00::
d002.s050.t003 education%1:04:00::
d002.s052.t003 education%1:04:00::
d002.s059.t003 education%1:04:00::
d002.s060.t002 education%1:04:00::
d002.s069.t001 education%1:04:00::
d001.s055.t000 young%3:00:00::
d002.s003.t013 young%3:00:00::
d002.s010.t002 young%3:00:00::
d002.s069.t003 young%3:00:00::
d002.s011.t010 repression%1:26:00::
d001.s066.t001 galvanize%2:37:00::
d001.s031.t001 report%1:10:03::
d001.s066.t000 report%1:10:03::
d001.s082.t000 report%1:10:03::
d001.s083.t000 report%1:10:03::
d000.s025.t010 hole%1:17:01::
d002.s035.t007 narrow%3:00:00::
d000.s032.t004 master%1:18:00::
d002.s072.t004 downright%4:02:00::
d000.s061.t016 tea%1:13:00::
d001.s049.t010 exact%3:00:00::
d000.s034.t003 think_of%2:31:00::
d002.s020.t003 profession%1:14:00::
d002.s018.t008 teacher%1:18:00::
d002.s019.t001 teacher%1:18:00::
d002.s020.t002 teacher%1:18:00::
d002.s023.t002 teacher%1:18:00::
d002.s027.t003 teacher%1:18:00::
d002.s029.t001 teacher%1:18:00::
d002.s032.t000 teacher%1:18:00::
d002.s034.t002 teacher%1:18:00::
d002.s035.t002 teacher%1:18:00::
d002.s062.t011 teacher%1:18:00::
d000.s028.t001 above%4:02:00::
d000.s045.t010 above%4:02:00::
d000.s035.t006 skip%2:31:01::
d000.s059.t010 source%1:15:00::
d001.s037.t006 propose%2:32:00::
d000.s055.t002 attract%2:35:00::
d002.s020.t005 course%1:04:01::
d002.s021.t002 course%1:04:01::
d002.s022.t004 course%1:04:01::
d000.s028.t013 end%2:42:00::
d002.s078.t003 unambiguous%3:00:00::
d001.s003.t000 future%1:28:00::
d002.s015.t002 future%1:28:00::
d002.s015.t008 illusion%1:09:01::
d000.s062.t005 observe%2:39:02::
d001.s076.t014 observe%2:39:02::
d000.s013.t001 old_age%1:28:00::
d002.s017.t001 complex%3:00:00::
d002.s019.t008 irksome%5:00:00:uninteresting:00
d001.s026.t012 director%1:18:00::
d001.s000.t003 handful%1:23:01::
d001.s042.t000 occasionally%4:02:00::
d000.s035.t011 below%4:02:01::
d002.s066.t001 permit%2:32:00::
d002.s067.t004 permit%2:32:00::
d002.s030.t000 brilliant%5:00:00:superior:02
d000.s054.t009 parish%1:14:00::
d000.s060.t010 letter%1:10:00::
d000.s061.t002 letter%1:10:00::
d001.s035.t006 crucial%3:00:00::
d000.s033.t001 usually%4:02:00::
d002.s057.t014 would-be%5:00:00:ambitious:00
d001.s035.t004 combination%1:14:00::
d000.s049.t004 improve%2:30:01::
d002.s049.t005 improve%2:30:01::
d002.s023.t003 distinct%5:00:00:different:00
d001.s002.t005 array%1:14:00::
d001.s007.t002 accumulation%1:22:00::
d000.s008.t004 remain%2:30:00::
d000.s059.t004 remain%2:30:00::
d001.s045.t000 assume%2:31:00::
d001.s013.t005 type%1:09:00::
d001.s086.t005 type%1:09:00::
d000.s024.t009 involve%2:42:01::
d000.s030.t002 involve%2:42:01::
d001.s078.t004 involve%2:42:01::
d001.s085.t004 involve%2:42:01::
d001.s086.t004 involve%2:42:01::
d001.s088.t005 involve%2:42:01::
d001.s017.t005 such%5:00:00:much:00
d001.s035.t008 such%5:00:00:much:00
d002.s021.t001 such%5:00:00:much:00
d002.s025.t005 such%5:00:00:much:00
d002.s038.t000 such%5:00:00:much:00
d000.s035.t009 leave%2:38:01::
d000.s062.t009 leave%2:38:01::
d000.s028.t004 bronze%1:27:00::
d001.s084.t002 rush%2:38:00::
d000.s058.t001 everywhere%4:02:00::
d002.s006.t002 american%3:01:01::
d002.s015.t000 american%3:01:01::
d002.s039.t002 american%3:01:01::
d002.s074.t001 american%3:01:01::
d002.s074.t013 american%3:01:01::
d001.s036.t010 finally%4:02:02::
d001.s073.t009 mouse%1:05:00::
d001.s052.t000 extraordinarily%4:02:00::
d002.s059.t005 circumstance%1:26:01::
d002.s036.t010 behalf%1:04:00::
d000.s016.t000 easy%3:00:01::
d002.s049.t008 grade%1:14:00::
d002.s043.t005 rather%4:02:02::
d002.s071.t005 rather%4:02:02::
d002.s073.t004 rather%4:02:02::
d001.s010.t006 accident%1:11:01::
d002.s075.t003 bizarre%5:00:00:unconventional:01
d001.s061.t002 variety%1:14:01::
d000.s028.t000 far%4:02:02::
d002.s018.t004 far%4:02:02::
d000.s015.t001 survey%1:04:02::
d000.s053.t000 survey%1:04:02::
d001.s017.t012 predictive%5:00:00:prophetic:00
d001.s090.t011 predictive%5:00:00:prophetic:00
d001.s069.t000 focus_on%2:42:00::
d000.s023.t004 about%4:02:00::
d001.s019.t013 about%4:02:00::
d001.s033.t002 about%4:02:00::
d001.s034.t000 about%4:02:00::
d001.s082.t005 about%4:02:00::
d002.s040.t005 poor%5:00:00:unfortunate:00
d000.s012.t006 drift%2:38:02::
d000.s031.t007 faultlessly%4:02:00::
d000.s057.t003 number%1:07:00::
d001.s073.t000 doubt%1:09:00::
d001.s000.t000 medical%3:01:00::
d002.s011.t009 authoritarian%5:00:00:undemocratic:00
d001.s020.t012 fate%1:11:00::
d002.s045.t002 governor%1:18:00::
d002.s046.t003 governor%1:18:00::
d002.s058.t004 governance%1:14:00::
d001.s073.t003 several%5:00:00:some:00
d000.s044.t004 fault%1:04:00::
d001.s022.t004 show%2:39:02::
d001.s027.t008 show%2:39:02::
d001.s051.t002 show%2:39:02::
d001.s042.t004 visible%3:00:00::
d001.s001.t004 recent%5:00:00:new:00
d001.s013.t000 recent%5:00:00:new:00
d001.s025.t016 recent%5:00:00:new:00
d002.s045.t001 recent%5:00:00:new:00
d002.s075.t015 recent%5:00:00:new:00
d002.s077.t003 recent%5:00:00:new:00
d000.s035.t002 work_up%2:30:00::
d001.s032.t004 most%4:02:00::
d001.s094.t004 most%4:02:00::
d002.s076.t000 most%4:02:00::
d002.s077.t002 most%4:02:00::
d001.s059.t013 severe%5:00:00:intense:00
d002.s024.t003 on_the_whole%4:02:00::
d001.s059.t003 polyp%1:26:00::
d001.s061.t006 polyp%1:26:00::
d001.s061.t010 polyp%1:26:00::
d001.s063.t004 polyp%1:26:00::
d001.s064.t005 polyp%1:26:00::
d001.s032.t011 almost%4:02:00::
d002.s004.t009 almost%4:02:00::
d000.s040.t000 new%3:00:00::
d000.s056.t005 new%3:00:00::
d001.s001.t007 new%3:00:00::
d001.s002.t006 new%3:00:00::
d001.s008.t002 new%3:00:00::
d001.s017.t010 new%3:00:00::
d001.s018.t002 new%3:00:00::
d001.s022.t002 new%3:00:00::
d001.s090.t014 new%3:00:00::
d001.s091.t002 new%3:00:00::
d002.s062.t000 new%3:00:00::
d002.s071.t006 new%3:00:00::
d001.s006.t005 nothing%1:23:00::
d002.s079.t006 morale%1:26:00::
d000.s030.t009 find%2:40:02::
d001.s005.t005 find%2:40:02::
d001.s012.t006 find%2:40:02::
d001.s030.t005 find%2:40:02::
d001.s043.t000 find%2:40:02::
d001.s047.t007 find%2:40:02::
d001.s049.t005 find%2:40:02::
d001.s072.t000 find%2:40:02::
d001.s073.t007 find%2:40:02::
d001.s074.t000 find%2:40:02::
d001.s076.t003 find%2:40:02::
d001.s076.t008 find%2:40:02::
d001.s079.t001 find%2:40:02::
d001.s086.t002 find%2:40:02::
d002.s012.t002 find%2:40:02::
d002.s036.t004 find%2:40:02::
d001.s022.t005 little%3:00:01::
d000.s044.t006 bell_tower%1:06:00::
d001.s038.t003 infant%1:18:00::
d002.s055.t003 worse%3:00:00::
d002.s059.t009 worse%3:00:00::
d001.s047.t008 answer%1:10:01::
d002.s006.t009 answer%1:10:01::
d001.s024.t003 reliably%4:02:00::
d001.s001.t005 month%1:28:01::
d001.s013.t001 month%1:28:01::
d001.s025.t017 month%1:28:01::
d001.s060.t003 month%1:28:01::
d001.s070.t000 month%1:28:01::
d002.s013.t014 demand%2:32:00::
d001.s004.t004 base%2:31:00::
d001.s091.t009 base%2:31:00::
d002.s011.t014 wonderful%5:00:00:extraordinary:00
d000.s024.t008 work%1:04:00::
d002.s067.t018 work%1:04:00::
d001.s057.t001 turn_to%2:32:01::
d000.s039.t003 sort%1:09:00::
d000.s049.t000 sort%1:09:00::
d000.s007.t008 band%1:14:01::
d000.s032.t005 band%1:14:01::
d000.s038.t010 band%1:14:01::
d000.s040.t001 band%1:14:01::
d001.s018.t001 beneficiary%1:18:00::
d001.s058.t011 stage%1:28:00::
d001.s059.t010 stage%1:28:00::
d000.s026.t000 speak%2:32:00::
d000.s050.t001 speak%2:32:00::
d000.s000.t004 most%3:00:02::
d000.s007.t000 most%3:00:02::
d000.s059.t013 most%3:00:02::
d002.s059.t000 most%3:00:02::
d001.s061.t001 confusing%5:00:00:disorienting:00
d000.s030.t011 mathematical%3:01:00::
d002.s075.t011 mathematical%3:01:00::
d000.s018.t007 physical%3:00:00::
d000.s050.t011 country%1:14:00::
d000.s059.t002 country%1:14:00::
d002.s045.t006 country%1:14:00::
d002.s063.t014 country%1:14:00::
d000.s063.t006 lady%1:18:02::
d001.s004.t011 otherwise%4:02:01::
d002.s043.t002 political%3:00:00::
d000.s015.t009 no%4:02:02::
d000.s051.t003 no%4:02:02::
d002.s079.t001 structured%3:00:00::
d001.s045.t002 piece%1:06:00::
d001.s071.t000 piece%1:06:00::
d001.s000.t011 cancer%1:26:00::
d001.s001.t009 cancer%1:26:00::
d001.s002.t009 cancer%1:26:00::
d001.s004.t016 cancer%1:26:00::
d001.s005.t010 cancer%1:26:00::
d001.s006.t003 cancer%1:26:00::
d001.s007.t006 cancer%1:26:00::
d001.s012.t013 cancer%1:26:00::
d001.s013.t006 cancer%1:26:00::
d001.s015.t007 cancer%1:26:00::
d001.s016.t010 cancer%1:26:00::
d001.s016.t016 cancer%1:26:00::
d001.s017.t013 cancer%1:26:00::
d001.s019.t011 cancer%1:26:00::
d001.s022.t018 cancer%1:26:00::
d001.s024.t007 cancer%1:26:00::
d001.s025.t014 cancer%1:26:00::
d001.s026.t010 cancer%1:26:00::
d001.s031.t013 cancer%1:26:00::
d001.s032.t003 cancer%1:26:00::
d001.s035.t010 cancer%1:26:00::
d001.s036.t007 cancer%1:26:00::
d001.s036.t011 cancer%1:26:00::
d001.s038.t002 cancer%1:26:00::
d001.s043.t003 cancer%1:26:00::
d001.s045.t010 cancer%1:26:00::
d001.s051.t009 cancer%1:26:00::
d001.s053.t003 cancer%1:26:00::
d001.s055.t010 cancer%1:26:00::
d001.s056.t008 cancer%1:26:00::
d001.s057.t004 cancer%1:26:00::
d001.s057.t007 cancer%1:26:00::
d001.s057.t011 cancer%1:26:00::
d001.s058.t002 cancer%1:26:00::
d001.s058.t006 cancer%1:26:00::
d001.s062.t003 cancer%1:26:00::
d001.s065.t005 cancer%1:26:00::
d001.s075.t003 cancer%1:26:00::
d001.s076.t005 cancer%1:26:00::
d001.s076.t011 cancer%1:26:00::
d001.s077.t006 cancer%1:26:00::
d001.s078.t006 cancer%1:26:00::
d001.s080.t003 cancer%1:26:00::
d001.s080.t015 cancer%1:26:00::
d001.s081.t004 cancer%1:26:00::
d001.s082.t009 cancer%1:26:00::
d001.s083.t012 cancer%1:26:00::
d001.s085.t006 cancer%1:26:00::
d001.s086.t007 cancer%1:26:00::
d001.s087.t010 cancer%1:26:00::
d001.s088.t007 cancer%1:26:00::
d001.s088.t011 cancer%1:26:00::
d001.s091.t003 cancer%1:26:00::
d001.s094.t008 cancer%1:26:00::
d000.s024.t003 practice%1:04:00::
d000.s061.t010 suggest%2:32:00::
d001.s012.t010 suggest%2:32:00::
d001.s039.t001 suggest%2:32:00::
d001.s090.t002 pharmaceutical%3:01:00::
d002.s004.t003 educational%3:01:00::
d002.s020.t006 educational%3:01:00::
d002.s020.t008 educational%3:01:00::
d002.s023.t004 educational%3:01:00::
d002.s032.t003 educational%3:01:00::
d002.s033.t002 educational%3:01:00::
d002.s037.t008 educational%3:01:00::
d002.s041.t006 educational%3:01:00::
d002.s047.t003 educational%3:01:00::
d002.s048.t003 educational%3:01:00::
d002.s051.t005 educational%3:01:00::
d002.s061.t001 educational%3:01:00::
d002.s063.t003 educational%3:01:00::
d002.s063.t015 educational%3:01:00::
d002.s065.t001 educational%3:01:00::
d002.s073.t005 educational%3:01:00::
d002.s000.t004 reckon%2:31:02::
d002.s074.t008 french%3:01:00::
d000.s010.t016 belfry%1:06:01::
d000.s028.t002 belfry%1:06:01::
d000.s034.t007 belfry%1:06:01::
d000.s063.t008 belfry%1:06:01::
d001.s087.t005 somewhere%4:02:00::
d002.s035.t008 purpose%1:09:00::
d002.s067.t002 purpose%1:09:00::
d002.s069.t000 purpose%1:09:00::
d002.s061.t012 sometimes%4:02:01::
d000.s003.t009 field%1:15:00::
d000.s057.t007 field%1:15:00::
d001.s025.t013 field%1:15:00::
d001.s036.t013 haunt%2:38:00::
d000.s007.t007 own%5:00:00:personal:00
d002.s035.t006 own%5:00:00:personal:00
d001.s089.t004 speculate%2:31:01::
d002.s046.t007 need%1:26:00::
d000.s018.t010 weigh%2:42:01::
d001.s033.t006 canada%1:15:00::
d000.s032.t001 bit%1:23:01::
d001.s044.t003 bit%1:23:01::
d001.s070.t010 bit%1:23:01::
d000.s015.t004 ago%4:02:00::
d000.s018.t005 ago%4:02:00::
d000.s038.t001 ago%4:02:00::
d001.s006.t002 ago%4:02:00::
d001.s092.t001 administer%2:41:00::
d002.s023.t000 unfair%3:00:00::
d002.s049.t006 performance%1:10:00::
d002.s061.t010 performance%1:10:00::
d002.s063.t016 performance%1:10:00::
d002.s079.t009 performance%1:10:00::
d001.s077.t007 formation%1:14:00::
d000.s005.t004 rhythmically%4:02:00::
d001.s083.t002 as%4:02:00::
d002.s011.t015 as%4:02:00::
d002.s013.t008 as%4:02:00::
d000.s035.t003 sweat%1:08:00::
d001.s048.t002 battery%1:14:02::
d002.s000.t000 teach%2:32:00::
d002.s007.t000 mean%2:32:01::
d002.s067.t000 mean%2:32:01::
d000.s042.t006 attendance%1:04:00::
d001.s082.t003 colleague%1:18:00::
d001.s017.t004 spot%2:39:00::
d001.s005.t007 pivotal%5:00:00:crucial:00
d001.s000.t009 cell%1:06:03::
d001.s009.t005 cell%1:06:03::
d001.s010.t007 cell%1:06:03::
d001.s010.t012 cell%1:06:03::
d001.s012.t002 cell%1:06:03::
d001.s012.t009 cell%1:06:03::
d001.s013.t013 cell%1:06:03::
d001.s015.t005 cell%1:06:03::
d001.s025.t007 cell%1:06:03::
d001.s030.t012 cell%1:06:03::
d001.s041.t011 cell%1:06:03::
d001.s048.t012 cell%1:06:03::
d001.s049.t001 cell%1:06:03::
d001.s055.t008 cell%1:06:03::
d001.s061.t008 cell%1:06:03::
d001.s061.t012 cell%1:06:03::
d001.s068.t007 cell%1:06:03::
d001.s070.t015 cell%1:06:03::
d001.s073.t014 cell%1:06:03::
d001.s076.t006 cell%1:06:03::
d001.s082.t006 cell%1:06:03::
d002.s003.t002 effective%3:00:00::
d002.s072.t000 latter%3:00:00::
d001.s036.t014 certain%5:00:00:definite:00
d001.s063.t001 certain%5:00:00:definite:00
d001.s080.t008 certain%5:00:00:definite:00
d002.s053.t005 certain%5:00:00:definite:00
d000.s011.t006 worker%1:18:00::
d002.s068.t003 absurd%5:00:00:illogical:00
d000.s005.t005 rope%1:06:00::
d000.s025.t008 rope%1:06:00::
d000.s026.t002 rope%1:06:00::
d000.s027.t011 rope%1:06:00::
d002.s034.t004 educate%2:41:00::
d000.s046.t003 issue%1:09:01::
d001.s048.t006 snippet%1:06:00::
d001.s090.t004 unit%1:23:00::
d002.s006.t006 encourage%2:41:00::
d002.s009.t004 encourage%2:41:00::
d002.s069.t002 encourage%2:41:00::
d000.s060.t005 extent%1:26:00::
d002.s020.t007 psychology%1:09:00::
d000.s009.t003 elsewhere%4:02:00::
d000.s010.t011 effort%1:04:00::
d002.s041.t005 effort%1:04:00::
d002.s057.t002 school_board%1:14:00::
d000.s000.t001 change_ringing%1:04:00::
d000.s018.t000 change_ringing%1:04:00::
d000.s049.t003 aim%2:33:00::
d000.s022.t006 name%1:10:00::
d000.s062.t006 average%5:00:02:normal:01
d001.s002.t001 understanding%1:09:01::
d002.s062.t010 paperwork%1:04:00::
d000.s005.t006 attach%2:35:01::
d001.s014.t004 parent%1:18:00::
d001.s038.t008 parent%1:18:00::
d001.s043.t009 parent%1:18:00::
d002.s004.t007 parent%1:18:00::
d002.s006.t003 parent%1:18:00::
d002.s012.t001 parent%1:18:00::
d002.s013.t002 parent%1:18:00::
d002.s051.t000 parent%1:18:00::
d002.s052.t000 parent%1:18:00::
d002.s054.t000 parent%1:18:00::
d000.s059.t005 fact%1:09:01::
d001.s073.t002 fact%1:09:01::
d002.s063.t002 fact%1:09:01::
d002.s080.t000 fact%1:09:01::
d002.s080.t002 fact%1:09:01::