-
Notifications
You must be signed in to change notification settings - Fork 1
/
train_corpus.json
2703 lines (2703 loc) · 589 KB
/
train_corpus.json
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
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0000.wav", "duration": 3.82, "text": "her father is a most remarkable person to say the least"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0001.wav", "duration": 6.845, "text": "but it is quite plain to me that all the arrangements for my wedding are going to be made by the snellings"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0002.wav", "duration": 16.45, "text": "i do not know when it is going to be but it will be either next week or the week after certainly at the earliest possible moment and i shouldn't be at all surprised to learn that all mary ann's things had been already bought and perhaps some of them marked"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0003.wav", "duration": 19.305, "text": "it is most delightful"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0004.wav", "duration": 7.47, "text": "it might just as well be some one else's wedding so unimportant is the part which i am set to play in it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0005.wav", "duration": 4.265, "text": "for instance look at their behaviour in the matter of the ring"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0006.wav", "duration": 3.665, "text": "the accident in question occurred upon the sunday evening"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0007.wav", "duration": 3.33, "text": "the girl is fretting but you don't seem to notice it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0008.wav", "duration": 3.615, "text": "i gasped positively gasped"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0009.wav", "duration": 19.08, "text": "that's it on your account"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0010.wav", "duration": 2.63, "text": "from a cousin of ours who's in that line"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0011.wav", "duration": 6.115, "text": "i never saw people like the snellings for possessing relatives in all sorts of lines"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0012.wav", "duration": 8.89, "text": "i was persuaded that somebody besides that cousin got a profit out of mary ann's engagement ring but i handed over the amount"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0013.wav", "duration": 4.84, "text": "it is from her action in that matter that my suspicion springs"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0014.wav", "duration": 4.17, "text": "there she owns a cottage or it may be a pigstye for all i know"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0015.wav", "duration": 10.985, "text": "when she heard of my engagement with mary ann she wrote and suggested that we should spend our honeymoon in her cottage or pigstye and that i should pay her rent for it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0016.wav", "duration": 3.64, "text": "there were no signs of faltering about her flow of language"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0017.wav", "duration": 4.99, "text": "i found that as a woman of business she was beyond all my expectations"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0018.wav", "duration": 5.885, "text": "it turned out that she had a little money of her own about a hundred and thirty pounds a year"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0019.wav", "duration": 5.075, "text": "and of course i had my expectations and she had hers"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0020.wav", "duration": 5.525, "text": "it was plain that together we should manage most comfortably delightfully in fact"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0021.wav", "duration": 3.875, "text": "i shall make papa give me five hundred pounds at least"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0022.wav", "duration": 5.525, "text": "a bird in the hand is worth two in a bush' and it will be something to have by us"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0023.wav", "duration": 3.845, "text": "i know what mamma can afford to give and i will see she gives it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0024.wav", "duration": 4.94, "text": "and i will see that there is no shirking about the boys or about the girls either"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0025.wav", "duration": 9.845, "text": "i have drawn up a list of all the people who ought to give us a present and i shall tell them what they ought to give it won't be my fault if i don't get it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0026.wav", "duration": 10.205, "text": "of course there are some people with whom you can't be perfectly plain but i shall be as plain as i can there's a way and a manner of doing that kind of thing"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0027.wav", "duration": 2.32, "text": "hers has been prodigious"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0028.wav", "duration": 9.25, "text": "she has a knack of getting people to do what she wishes and to give her what she wants which is a little short of miraculous"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0029.wav", "duration": 5.83, "text": "i notice that they are generally persons who have already tendered their offerings"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0030.wav", "duration": 9.21, "text": "the fact of having given mary ann a wedding present seems to fill them with a feeling of rancorous acidity which to me is inexplicable"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0031.wav", "duration": 2.705, "text": "such is the selfishness of human nature"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0032.wav", "duration": 6.5, "text": "but why on that account they should pity me i altogether fail to understand"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0033.wav", "duration": 7.82, "text": "we have all been giving mary ann presents and i suppose you mister whiting have been giving her something too"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0034.wav", "duration": 5.45, "text": "that was what missus macpherson said to me only the other day"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0035.wav", "duration": 5.865, "text": "and what inquired missus macpherson has mary ann given you her love"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0036.wav", "duration": 15.68, "text": "someone sniggered"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0037.wav", "duration": 9.365, "text": "i cannot pretend to explain why except on the supposition that romance is dead at least in that circle of society in which the snellings move"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0038.wav", "duration": 7.305, "text": "as it is unless i am mistaken some of the rending will be on our side and they know it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0039.wav", "duration": 3.2, "text": "p s the cards are out for the wedding"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0040.wav", "duration": 4.365, "text": "we are going for our honeymoon to italy and the south of france"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0041.wav", "duration": 3.96, "text": "a second cousin of mary ann's is in the cook's tours line"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0042.wav", "duration": 11.175, "text": "he has given us free passes all the way to the end of our journey and all the way back again and coupons for free board and lodging at the hotel it's a wedding present"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83705/2428-83705-0043.wav", "duration": 6.01, "text": "besides which we can always sell the coupons and railway passes which we don't use"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0000.wav", "duration": 13.305, "text": "i imagine there were several kinds of old fashioned christmases but it could hardly be worse than a chop in my chambers or horror of horrors at the club or my cousin lucy's notion of what she calls the festive season"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0001.wav", "duration": 18.63, "text": "festive yes"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0002.wav", "duration": 4.26, "text": "the reply was written in a sprawling feminine hand it was a little vague"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0003.wav", "duration": 6.265, "text": "it appeared that the terms would be five guineas but there was no mention of the length of time which that fee would cover"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0004.wav", "duration": 15.04, "text": "the whole thing was a trifle odd"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0005.wav", "duration": 9.09, "text": "there was nothing said about the sort of accommodation which would be provided nothing about the kind of establishment which was maintained or the table which was kept"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0006.wav", "duration": 6.825, "text": "now it is a remarkable thing that i have always had an extraordinary predilection for the name madge i do not know why"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0007.wav", "duration": 5.71, "text": "i have never known a madge and yet from my boyhood upward i have desired to meet one"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0008.wav", "duration": 10.38, "text": "under such circumstances she was hardly likely to be lively herself but her name was madge and it was the accident of her christian name which decided me to go"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0009.wav", "duration": 14.8, "text": "i had no illusions"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0010.wav", "duration": 3.12, "text": "i did not expect a princely entertainment"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0011.wav", "duration": 2.575, "text": "all night it had been blowing and raining"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0012.wav", "duration": 8.125, "text": "i felt quite lively myself as i mingled with the christmas crowd looking for things which might not turn out to be absolutely preposterous"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0013.wav", "duration": 3.29, "text": "i even bought something for madge i mean missus wilson"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0014.wav", "duration": 19.935, "text": "it was a horrible journey"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0015.wav", "duration": 19.755, "text": "he was impervious to reason"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0016.wav", "duration": 8.515, "text": "it is some satisfaction for me to be able to reflect that i made it warm for the officials however cold i might have been myself"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0017.wav", "duration": 13.285, "text": "when at last i reached crofton my journey's end it turned out that the station staff consisted of a half witted individual who was stationmaster porter and clerk combined and a hulking lad who did whatever else there was to do"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0018.wav", "duration": 14.345, "text": "no one had come to meet me the village was about half a mile and hangar dene the house for which my steps were bent about four miles by the road how far it was across ploughed fields my informant did not mention"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0019.wav", "duration": 4.91, "text": "there was a trap at the boy and blunderbuss but that required fetching"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0020.wav", "duration": 4.89, "text": "when the trap did appear it looked to me uncommonly like an open spring cart"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0021.wav", "duration": 2.815, "text": "in it i was deposited with my luggage"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0022.wav", "duration": 15.8, "text": "i did not know what he meant"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0023.wav", "duration": 2.6, "text": "i did not ask i was beyond it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0024.wav", "duration": 4.25, "text": "i was chilled to the bone wet tired hungry"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0025.wav", "duration": 8.005, "text": "i had long been wishing that an old fashioned christmas had been completely extinct before i had thought of adventuring in quest of one"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0026.wav", "duration": 3.14, "text": "here we be that might be so"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0027.wav", "duration": 4.965, "text": "there be the door in front of you you go up three steps if you can find em"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0028.wav", "duration": 4.0, "text": "there's a knocker if none of em haven't twisted it off"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0029.wav", "duration": 6.295, "text": "there appeared to be no knocker though whether it had been twisted off was more than i could say"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0030.wav", "duration": 3.625, "text": "no answer though i allowed a more than decent interval"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0031.wav", "duration": 3.31, "text": "better ring again suggested the driver hard"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0032.wav", "duration": 3.175, "text": "maybe they're up to some of their games and wants rousing"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0033.wav", "duration": 3.92, "text": "the bell reverberated through what seemed like an empty house"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0034.wav", "duration": 8.12, "text": "presently feet were heard advancing along the passage several pairs it seemed and a light gleamed through the window over the door"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0035.wav", "duration": 2.725, "text": "a voice inquired who's there"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0036.wav", "duration": 4.6, "text": "the information was greeted with what sounded uncommonly like a chorus of laughter"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0037.wav", "duration": 6.395, "text": "there was a rush of retreating feet an expostulating voice then darkness again and silence"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0038.wav", "duration": 2.67, "text": "who lives here are the people mad"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0039.wav", "duration": 15.84, "text": "i tolled the bell again"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0040.wav", "duration": 7.825, "text": "after a vast amount of unfastening the door was opened and on the threshold there stood a girl with a lighted candle in her hand"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0041.wav", "duration": 18.63, "text": "i'm mister christopher from london"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2428/83699/2428-83699-0042.wav", "duration": 6.43, "text": "we've lost the key of the cellar and there's nothing out except water and i don't think you'd care for that"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/128104/1272-128104-0000.wav", "duration": 5.855, "text": "mister quilter is the apostle of the middle classes and we are glad to welcome his gospel"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/128104/1272-128104-0001.wav", "duration": 4.815, "text": "nor is mister quilter's manner less interesting than his matter"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/128104/1272-128104-0002.wav", "duration": 12.485, "text": "he tells us that at this festive season of the year with christmas and roast beef looming before us similes drawn from eating and its results occur most readily to the mind"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/128104/1272-128104-0003.wav", "duration": 9.9, "text": "he has grave doubts whether sir frederick leighton's work is really greek after all and can discover in it but little of rocky ithaca"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/128104/1272-128104-0004.wav", "duration": 29.4, "text": "linnell's pictures are a sort of up guards and at em paintings and mason's exquisite idylls are as national as a jingo poem mister birket foster's landscapes smile at one much in the same way that mister carker used to flash his teeth and mister john collier gives his sitter a cheerful slap on the back before he says like a shampooer in a turkish bath next man"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/128104/1272-128104-0005.wav", "duration": 9.01, "text": "it is obviously unnecessary for us to point out how luminous these criticisms are how delicate in expression"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/128104/1272-128104-0006.wav", "duration": 5.64, "text": "on the general principles of art mister quilter writes with equal lucidity"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/128104/1272-128104-0007.wav", "duration": 9.24, "text": "painting he tells us is of a different quality to mathematics and finish in art is adding more fact"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/128104/1272-128104-0008.wav", "duration": 5.12, "text": "as for etchings they are of two kinds british and foreign"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/128104/1272-128104-0009.wav", "duration": 18.29, "text": "he laments most bitterly the divorce that has been made between decorative art and what we usually call pictures makes the customary appeal to the last judgment and reminds us that in the great days of art michael angelo was the furnishing upholsterer"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/128104/1272-128104-0010.wav", "duration": 5.6, "text": "near the fire and the ornaments fred brought home from india on the mantel board"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/128104/1272-128104-0011.wav", "duration": 15.115, "text": "in fact he is quite severe on mister ruskin for not recognising that a picture should denote the frailty of man and remarks with pleasing courtesy and felicitous grace that many phases of feeling"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/128104/1272-128104-0012.wav", "duration": 5.38, "text": "only unfortunately his own work never does get good"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/128104/1272-128104-0013.wav", "duration": 7.1, "text": "mister quilter has missed his chance for he has failed even to make himself the tupper of painting"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/128104/1272-128104-0014.wav", "duration": 20.205, "text": "by harry quilter m a"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0000.wav", "duration": 10.885, "text": "because you were sleeping instead of conquering the lovely rose princess has become a fiddle without a bow while poor shaggy sits there a cooing dove"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0001.wav", "duration": 11.13, "text": "he has gone and gone for good answered polychrome who had managed to squeeze into the room beside the dragon and had witnessed the occurrences with much interest"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0002.wav", "duration": 11.475, "text": "i have remained a prisoner only because i wished to be one and with this he stepped forward and burst the stout chains as easily as if they had been threads"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0003.wav", "duration": 4.755, "text": "the little girl had been asleep but she heard the raps and opened the door"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0004.wav", "duration": 4.225, "text": "the king has fled in disgrace and your friends are asking for you"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0005.wav", "duration": 4.625, "text": "i begged ruggedo long ago to send him away but he would not do so"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0006.wav", "duration": 4.09, "text": "i also offered to help your brother to escape but he would not go"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0007.wav", "duration": 4.055, "text": "he eats and sleeps very steadily replied the new king"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0008.wav", "duration": 3.67, "text": "i hope he doesn't work too hard said shaggy"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0009.wav", "duration": 15.28, "text": "he doesn't work at all"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0010.wav", "duration": 8.995, "text": "in fact there is nothing he can do in these dominions as well as our nomes whose numbers are so great that it worries us to keep them all busy"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0011.wav", "duration": 3.18, "text": "not exactly returned kaliko"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0012.wav", "duration": 16.32, "text": "where is my brother now"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0013.wav", "duration": 3.7, "text": "inquired shaggy in the metal forest"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0014.wav", "duration": 12.18, "text": "where is that"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0015.wav", "duration": 7.375, "text": "the metal forest is in the great domed cavern the largest in all our dominions replied kaliko"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0016.wav", "duration": 20.52, "text": "kaliko hesitated"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0017.wav", "duration": 6.86, "text": "however if we look sharp we may be able to discover one of these secret ways"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0018.wav", "duration": 2.4449375, "text": "oh no i'm quite sure he didn't"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0019.wav", "duration": 3.525, "text": "that's funny remarked betsy thoughtfully"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0020.wav", "duration": 4.65, "text": "i don't believe ann knew any magic or she'd have worked it before"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0021.wav", "duration": 2.595, "text": "i do not know confessed shaggy"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0022.wav", "duration": 2.695, "text": "true agreed kaliko"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0023.wav", "duration": 7.52, "text": "kaliko went to the big gong and pounded on it just as ruggedo used to do but no one answered the summons"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/135031/1272-135031-0024.wav", "duration": 14.47, "text": "having returned to the royal cavern kaliko first pounded the gong and then sat in the throne wearing ruggedo's discarded ruby crown and holding in his hand the sceptre which ruggedo had so often thrown at his head"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0000.wav", "duration": 4.65, "text": "a man said to the universe sir i exist"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0001.wav", "duration": 6.535, "text": "sweat covered brion's body trickling into the tight loincloth that was the only garment he wore"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0002.wav", "duration": 13.335, "text": "the cut on his chest still dripping blood the ache of his overstrained eyes even the soaring arena around him with the thousands of spectators were trivialities not worth thinking about"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0003.wav", "duration": 5.42, "text": "his instant of panic was followed by a small sharp blow high on his chest"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0004.wav", "duration": 5.09, "text": "one minute a voice said and the time buzzer sounded"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0005.wav", "duration": 5.81, "text": "a minute is not a very large measure of time and his body needed every fraction of it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0006.wav", "duration": 4.93, "text": "the buzzer's whirr triggered his muscles into complete relaxation"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0007.wav", "duration": 4.735, "text": "only his heart and lungs worked on at a strong measured rate"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0008.wav", "duration": 4.595, "text": "he was in reverie sliding along the borders of consciousness"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0009.wav", "duration": 8.62, "text": "the contestants in the twenties needed undisturbed rest therefore nights in the dormitories were as quiet as death"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0010.wav", "duration": 10.76, "text": "particularly so on this last night when only two of the little cubicles were occupied the thousands of others standing with dark empty doors"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0011.wav", "duration": 5.015, "text": "the other voice snapped with a harsh urgency clearly used to command"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0012.wav", "duration": 7.74, "text": "i'm here because the matter is of utmost importance and brandd is the one i must see now stand aside"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0013.wav", "duration": 11.4795625, "text": "the twenties"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0014.wav", "duration": 7.305, "text": "he must have drawn his gun because the intruder said quickly put that away you're being a fool out"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0015.wav", "duration": 5.68, "text": "there was silence then and still wondering brion was once more asleep"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0016.wav", "duration": 14.8, "text": "ten seconds"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0017.wav", "duration": 3.735, "text": "he asked the handler who was kneading his aching muscles"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0018.wav", "duration": 6.0, "text": "a red haired mountain of a man with an apparently inexhaustible store of energy"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0019.wav", "duration": 4.7, "text": "there could be little art in this last and final round of fencing"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0020.wav", "duration": 4.32, "text": "just thrust and parry and victory to the stronger"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0021.wav", "duration": 4.65, "text": "every man who entered the twenties had his own training tricks"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0022.wav", "duration": 8.35, "text": "there appeared to be an immediate association with the death trauma as if the two were inextricably linked into one"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0023.wav", "duration": 8.66, "text": "the strength that enables someone in a trance to hold his body stiff and unsupported except at two points the head and heels"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0024.wav", "duration": 3.64, "text": "this is physically impossible when conscious"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0025.wav", "duration": 8.725, "text": "others had died before during the twenties and death during the last round was in some ways easier than defeat"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0026.wav", "duration": 6.635, "text": "breathing deeply brion softly spoke the auto hypnotic phrases that triggered the process"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0027.wav", "duration": 6.57, "text": "when the buzzer sounded he pulled his foil from his second's startled grasp and ran forward"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0028.wav", "duration": 5.65, "text": "irolg looked amazed at the sudden fury of the attack then smiled"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0029.wav", "duration": 6.88, "text": "he thought it was a last burst of energy he knew how close they both were to exhaustion"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0030.wav", "duration": 7.13, "text": "brion saw something close to panic on his opponent's face when the man finally recognized his error"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0031.wav", "duration": 7.115, "text": "a wave of despair rolled out from irolg brion sensed it and knew the fifth point was his"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1272/141231/1272-141231-0032.wav", "duration": 4.48, "text": "then the powerful twist that thrust it aside in and under the guard"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0000.wav", "duration": 9.48, "text": "her meeting with letty was indescribably tender and the days that followed were pretty equally divided between her and her brother in nursing the one and loving the other"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0001.wav", "duration": 8.66, "text": "but even while she enjoyed every hour of life and begrudged the time given to sleep she felt as if the dream was too beautiful to last and often said"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0002.wav", "duration": 7.665, "text": "so christie turned a deaf ear to her prophetic soul and gave herself up to the blissful holiday that had come at last"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0003.wav", "duration": 6.85, "text": "nothing can surprise me now i'm prepared for any thing even the sight of my quakerish lover dancing a jig"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0004.wav", "duration": 5.85, "text": "i feel like a boy out of school or rather a man out of prison and must enjoy my liberty in some way"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0005.wav", "duration": 10.67, "text": "i'm not a talker you know and as the laws of gravitation forbid my soaring aloft anywhere i can only express my joyfully uplifted state of mind by prancing as you call it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0006.wav", "duration": 9.095, "text": "i don't want you to i love to see you so young and happy only you are not the old david and i've got to get acquainted with the new one"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0007.wav", "duration": 5.4999375, "text": "i hope you'll like him better than the frost bitten old david you first knew and were kind enough to love"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0008.wav", "duration": 5.8500625, "text": "mother says i've gone back to the time before we lost letty and i sometimes feel as if i had"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0009.wav", "duration": 5.79, "text": "in that case you will find me a proud impetuous ambitious fellow christie and how will that suit"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0010.wav", "duration": 10.18, "text": "excellently i like pride of your sort impetuosity becomes you for you have learned to control it if need be and the ambition is best of all"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0011.wav", "duration": 20.34, "text": "i shall wait for time to show"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0012.wav", "duration": 14.77, "text": "then they went back to their work little dreaming as they tied roses and twined smilax wreaths how near that other chance was how soon they were to be called upon to keep their promise and how well each was to perform the part given them in life and death"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0013.wav", "duration": 6.115, "text": "to no home in the land did the great trouble bring a more sudden change than the little cottage in the lane"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0014.wav", "duration": 10.94, "text": "david was sober enough now and went about his work with a grim set to his lips and a spark in his eyes that made the three women look at one another pale with unspoken apprehension"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0015.wav", "duration": 20.7, "text": "it is terrible and yet glorious"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0016.wav", "duration": 15.47, "text": "david held it close in both of his saying gratefully thank you mother then fixing his eyes on the younger yet not dearer women he added with a ring in his voice that made their hearts answer with a prompt ay ay in spite of love or fear"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0017.wav", "duration": 11.895, "text": "the boys bless their brave hearts have done nobly but older men are needed now we cannot sacrifice all the gallant lads and we who have more to lose than they must take our turn and try to do as well"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0018.wav", "duration": 10.305, "text": "yes david sister and sweetheart answered bravely forgetting in the fervor of the moment what heavy consequences god might see fit to send good"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0019.wav", "duration": 5.8, "text": "bennet will take the garden and green house off my hands this autumn for a year or longer if i like"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0020.wav", "duration": 6.07, "text": "he's a kind neighborly man and his boy will take my place about the house and protect you faithfully"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0021.wav", "duration": 4.5, "text": "i knew you would go i saw you getting ready and i made up my mind to follow"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0022.wav", "duration": 8.505, "text": "you will let me do it and in return i will marry you whenever you ask me answered christie sealing the promise with a kiss that silenced him"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0023.wav", "duration": 4.98, "text": "you've something to tell me i see it in your face dear i must go"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0024.wav", "duration": 14.68, "text": "next evening as missus sterling sat alone in the twilight a tall man in army blue entered quietly stood watching the tranquil figure for a moment then went and knelt down beside it saying with a most unsoldierly choke in the voice"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0025.wav", "duration": 6.095, "text": "the loyal frenzy fell upon the three quiet women and they could not do too much for their country"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0026.wav", "duration": 5.835, "text": "it would have taken many knapsacks to hold all the gifts showered upon him by his friends and neighbors"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0027.wav", "duration": 8.58, "text": "finding that lisha showed little enthusiasm on the subject she tried to rouse him by patriotic appeals of various sorts"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0028.wav", "duration": 9.57, "text": "very well said missus wilkins resolutely to herself ef i can't make no impression on his soul i will on his stommick and see how that'll work"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0029.wav", "duration": 3.945, "text": "we can't afford no nice vittles now when our men are sufferin so"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0030.wav", "duration": 16.445, "text": "he was not as unmoved as he seemed by the general excitement and had felt sundry manly impulses to up and at em when his comrades in the shop discussed the crisis with ireful brandishing of awls and vengeful pounding of sole leather as if the rebels were under the hammer"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0031.wav", "duration": 8.83, "text": "to say that the fish rose at once and swallowed the bait hook and all but feebly expresses the justice done to the cakes by that long suffering man"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0032.wav", "duration": 5.34, "text": "can you remember what hepsey told us and call them poor long sufferin creeters names"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0033.wav", "duration": 3.875, "text": "no he ain't it's a trainer added ann lizy"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0034.wav", "duration": 2.765, "text": "now cynthy be you satisfied"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0035.wav", "duration": 4.755, "text": "and the inconsistent woman fell upon his buttony breast weeping copiously"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0036.wav", "duration": 24.125, "text": "his wife fed him with the fat of the land regardless of consequences his children revolved about him with tireless curiosity and wonder his neighbors flocked in to applaud advise and admire every one treated him with a respect most grateful to his feelings he was an object of interest and with every hour his importance increased so that by night he felt like a commander in chief and bore himself accordingly"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0037.wav", "duration": 6.665, "text": "then the good soul openly shouldered the burden she had borne so long in secret and bravely trudged on alone"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0038.wav", "duration": 6.24, "text": "the women dropped their work to look and listen for his visits were few and short and every instant was precious"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0039.wav", "duration": 4.79, "text": "they knew what it was without a word missus sterling clasped her hands and bowed her head"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0040.wav", "duration": 3.27, "text": "now let's be brave and enjoy every minute of it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0041.wav", "duration": 7.14, "text": "we will what can i do for you davy asked christie wonderfully supported by the thought that she was going too"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0042.wav", "duration": 13.185, "text": "as a married woman you will get on better as my wife you will be allowed to come to me if i need you and as my he stopped there for he could not add as my widow you will have my pension to support you"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0043.wav", "duration": 5.66, "text": "nothing can part us any more not even death for love like ours will last for ever"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0044.wav", "duration": 3.505, "text": "not one david that's true love christie"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0045.wav", "duration": 7.29, "text": "then they stood quite still for a time and in the silence the two hearts talked together in the sweet language no tongue can utter"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0046.wav", "duration": 17.425, "text": "surely i shall if i give you and myself to the cause and i do it gladly though i know that my heart has got to ache as it never has ached yet when my courage fails as it will by and by and my selfish soul counts the cost of my offering after the excitement is over"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0047.wav", "duration": 11.935, "text": "david caught the exaltation and gave no further thought to any thing but the duty of the hour finding himself stronger and braver for that long look into the illuminated face of the woman he loved"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0048.wav", "duration": 8.565, "text": "the roses are for they remind me of poor helen and the first work i did with david was arranging flowers like these for a dead baby's little coffin"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0049.wav", "duration": 13.565, "text": "but i think few brides dress with a braver happier heart than mine though i do choose a sober wedding gown answered christie smiling again as she took from a half packed trunk her new hospital suit of soft gray woollen stuff"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0050.wav", "duration": 4.335, "text": "mister power is waiting are you ready love quite ready"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0051.wav", "duration": 5.76, "text": "you young folks take a wedding trip to the green house while we see how well we can get on without you"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0052.wav", "duration": 11.97, "text": "david and christie went smiling away together and if they shed any tears over the brief happiness no one saw them but the flowers and they loyally kept the secret folded up in their tender hearts"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0053.wav", "duration": 20.64, "text": "a very simple little marriage feast but more love good will and tender wishes adorned the plain table than is often found at wedding breakfasts and better than any speech or song was letty's broken whisper as she folded her arms round david's empty chair when no one saw her heaven bless and keep and bring him back to us"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0054.wav", "duration": 18.5450625, "text": "all watched with quickened breath and proud souls that living wave blue below and bright with a steely glitter above as it flowed down the street and away to join the sea of dauntless hearts that for months had rolled up against the south and ebbed back reddened with the blood of men like these"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0055.wav", "duration": 3.895, "text": "then she saw david and the regiment became one man to her"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3853/163249/3853-163249-0056.wav", "duration": 4.155, "text": "i could not love thee dear so much loved i not honor more"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0000.wav", "duration": 4.715, "text": "the last two days of the voyage bartley found almost intolerable"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0001.wav", "duration": 9.585, "text": "emerging at euston at half past three o'clock in the afternoon alexander had his luggage sent to the savoy and drove at once to bedford square"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0002.wav", "duration": 6.45, "text": "she blushed and smiled and fumbled his card in her confusion before she ran upstairs"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0003.wav", "duration": 2.37, "text": "the room was empty when he entered"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0004.wav", "duration": 7.255, "text": "a coal fire was crackling in the grate and the lamps were lit for it was already beginning to grow dark outside"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0005.wav", "duration": 11.08, "text": "she called his name on the threshold but in her swift flight across the room she felt a change in him and caught herself up so deftly that he could not tell just when she did it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0006.wav", "duration": 6.195, "text": "she merely brushed his cheek with her lips and put a hand lightly and joyously on either shoulder"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0007.wav", "duration": 2.44, "text": "i never dreamed it would be you bartley"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0008.wav", "duration": 4.81, "text": "when did you come bartley and how did it happen you haven't spoken a word"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0009.wav", "duration": 6.335, "text": "she looked at his heavy shoulders and big determined head thrust forward like a catapult in leash"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0010.wav", "duration": 4.58, "text": "i'll do anything you wish me to bartley she said tremulously"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0011.wav", "duration": 3.26, "text": "he pulled up a window as if the air were heavy"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0012.wav", "duration": 6.67, "text": "hilda watched him from her corner trembling and scarcely breathing dark shadows growing about her eyes"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0013.wav", "duration": 3.9, "text": "it it hasn't always made you miserable has it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0014.wav", "duration": 2.55, "text": "always but it's worse now"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0015.wav", "duration": 3.01, "text": "it's unbearable it tortures me every minute"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0016.wav", "duration": 6.24, "text": "i am not a man who can live two lives he went on feverishly each life spoils the other"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0017.wav", "duration": 2.315, "text": "i get nothing but misery out of either"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0018.wav", "duration": 3.265, "text": "there is this deception between me and everything"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0019.wav", "duration": 10.245, "text": "at that word deception spoken with such self contempt the color flashed back into hilda's face as suddenly as if she had been struck by a whiplash"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0020.wav", "duration": 4.945, "text": "she bit her lip and looked down at her hands which were clasped tightly in front of her"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0021.wav", "duration": 8.17, "text": "could you could you sit down and talk about it quietly bartley as if i were a friend and not some one who had to be defied"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0022.wav", "duration": 3.76, "text": "he dropped back heavily into his chair by the fire"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0023.wav", "duration": 2.81, "text": "i have thought about it until i am worn out"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0024.wav", "duration": 19.395, "text": "after the very first"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0025.wav", "duration": 5.55, "text": "hilda's face quivered but she whispered yes i think it must have been"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0026.wav", "duration": 4.835, "text": "she pressed his hand gently in gratitude weren't you happy then at all"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0027.wav", "duration": 4.19, "text": "something of their troubling sweetness came back to alexander too"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0028.wav", "duration": 3.005, "text": "presently it stole back to his coat sleeve"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0029.wav", "duration": 3.975, "text": "yes hilda i know that he said simply"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0030.wav", "duration": 2.705, "text": "i understand bartley i was wrong"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0031.wav", "duration": 4.825, "text": "she listened intently but she heard nothing but the creaking of his chair"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0032.wav", "duration": 2.77, "text": "you want me to say it she whispered"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0033.wav", "duration": 4.18, "text": "bartley leaned his head in his hands and spoke through his teeth"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0034.wav", "duration": 2.52, "text": "it's got to be a clean break hilda"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0035.wav", "duration": 2.67, "text": "oh bartley what am i to do"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0036.wav", "duration": 3.07, "text": "you ask me to stay away from you because you want me"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0037.wav", "duration": 4.325, "text": "i will ask the least imaginable but i must have something"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0038.wav", "duration": 4.86, "text": "hilda sat on the arm of it and put her hands lightly on his shoulders"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0039.wav", "duration": 4.715, "text": "you see loving some one as i love you makes the whole world different"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0040.wav", "duration": 4.6, "text": "and then you came back not caring very much but it made no difference"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0041.wav", "duration": 5.575, "text": "she slid to the floor beside him as if she were too tired to sit up any longer"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170142/1462-170142-0042.wav", "duration": 3.24, "text": "don't cry don't cry he whispered"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0000.wav", "duration": 14.55, "text": "he had written a number of books himself among them a history of dancing a history of costume a key to shakespeare's sonnets a study of the poetry of ernest dowson et cetera"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0001.wav", "duration": 3.985, "text": "hugh's written a delightful part for her and she's quite inexpressible"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0002.wav", "duration": 4.645, "text": "i happen to have mac connell's box for tonight or there'd be no chance of our getting places"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0003.wav", "duration": 2.32, "text": "alexander exclaimed mildly"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0004.wav", "duration": 2.51, "text": "myself i always knew she had it in her"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0005.wav", "duration": 13.165, "text": "do you know alexander mainhall looked with perplexity up into the top of the hansom and rubbed his pink cheek with his gloved finger do you know i sometimes think of taking to criticism seriously myself"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0006.wav", "duration": 8.58, "text": "when they entered the stage box on the left the first act was well under way the scene being the interior of a cabin in the south of ireland"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0007.wav", "duration": 5.255, "text": "as they sat down a burst of applause drew alexander's attention to the stage"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0008.wav", "duration": 6.32, "text": "of course hilda is irish the burgoynes have been stage people for generations and she has the irish voice"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0009.wav", "duration": 2.505, "text": "it's delightful to hear it in a london theatre"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0010.wav", "duration": 8.615, "text": "when she began to dance by way of showing the gossoons what she had seen in the fairy rings at night the house broke into a prolonged uproar"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0011.wav", "duration": 11.42, "text": "after her dance she withdrew from the dialogue and retreated to the ditch wall back of philly's burrow where she sat singing the rising of the moon and making a wreath of primroses for her donkey"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0012.wav", "duration": 3.86, "text": "mac connell let me introduce mister bartley alexander"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0013.wav", "duration": 7.02, "text": "the playwright gave mainhall a curious look out of his deep set faded eyes and made a wry face"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0014.wav", "duration": 4.92, "text": "he nodded curtly and made for the door dodging acquaintances as he went"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0015.wav", "duration": 3.38, "text": "i dare say it's quite true that there's never been any one else"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0016.wav", "duration": 3.43, "text": "he's another who's awfully keen about her let me introduce you"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0017.wav", "duration": 6.21, "text": "sir harry towne bowed and said that he had met mister alexander and his wife in tokyo"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0018.wav", "duration": 4.4049375, "text": "i say sir harry the little girl's going famously to night isn't she"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0019.wav", "duration": 3.555, "text": "the fact is she's feeling rather seedy poor child"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0020.wav", "duration": 2.35, "text": "a little attack of nerves possibly"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0021.wav", "duration": 9.645, "text": "he bowed as the warning bell rang and mainhall whispered you know lord westmere of course the stooped man with the long gray mustache talking to lady dowle"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0022.wav", "duration": 6.185, "text": "in a moment peggy was on the stage again and alexander applauded vigorously with the rest"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0023.wav", "duration": 9.5, "text": "in the half light he looked about at the stalls and boxes and smiled a little consciously recalling with amusement sir harry's judicial frown"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0024.wav", "duration": 16.35, "text": "he leaned forward and beamed felicitations as warmly as mainhall himself when at the end of the play she came again and again before the curtain panting a little and flushed her eyes dancing and her eager nervous little mouth tremulous with excitement"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0025.wav", "duration": 4.44, "text": "all the same he lifted his glass here's to you little hilda"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0026.wav", "duration": 2.385, "text": "i'm glad she's held her own since"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170138/1462-170138-0027.wav", "duration": 5.005, "text": "it was youth and poverty and proximity and everything was young and kindly"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0000.wav", "duration": 15.405, "text": "on the last saturday in april the new york times published an account of the strike complications which were delaying alexander's new jersey bridge and stated that the engineer himself was in town and at his office on west tenth street"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0001.wav", "duration": 4.8250625, "text": "over the fireplace there was a large old fashioned gilt mirror"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0002.wav", "duration": 2.845, "text": "he rose and crossed the room quickly"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0003.wav", "duration": 8.735, "text": "of course i know bartley she said at last that after this you won't owe me the least consideration but we sail on tuesday"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0004.wav", "duration": 8.275, "text": "i saw that interview in the paper yesterday telling where you were and i thought i had to see you that's all good night i'm going now"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0005.wav", "duration": 3.72, "text": "let me take off your coat and your boots they're oozing water"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0006.wav", "duration": 3.46, "text": "if you'd sent me a note or telephoned me or anything"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0007.wav", "duration": 6.32, "text": "i told myself that if i were really thinking of you and not of myself a letter would be better than nothing"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0008.wav", "duration": 3.15, "text": "he paused they never did to me"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0009.wav", "duration": 2.925, "text": "oh bartley did you write to me"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0010.wav", "duration": 2.945, "text": "alexander slipped his arm about her"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0011.wav", "duration": 2.465, "text": "i think i have felt that you were coming"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0012.wav", "duration": 2.7, "text": "he bent his face over her hair"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0013.wav", "duration": 4.8, "text": "and i she whispered i felt that you were feeling that"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0014.wav", "duration": 2.97, "text": "but when i came i thought i had been mistaken"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0015.wav", "duration": 6.055, "text": "i've been up in canada with my bridge and i arranged not to come to new york until after you had gone"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0016.wav", "duration": 4.175, "text": "then when your manager added two more weeks i was already committed"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0017.wav", "duration": 3.255, "text": "i'm going to do what you asked me to do when you were in london"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0018.wav", "duration": 16.2, "text": "only i'll do it more completely"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0019.wav", "duration": 2.69, "text": "then you don't know what you're talking about"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0020.wav", "duration": 19.35, "text": "yes i know very well"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0021.wav", "duration": 2.555, "text": "alexander flushed angrily"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1462/170145/1462-170145-0022.wav", "duration": 6.51, "text": "i don't know what i ought to say but i don't believe you'd be happy truly i don't aren't you trying to frighten me"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0000.wav", "duration": 4.395, "text": "when hurstwood got back to his office again he was in a greater quandary than ever"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0001.wav", "duration": 2.755, "text": "he could hardly realise how it had all come about"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0002.wav", "duration": 6.54, "text": "no letter had come no word of any kind and yet here it was late in the evening and she had agreed to meet him that morning"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0003.wav", "duration": 4.84, "text": "he saw that in the excitement of recent events he had not formulated a plan upon that score"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0004.wav", "duration": 5.735, "text": "he was getting some vague comfort out of a good cigar but it was no panacea for the ill which affected him"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0005.wav", "duration": 11.465, "text": "it was with great opposition after two or three hours of the most urgent mental affirmation and denial that at last he got an envelope placed in it the requested amount and slowly sealed it up"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0006.wav", "duration": 3.385, "text": "then he called harry the boy of all work around the place"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0007.wav", "duration": 7.855, "text": "you take this to this address he said handing him the envelope and give it to missus hurstwood yes sir said the boy"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0008.wav", "duration": 2.88, "text": "any answer i guess not"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0009.wav", "duration": 3.725, "text": "the boy hastened away and the manager fell to his musings"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0010.wav", "duration": 3.625, "text": "he was beaten for to night and he might just as well make the best of it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0011.wav", "duration": 3.3, "text": "she would take the envelope and know that she had triumphed"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0012.wav", "duration": 3.09, "text": "if he only had that letter back he wouldn't send it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0013.wav", "duration": 4.415, "text": "for relief he arose and joined in conversation with a few friends who were drinking"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0014.wav", "duration": 4.62, "text": "all the time his thoughts would run out to his home and see the scene being therein enacted"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0015.wav", "duration": 3.04, "text": "in about an hour and three quarters the boy returned"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0016.wav", "duration": 6.5400625, "text": "he fancied as he sat at his desk that nothing would be done for a week or two meanwhile he would have time to think"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0017.wav", "duration": 7.3, "text": "how about that now his pain at her failure to meet or write him rapidly increased as he devoted himself to this subject"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0018.wav", "duration": 6.745, "text": "he decided to write her care of the west side post office and ask for an explanation as well as to have her meet him"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0019.wav", "duration": 4.85, "text": "three o'clock came four five six and no letter"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0020.wav", "duration": 4.62, "text": "the helpless manager paced the floor and grimly endured the gloom of defeat"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0021.wav", "duration": 4.685, "text": "he saw a busy saturday ushered out the sabbath in and nothing done"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0022.wav", "duration": 10.05, "text": "all day the bar being closed he brooded alone shut out from home from the excitement of his resort from carrie and without the ability to alter his condition one iota"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0023.wav", "duration": 3.31, "text": "it was the worst sunday he had spent in his life"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0024.wav", "duration": 2.935, "text": "it seemed as if his family troubles were just beginning"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0025.wav", "duration": 4.285, "text": "he was quite certain now that she knew he was married and was angered at his perfidy"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0026.wav", "duration": 6.815, "text": "he had loved her earnestly enough but now that the possibility of losing her stared him in the face she seemed much more attractive"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0027.wav", "duration": 3.515, "text": "he would go to her and tell her all his family complications"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0028.wav", "duration": 3.625, "text": "he would explain to her just where he stood and how much he needed her"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0029.wav", "duration": 7.645, "text": "he did manage to bring himself into the mood to go out to carrie but when he got in ogden place he thought he saw a man watching him and went away"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0030.wav", "duration": 2.55, "text": "he did not go within a block of the house"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0031.wav", "duration": 4.405, "text": "he troubled over many little details and talked perfunctorily to everybody"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0032.wav", "duration": 8.69, "text": "he stayed at his desk long after all others had gone and only quitted it when the night watchman on his round pulled at the front door to see if it was safely locked"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0033.wav", "duration": 5.065, "text": "on wednesday he received another polite note from mc gregor james and hay it read"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0034.wav", "duration": 12.16, "text": "dear sir we beg to inform you that we are instructed to wait until to morrow thursday at one o'clock before filing suit against you on behalf of missus julia hurstwood for divorce and alimony"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0035.wav", "duration": 3.45, "text": "very truly yours et cetera compromise"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0036.wav", "duration": 4.42, "text": "so here it was spread out clear before him and now he knew what to expect"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149897/2277-149897-0037.wav", "duration": 3.01, "text": "if he didn't go and see them they would sue him promptly"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0000.wav", "duration": 6.59, "text": "he was in a fevered state of mind owing to the blight his wife's action threatened to cast upon his entire future"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0001.wav", "duration": 7.145, "text": "he would have to pay her the money which she would now regularly demand or there would be trouble it did not matter what he did"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0002.wav", "duration": 4.835, "text": "hurstwood walked the floor mentally arranging the chief points of his situation"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0003.wav", "duration": 2.84, "text": "he also thought of his managerial position"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0004.wav", "duration": 15.64, "text": "how would the papers talk about it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0005.wav", "duration": 5.6, "text": "many little wrinkles gathered between his eyes as he contemplated this and his brow moistened"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0006.wav", "duration": 4.97, "text": "he could arrange that satisfactorily for carrie would be glad to wait if necessary"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0007.wav", "duration": 5.375, "text": "he would see how things turned out to morrow and then he would talk to her they were going to meet as usual"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0008.wav", "duration": 6.94, "text": "for some reason he felt as if something might come that way and was relieved when all the envelopes had been scanned and nothing suspicious noticed"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0009.wav", "duration": 5.815, "text": "while the danger had not lessened it had not as yet materialised and with him no news was good news"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0010.wav", "duration": 5.275, "text": "so little did he consider drouet that it never once occurred to him to worry about his finding out"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0011.wav", "duration": 4.465, "text": "he grew restless as he ruminated and then decided that perhaps it was nothing"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0012.wav", "duration": 2.495, "text": "she had not been able to get away this morning"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0013.wav", "duration": 6.09, "text": "he would get one to day it would probably be on his desk when he got back he would look for it at once"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0014.wav", "duration": 4.07, "text": "after a time he gave up waiting and drearily headed for the madison car"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0015.wav", "duration": 3.675, "text": "he went in and examined his letters but there was nothing from carrie"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0016.wav", "duration": 2.785, "text": "fortunately there was nothing from his wife either"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0017.wav", "duration": 4.985, "text": "at one thirty he went to rector's for lunch and when he returned a messenger was waiting for him"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0018.wav", "duration": 4.545, "text": "his first impulse was to write but four words in reply go to the devil"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0019.wav", "duration": 3.56, "text": "but he compromised by telling the boy that there would be no reply"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0020.wav", "duration": 5.285, "text": "then he sat down in his chair and gazed without seeing contemplating the result of his work"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0021.wav", "duration": 3.37, "text": "what would she do about that the confounded wretch"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0022.wav", "duration": 3.38, "text": "later however his old discretion asserted itself"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0023.wav", "duration": 3.89, "text": "something had to be done a climax was near and she would not sit idle"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0024.wav", "duration": 4.5, "text": "he knew her well enough to know that when she had decided upon a plan she would follow it up"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0025.wav", "duration": 3.4, "text": "he arose from his chair and went and looked out into the street"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0026.wav", "duration": 4.92, "text": "the long drizzle had begun pedestrians had turned up collars and trousers at the bottom"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0027.wav", "duration": 3.595, "text": "hurstwood almost exclaimed out loud at the insistency of this thing"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0028.wav", "duration": 2.9, "text": "he put on his hat and looked around for his umbrella"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0029.wav", "duration": 2.6, "text": "he would have some arrangement of this thing"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0030.wav", "duration": 6.3, "text": "he began to wish that he had compromised in some way or other that he had sent the money perhaps he could do it up here"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0031.wav", "duration": 3.61, "text": "he would go in and see anyhow he would have no row"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0032.wav", "duration": 10.77, "text": "by the time he reached his own street he was keenly alive to the difficulties of his situation and wished over and over that some solution would offer itself that he could see his way out"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0033.wav", "duration": 2.845, "text": "then he rang the bell no answer"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149896/2277-149896-0034.wav", "duration": 4.005, "text": "he rang again this time harder still no answer"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0000.wav", "duration": 15.505, "text": "minnie's flat as the one floor resident apartments were then being called was in a part of west van buren street inhabited by families of labourers and clerks men who had come and were still coming with the rush of population pouring in at the rate of fifty thousand a year"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0001.wav", "duration": 7.04, "text": "to carrie the sound of the little bells upon the horse cars as they tinkled in and out of hearing was as pleasing as it was novel"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0002.wav", "duration": 5.095, "text": "to him the presence or absence of his wife's sister was a matter of indifference"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0003.wav", "duration": 7.7, "text": "he was of a clean saving disposition and had already paid a number of monthly instalments on two lots far out on the west side"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0004.wav", "duration": 3.215, "text": "his ambition was some day to build a house on them"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0005.wav", "duration": 6.37, "text": "she had some slight gift of observation and that sense so rich in every woman intuition"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0006.wav", "duration": 2.745, "text": "the walls of the rooms were discordantly papered"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0007.wav", "duration": 4.4, "text": "the floors were covered with matting and the hall laid with a thin rag carpet"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0008.wav", "duration": 5.385, "text": "then she walked and sang to it until hanson disturbed in his reading came and took it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0009.wav", "duration": 3.35, "text": "one could see that he was very much wrapped up in his offspring"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0010.wav", "duration": 7.42, "text": "now now he said walking there there and there was a certain swedish accent noticeable in his voice"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0011.wav", "duration": 2.465, "text": "he seemed to be thinking of something else"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0012.wav", "duration": 5.08, "text": "minnie began to explain but her husband took this part of the conversation to himself"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0013.wav", "duration": 3.16, "text": "you could get home easy too it isn't very far"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0014.wav", "duration": 8.6, "text": "she asked minnie for ink and paper which were upon the mantel in the dining room and when the latter had gone to bed at ten got out drouet's card and wrote him"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0015.wav", "duration": 4.73, "text": "she wanted to make some reference to their relations upon the train but was too timid"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0016.wav", "duration": 5.325, "text": "anything was good enough so long as it paid say five dollars a week to begin with"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0017.wav", "duration": 3.36, "text": "a shop girl was the destiny prefigured for the newcomer"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0018.wav", "duration": 5.02, "text": "it was under such auspicious circumstances that she started out this morning to look for work"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0019.wav", "duration": 8.45, "text": "narrow board walks extended out passing here a house and there a store at far intervals eventually ending on the open prairie"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0020.wav", "duration": 7.38, "text": "it gave an imposing appearance to most of the wholesale houses whose offices were upon the ground floor and in plain view of the street"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2277/149874/2277-149874-0021.wav", "duration": 2.985, "text": "these vast buildings what were they"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43359/5536-43359-0000.wav", "duration": 3.35, "text": "he had neither a national army nor an organized church"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43359/5536-43359-0001.wav", "duration": 10.36, "text": "her attitude and secret meditations must be such as to instill into the receptive soul of the unborn child the love of the great mystery and a sense of brotherhood with all creation"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43359/5536-43359-0002.wav", "duration": 11.04, "text": "the ordeal is best met alone where no curious or pitying eyes embarrass her where all nature says to her spirit tis love tis love the fulfilling of life"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43359/5536-43359-0003.wav", "duration": 12.265, "text": "this wild mother has not only the experience of her mother and grandmother and the accepted rules of her people for a guide but she humbly seeks to learn a lesson from ants bees spiders beavers and badgers"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43359/5536-43359-0004.wav", "duration": 6.32, "text": "in due time the child takes of his own accord the attitude of prayer and speaks reverently of the powers"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43359/5536-43359-0005.wav", "duration": 6.755, "text": "indeed the distinctive work of both grandparents is that of acquainting the youth with the national traditions and beliefs"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43359/5536-43359-0006.wav", "duration": 4.34, "text": "the family was not only the social unit but also the unit of government"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43359/5536-43359-0007.wav", "duration": 17.175, "text": "the remoter degrees of kinship were fully recognized and that not as a matter of form only first cousins were known as brothers and sisters the name of cousin constituted a binding claim and our rigid morality forbade marriage between cousins in any known degree or in other words within the clan"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43359/5536-43359-0008.wav", "duration": 2.69, "text": "when she fell the whole race fell with her"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43359/5536-43359-0009.wav", "duration": 6.645, "text": "before this calamity came upon us you could not find anywhere a happier home than that created by the indian woman"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43359/5536-43359-0010.wav", "duration": 3.775, "text": "his daily devotions were more necessary to him than daily food"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43359/5536-43359-0011.wav", "duration": 19.275, "text": "whenever in the course of the daily hunt the red hunter comes upon a scene that is strikingly beautiful or sublime a black thundercloud with the rainbow's glowing arch above the mountain a white waterfall in the heart of a green gorge a vast prairie tinged with the blood red of sunset he pauses for an instant in the attitude of worship"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43359/5536-43359-0012.wav", "duration": 4.815, "text": "when he becomes an old man he loves to make a notable effort to prove his gratitude"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43359/5536-43359-0013.wav", "duration": 6.645, "text": "he cuts off the choicest morsel of the meat and casts it into the fire the purest and most ethereal element"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43359/5536-43359-0014.wav", "duration": 4.545, "text": "the hospitality of the wigwam is only limited by the institution of war"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43359/5536-43359-0015.wav", "duration": 4.625, "text": "our honor is the guarantee for his safety so long as he is within the camp"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43359/5536-43359-0016.wav", "duration": 6.05, "text": "love between man and woman is founded on the mating instinct and is not free from desire and self seeking"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43359/5536-43359-0017.wav", "duration": 5.51, "text": "but to have a friend and to be true under any and all trials is the mark of a man"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43359/5536-43359-0018.wav", "duration": 5.98, "text": "this bond is between man and man is usually formed in early youth and can only be broken by death"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43363/5536-43363-0000.wav", "duration": 2.82, "text": "reincarnation and the converse of spirits"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43363/5536-43363-0001.wav", "duration": 7.14, "text": "therefore he courts death in battle on the other hand he would regard it as disgraceful to be killed in a private quarrel"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43363/5536-43363-0002.wav", "duration": 7.02, "text": "the men blacken their faces and widows or bereaved parents sometimes gash their arms and legs till they are covered with blood"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43363/5536-43363-0003.wav", "duration": 10.21, "text": "giving themselves up wholly to their grief they are no longer concerned about any earthly possession and often give away all that they have to the first comers even to their beds and their home"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43363/5536-43363-0004.wav", "duration": 9.375, "text": "it was prepared by dressing in the finest clothes together with some personal possessions and ornaments wrapped in several robes and finally in a secure covering of raw hide"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43363/5536-43363-0005.wav", "duration": 16.56, "text": "as a special mark of respect the body of a young woman or a warrior was sometimes laid out in state in a new teepee with the usual household articles and even with a dish of food left beside it not that they supposed the spirit could use the implements or eat the food but merely as a last tribute"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43363/5536-43363-0006.wav", "duration": 11.985, "text": "if a man were slain in battle it was an old custom to place his body against a tree or rock in a sitting position always facing the enemy to indicate his undaunted defiance and bravery even in death"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43363/5536-43363-0007.wav", "duration": 9.9, "text": "at every meal time a dish of food was placed under it and some person of the same sex and age as the one who was gone must afterward be invited in to partake of the food"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43363/5536-43363-0008.wav", "duration": 10.29, "text": "at the end of a year from the time of death the relatives made a public feast and gave away the clothing and other gifts while the lock of hair was interred with appropriate ceremonies"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43363/5536-43363-0009.wav", "duration": 20.88, "text": "it is well known that the american indian had somehow developed occult power and although in the latter days there have been many impostors and allowing for the vanity and weakness of human nature it is fair to assume that there must have been some even in the old days yet there are well attested instances of remarkable prophecies and other mystic practice"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43363/5536-43363-0010.wav", "duration": 10.26, "text": "no doubt many predictions have been colored to suit the new age and unquestionably false prophets fakirs and conjurers have become the pest of the tribes during the transition period"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43363/5536-43363-0011.wav", "duration": 18.81, "text": "this was carried out to the letter"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43363/5536-43363-0012.wav", "duration": 3.265, "text": "this was only one of his remarkable prophecies"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43363/5536-43363-0013.wav", "duration": 7.425, "text": "another famous medicine man was born on the rum river about one hundred and fifty years ago and lived to be over a century old"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43363/5536-43363-0014.wav", "duration": 11.345, "text": "at the age of about seventy five years he saved his band from utter destruction at the hands of their ancestral enemies by suddenly giving warning received in a dream of the approach of a large war party"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43363/5536-43363-0015.wav", "duration": 4.74, "text": "five years later he repeated the service and again saved his people from awful slaughter"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43363/5536-43363-0016.wav", "duration": 6.825, "text": "there are many trustworthy men and men of christian faith to vouch for these and similar events occurring as foretold"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43363/5536-43363-0017.wav", "duration": 9.195, "text": "at another time when i was fourteen years old we had just left fort ellis on the assiniboine river and my youngest uncle had selected a fine spot for our night camp"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43363/5536-43363-0018.wav", "duration": 7.89, "text": "many of the indians believed that one may be born more than once and there were some who claimed to have full knowledge of a former incarnation"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43363/5536-43363-0019.wav", "duration": 7.25, "text": "there was a well known sioux war prophet who lived in the middle of the last century so that he is still remembered by the old men of his band"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43358/5536-43358-0000.wav", "duration": 3.175, "text": "the savage philosopher the dual mind"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43358/5536-43358-0001.wav", "duration": 9.875, "text": "the original attitude of the american indian toward the eternal the great mystery that surrounds and embraces us was as simple as it was exalted"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43358/5536-43358-0002.wav", "duration": 10.11, "text": "it was silent because all speech is of necessity feeble and imperfect therefore the souls of my ancestors ascended to god in wordless adoration"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43358/5536-43358-0003.wav", "duration": 6.04, "text": "none might exhort or confess or in any way meddle with the religious experience of another"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43358/5536-43358-0004.wav", "duration": 5.825, "text": "among us all men were created sons of god and stood erect as conscious of their divinity"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43358/5536-43358-0005.wav", "duration": 14.065, "text": "that solitary communion with the unseen which was the highest expression of our religious life is partly described in the word bambeday literally mysterious feeling which has been variously translated fasting and dreaming"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43358/5536-43358-0006.wav", "duration": 10.41, "text": "the first bambeday or religious retreat marked an epoch in the life of the youth which may be compared to that of confirmation or conversion in christian experience"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43358/5536-43358-0007.wav", "duration": 9.42, "text": "knowing that god sets no value upon material things he took with him no offerings or sacrifices other than symbolic objects such as paints and tobacco"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43358/5536-43358-0008.wav", "duration": 20.39, "text": "at the solemn hour of sunrise or sunset he took up his position overlooking the glories of earth and facing the great mystery and there he remained naked erect silent and motionless exposed to the elements and forces of his arming for a night and a day to two days and nights but rarely longer"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43358/5536-43358-0009.wav", "duration": 8.065, "text": "when he returned to the camp he must remain at a distance until he had again entered the vapor bath and prepared himself for intercourse with his fellows"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43358/5536-43358-0010.wav", "duration": 8.14, "text": "it was not then wholly from ignorance or improvidence that he failed to establish permanent towns and to develop a material civilization"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43358/5536-43358-0011.wav", "duration": 7.59, "text": "to the untutored sage the concentration of population was the prolific mother of all evils moral no less than physical"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43358/5536-43358-0012.wav", "duration": 3.385, "text": "in this type of prayer there was no beseeching of favor or help"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43358/5536-43358-0013.wav", "duration": 10.4, "text": "from the sun as the universal father proceeds the quickening principle in nature and in the patient and fruitful womb of our mother the earth are hidden embryos of plants and men"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43358/5536-43358-0014.wav", "duration": 2.83, "text": "this is the material or physical prayer"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43358/5536-43358-0015.wav", "duration": 5.96, "text": "nothing of the marvelous could astonish him as that a beast should speak or the sun stand still"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43358/5536-43358-0016.wav", "duration": 2.425, "text": "who may condemn his superstition"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43358/5536-43358-0017.wav", "duration": 13.805, "text": "here is the supreme mystery that is the essence of worship without which there can be no religion and in the presence of this mystery our attitude cannot be very unlike that of the natural philosopher who beholds with awe the divine in all creation"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43358/5536-43358-0018.wav", "duration": 12.065, "text": "in his own thought he rose superior to them he scorned them even as a lofty spirit absorbed in its stern task rejects the soft beds the luxurious food the pleasure worshiping dalliance of a rich neighbor"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/5536/43358/5536-43358-0019.wav", "duration": 5.26, "text": "the historians of the white race admit that the indian was never the first to repudiate his oath"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0000.wav", "duration": 7.93, "text": "they were not to leave it again till the tops of the wahiti ranges were lit with the first fires of day"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0001.wav", "duration": 3.825, "text": "they had one night in which to prepare for death"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0002.wav", "duration": 18.54, "text": "the meal ended"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0003.wav", "duration": 12.8, "text": "sleep which keeps all sorrow in abeyance soon weighed down their eyelids they slept in each other's arms overcome by exhaustion and prolonged watching"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0004.wav", "duration": 11.19, "text": "if it is decreed that we die to morrow let us die bravely like christian men ready to appear without terror before the supreme judge"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0005.wav", "duration": 6.1, "text": "god who reads our hearts knows that we had a noble end in view"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0006.wav", "duration": 4.005, "text": "glenarvan's voice firm till now faltered"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0007.wav", "duration": 6.77, "text": "john you have promised mary what i promised lady helena what is your plan"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0008.wav", "duration": 7.37, "text": "i believe said john that in the sight of god i have a right to fulfill that promise"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0009.wav", "duration": 8.3, "text": "my lord whichever of us survives the other will fulfill the wish of lady helena and mary grant"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0010.wav", "duration": 6.34, "text": "at last the major said my friends keep that to the last moment"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0011.wav", "duration": 6.595, "text": "the jailer may forget that he is on guard the prisoner never forgets that he is guarded"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0012.wav", "duration": 9.57, "text": "on that side descent was impossible and had it been possible the bottom was shut in by the enormous rock"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0013.wav", "duration": 3.975, "text": "listen said he motioning them to stoop"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0014.wav", "duration": 4.925, "text": "animal or man answered the major i will soon find out"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0015.wav", "duration": 20.5499375, "text": "wilson and olbinett joined their companions and all united to dig through the wall john with his dagger the others with stones taken from the ground or with their nails while mulrady stretched along the ground watched the native guard through a crevice of the matting"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0016.wav", "duration": 19.62, "text": "what could be the object"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0017.wav", "duration": 7.435, "text": "did they know of the existence of the prisoners or was it some private enterprise that led to the undertaking"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0018.wav", "duration": 15.38, "text": "their fingers bled but still they worked on after half an hour they had gone three feet deep they perceived by the increased sharpness of the sounds that only a thin layer of earth prevented immediate communication"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0019.wav", "duration": 10.18, "text": "john mangles inserting the blade of his poniard avoided the knife which now protruded above the soil but seized the hand that wielded it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0020.wav", "duration": 13.92, "text": "but softly as the name was breathed mary grant already awakened by the sounds in the hut slipped over toward glenarvan and seizing the hand all stained with earth she covered it with kisses"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0021.wav", "duration": 3.05, "text": "watch the savages outside said robert"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0022.wav", "duration": 4.805, "text": "round his body was rolled a long coil of flax rope"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154328/2803-154328-0023.wav", "duration": 6.59, "text": "my child my child murmured lady helena the savages did not kill you"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154320/2803-154320-0000.wav", "duration": 11.48, "text": "fortunately will halley was not a man in a hurry and did not use a press of canvas or his masts would inevitably have come down"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154320/2803-154320-0001.wav", "duration": 15.56, "text": "john mangles therefore hoped that the wretched hull would reach port without accident but it grieved him that his companions should have to suffer so much discomfort from the defective arrangements of the brig"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154320/2803-154320-0002.wav", "duration": 3.53, "text": "their friends did their best to amuse them"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154320/2803-154320-0003.wav", "duration": 6.475, "text": "their minds were so distracted at this change of route as to be quite unhinged"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154320/2803-154320-0004.wav", "duration": 12.005, "text": "much as they had been interested in his dissertation on the pampas or australia his lectures on new zealand fell on cold and indifferent ears"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154320/2803-154320-0005.wav", "duration": 4.77, "text": "his eyes wandered ceaselessly over the blank horizon"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154320/2803-154320-0006.wav", "duration": 19.62, "text": "what then my lord"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154320/2803-154320-0007.wav", "duration": 4.51, "text": "god keep us from such a meeting why john"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154320/2803-154320-0008.wav", "duration": 3.59, "text": "we could not even fly fly john"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154320/2803-154320-0009.wav", "duration": 2.765, "text": "yes my lord we should try in vain"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154320/2803-154320-0010.wav", "duration": 4.01, "text": "we would fight to the death of course but after that"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154320/2803-154320-0011.wav", "duration": 4.28, "text": "think of lady glenarvan think of mary grant"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154320/2803-154320-0012.wav", "duration": 9.81, "text": "will halley is a brute but i am keeping my eyes open and if the coast looks dangerous i will put the ship's head to sea again"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154320/2803-154320-0013.wav", "duration": 4.365, "text": "so that on that score there is little or no danger"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/154320/2803-154320-0014.wav", "duration": 5.29, "text": "but as to getting alongside the duncan god forbid"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/161169/2803-161169-0000.wav", "duration": 11.7, "text": "once there was a father who thought he would build for his children a beautiful home putting into it every thing they could need or desire throughout their lives"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/161169/2803-161169-0001.wav", "duration": 9.495, "text": "the sweetest perfumes floated through the air while thousands of birds answered the music of fountains with their songs"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/161169/2803-161169-0002.wav", "duration": 4.91, "text": "why did he give that so odd a shape or so strange a covering"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/161169/2803-161169-0003.wav", "duration": 10.14, "text": "and so through many questions and many experiments they learn at last how to use the contents of this one storehouse"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/161169/2803-161169-0004.wav", "duration": 11.225, "text": "the entrance is light because it opens so wide but we can see that the floor slopes downward and the way looks dark and narrow before us"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/161169/2803-161169-0005.wav", "duration": 16.795, "text": "walk down the sloping foot path now and be careful to keep out of the way of the little cars that are coming and going on each side of you loaded on one side and empty on the other and seeming to run up and down by themselves"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/161169/2803-161169-0006.wav", "duration": 8.47, "text": "look a little closer while our guide lets the light of his lamp fall upon the black wall at your side"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/161169/2803-161169-0007.wav", "duration": 12.715, "text": "see beneath your feet is the marking of great tree trunks lying aslant across the floor and the forms of gigantic palm leaves strewed among them"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/161169/2803-161169-0008.wav", "duration": 14.14, "text": "here is something different rounded like a nut shell you can split off one side and behold there is the nut lying snugly as does any chestnut in its bur"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/161169/2803-161169-0009.wav", "duration": 24.695, "text": "ferns and palms mosses and trees and animals all perfect all beautiful and yet all hidden away under this hill and turned into shining black coal now i can very well remember when i first saw a coal fire and how odd it looked to see what seemed to be burning stones"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/161169/2803-161169-0010.wav", "duration": 13.815, "text": "for when i was a little girl we always had logs of wood blazing in an open fireplace and so did many other people and coal was just coming into use for fuel"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/161169/2803-161169-0011.wav", "duration": 5.495, "text": "what should we have done if everybody had kept on burning wood to this day"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/161169/2803-161169-0012.wav", "duration": 15.785, "text": "these forests were of trees different in some ways from those we have now great ferns as tall as this house and mosses as high as little trees and palm leaves of enormous size"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/161169/2803-161169-0013.wav", "duration": 11.51, "text": "then the hills were piled up on top of it all but here and there some edge of a coal bed was tilted up and appeared above the ground"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/161169/2803-161169-0014.wav", "duration": 13.6, "text": "but by and by the wise men thought about it and said to themselves we must find out what useful purpose god made the gas for we know that he does not make any thing for harm only"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/161169/2803-161169-0015.wav", "duration": 13.115, "text": "it was only a trouble to the gas makers who had no use for it and even threw it away until some one more thoughtful than the others found out that water would not pass through it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/161169/2803-161169-0016.wav", "duration": 5.785, "text": "don't you see how many uses we have found for this refuse coal tar"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2803/161169/2803-161169-0017.wav", "duration": 8.01, "text": "when your hands or lips are cracked and rough from the cold does your mother ever put on glycerin to heal them"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0000.wav", "duration": 14.14, "text": "master and man dismounted from their beasts and as soon as they had settled themselves at the foot of the trees sancho who had had a good noontide meal that day let himself without more ado pass the gates of sleep"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0001.wav", "duration": 10.78, "text": "but don quixote whom his thoughts far more than hunger kept awake could not close an eye and roamed in fancy to and fro through all sorts of places"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0002.wav", "duration": 22.33, "text": "at one moment it seemed to him that he was in the cave of montesinos and saw dulcinea transformed into a country wench skipping and mounting upon her she ass again that the words of the sage merlin were sounding in his ears setting forth the conditions to be observed and the exertions to be made for the disenchantment of dulcinea"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0003.wav", "duration": 2.51, "text": "who is touching me and untrussing me"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0004.wav", "duration": 16.56, "text": "dulcinea is perishing thou art living on regardless i am dying of hope deferred therefore untruss thyself with a good will for mine it is here in this retired spot to give thee at least two thousand lashes"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0005.wav", "duration": 16.655, "text": "seeing this sancho got up and grappling with his master he gripped him with all his might in his arms giving him a trip with the heel stretched him on the ground on his back and pressing his right knee on his chest held his hands in his own so that he could neither move nor breathe"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0006.wav", "duration": 3.945, "text": "how now traitor exclaimed don quixote"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0007.wav", "duration": 3.55, "text": "dost thou revolt against thy master and natural lord"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0008.wav", "duration": 3.86, "text": "dost thou rise against him who gives thee his bread"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0009.wav", "duration": 14.485, "text": "don quixote gave his promise and swore by the life of his thoughts not to touch so much as a hair of his garments and to leave him entirely free and to his own discretion to whip himself whenever he pleased"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0010.wav", "duration": 15.735, "text": "sancho rose and removed some distance from the spot but as he was about to place himself leaning against another tree he felt something touch his head and putting up his hands encountered somebody's two feet with shoes and stockings on them"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0011.wav", "duration": 11.28, "text": "he trembled with fear and made for another tree where the very same thing happened to him and he fell a shouting calling upon don quixote to come and protect him"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0012.wav", "duration": 5.48, "text": "don quixote did so and asked him what had happened to him and what he was afraid of"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0013.wav", "duration": 4.715, "text": "sancho replied that all the trees were full of men's feet and legs"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0014.wav", "duration": 18.13, "text": "don quixote was on foot with his horse unbridled and his lance leaning against a tree and in short completely defenceless he thought it best therefore to fold his arms and bow his head and reserve himself for a more favourable occasion and opportunity"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0015.wav", "duration": 9.185, "text": "he was mounted upon a powerful horse and had on a coat of mail with four of the pistols they call petronels in that country at his waist"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0016.wav", "duration": 11.94, "text": "he saw that his squires for so they call those who follow that trade were about to rifle sancho panza but he ordered them to desist and was at once obeyed so the girdle escaped"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0017.wav", "duration": 17.325, "text": "he saw me he paid court to me i listened to him and unknown to my father i loved him for there is no woman however secluded she may live or close she may be kept who will not have opportunities and to spare for following her headlong impulses"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0018.wav", "duration": 7.32, "text": "in a word he pledged himself to be mine and i promised to be his without carrying matters any further"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0019.wav", "duration": 9.935, "text": "give me my horse and arms and wait for me here i will go in quest of this knight and dead or alive i will make him keep his word plighted to so great beauty"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0020.wav", "duration": 24.52, "text": "nobody need have any doubt about that said sancho for my master has a very happy knack of matchmaking it's not many days since he forced another man to marry who in the same way backed out of his promise to another maiden and if it had not been for his persecutors the enchanters changing the man's proper shape into a lacquey's the said maiden would not be one this minute"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0021.wav", "duration": 6.18, "text": "they made haste to overtake them which as the party moved slowly they were able to do with ease"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0022.wav", "duration": 26.9, "text": "the wounded gentleman opened his all but closed eyes and recognising claudia said i see clearly fair and mistaken lady that it is thou that hast slain me a punishment not merited or deserved by my feelings towards thee for never did i mean to nor could i wrong thee in thought or deed"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0023.wav", "duration": 11.07, "text": "it is not true then said claudia that thou wert going this morning to marry leonora the daughter of the rich balvastro"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0024.wav", "duration": 22.99, "text": "on perceiving this claudia when she had convinced herself that her beloved husband was no more rent the air with her sighs and made the heavens ring with her lamentations she tore her hair and scattered it to the winds she beat her face with her hands and showed all the signs of grief and sorrow that could be conceived to come from an afflicted heart"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0025.wav", "duration": 7.525, "text": "cruel reckless woman she cried how easily wert thou moved to carry out a thought so wicked"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0026.wav", "duration": 8.13, "text": "o husband whose unhappy fate in being mine hath borne thee from the marriage bed to the grave"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0027.wav", "duration": 10.395, "text": "the servants wept claudia swooned away again and again and the whole place seemed a field of sorrow and an abode of misfortune"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0028.wav", "duration": 10.46, "text": "claudia told him she meant to go to a monastery of which an aunt of hers was abbess where she intended to pass her life with a better and everlasting spouse"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0029.wav", "duration": 10.06, "text": "claudia would not on any account allow him to accompany her and thanking him for his offers as well as she could took leave of him in tears"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0030.wav", "duration": 6.905, "text": "sancho said they had but that three kerchiefs that were worth three cities were missing"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0031.wav", "duration": 2.8149375, "text": "what are you talking about man"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0032.wav", "duration": 5.5850625, "text": "said one of the bystanders i have got them and they are not worth three reals"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0033.wav", "duration": 17.78, "text": "at this instant one or two of those squires who were posted as sentinels on the roads to watch who came along them and report what passed to their chief came up and said senor there is a great troop of people not far off coming along the road to barcelona"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0034.wav", "duration": 8.065, "text": "what led me into it was a certain thirst for vengeance which is strong enough to disturb the quietest hearts"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0035.wav", "duration": 20.725, "text": "and if you have any desire to shorten the journey and put yourself easily in the way of salvation come with me and i will show you how to become a knight errant a calling wherein so many hardships and mishaps are encountered that if they be taken as penances they will lodge you in heaven in a trice"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0036.wav", "duration": 19.29, "text": "and now the squires despatched to make the prize came up bringing with them two gentlemen on horseback two pilgrims on foot and a coach full of women with some six servants on foot and on horseback in attendance on them and a couple of muleteers whom the gentlemen had with them"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0037.wav", "duration": 10.36, "text": "the captains showed plainly the concern they felt the regent's lady was downcast and the pilgrims did not at all enjoy seeing their property confiscated"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0038.wav", "duration": 9.65, "text": "the regent's lady ordered one of her servants to give the eighty crowns that had been assessed as her share at once for the captains had already paid down their sixty"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0039.wav", "duration": 14.15, "text": "one of the squires observed in his mixture of gascon and catalan this captain of ours would make a better friar than highwayman if he wants to be so generous another time let it be with his own property and not ours"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3576/138058/3576-138058-0040.wav", "duration": 6.69, "text": "they were all taken aback and not one of them dared to utter a word such deference did they pay him"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/286674/7850-286674-0000.wav", "duration": 8.455, "text": "a person would think that after a family had lived so long in a place all the neighbors would be fond of them yet it is not so"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/286674/7850-286674-0001.wav", "duration": 2.85, "text": "it is disgraceful"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/286674/7850-286674-0002.wav", "duration": 5.71, "text": "they thought the trouble came from bad bringing up or no bringing up at all"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/286674/7850-286674-0003.wav", "duration": 6.22, "text": "they always ate plain food and plenty of it and they never ate between meals"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/286674/7850-286674-0004.wav", "duration": 8.02, "text": "you would think that with six legs apiece and three joints in each leg they might walk quite fast yet they never did"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/286674/7850-286674-0005.wav", "duration": 7.7, "text": "they did not breathe it into their mouths or through gills but took it in through some openings in the back part of their bodies"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/286674/7850-286674-0006.wav", "duration": 3.3, "text": "both lips asked the larvae"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/286674/7850-286674-0007.wav", "duration": 3.455, "text": "well our lower lips anyway answered the nymph"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/286674/7850-286674-0008.wav", "duration": 2.75, "text": "our upper lips are so small they don't matter"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/286674/7850-286674-0009.wav", "duration": 7.19, "text": "they knew that whenever they stuck out their lower lips at the small fishes and bugs they swam away as fast as they could"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/286674/7850-286674-0010.wav", "duration": 12.855, "text": "indeed the lower lip of a dragon fly child might well frighten people for it is fastened on a long jointed arm like thing and has pincers on it with which it catches and holds its food"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/286674/7850-286674-0011.wav", "duration": 9.15, "text": "but sometimes he straightens the joint and holds his lip out before him and then its pincers catch hold of things he does this when he is hungry"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/286674/7850-286674-0012.wav", "duration": 4.02, "text": "scared dah who's afraid answered he"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/286674/7850-286674-0013.wav", "duration": 2.345, "text": "here comes the snapping turtle"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/286674/7850-286674-0014.wav", "duration": 7.78, "text": "sure enough there he came through the shallow water his wet back shell partly out of it and shining in the sunlight"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/286674/7850-286674-0015.wav", "duration": 3.53, "text": "they thought he might be going to take a nap after his dinner"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/286674/7850-286674-0016.wav", "duration": 11.145, "text": "he began to draw in his legs very very slowly and just as his great hard lower shell touched the mud the last larva crawled out under his tail"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/286674/7850-286674-0017.wav", "duration": 2.745, "text": "the nymphs had already gotten away"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/111771/7850-111771-0000.wav", "duration": 7.56, "text": "through the influence of hon thomas l hamer he was admitted at west point in eighteen thirty nine"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/111771/7850-111771-0001.wav", "duration": 6.65, "text": "at this time grant was not taken with war and probably evinced little interest in army tactics"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/111771/7850-111771-0002.wav", "duration": 8.32, "text": "grant acted as mustering officer until being commissioned colonel of the twenty first illinois volunteers he took the field"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/111771/7850-111771-0003.wav", "duration": 3.425, "text": "general halleck in speaking of this battle said"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/111771/7850-111771-0004.wav", "duration": 11.0050625, "text": "indeed if ever a general deserved honor grant had won it he had opened the mississippi to navigation and had captured nearly one hundred thousand prisoners and arms"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/111771/7850-111771-0005.wav", "duration": 3.295, "text": "he was now commander of all the federal forces"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/111771/7850-111771-0006.wav", "duration": 3.83, "text": "the capture of lee was a far more difficult undertaking"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/111771/7850-111771-0007.wav", "duration": 10.975, "text": "time wore away and on the ninth of april eighteen sixty five grant captured the confederate army under lee thus virtually ending the war"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/111771/7850-111771-0008.wav", "duration": 6.915, "text": "when his public services were finished he started in company with his wife son jesse and a few friends"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/111771/7850-111771-0009.wav", "duration": 8.3, "text": "his success seems to have been the outgrowth of hard study and ability to perform the most exhaustive labor without fatigue"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/73752/7850-73752-0000.wav", "duration": 3.155, "text": "ferdinand meditates over his good fortune"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/73752/7850-73752-0001.wav", "duration": 8.07, "text": "in moments of deep feeling alike sudden bursts of prosperity as in darker hours man must be alone"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/73752/7850-73752-0002.wav", "duration": 9.11, "text": "it requires some self communion to prepare ourselves for good fortune as well as to encounter difficulty and danger and disgrace"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/73752/7850-73752-0003.wav", "duration": 28.945, "text": "this violent and triumphant revolution in his prospects and his fortunes was hardly yet completely comprehended by our friend ferdinand armine and when he had left a note for the generous mirabel whose slumbers he would not disturb at this early hour even with good news he strolled along up charles street and to the park in one of those wild and joyous reveries in which we brood over coming bliss and create a thousand glorious consequences"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/73752/7850-73752-0004.wav", "duration": 3.865, "text": "ferdinand felt his freedom as well as his happiness"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/73752/7850-73752-0005.wav", "duration": 19.26, "text": "it was indeed her handwriting"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/73752/7850-73752-0006.wav", "duration": 10.075, "text": "restless with impending joy he sauntered to the bridge and leant over the balustrade gazing on the waters in charmed and charming vacancy"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/73752/7850-73752-0007.wav", "duration": 10.275, "text": "how many incidents how many characters how many feelings flitted over his memory of what sweet and bitter experience did he not chew the cud"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/73752/7850-73752-0008.wav", "duration": 10.61, "text": "four and twenty hours ago and he deemed himself the most miserable and forlorn of human beings and now all the blessings of the world seemed showered at his feet"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/73752/7850-73752-0009.wav", "duration": 7.345, "text": "the most gifted individuals in the land emulated each other in proving which entertained for him the most sincere affection"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/73752/7850-73752-0010.wav", "duration": 14.04, "text": "he could not flatter himself that he indeed merited such singular blessings and yet with all his faults which with him were but the consequences of his fiery youth ferdinand had been faithful to henrietta"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/73752/7850-73752-0011.wav", "duration": 2.96, "text": "his constancy to her was now rewarded"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/73752/7850-73752-0012.wav", "duration": 4.38, "text": "as for his friends the future must prove his gratitude to them"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/73752/7850-73752-0013.wav", "duration": 2.58, "text": "it was indeed dancing on a volcano"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/73752/7850-73752-0014.wav", "duration": 2.475, "text": "and now all had ended so happily"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/73752/7850-73752-0015.wav", "duration": 7.675, "text": "was it not all a dream of his own creation while his eye had been fixed in abstraction on that bright and flowing river"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/73752/7850-73752-0016.wav", "duration": 3.59, "text": "he might be enchanted but that was the talisman"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/73752/7850-73752-0017.wav", "duration": 5.97, "text": "in the present unsettled though hopeful state of affairs ferdinand would not go home"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/73752/7850-73752-0018.wav", "duration": 28.4, "text": "in exactly ten minutes it is in the power of every man to free himself from all the tumult of the world the pangs of love the throbs of ambition the wear and tear of play the recriminating boudoir the conspiring club the rattling hell and find himself in a sublime sylvan solitude superior to the cedars of lebanon and inferior only in extent to the chestnut forests of anatolia"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/73752/7850-73752-0019.wav", "duration": 3.075, "text": "is papa alone enquired miss temple"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0000.wav", "duration": 4.175, "text": "some are wonderfully wrought pretty little homes for birdikins"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0001.wav", "duration": 4.335, "text": "indeed it is not a nest at all only the beginning of one"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0002.wav", "duration": 4.29, "text": "and there is an old story about this which i shall tell you"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0003.wav", "duration": 3.205, "text": "oh what shall we do for a home"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0004.wav", "duration": 8.345, "text": "and the poor silly things ruffled up their feathers and looked miserable as only a little bird can look when it is unhappy"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0005.wav", "duration": 20.43, "text": "she was indeed a clever bird"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0006.wav", "duration": 7.54, "text": "she popped into her new house and sat there comfortably peering out through the window slits with her sharp little eyes"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0007.wav", "duration": 4.31, "text": "and she saw the other birds hopping about and twittering helplessly"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0008.wav", "duration": 6.11, "text": "then all the other birds chirped eagerly yes yes let us ask her to teach us"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0009.wav", "duration": 8.705, "text": "so in a great company they came fluttering hopping twittering up to the elm tree where mother magpie nestled comfortably in her new house"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0010.wav", "duration": 12.06, "text": "o wise mother magpie dear mother magpie they cried teach us how to build our nests like yours for it is growing night and we are tired and sleepy"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0011.wav", "duration": 7.535, "text": "the magpie said she would teach them if they would be a patient diligent obedient class of little birds"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0012.wav", "duration": 4.275, "text": "and where each bird perched there it was to build its nest"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0013.wav", "duration": 6.04, "text": "she began to show them how to weave the bits of things together into nests as they should be made"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0014.wav", "duration": 7.965, "text": "and some of the birds who were attentive and careful soon saw how it was done and started nice homes for themselves"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0015.wav", "duration": 2.88, "text": "i thought that was the way to begin"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0016.wav", "duration": 3.305, "text": "certainly of course screamed the jackdaw"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0017.wav", "duration": 8.71, "text": "here wood pigeon said mother magpie you must place those sticks through and across criss cross criss cross so"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0018.wav", "duration": 4.72, "text": "criss cross criss cross so interrupted the wood pigeon"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0019.wav", "duration": 5.485, "text": "you say you know all about it then go on and finish your nests by yourselves"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0020.wav", "duration": 19.5744375, "text": "much luck may you have"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0021.wav", "duration": 7.8650625, "text": "and away she flew to her own cosy nest in the elm tree where she was soon fast asleep forgetting all about the matter"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0022.wav", "duration": 3.85, "text": "but the wood pigeon was in the worst case of them all"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7850/281318/7850-281318-0023.wav", "duration": 5.21, "text": "for she had only the foundation laid criss cross as the magpie had shown her"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0000.wav", "duration": 9.16, "text": "grant was only a few miles away but although commander in chief he knew nothing of the hardest fought battle of the civil war until it was over"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0001.wav", "duration": 2.8, "text": "my own regiment was in the advance"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0002.wav", "duration": 3.045, "text": "our brigade was fearfully outnumbered"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0003.wav", "duration": 9.175, "text": "there were no breastworks yet that one little brigade of hamilton's division stood there in the open and repulsed assault after assault"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0004.wav", "duration": 6.015, "text": "not balaklava nor the alma saw such fighting it was a duel to the death"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0005.wav", "duration": 5.56, "text": "no battery in the whole four years war lost so many men in so short a time"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0006.wav", "duration": 9.4, "text": "one daring rebel was shot down and bayoneted clear behind the line of company b where he had broken through to seize the flag of my regiment"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0007.wav", "duration": 6.48, "text": "that night the enemy slipped away leaving hundreds and hundreds of his dead and wounded on the field"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0008.wav", "duration": 7.19, "text": "with a few lanterns our men then went about and tried to gather up the wounded the dead were left till morning"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0009.wav", "duration": 4.045, "text": "it was not a question who was dead or wounded but who was not"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0010.wav", "duration": 4.525, "text": "fifteen officers of our little half regiment were dead or wounded"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0011.wav", "duration": 6.425, "text": "i remained awake all night talking with a comrade who shared my blanket with me poor jimmy king"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0012.wav", "duration": 5.155, "text": "he survived the war only to be murdered later on a plantation in mississippi"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0013.wav", "duration": 10.025, "text": "when morning came the firing opened and for all that day the battle raged fiercely at the left and center left we getting the worst of it too"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0014.wav", "duration": 7.49, "text": "that evening an order came for us hamilton's division to assault the enemy's left flank at midnight"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0015.wav", "duration": 7.355, "text": "under the same quiet moonlight and only six hundred yards away from us also lay the victorious rebel army"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0016.wav", "duration": 10.205, "text": "once in the night i slipped away from the bivouac and hurried to the old tishimingo hotel to see a lieutenant of my company who had been shot through the breast"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0017.wav", "duration": 15.48, "text": "i could not help my friend"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0018.wav", "duration": 4.29, "text": "go back to the regiment he said smiling all will be needed"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0019.wav", "duration": 5.225, "text": "my friend with many others was being carried out to die elsewhere"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0020.wav", "duration": 18.81, "text": "i hastened back to the lines"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0021.wav", "duration": 4.655, "text": "the cloud of rebels we had seen divided itself into three columns"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0022.wav", "duration": 5.38, "text": "a perfect blaze of close range musketry too mowed them down like grass"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0023.wav", "duration": 4.78, "text": "they lay in heaps of dozens even close up to the works"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0024.wav", "duration": 6.135, "text": "that night i stood guard under an oak tree on the battlefield among the unburied dead"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0025.wav", "duration": 5.235, "text": "indeed we of the rank and file had little confidence in grant in those days"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0026.wav", "duration": 3.55, "text": "rosecrans protested it was in vain"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0027.wav", "duration": 6.675, "text": "it required months and great events to make grant the hero of the army which he afterward became"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0028.wav", "duration": 3.87, "text": "for some reason the dead at hatchie bridge were not buried"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/105575/7976-105575-0029.wav", "duration": 11.79, "text": "a week after the battle my brother rode by there on a cavalry expedition and made the horrible discovery that hogs were eating up the bodies of our dead heroes that too was war"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0000.wav", "duration": 15.22, "text": "he had little enough to break or bite and once when there was a great famine in the land he could hardly procure even his daily bread and as he lay thinking in his bed one night he sighed and said to his wife what will become of us"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0001.wav", "duration": 4.72, "text": "how can we feed our children when we have no more than we can eat ourselves"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0002.wav", "duration": 7.12, "text": "oh you simpleton said she then we must all four die of hunger you had better plane the coffins for us"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0003.wav", "duration": 6.1, "text": "but she left him no peace till he consented saying ah but i shall miss the poor children"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0004.wav", "duration": 7.26, "text": "and as soon as their parents had gone to sleep he got up put on his coat and unbarring the back door went out"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0005.wav", "duration": 7.795, "text": "ah father said hansel i am looking at my white cat sitting upon the roof of the house and trying to say good bye"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0006.wav", "duration": 7.815, "text": "but in reality hansel was not looking at a cat but every time he stopped he dropped a pebble out of his pocket upon the path"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0007.wav", "duration": 6.705, "text": "but her husband felt heavy at heart and thought it were better to share the last crust with the children"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0008.wav", "duration": 8.555, "text": "early in the morning the stepmother came and pulled them out of bed and gave them each a slice of bread which was still smaller than the former piece"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0009.wav", "duration": 6.725, "text": "we are going into the forest to hew wood and in the evening when we are ready we will come and fetch you again"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0010.wav", "duration": 10.86, "text": "hansel thought the roof tasted very nice and so he tore off a great piece while grethel broke a large round pane out of the window and sat down quite contentedly"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0011.wav", "duration": 8.82, "text": "come in and stop with me and no harm shall come to you and so saying she took them both by the hand and led them into her cottage"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0012.wav", "duration": 16.28, "text": "the old woman behaved very kindly to them but in reality she was a wicked old witch who way laid children and built the breadhouse in order to entice them in but as soon as they were in her power she killed them cooked and ate them and made a great festival of the day"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0013.wav", "duration": 9.32, "text": "then she took up hansel with her rough hand and shut him up in a little cage with a lattice door and although he screamed loudly it was of no use"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0014.wav", "duration": 6.295, "text": "grethel began to cry but it was all useless for the old witch made her do as she wanted"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0015.wav", "duration": 7.75, "text": "grethel she cried in a passion get some water quickly be hansel fat or lean this morning i will kill and cook him"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0016.wav", "duration": 3.135, "text": "dear good god help us now she prayed"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0017.wav", "duration": 13.26, "text": "creep in said the witch and see if it is hot enough and then we will put in the bread but she intended when grethel got in to shut up the oven and let her bake so that she might eat her as well as hansel"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0018.wav", "duration": 2.46, "text": "see i could even get in myself"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0019.wav", "duration": 2.825, "text": "and she got up and put her head into the oven"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0020.wav", "duration": 8.535, "text": "and now as there was nothing to fear they went back to the witch's house where in every corner were caskets full of pearls and precious stones"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110523/7976-110523-0021.wav", "duration": 5.035, "text": "then they began to run and rushing into the house they fell upon their father's neck"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0000.wav", "duration": 3.5499375, "text": "long ago there lived a merchant who had three daughters"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0001.wav", "duration": 7.3500625, "text": "every year at a certain day of a certain month he went away to a distant city to collect money on an account"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0002.wav", "duration": 7.845, "text": "how do you know asked their father i am older and wiser than you are and i know that there are many evils which might come upon you"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0003.wav", "duration": 9.23, "text": "when it was evening he led his band into a nearby street and in his disguise approached the merchant's house he knocked at the door"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0004.wav", "duration": 4.735, "text": "have pity upon a poor unfortunate one he called out"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0005.wav", "duration": 5.21, "text": "let me enter i pray you to pass the night under your roof"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0006.wav", "duration": 10.62, "text": "it's surely a terrible storm outside said the merchant's eldest daughter as the wind rattled the tiles of the roof and the rain beat in torrents against the doors and windows"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0007.wav", "duration": 2.74, "text": "he is old as well as poor she said"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0008.wav", "duration": 5.295, "text": "if we decide to show mercy to this poor beggar it is not for you to oppose it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0009.wav", "duration": 4.81, "text": "bui we should not forget our promise to our father cried the youngest daughter"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0010.wav", "duration": 6.61, "text": "however in spite of all she could say the elder sisters opened the door and admitted the beggar"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0011.wav", "duration": 5.47, "text": "it is a fearful night to send away a beggar said the eldest sister while they were eating"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0012.wav", "duration": 8.295, "text": "while they were talking the beggar had taken the apples which the girls were to eat for dessert and had sprinkled a sleeping powder over them"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0013.wav", "duration": 6.555, "text": "the two eldest ate their apples but the youngest could not eat that night she threw the apple away"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0014.wav", "duration": 5.21, "text": "she did not stir and he knew that the sleeping powder had thoroughly done its work"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0015.wav", "duration": 5.35, "text": "then she heard him go down the stairway and unbolt the heavy doors which led into the store"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0016.wav", "duration": 4.18, "text": "it was the youngest one who deceived me cried the robber chieftain"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0017.wav", "duration": 2.685, "text": "perhaps you can outwit her yet cried another"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0018.wav", "duration": 8.075, "text": "the merchant's daughter at first did not answer but as he kept on calling to her she finally asked him what it was that he wanted"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0019.wav", "duration": 2.745, "text": "i promise you i will do you no harm"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0020.wav", "duration": 2.54, "text": "you shall not come into my father's house"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0021.wav", "duration": 3.365, "text": "pass the charm out to me then said the robber"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0022.wav", "duration": 4.02, "text": "when she returned his hand was sticking through the hole in the door"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0023.wav", "duration": 3.44, "text": "the cries and curses of the robbers filled the air"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0024.wav", "duration": 3.15, "text": "they tried in vain to break down the great doors"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/7976/110124/7976-110124-0025.wav", "duration": 2.59, "text": "all my worries about you were foolish"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149214/2086-149214-0000.wav", "duration": 9.81, "text": "the narrative it may be is woven of so humble a texture as to require this advantage and at the same time to render it the more difficult of attainment"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149214/2086-149214-0001.wav", "duration": 6.97, "text": "in good faith however he is not sufficiently imaginative to flatter himself with the slightest hope of this kind"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149214/2086-149214-0002.wav", "duration": 16.745, "text": "the author has considered it hardly worth his while therefore relentlessly to impale the story with its moral as with an iron rod or rather as by sticking a pin through a butterfly thus at once depriving it of life and causing it to stiffen in an ungainly and unnatural attitude"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149214/2086-149214-0003.wav", "duration": 8.9949375, "text": "if permitted by the historical connection which though slight was essential to his plan the author would very willingly have avoided anything of this nature"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149214/2086-149214-0004.wav", "duration": 15.22, "text": "he trusts not to be considered as unpardonably offending by laying out a street that infringes upon nobody's private rights and appropriating a lot of land which had no visible owner and building a house of materials long in use for constructing castles in the air"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0000.wav", "duration": 12.095, "text": "the enclosure had formerly been very extensive but was now contracted within small compass and hemmed about partly by high wooden fences and partly by the outbuildings of houses that stood on another street"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0001.wav", "duration": 19.78, "text": "the white double rosebush had evidently been propped up anew against the house since the commencement of the season and a pear tree and three damson trees which except a row of currant bushes constituted the only varieties of fruit bore marks of the recent amputation of several superfluous or defective limbs"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0002.wav", "duration": 16.01, "text": "there were also a few species of antique and hereditary flowers in no very flourishing condition but scrupulously weeded as if some person either out of love or curiosity had been anxious to bring them to such perfection as they were capable of attaining"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0003.wav", "duration": 22.81, "text": "summer squashes almost in their golden blossom cucumbers now evincing a tendency to spread away from the main stock and ramble far and wide two or three rows of string beans and as many more that were about to festoon themselves on poles tomatoes occupying a site so sheltered and sunny that the plants were already gigantic and promised an early and abundant harvest"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0004.wav", "duration": 7.22, "text": "phoebe wondered whose care and toil it could have been that had planted these vegetables and kept the soil so clean and orderly"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0005.wav", "duration": 9.09, "text": "bees too strange to say had thought it worth their while to come hither possibly from the range of hives beside some farm house miles away"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0006.wav", "duration": 10.35, "text": "this was a fountain set round with a rim of old mossy stones and paved in its bed with what appeared to be a sort of mosaic work of variously colored pebbles"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0007.wav", "duration": 5.24, "text": "it now contained only chanticleer his two wives and a solitary chicken"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0008.wav", "duration": 8.89, "text": "it was evident that the race had degenerated like many a noble race besides in consequence of too strict a watchfulness to keep it pure"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0009.wav", "duration": 10.6, "text": "these feathered people had existed too long in their distinct variety a fact of which the present representatives judging by their lugubrious deportment seemed to be aware"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0010.wav", "duration": 13.95, "text": "they kept themselves alive unquestionably and laid now and then an egg and hatched a chicken not for any pleasure of their own but that the world might not absolutely lose what had once been so admirable a breed of fowls"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0011.wav", "duration": 19.43, "text": "the distinguishing mark of the hens was a crest of lamentably scanty growth in these latter days but so oddly and wickedly analogous to hepzibah's turban that phoebe to the poignant distress of her conscience but inevitably was led to fancy a general resemblance betwixt these forlorn bipeds and her respectable relative"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0012.wav", "duration": 14.995, "text": "the chicken crept through the pales of the coop and ran with some show of liveliness to her feet while chanticleer and the ladies of his household regarded her with queer sidelong glances and then croaked one to another as if communicating their sage opinions of her character"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0013.wav", "duration": 17.57, "text": "so wise as well as antique was their aspect as to give color to the idea not merely that they were the descendants of a time honored race but that they had existed in their individual capacity ever since the house of the seven gables was founded and were somehow mixed up with its destiny"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0014.wav", "duration": 9.58, "text": "he held a hoe in his hand and while phoebe was gone in quest of the crumbs had begun to busy himself with drawing up fresh earth about the roots of the tomatoes"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0015.wav", "duration": 8.19, "text": "they have known me much longer but never honor me with any familiarity though hardly a day passes without my bringing them food"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0016.wav", "duration": 7.52, "text": "miss hepzibah i suppose will interweave the fact with her other traditions and set it down that the fowls know you to be a pyncheon"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0017.wav", "duration": 8.7, "text": "ah but these hens answered the young man these hens of aristocratic lineage would scorn to understand the vulgar language of a barn yard fowl"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0018.wav", "duration": 6.83, "text": "i prefer to think and so would miss hepzibah that they recognize the family tone for you are a pyncheon"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0019.wav", "duration": 13.18, "text": "my name is phoebe pyncheon said the girl with a manner of some reserve for she was aware that her new acquaintance could be no other than the daguerreotypist of whose lawless propensities the old maid had given her a disagreeable idea"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0020.wav", "duration": 2.93, "text": "i turn up the earth by way of pastime"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0021.wav", "duration": 3.335, "text": "it is like a bandage over one's eyes to come into it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0022.wav", "duration": 9.265, "text": "if you would permit me said the artist looking at phoebe i should like to try whether the daguerreotype can bring out disagreeable traits on a perfectly amiable face"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0023.wav", "duration": 7.365, "text": "most of my likenesses do look unamiable but the very sufficient reason i fancy is because the originals are so"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0024.wav", "duration": 3.805, "text": "there is a wonderful insight in heaven's broad and simple sunshine"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0025.wav", "duration": 10.255, "text": "while we give it credit only for depicting the merest surface it actually brings out the secret character with a truth that no painter would ever venture upon even could he detect it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0026.wav", "duration": 4.81, "text": "yet the original wears to common eyes a very different expression"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0027.wav", "duration": 4.245, "text": "he exhibited a daguerreotype miniature in a morocco case"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0028.wav", "duration": 2.855, "text": "phoebe merely glanced at it and gave it back"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0029.wav", "duration": 5.58, "text": "i can assure you that this is a modern face and one which you will very probably meet"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0030.wav", "duration": 8.1, "text": "the sun as you see tells quite another story and will not be coaxed out of it after half a dozen patient attempts on my part"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0031.wav", "duration": 8.58, "text": "here we have the man sly subtle hard imperious and withal cold as ice look at that eye"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0032.wav", "duration": 3.76, "text": "and yet if you could only see the benign smile of the original"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0033.wav", "duration": 7.435, "text": "well i don't wish to see it any more observed phoebe turning away her eyes it is certainly very like the old portrait"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0034.wav", "duration": 5.91, "text": "if the original is still in the world i think he might defy the sun to make him look stern and hard"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0035.wav", "duration": 10.5499375, "text": "is there nothing wild in the eye continued holgrave so earnestly that it embarrassed phoebe as did also the quiet freedom with which he presumed on their so recent acquaintance"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0036.wav", "duration": 6.32, "text": "it is nonsense said phoebe a little impatiently for us to talk about a picture which you have never seen"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0037.wav", "duration": 4.835, "text": "since you are a friend of my cousin hepzibah's you should ask her to show you the picture"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0038.wav", "duration": 4.35, "text": "so we will be fellow laborers somewhat on the community system"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0039.wav", "duration": 2.48, "text": "she did not altogether like him"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0040.wav", "duration": 6.7, "text": "oh rejoined the daguerreotypist because like an old lady's cup of tea it is water bewitched"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0041.wav", "duration": 14.805, "text": "she was indistinctly aware however that the gaunt figure of the old gentlewoman was sitting in one of the straight backed chairs a little withdrawn from the window the faint gleam of which showed the blanched paleness of her cheek turned sideways towards a corner"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0042.wav", "duration": 2.84, "text": "but put it on the table in the corner of the passage"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0043.wav", "duration": 2.77, "text": "what an instrument is the human voice"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0044.wav", "duration": 3.95, "text": "how wonderfully responsive to every emotion of the human soul"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0045.wav", "duration": 4.545, "text": "fewer words than before but with the same mysterious music in them"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0046.wav", "duration": 3.415, "text": "pray go to bed for i am sure you must need rest"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0047.wav", "duration": 3.92, "text": "i will sit in the parlor awhile and collect my thoughts"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0048.wav", "duration": 11.31, "text": "while thus dismissing her the maiden lady stept forward kissed phoebe and pressed her to her heart which beat against the girl's bosom with a strong high and tumultuous swell"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2086/149220/2086-149220-0049.wav", "duration": 11.605, "text": "at some uncertain period in the depths of night and as it were through the thin veil of a dream she was conscious of a footstep mounting the stairs heavily but not with force and decision"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0000.wav", "duration": 20.995, "text": "the last strains of the ill treated ill fated intermezzo had died away and after them had died away also the rumbling of the wheels of the murderous barrel organ that had so gaily executed that along with the nine other tunes of its repertory to the admiration of the housemaid at the window of the house opposite and the crowing delight of the two babies next door"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0001.wav", "duration": 14.46, "text": "the young man drew a deep breath of relief and lighted the wax candles in the solid silver candlesticks on his writing table for now the late summer dusk was falling and that organ please heaven made full the measure of the day's appointed torture"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0002.wav", "duration": 5.13, "text": "then there was silence then a sigh and the sound of light moving feet on the gravel"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0003.wav", "duration": 2.49, "text": "and again he listened with a quiet pleasure"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0004.wav", "duration": 3.17, "text": "never had any act seemed so impossible"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0005.wav", "duration": 4.515, "text": "there is a seat in the garden at the side of the house again she hesitated"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0006.wav", "duration": 4.6, "text": "then she turned towards the quarter indicated and disappeared round the laurel bushes"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0007.wav", "duration": 5.125, "text": "look here he said this is all nonsense you know you are tired out and there's something wrong what is it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0008.wav", "duration": 2.96, "text": "do drink this and then tell me perhaps i can help you"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0009.wav", "duration": 2.57, "text": "he hurriedly cut cake and pressed it upon her"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0010.wav", "duration": 5.535, "text": "he had no time to think but he was aware that this was the most exciting adventure that had ever happened to him"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0011.wav", "duration": 4.325, "text": "is it only that you're poor why that's nothing i'm poor too she laughed"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0012.wav", "duration": 2.565, "text": "her little foot tapped the gravel impatiently"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0013.wav", "duration": 10.815, "text": "he told me to stay on at the hotel and i did and then one night when i was at the theatre my maid a horrid french thing we got in paris packed up all my trunks and took all my money and paid the bill and went"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0014.wav", "duration": 20.16, "text": "she said again you are kind"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0015.wav", "duration": 8.32, "text": "well then i went into lodgings that wicked woman had left me one street suit and to day they turned me out because my money was all gone"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0016.wav", "duration": 4.215, "text": "let me think he said oh how glad i am that you happened to come this way"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0017.wav", "duration": 7.475, "text": "i shall lock up all the doors and windows in the house and then i shall give you my latch key and you can let yourself in and stay the night here there is no one in the house"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0018.wav", "duration": 4.405, "text": "i will catch the night train and bring my mother up to morrow then we will see what can be done"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0019.wav", "duration": 7.67, "text": "you see papa's so very rich and at home they expect me to to get acquainted with dukes and things and she stopped"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0020.wav", "duration": 6.735, "text": "it wasn't i who said that said the girl smiling but that's so anyhow and then she sighed"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0021.wav", "duration": 3.785, "text": "all the same he added irrelevantly you shall have the latch key"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0022.wav", "duration": 10.11, "text": "you are kind she said for the third time and reached her hand out to him he did not kiss it then only took it in his and felt how small and cold it was then it was taken away"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0023.wav", "duration": 11.85, "text": "the lady and the guitar certainly passed the night at hill view villa but when his mother very angry and very frightened came up with him at about noon the house looked just as usual and no one was there but the charwoman"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0024.wav", "duration": 9.365, "text": "the silver is all right thank goodness she said but your banjo girl has taken a pair of your sister's silk stockings and those new shoes of hers with the silver buckles and she's left these"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93306/6345-93306-0025.wav", "duration": 11.55, "text": "it was plain that his castanet girl his mother and sister took a pleasure in crediting her daily with some fresh and unpleasing instrument could have had neither taste money nor honesty to such a point as this"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0000.wav", "duration": 9.88, "text": "she herself should have been a poem a lyric in a white gown and green scarf coming to him through the long grass under the blossomed boughs"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0001.wav", "duration": 8.625, "text": "her hands should have been full of bluebells and she should have held them up to his face in maidenly defence as he sprang forward to take her in his arms"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0002.wav", "duration": 7.55, "text": "you see that she knew exactly how a tryst is conducted in the pages of the standard poets and of the cheaper weekly journals"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0003.wav", "duration": 5.535, "text": "she had to the full limit allowed of her reading and her environment the literary sense"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0004.wav", "duration": 4.415, "text": "and curiously enough she was hardly curious at all about what he might have to say"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0005.wav", "duration": 10.36, "text": "she only wished for may and the orchard instead of january and the dingy dusty waiting room the plain faced preoccupied travellers the dim desolate weather"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0006.wav", "duration": 3.065, "text": "the setting of the scene seemed to her all important"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0007.wav", "duration": 4.37, "text": "it was bitterly cold but the embankment was more romantic than a railway carriage"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0008.wav", "duration": 4.03, "text": "he had been late he had offered no excuse no explanation"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0009.wav", "duration": 6.125, "text": "but here the only thing that occurred to her was to stop and look in one of the shops till he should ask her what she was looking at"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0010.wav", "duration": 4.45, "text": "the keen wind thrust itself even inside the high collar of her jacket"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0011.wav", "duration": 19.17, "text": "her hands and feet were aching with cold"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0012.wav", "duration": 5.925, "text": "she would have shared his sorrow and shown herself half wife half angel from heaven in this dark hour"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0013.wav", "duration": 2.575, "text": "she said how frightfully cold it is"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0014.wav", "duration": 6.095, "text": "and yesterday i had a letter from her and she seems to expect to think and i thought i ought to tell you darling"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0015.wav", "duration": 6.025, "text": "a shock of unbelievable relief tingled through her so that was all what was it compared with her fears"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0016.wav", "duration": 6.72, "text": "what opinion would he form of the purity of her mind the innocence of her soul if an incident like this failed to shock her deeply"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0017.wav", "duration": 6.585, "text": "following the tingle of relief came a sharp sickening pinch of jealousy and mortification these inspired her"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0018.wav", "duration": 6.2, "text": "i don't wonder you were afraid to tell me she began you don't love me you've never loved me i was an idiot to believe you did"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0019.wav", "duration": 3.815, "text": "those four true words wounded her more than all the rest"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0020.wav", "duration": 3.16, "text": "couldn't help it then how can i ever trust you"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0021.wav", "duration": 19.485, "text": "do you think i'm not sorry now"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0022.wav", "duration": 2.57, "text": "no it's only painful for both of us"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0023.wav", "duration": 5.53, "text": "i didn't think a decent man could do such things she was pulling on her gloves go home and gloat over it all"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0024.wav", "duration": 2.535, "text": "he stood up suddenly do you mean it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0025.wav", "duration": 2.935, "text": "are you really going to throw me over for a thing like this"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0026.wav", "duration": 5.19, "text": "and he strode down between the marble tables and out by the swing door it was a very good exit"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0027.wav", "duration": 6.425, "text": "at the corner he remembered that he had gone away without paying for the tea and his natural impulse was to go back and remedy that error"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0028.wav", "duration": 15.52, "text": "he checked the silly impulse"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/93302/6345-93302-0029.wav", "duration": 13.135, "text": "so he enlisted and went to south africa and he never came home covered with medals and glory which was rather his idea to the few simple words of explanation that would have made all straight and repaid her and him for all the past"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0000.wav", "duration": 11.055, "text": "when she said good night to beenie and went to her chamber over that where the loved parent and friend would fall asleep no more she felt as if she went walking along to her tomb"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0001.wav", "duration": 21.93, "text": "at the time mary had noted nothing of these things now she saw them all as for the first time in minute detail while slowly she went up the stair and through the narrowed ways and heard the same wind that raved alike about the new grave and the old house into which latter for all the bales banked against the walls it found many a chink of entrance"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0002.wav", "duration": 10.045, "text": "when she opened the door of it the bright fire which beenie undesired had kindled there startled her the room looked unnatural uncanny because it was cheerful"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0003.wav", "duration": 8.78, "text": "she stood for a moment on the hearth and in sad dreamy mood listened to the howling swoops of the wind making the house quiver and shake"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0004.wav", "duration": 6.05, "text": "this was her dream as nearly as she could recall it when she came to herself after waking from it with a cry"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0005.wav", "duration": 7.665, "text": "she was one of a large company at a house where she had never been before a beautiful house with a large garden behind"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0006.wav", "duration": 9.125, "text": "it was a summer night and the guests were wandering in and out at will and through house and garden amid lovely things of all colors and odors"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0007.wav", "duration": 5.84, "text": "but she knew nobody and wandered alone in the garden oppressed with something she did not understand"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0008.wav", "duration": 3.205, "text": "at the end of it she was in a place of tombs"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0009.wav", "duration": 12.385, "text": "she entered and the servants soft footed and silent were busy carrying away the vessels of hospitality and restoring order as if already they prepared for another company on the morrow no one heeded her"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0010.wav", "duration": 3.985, "text": "she was lost lost utterly with an eternal loss"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0011.wav", "duration": 8.83, "text": "she knew nothing of the place had nowhere to go nowhere she wanted to go had not a thought to tell her what question to ask if she met a living soul"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0012.wav", "duration": 2.815, "text": "but living soul there could be none to meet"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0013.wav", "duration": 6.295, "text": "she had lost him years and years before and now she saw him he was there and she knew him"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0014.wav", "duration": 3.085, "text": "he came to her side and she gave him no greeting"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0015.wav", "duration": 20.61, "text": "i know it and there is no waking"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0016.wav", "duration": 5.78, "text": "the old time was but a thicker dream and this is truer because more shadowy"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0017.wav", "duration": 2.83, "text": "her only life was that she was lost"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0018.wav", "duration": 4.785, "text": "shall i pour out my soul into the ear of a mist a fume from my own brain"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0019.wav", "duration": 7.72, "text": "thus was she borne away captive of her dead neither willing nor unwilling of life and death equally careless"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/6345/64257/6345-64257-0020.wav", "duration": 2.86, "text": "with that came a pang of intense pain"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0000.wav", "duration": 9.35, "text": "ardent in the prosecution of heresy cyril auspiciously opened his reign by oppressing the novatians the most innocent and harmless of the sectaries"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0001.wav", "duration": 8.895, "text": "without any legal sentence without any royal mandate the patriarch at the dawn of day led a seditious multitude to the attack of the synagogues"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0002.wav", "duration": 13.03, "text": "such crimes would have deserved the animadversion of the magistrate but in this promiscuous outrage the innocent were confounded with the guilty and alexandria was impoverished by the loss of a wealthy and industrious colony"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0003.wav", "duration": 11.18, "text": "the zeal of cyril exposed him to the penalties of the julian law but in a feeble government and a superstitious age he was secure of impunity and even of praise"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0004.wav", "duration": 12.07, "text": "orestes complained but his just complaints were too quickly forgotten by the ministers of theodosius and too deeply remembered by a priest who affected to pardon and continued to hate the praefect of egypt"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0005.wav", "duration": 9.895, "text": "a rumor was spread among the christians that the daughter of theon was the only obstacle to the reconciliation of the praefect and the archbishop and that obstacle was speedily removed"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0006.wav", "duration": 8.535, "text": "which oppressed the metropolitans of europe and asia invaded the provinces of antioch and alexandria and measured their diocese by the limits of the empire"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0007.wav", "duration": 5.16, "text": "exterminate with me the heretics and with you i will exterminate the persians"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0008.wav", "duration": 4.275, "text": "at these blasphemous sounds the pillars of the sanctuary were shaken"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0009.wav", "duration": 3.6, "text": "but the vatican received with open arms the messengers of egypt"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0010.wav", "duration": 12.0, "text": "the vanity of celestine was flattered by the appeal and the partial version of a monk decided the faith of the pope who with his latin clergy was ignorant of the language the arts and the theology of the greeks"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0011.wav", "duration": 14.195, "text": "nestorius who depended on the near approach of his eastern friends persisted like his predecessor chrysostom to disclaim the jurisdiction and to disobey the summons of his enemies they hastened his trial and his accuser presided in the seat of judgment"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0012.wav", "duration": 9.33, "text": "sixty eight bishops twenty two of metropolitan rank defended his cause by a modest and temperate protest they were excluded from the councils of their brethren"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0013.wav", "duration": 6.675, "text": "by the vigilance of memnon the churches were shut against them and a strong garrison was thrown into the cathedral"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0014.wav", "duration": 9.395, "text": "during a busy period of three months the emperor tried every method except the most effectual means of indifference and contempt to reconcile this theological quarrel"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0015.wav", "duration": 6.345, "text": "return to your provinces and may your private virtues repair the mischief and scandal of your meeting"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0016.wav", "duration": 15.285, "text": "the feeble son of arcadius was alternately swayed by his wife and sister by the eunuchs and women of the palace superstition and avarice were their ruling passions and the orthodox chiefs were assiduous in their endeavors to alarm the former and to gratify the latter"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0017.wav", "duration": 7.055, "text": "but in this awful moment of the danger of the church their vow was superseded by a more sublime and indispensable duty"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0018.wav", "duration": 4.265, "text": "at the same time every avenue of the throne was assaulted with gold"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0019.wav", "duration": 15.695, "text": "the past he regretted he was discontented with the present and the future he had reason to dread the oriental bishops successively disengaged their cause from his unpopular name and each day decreased the number of the schismatics who revered nestorius as the confessor of the faith"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143397/1673-143397-0020.wav", "duration": 16.32, "text": "a wandering tribe of the blemmyes or nubians invaded his solitary prison in their retreat they dismissed a crowd of useless captives but no sooner had nestorius reached the banks of the nile than he would gladly have escaped from a roman and orthodox city to the milder servitude of the savages"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0000.wav", "duration": 14.675, "text": "a laudable regard for the honor of the first proselyte has countenanced the belief the hope the wish that the ebionites or at least the nazarenes were distinguished only by their obstinate perseverance in the practice of the mosaic rites"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0001.wav", "duration": 14.05, "text": "their churches have disappeared their books are obliterated their obscure freedom might allow a latitude of faith and the softness of their infant creed would be variously moulded by the zeal or prudence of three hundred years"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0002.wav", "duration": 7.85, "text": "yet the most charitable criticism must refuse these sectaries any knowledge of the pure and proper divinity of christ"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0003.wav", "duration": 11.355, "text": "his progress from infancy to youth and manhood was marked by a regular increase in stature and wisdom and after a painful agony of mind and body he expired on the cross"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0004.wav", "duration": 19.915, "text": "he lived and died for the service of mankind but the life and death of socrates had likewise been devoted to the cause of religion and justice and although the stoic or the hero may disdain the humble virtues of jesus the tears which he shed over his friend and country may be esteemed the purest evidence of his humanity"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0005.wav", "duration": 11.7400625, "text": "the son of a virgin generated by the ineffable operation of the holy spirit was a creature without example or resemblance superior in every attribute of mind and body to the children of adam"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0006.wav", "duration": 15.92, "text": "nor could it seem strange or incredible that the first of these aeons the logos or word of god of the same substance with the father should descend upon earth to deliver the human race from vice and error and to conduct them in the paths of life and immortality"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0007.wav", "duration": 7.095, "text": "but the prevailing doctrine of the eternity and inherent pravity of matter infected the primitive churches of the east"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0008.wav", "duration": 17.65, "text": "many among the gentile proselytes refused to believe that a celestial spirit an undivided portion of the first essence had been personally united with a mass of impure and contaminated flesh and in their zeal for the divinity they piously abjured the humanity of christ"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0009.wav", "duration": 16.46, "text": "he first appeared on the banks of the jordan in the form of perfect manhood but it was a form only and not a substance a human figure created by the hand of omnipotence to imitate the faculties and actions of a man and to impose a perpetual illusion on the senses of his friends and enemies"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0010.wav", "duration": 11.995, "text": "but the rashness of these concessions has encouraged a milder sentiment of those of the docetes who taught not that christ was a phantom but that he was clothed with an impassible and incorruptible body"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0011.wav", "duration": 16.415, "text": "a foetus that could increase from an invisible point to its full maturity a child that could attain the stature of perfect manhood without deriving any nourishment from the ordinary sources might continue to exist without repairing a daily waste by a daily supply of external matter"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0012.wav", "duration": 14.47, "text": "in their eyes jesus of nazareth was a mere mortal the legitimate son of joseph and mary but he was the best and wisest of the human race selected as the worthy instrument to restore upon earth the worship of the true and supreme deity"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0013.wav", "duration": 15.52, "text": "when the messiah was delivered into the hands of the jews the christ an immortal and impassible being forsook his earthly tabernacle flew back to the pleroma or world of spirits and left the solitary jesus to suffer to complain and to expire"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0014.wav", "duration": 13.985, "text": "but the justice and generosity of such a desertion are strongly questionable and the fate of an innocent martyr at first impelled and at length abandoned by his divine companion might provoke the pity and indignation of the profane"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0015.wav", "duration": 6.305, "text": "their murmurs were variously silenced by the sectaries who espoused and modified the double system of cerinthus"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0016.wav", "duration": 14.455, "text": "the worthy friend of athanasius the worthy antagonist of julian he bravely wrestled with the arians and polytheists and though he affected the rigor of geometrical demonstration his commentaries revealed the literal and allegorical sense of the scriptures"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0017.wav", "duration": 8.43, "text": "yet as the profound doctor had been terrified at his own rashness apollinaris was heard to mutter some faint accents of excuse and explanation"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0018.wav", "duration": 12.655, "text": "he acquiesced in the old distinction of the greek philosophers between the rational and sensitive soul of man that he might reserve the logos for intellectual functions and employ the subordinate human principle in the meaner actions of animal life"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0019.wav", "duration": 15.485, "text": "but instead of a temporary and occasional alliance they established and we still embrace the substantial indissoluble and everlasting union of a perfect god with a perfect man of the second person of the trinity with a reasonable soul and human flesh"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/1673/143396/1673-143396-0020.wav", "duration": 15.02, "text": "under the tuition of the abbot serapion he applied himself to ecclesiastical studies with such indefatigable ardor that in the course of one sleepless night he has perused the four gospels the catholic epistles and the epistle to the romans"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0000.wav", "duration": 3.13, "text": "shasta rambles and modoc memories"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0001.wav", "duration": 20.86, "text": "arctic beauty and desolation with their blessings and dangers all may be found here to test the endurance and skill of adventurous climbers but far better than climbing the mountain is going around its warm fertile base enjoying its bounties like a bee circling around a bank of flowers"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0002.wav", "duration": 7.17, "text": "perhaps the profession of doing good may be full but every body should be kind at least to himself"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0003.wav", "duration": 4.67, "text": "go quietly alone no harm will befall you"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0004.wav", "duration": 2.885, "text": "but it is far better to go afoot"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0005.wav", "duration": 8.46, "text": "one blanket will be enough to carry or you may forego the pleasure and burden altogether as wood for fires is everywhere abundant"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0006.wav", "duration": 2.55, "text": "only a little food will be required"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0007.wav", "duration": 6.965, "text": "thus one saunters on and on in the glorious radiance in utter peace and forgetfulness of time"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0008.wav", "duration": 12.985, "text": "yet strange to say there are days even here somewhat dull looking when the mountain seems uncommunicative sending out no appreciable invitation as if not at home"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0009.wav", "duration": 7.975, "text": "at such time its height seems much less as if crouching and weary it were taking rest"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0010.wav", "duration": 15.545, "text": "every crystal dances responsive to the touches of the sun and currents of sap in the growing cells of all the vegetation are ever in a vital whirl and rush and though many feet and wings are folded how many are astir"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0011.wav", "duration": 10.73, "text": "slight rainstorms are likely to be encountered in a trip round the mountain but one may easily find shelter beneath well thatched trees that shed the rain like a roof"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0012.wav", "duration": 12.09, "text": "then the shining of the wet leaves is delightful and the steamy fragrance and the burst of bird song from a multitude of thrushes and finches and warblers that have nests in the chaparral"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0013.wav", "duration": 9.12, "text": "a thousand thousand voices are heard but so finely blended they seem a part of the night itself and make a deeper silence"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0014.wav", "duration": 7.205, "text": "in setting out from strawberry valley by bearing off to the northwestward a few miles you may see"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0015.wav", "duration": 13.26, "text": "in approaching it its suspicious looking yellow spotted hood and watchful attitude will be likely to make you go cautiously through the bog where it stands as if you were approaching a dangerous snake"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0016.wav", "duration": 8.75, "text": "it is lined with emerald algae and mosses and shaded with alder willow and thorn bushes which give it a fine setting"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0017.wav", "duration": 14.085, "text": "it is three or four miles long and terminates at an elevation of about nine thousand five hundred feet above sea level in moraine sprinkled ice cliffs sixty feet high"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0018.wav", "duration": 5.65, "text": "the long gray slopes leading up to the glacier seem remarkably smooth and unbroken"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0019.wav", "duration": 17.62, "text": "most of the drainage of the glacier vanishes at once in the porous rocks to reappear in springs in the distant valley and it is only in time of flood that the channel carries much water then there are several fine falls in the gorge six hundred feet or more in height"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0020.wav", "duration": 16.02, "text": "tracing this wild changing channel gorge gully or canyon the sections will show mount shasta as a huge palimpsest containing the records layer upon layer of strangely contrasted events in its fiery icy history"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0021.wav", "duration": 12.765, "text": "regaining the low ground at the base of the mountain and holding on in your grand orbit you pass through a belt of juniper woods called the cedars to sheep rock at the foot of the shasta pass"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0022.wav", "duration": 6.47, "text": "here you strike the old emigrant road which leads over the low divide to the eastern slopes of the mountain"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0023.wav", "duration": 5.1550625, "text": "mount bremer is the most noted stronghold of the sheep in the whole shasta region"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0024.wav", "duration": 14.15, "text": "large flocks dwell here from year to year winter and summer descending occasionally into the adjacent sage plains and lava beds to feed but ever ready to take refuge in the jagged crags of their mountain at every alarm"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0025.wav", "duration": 4.97, "text": "while traveling with a company of hunters i saw about fifty in one flock"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0026.wav", "duration": 2.54, "text": "the mule deer are nearly as heavy"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0027.wav", "duration": 4.045, "text": "their long massive ears give them a very striking appearance"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0028.wav", "duration": 6.48, "text": "but neither the glorified woods on the one hand nor the lake on the other could at first hold the eye"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0029.wav", "duration": 5.73, "text": "then fell the gloaming making everything still more forbidding and mysterious"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0030.wav", "duration": 3.07, "text": "then darkness like death"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0031.wav", "duration": 10.02, "text": "two or three miles farther on is the main stronghold of the modocs held by them so long and defiantly against all the soldiers that could be brought to the attack"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0032.wav", "duration": 10.9, "text": "the ducks less wary kept their places merely swimming in and out through openings in the rushes rippling the glassy water and raising spangles in their wake"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0033.wav", "duration": 22.37, "text": "they are broad rugged crevassed cloudlike masses of down grinding ice pouring forth streams of muddy water as measures of the work they are doing in sculpturing the rocks beneath them very unlike the long majestic glaciers of alaska that riverlike go winding down the valleys through the forests to the sea"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0034.wav", "duration": 15.865, "text": "thus the shasta river issues from a large lake like spring in shasta valley and about two thirds of the volume of the mc cloud gushes forth in a grand spring on the east side of the mountain a few miles back from its immediate base"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0035.wav", "duration": 19.685, "text": "should the volume of the stream where you strike it seem small then you will know that you are above the spring if large nearly equal to its volume at its confluence with the pitt river then you are below it and in either case have only to follow the river up or down until you come to it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0036.wav", "duration": 12.225, "text": "under certain conditions you may hear the roar of the water rushing from the rock at a distance of half a mile or even more or you may not hear it until within a few rods"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0037.wav", "duration": 10.07, "text": "the vivid green of the boulders beneath the water is very striking and colors the entire stream with the exception of the portions broken into foam"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0038.wav", "duration": 15.78, "text": "asplenium epilobium heuchera hazel dogwood and alder make a luxurious fringe and setting and the forests of douglas spruce along the banks are the finest i have ever seen in the sierra"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0039.wav", "duration": 4.755, "text": "tracing rivers to their fountains makes the most charming of travels"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0040.wav", "duration": 10.265, "text": "as the life blood of the landscapes the best of the wilderness comes to their banks and not one dull passage is found in all their eventful histories"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0041.wav", "duration": 28.57, "text": "tracing the mc cloud to its highest springs and over the divide to the fountains of fall river near fort crook thence down that river to its confluence with the pitt on from there to the volcanic region about lassen's butte through the big meadows among the sources of the feather river and down through forests of sugar pine to the fertile plains of chico this is a glorious saunter and imposes no hardship"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0042.wav", "duration": 6.41, "text": "the ascent of lassen's butte is an easy walk and the views from the summit are extremely telling"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0043.wav", "duration": 9.92, "text": "the lofty icy shasta towering high above all seems but an hour's walk from you though the distance in an air line is about sixty miles"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0044.wav", "duration": 13.935, "text": "the big meadows lie near the foot of lassen's butte a beautiful spacious basin set in the heart of the richly forested mountains scarcely surpassed in the grandeur of its surroundings by tahoe"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0045.wav", "duration": 12.84, "text": "the great wilds of our country once held to be boundless and inexhaustible are being rapidly invaded and overrun in every direction and everything destructible in them is being destroyed"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/3000/15664/3000-15664-0046.wav", "duration": 5.36, "text": "every landscape low and high seems doomed to be trampled and harried"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153947/2412-153947-0000.wav", "duration": 2.55, "text": "preface to second edition"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153947/2412-153947-0001.wav", "duration": 3.225, "text": "this is a mistake though a perfectly natural one"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153947/2412-153947-0002.wav", "duration": 6.595, "text": "on my return i purposely avoided looking into it until i had sent back my last revises to the printer"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153947/2412-153947-0003.wav", "duration": 9.515, "text": "then i had much pleasure in reading it but was indeed surprised at the many little points of similarity between the two books in spite of their entire independence to one another"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153947/2412-153947-0004.wav", "duration": 8.72, "text": "i regret that reviewers have in some cases been inclined to treat the chapters on machines as an attempt to reduce mister darwin's theory to an absurdity"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153947/2412-153947-0005.wav", "duration": 13.68, "text": "i am surprised however that the book at which such an example of the specious misuse of analogy would seem most naturally levelled should have occurred to no reviewer neither shall i mention the name of the book here though i should fancy that the hint given will suffice"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153947/2412-153947-0006.wav", "duration": 11.68, "text": "but this had an effect of which i have little reason to complain for i was allowed almost to call them life long self deceivers to their faces and they said it was quite true but that it did not matter"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153947/2412-153947-0007.wav", "duration": 8.735, "text": "i must not conclude without expressing my most sincere thanks to my critics and to the public for the leniency and consideration with which they have treated my adventures"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153947/2412-153947-0008.wav", "duration": 10.84, "text": "it was written in the upper rangitata district of the canterbury province as it then was of new zealand and appeared at christchurch in the press newspaper june thirteenth eighteen sixty three"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153947/2412-153947-0009.wav", "duration": 8.72, "text": "i also wrote about this time the substance of what ultimately became the musical banks and the trial of a man for being in a consumption"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153947/2412-153947-0010.wav", "duration": 17.1950625, "text": "i see from my second preface that i took the book to messrs chapman and hall may first eighteen seventy one and on their rejection of it under the advice of one who has attained the highest rank among living writers i let it sleep till i took it to mister trubner early in eighteen seventy two"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153947/2412-153947-0011.wav", "duration": 10.13, "text": "i attribute its unlooked for success mainly to two early favourable reviews the first in the pall mall gazette of april twelfth and the second in the spectator of april twentieth"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153947/2412-153947-0012.wav", "duration": 15.84, "text": "there was also another cause"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153947/2412-153947-0013.wav", "duration": 8.42, "text": "the first edition of erewhon sold in about three weeks i had not taken moulds and as the demand was strong it was set up again immediately"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153947/2412-153947-0014.wav", "duration": 12.795, "text": "i made a few further very trifling alterations before moulds were taken but since the summer of eighteen seventy two as new editions were from time to time wanted they have been printed from stereos then made"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153947/2412-153947-0015.wav", "duration": 11.03, "text": "i am still fairly well satisfied with those parts of erewhon that were repeatedly rewritten but from those that had only a single writing i would gladly cut out some forty or fifty pages if i could"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153947/2412-153947-0016.wav", "duration": 5.185, "text": "this however may not be for the copyright will probably expire in a little over twelve years"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153948/2412-153948-0000.wav", "duration": 11.66, "text": "if the reader will excuse me i will say nothing of my antecedents nor of the circumstances which led me to leave my native country the narrative would be tedious to him and painful to myself"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153948/2412-153948-0001.wav", "duration": 10.51, "text": "it will be seen that i did not succeed in my design and that however much i may have met with that was new and strange i have been unable to reap any pecuniary advantage"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153948/2412-153948-0002.wav", "duration": 3.72, "text": "no one who is himself honest will doubt my being so"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153948/2412-153948-0003.wav", "duration": 8.515, "text": "i reached my destination in one of the last months of eighteen sixty eight but i dare not mention the season lest the reader should gather in which hemisphere i was"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153948/2412-153948-0004.wav", "duration": 22.68, "text": "sheep and cattle were introduced and bred with extreme rapidity men took up their fifty thousand or one hundred thousand acres of country going inland one behind the other till in a few years there was not an acre between the sea and the front ranges which was not taken up and stations either for sheep or cattle were spotted about at intervals of some twenty or thirty miles over the whole country"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153948/2412-153948-0005.wav", "duration": 3.14, "text": "i was delighted with the country and the manner of life"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153948/2412-153948-0006.wav", "duration": 16.615, "text": "i was to see the sheep not necessarily close at hand nor to get them in a single mob but to see enough of them here and there to feel easy that nothing had gone wrong this was no difficult matter for there were not above eight hundred of them and being all breeding ewes they were pretty quiet"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153948/2412-153948-0007.wav", "duration": 9.37, "text": "there were a good many sheep which i knew as two or three black ewes and a black lamb or two and several others which had some distinguishing mark whereby i could tell them"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153948/2412-153948-0008.wav", "duration": 5.815, "text": "it is surprising how soon the eye becomes accustomed to missing twenty sheep out of two or three hundred"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153948/2412-153948-0009.wav", "duration": 5.995, "text": "it was a monotonous life but it was very healthy and one does not much mind anything when one is well"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153948/2412-153948-0010.wav", "duration": 2.915, "text": "the country was the grandest that can be imagined"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153948/2412-153948-0011.wav", "duration": 9.7450625, "text": "so lonely and so solemn with the sad grey clouds above and no sound save a lost lamb bleating upon the mountain side as though its little heart were breaking"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153948/2412-153948-0012.wav", "duration": 6.17, "text": "each must cry louder and wander farther yet may luck be with them both that they may find their own at nightfall"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153948/2412-153948-0013.wav", "duration": 8.54, "text": "i had no money but if i could only find workable country i might stock it with borrowed capital and consider myself a made man"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153948/2412-153948-0014.wav", "duration": 9.705, "text": "there was no one in the whole world who had the smallest idea save those who were themselves on the other side of it if indeed there was any one at all could i hope to cross it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153948/2412-153948-0015.wav", "duration": 3.465, "text": "i would try the nearer range and see how far i could go"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0000.wav", "duration": 9.915, "text": "shortly after passing one of these chapels we came suddenly upon a village which started up out of the mist and i was alarmed lest i should be made an object of curiosity or dislike"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0001.wav", "duration": 9.75, "text": "my guides however were well known and the natural politeness of the people prevented them from putting me to any inconvenience but they could not help eyeing me nor i them"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0002.wav", "duration": 4.055, "text": "the streets were narrow and unpaved but very fairly clean"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0003.wav", "duration": 8.15, "text": "the vine grew outside many of the houses and there were some with sign boards on which was painted a bottle and a glass that made me feel much at home"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0004.wav", "duration": 10.41, "text": "even on this ledge of human society there was a stunted growth of shoplets which had taken root and vegetated somehow though as in an air mercantile of the bleakest"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0005.wav", "duration": 5.845, "text": "each feature was finished eyelids eyelashes and ears being almost invariably perfect"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0006.wav", "duration": 10.22, "text": "their expression was divine and as they glanced at me timidly but with parted lips in great bewilderment i forgot all thoughts of their conversion in feelings that were far more earthly"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0007.wav", "duration": 8.43, "text": "even in middle age they were still comely and the old grey haired women at their cottage doors had a dignity not to say majesty of their own"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0008.wav", "duration": 2.735, "text": "the men were as handsome as the women beautiful"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0009.wav", "duration": 10.42, "text": "i have always delighted in and reverenced beauty but i felt simply abashed in the presence of such a splendid type a compound of all that is best in egyptian greek and italian"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0010.wav", "duration": 7.94, "text": "the children were infinite in number and exceedingly merry i need hardly say that they came in for their full share of the prevailing beauty"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0011.wav", "duration": 5.935, "text": "i expressed by signs my admiration and pleasure to my guides and they were greatly pleased"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0012.wav", "duration": 8.12, "text": "the country was highly cultivated every ledge being planted with chestnuts walnuts and apple trees from which the apples were now gathering"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0013.wav", "duration": 3.915, "text": "i saw a few sheep with rounded noses and enormous tails"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0014.wav", "duration": 17.615, "text": "in about four hours of walking from the time we started and after passing two or three more villages we came upon a considerable town and my guides made many attempts to make me understand something but i gathered no inkling of their meaning except that i need be under no apprehension of danger"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0015.wav", "duration": 11.39, "text": "suffice it that i found myself taken before the chief magistrate and by his orders was placed in an apartment with two other people who were the first i had seen looking anything but well and handsome"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0016.wav", "duration": 8.44, "text": "in fact one of them was plainly very much out of health and coughed violently from time to time in spite of manifest efforts to suppress it"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0017.wav", "duration": 6.99, "text": "the other looked pale and ill but he was marvellously self contained and it was impossible to say what was the matter with him"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0018.wav", "duration": 12.105, "text": "they felt my pulse they looked at my tongue they listened at my chest they felt all my muscles and at the end of each operation they looked at the chief and nodded and said something in a tone quite pleasant as though i were all right"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0019.wav", "duration": 7.485, "text": "but by and by they came to my watch which i had hidden away in the inmost pocket that i had and had forgotten when they began their search"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0020.wav", "duration": 7.975, "text": "again there was a very old carriage whose wheels in spite of rust and decay i could see had been designed originally for iron rails"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0021.wav", "duration": 6.11, "text": "we passed many cases and at last came to one in which there were several clocks and two or three old watches"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0022.wav", "duration": 3.54, "text": "the design was different but the thing was clearly the same"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0023.wav", "duration": 2.65, "text": "this had some effect in calming him"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2412/153954/2412-153954-0024.wav", "duration": 4.19, "text": "he began presently to relent and spoke to me in a kinder manner"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2902/9008/2902-9008-0000.wav", "duration": 11.72, "text": "the place seemed fragrant with all the riches of greek thought and song since the days when ptolemy philadelphus walked there with euclid and theocritus callimachus and lycophron"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2902/9008/2902-9008-0001.wav", "duration": 16.915, "text": "the room had neither carpet nor fireplace and the only movables in it were a sofa bed a table and an arm chair all of such delicate and graceful forms as may be seen on ancient vases of a far earlier period than that whereof we write"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2902/9008/2902-9008-0002.wav", "duration": 24.395, "text": "but most probably had any of us entered that room that morning we should not have been able to spare a look either for the furniture or the general effect or the museum gardens or the sparkling mediterranean beyond but we should have agreed that the room was quite rich enough for human eyes for the sake of one treasure which it possessed and beside which nothing was worth a moment's glance"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2902/9008/2902-9008-0003.wav", "duration": 14.475, "text": "she has lifted her eyes off her manuscript she is looking out with kindling countenance over the gardens of the museum her ripe curling greek lips such as we never see now even among her own wives and sisters open"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2902/9008/2902-9008-0004.wav", "duration": 5.63, "text": "if they have ceased to guide nations they have not ceased to speak to their own elect"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2902/9008/2902-9008-0005.wav", "duration": 5.21, "text": "if they have cast off the vulgar herd they have not cast off hypatia"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2902/9008/2902-9008-0006.wav", "duration": 18.345, "text": "to be welcomed into the celestial ranks of the heroic to rise to the immortal gods to the ineffable powers onward upward ever through ages and through eternities till i find my home at last and vanish in the glory of the nameless and the absolute one"}
{"key": "/data/nlpnd_projects/LibriSpeech/dev-clean/2902/9008/2902-9008-0007.wav", "duration": 5.97, "text": "i to believe against the authority of porphyry himself too in evil eyes and magic"}