-
Notifications
You must be signed in to change notification settings - Fork 1
/
train_corpus.json
2703 lines (2703 loc) · 560 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
{"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/LibriSpeech/dev-clean/2412/153954/2412-153954-0000.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/LibriSpeech/dev-clean/2412/153954/2412-153954-0001.wav"}
{"duration": 4.055, "text": "the streets were narrow and unpaved but very fairly clean", "key": ".././data/LibriSpeech/dev-clean/2412/153954/2412-153954-0002.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/LibriSpeech/dev-clean/2412/153954/2412-153954-0003.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/LibriSpeech/dev-clean/2412/153954/2412-153954-0004.wav"}
{"duration": 5.845, "text": "each feature was finished eyelids eyelashes and ears being almost invariably perfect", "key": ".././data/LibriSpeech/dev-clean/2412/153954/2412-153954-0005.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/LibriSpeech/dev-clean/2412/153954/2412-153954-0006.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/LibriSpeech/dev-clean/2412/153954/2412-153954-0007.wav"}
{"duration": 2.735, "text": "the men were as handsome as the women beautiful", "key": ".././data/LibriSpeech/dev-clean/2412/153954/2412-153954-0008.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/LibriSpeech/dev-clean/2412/153954/2412-153954-0009.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/LibriSpeech/dev-clean/2412/153954/2412-153954-0010.wav"}
{"duration": 5.935, "text": "i expressed by signs my admiration and pleasure to my guides and they were greatly pleased", "key": ".././data/LibriSpeech/dev-clean/2412/153954/2412-153954-0011.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/LibriSpeech/dev-clean/2412/153954/2412-153954-0012.wav"}
{"duration": 3.915, "text": "i saw a few sheep with rounded noses and enormous tails", "key": ".././data/LibriSpeech/dev-clean/2412/153954/2412-153954-0013.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/LibriSpeech/dev-clean/2412/153954/2412-153954-0014.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/LibriSpeech/dev-clean/2412/153954/2412-153954-0015.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/LibriSpeech/dev-clean/2412/153954/2412-153954-0016.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/LibriSpeech/dev-clean/2412/153954/2412-153954-0017.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/LibriSpeech/dev-clean/2412/153954/2412-153954-0018.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/LibriSpeech/dev-clean/2412/153954/2412-153954-0019.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/LibriSpeech/dev-clean/2412/153954/2412-153954-0020.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/LibriSpeech/dev-clean/2412/153954/2412-153954-0021.wav"}
{"duration": 3.54, "text": "the design was different but the thing was clearly the same", "key": ".././data/LibriSpeech/dev-clean/2412/153954/2412-153954-0022.wav"}
{"duration": 2.65, "text": "this had some effect in calming him", "key": ".././data/LibriSpeech/dev-clean/2412/153954/2412-153954-0023.wav"}
{"duration": 4.19, "text": "he began presently to relent and spoke to me in a kinder manner", "key": ".././data/LibriSpeech/dev-clean/2412/153954/2412-153954-0024.wav"}
{"duration": 2.55, "text": "preface to second edition", "key": ".././data/LibriSpeech/dev-clean/2412/153947/2412-153947-0000.wav"}
{"duration": 3.225, "text": "this is a mistake though a perfectly natural one", "key": ".././data/LibriSpeech/dev-clean/2412/153947/2412-153947-0001.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/LibriSpeech/dev-clean/2412/153947/2412-153947-0002.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/LibriSpeech/dev-clean/2412/153947/2412-153947-0003.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/LibriSpeech/dev-clean/2412/153947/2412-153947-0004.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/LibriSpeech/dev-clean/2412/153947/2412-153947-0005.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/LibriSpeech/dev-clean/2412/153947/2412-153947-0006.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/LibriSpeech/dev-clean/2412/153947/2412-153947-0007.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/LibriSpeech/dev-clean/2412/153947/2412-153947-0008.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/LibriSpeech/dev-clean/2412/153947/2412-153947-0009.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/LibriSpeech/dev-clean/2412/153947/2412-153947-0010.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/LibriSpeech/dev-clean/2412/153947/2412-153947-0011.wav"}
{"duration": 15.84, "text": "there was also another cause", "key": ".././data/LibriSpeech/dev-clean/2412/153947/2412-153947-0012.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/LibriSpeech/dev-clean/2412/153947/2412-153947-0013.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/LibriSpeech/dev-clean/2412/153947/2412-153947-0014.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/LibriSpeech/dev-clean/2412/153947/2412-153947-0015.wav"}
{"duration": 5.185, "text": "this however may not be for the copyright will probably expire in a little over twelve years", "key": ".././data/LibriSpeech/dev-clean/2412/153947/2412-153947-0016.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/LibriSpeech/dev-clean/2412/153948/2412-153948-0000.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/LibriSpeech/dev-clean/2412/153948/2412-153948-0001.wav"}
{"duration": 3.72, "text": "no one who is himself honest will doubt my being so", "key": ".././data/LibriSpeech/dev-clean/2412/153948/2412-153948-0002.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/LibriSpeech/dev-clean/2412/153948/2412-153948-0003.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/LibriSpeech/dev-clean/2412/153948/2412-153948-0004.wav"}
{"duration": 3.14, "text": "i was delighted with the country and the manner of life", "key": ".././data/LibriSpeech/dev-clean/2412/153948/2412-153948-0005.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/LibriSpeech/dev-clean/2412/153948/2412-153948-0006.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/LibriSpeech/dev-clean/2412/153948/2412-153948-0007.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/LibriSpeech/dev-clean/2412/153948/2412-153948-0008.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/LibriSpeech/dev-clean/2412/153948/2412-153948-0009.wav"}
{"duration": 2.915, "text": "the country was the grandest that can be imagined", "key": ".././data/LibriSpeech/dev-clean/2412/153948/2412-153948-0010.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/LibriSpeech/dev-clean/2412/153948/2412-153948-0011.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/LibriSpeech/dev-clean/2412/153948/2412-153948-0012.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/LibriSpeech/dev-clean/2412/153948/2412-153948-0013.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/LibriSpeech/dev-clean/2412/153948/2412-153948-0014.wav"}
{"duration": 3.465, "text": "i would try the nearer range and see how far i could go", "key": ".././data/LibriSpeech/dev-clean/2412/153948/2412-153948-0015.wav"}
{"duration": 19.755, "text": "kirkleatham yeast", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0000.wav"}
{"duration": 19.215, "text": "seventeen seventeen", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0001.wav"}
{"duration": 2.915, "text": "to make good home made bread", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0002.wav"}
{"duration": 18.675, "text": "seventeen eighteen", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0003.wav"}
{"duration": 23.175, "text": "mode put the flour into a large earthenware bowl or deep pan then with a strong metal or wooden spoon hollow out the middle but do not clear it entirely away from the bottom of the pan as in that case the sponge or leaven as it was formerly termed would stick to it which it ought not to do", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0004.wav"}
{"duration": 31.375, "text": "next take either a large tablespoonful of brewer's yeast which has been rendered solid by mixing it with plenty of cold water and letting it afterwards stand to settle for a day and night or nearly an ounce of german yeast put it into a large basin and proceed to mix it so that it shall be as smooth as cream with three quarters pint of warm milk and water or with water only though even a very little milk will much improve the bread", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0005.wav"}
{"duration": 14.645, "text": "look at it from time to time when it has been laid for nearly an hour and when the yeast has risen and broken through the flour so that bubbles appear in it you will know that it is ready to be made up into dough", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0006.wav"}
{"duration": 20.74, "text": "then place the pan on a strong chair or dresser or table of convenient height pour into the sponge the remainder of the warm milk and water stir into it as much of the flour as you can with the spoon then wipe it out clean with your fingers and lay it aside", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0007.wav"}
{"duration": 19.38, "text": "turn it then on to a paste board or very clean dresser and with a large sharp knife divide it in two make it up quickly into loaves and dispatch it to the oven make one or two incisions across the tops of the loaves as they will rise more easily if this be done", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0008.wav"}
{"duration": 3.435, "text": "illustration italian millet", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0009.wav"}
{"duration": 14.41, "text": "italian millet or great indian millet is cultivated in egypt and nubia where it is called dhourra and is used as human food as well as for the fermentation of beer", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0010.wav"}
{"duration": 4.53, "text": "it will grow on poor soils and is extremely productive", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0011.wav"}
{"duration": 13.24, "text": "it has been introduced into italy where they make a coarse bread from it and it is also employed in pastry and puddings they also use it for feeding horses and domestic fowls", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0012.wav"}
{"duration": 9.855, "text": "a yellow variety called golden millet is sold in the grocers shops for making puddings and is very delicate and wholesome", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0013.wav"}
{"duration": 8.2, "text": "another advantage the red wheats possess is their comparative immunity from the attacks of mildew and fly", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0014.wav"}
{"duration": 9.84, "text": "mode boil the rice in water until it is quite tender pour off the water and put the rice before it is cold to the flour", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0015.wav"}
{"duration": 3.53, "text": "illustration maize plant", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0016.wav"}
{"duration": 6.485, "text": "maize next to wheat and rice maize is the grain most used in the nourishment of man", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0017.wav"}
{"duration": 5.33, "text": "if carried any distance it should be stored away in air tight vessels", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0018.wav"}
{"duration": 9.405, "text": "some of the preparations of maize flour are very good and when partaken in moderation suitable food for almost everybody", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0019.wav"}
{"duration": 9.42, "text": "mode let the tartaric acid and salt be reduced to the finest possible powder then mix them well with the flour", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0020.wav"}
{"duration": 6.14, "text": "sour milk or buttermilk may be used but then a little less acid will be needed", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0021.wav"}
{"duration": 20.7, "text": "excellent rolls", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0022.wav"}
{"duration": 12.25, "text": "hot rolls", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0023.wav"}
{"duration": 19.89, "text": "seventeen twenty four", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0024.wav"}
{"duration": 29.06, "text": "when they are quite hot divide them lengthwise into three put some thin flakes of good butter between the slices press the rolls together and put them in the oven for a minute or two but not longer or the butter would oil take them out of the oven spread the butter equally over divide the rolls in half and put them on to a very hot clean dish and send them instantly to table", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0025.wav"}
{"duration": 2.475, "text": "to make dry toast", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0026.wav"}
{"duration": 8.73, "text": "never use new bread for making any kind of toast as it eats heavy and besides is very extravagant", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0027.wav"}
{"duration": 11.425, "text": "move it backwards and forwards until the bread is nicely coloured then turn it and toast the other side and do not place it so near the fire that it blackens", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0028.wav"}
{"duration": 4.87, "text": "to make hot buttered toast seventeen twenty six", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0029.wav"}
{"duration": 12.04, "text": "a loaf of household bread about two days old answers for making toast better than cottage bread the latter not being a good shape and too crusty for the purpose", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0030.wav"}
{"duration": 16.74, "text": "cut as many nice even slices as may be required rather more than one quarter inch in thickness and toast them before a very bright fire without allowing the bread to blacken which spoils the appearance and flavour of all toast", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0031.wav"}
{"duration": 12.94, "text": "soyer recommends that each slice should be cut into pieces as soon as it is buttered and when all are ready that they should be piled lightly on the dish they are intended to be served on", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0032.wav"}
{"duration": 11.385, "text": "he says that by cutting through four or five slices at a time all the butter is squeezed out of the upper ones while the bottom one is swimming in fat liquid", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0033.wav"}
{"duration": 9.755, "text": "muffins and crumpets should always be served on separate dishes and both toasted and served as expeditiously as possible", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0034.wav"}
{"duration": 4.22, "text": "sufficient allow two crumpets to each person", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0035.wav"}
{"duration": 3.72, "text": "plain buns seventeen twenty nine", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0036.wav"}
{"duration": 15.87, "text": "mode put the flour into a basin mix the sugar well with it make a hole in the centre and stir in the yeast and milk which should be lukewarm with enough of the flour to make it the thickness of cream", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0037.wav"}
{"duration": 4.52, "text": "from fifteen to twenty minutes will be required to bake them nicely", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0038.wav"}
{"duration": 20.95, "text": "these buns may be varied by adding a few currants candied peel or caraway seeds to the other ingredients and the above mixture answers for hot cross buns by putting in a little ground allspice and by pressing a tin mould in the form of a cross in the centre of the bun", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0039.wav"}
{"duration": 7.015, "text": "sufficient to make twelve buns seasonable at any time light buns", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0040.wav"}
{"duration": 2.66, "text": "illustration buns", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0041.wav"}
{"duration": 4.23, "text": "victoria buns seventeen thirty two", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0042.wav"}
{"duration": 21.0049375, "text": "mode whisk the egg stir in the sugar and beat these ingredients well together beat the butter to a cream stir in the ground rice currants and candied peel and as much flour as will make it of such a consistency that it may be rolled into seven or eight balls", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0043.wav"}
{"duration": 2.325, "text": "italian rusks", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0044.wav"}
{"duration": 7.135, "text": "they should be kept in a closed tin canister in a dry place to preserve their crispness", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0045.wav"}
{"duration": 5.355, "text": "it is not cultivated in england being principally confined to the east", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0046.wav"}
{"duration": 11.46, "text": "when we take into account that the arabians are fond of lizards and locusts as articles of food their cuisine altogether is scarcely a tempting one", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0047.wav"}
{"duration": 19.8, "text": "seventeen thirty four", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0048.wav"}
{"duration": 2.87, "text": "illustration rusks", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0049.wav"}
{"duration": 7.725, "text": "mode put the milk and butter into a saucepan and keep shaking it round until the latter is melted", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0050.wav"}
{"duration": 10.36, "text": "when cold they should be put into tin canisters to keep them dry and if intended for the cheese course the sifted sugar should be omitted", "key": ".././data/LibriSpeech/dev-clean/2078/142845/2078-142845-0051.wav"}
{"duration": 8.83, "text": "he had been a clerk in a banking house and was transported for embezzlement though by some grave doubts as to his guilt were entertained", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0000.wav"}
{"duration": 11.08, "text": "when the muster bell rang and the gang broke up rufus dawes on his silent way to his separate cell observed a notable change of custom in the disposition of the new convict", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0001.wav"}
{"duration": 7.21, "text": "i'm not to go in there says the ex bank clerk drawing back in dismay from the cloud of foul faces which lowered upon him", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0002.wav"}
{"duration": 6.25, "text": "what is he more than anybody else said the wretched man to himself as he hugged his misery close", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0003.wav"}
{"duration": 14.01, "text": "about dawn the next morning mister north who amongst other vagaries not approved of by his bishop had a habit of prowling about the prison at unofficial hours was attracted by a dispute at the door of the dormitory", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0004.wav"}
{"duration": 3.105, "text": "a prisoner refractory your reverence said the watchman", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0005.wav"}
{"duration": 2.655, "text": "wants to come out mister north", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0006.wav"}
{"duration": 10.0, "text": "kirkland ghastly pale bleeding with his woollen shirt torn and his blue eyes wide open with terror was clinging to the bars", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0007.wav"}
{"duration": 3.76, "text": "and beat on the bars with white and sweating hands", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0008.wav"}
{"duration": 3.595, "text": "i order you sir north cried indignant", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0009.wav"}
{"duration": 5.08, "text": "very sorry your reverence but your reverence knows that i daren't do such a thing", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0010.wav"}
{"duration": 6.97, "text": "oh you ministers of christ wolves in sheep's clothing you shall be judged for this", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0011.wav"}
{"duration": 3.4, "text": "let him out cried north again stamping his foot", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0012.wav"}
{"duration": 5.535, "text": "there's more trouble with you bloody aristocrats than enough lie quiet", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0013.wav"}
{"duration": 2.99, "text": "you can guess what that unhappy boy has suffered", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0014.wav"}
{"duration": 2.96, "text": "impertinent young beggar said burgess", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0015.wav"}
{"duration": 2.485, "text": "do him good curse him", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0016.wav"}
{"duration": 20.475, "text": "it's hard for such young uns", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0017.wav"}
{"duration": 5.265, "text": "have you ever been in that that place i was in last night asked kirkland", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0018.wav"}
{"duration": 2.495, "text": "what does he care care", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0019.wav"}
{"duration": 4.875, "text": "if you fall we must fall over you and then you're done for", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0020.wav"}
{"duration": 4.515, "text": "he had hardly uttered the words when the boy flung himself beneath the log", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0021.wav"}
{"duration": 5.195, "text": "hold on to me miss nancy said the giant i'm big enough to carry double", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0022.wav"}
{"duration": 3.055, "text": "but kirkland kept steadily on for the river", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0023.wav"}
{"duration": 5.655, "text": "just as he reached it however the figure of mister north rose from behind a pile of stones", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0024.wav"}
{"duration": 5.245, "text": "kirkland jumped for the jetty missed his footing and fell into the arms of the chaplain", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0025.wav"}
{"duration": 4.05, "text": "oh mister north says kirkland why did you stop me", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0026.wav"}
{"duration": 2.805, "text": "must stop that fifty lashes troke", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0027.wav"}
{"duration": 3.76, "text": "that last fellow you had ought to have been tied up himself", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0028.wav"}
{"duration": 3.835, "text": "i won't have my men knocked up with flogging these rascals", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0029.wav"}
{"duration": 2.395, "text": "very good your honour says troke", "key": ".././data/LibriSpeech/dev-clean/3752/4943/3752-4943-0030.wav"}
{"duration": 3.335, "text": "captain frere says that the scenery is delightful", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0000.wav"}
{"duration": 4.415, "text": "abandoned indeed by god and man almost", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0001.wav"}
{"duration": 3.225, "text": "in the valley of the shadow of death he is with us", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0002.wav"}
{"duration": 2.76, "text": "you have not been long in the colony mister meekin", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0003.wav"}
{"duration": 2.425, "text": "if you please said meekin gravely", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0004.wav"}
{"duration": 2.42, "text": "pray help yourself to wine", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0005.wav"}
{"duration": 3.885, "text": "have you many visitors captain burgess very few", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0006.wav"}
{"duration": 2.8, "text": "i was quartered with him at sarah island", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0007.wav"}
{"duration": 15.52, "text": "so he's a friend of yours eh", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0008.wav"}
{"duration": 2.61, "text": "i had the pleasure of meeting him in society", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0009.wav"}
{"duration": 3.5999375, "text": "he is just married you know is he said burgess", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0010.wav"}
{"duration": 3.3950625, "text": "the devil he is i heard something about it too", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0011.wav"}
{"duration": 5.545, "text": "yes one oughtn't to leave the colony without seeing it says burgess it's worth seeing", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0012.wav"}
{"duration": 5.945, "text": "in fact the ringleader john rex gave me his confession and i sent it to the bishop", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0013.wav"}
{"duration": 2.305, "text": "a great rascal put in north", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0014.wav"}
{"duration": 4.135, "text": "well now said meekin with asperity i don't agree with you", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0015.wav"}
{"duration": 10.89, "text": "he seems to me to be truly penitent for his offences a misguided but not a hypocritical man if my knowledge of human nature goes for anything i hope he is said north", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0016.wav"}
{"duration": 7.045, "text": "there's no fear of him said burgess cheerily if he grows uproarious we'll soon give him a touch of the cat", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0017.wav"}
{"duration": 7.375, "text": "i suppose severity is necessary returned meekin though to my ears a flogging sounds a little distasteful", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0018.wav"}
{"duration": 2.93, "text": "i have these attacks at times", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0019.wav"}
{"duration": 13.485, "text": "the reverend meekin eyed his clerical brother with horror the reverend meekin was not accustomed to clergymen who wore black neckties smoked clay pipes chewed tobacco and drank neat brandy out of tumblers", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0020.wav"}
{"duration": 7.27, "text": "so they went on to the verandah and looked down upon the lights of the prison and listened to the sea lapping the shore", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0021.wav"}
{"duration": 16.4, "text": "by and by a short figure smoking a cheroot came up out of the dark and proved to be doctor macklewain who had been prevented from attending the dinner by reason of an accident to a constable at norfolk bay which had claimed his professional attention", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0022.wav"}
{"duration": 2.5, "text": "dead said doctor macklewain", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0023.wav"}
{"duration": 16.24, "text": "delighted to see you mister meekin", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0024.wav"}
{"duration": 3.735, "text": "but macklewain was tired and wanted to get home", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0025.wav"}
{"duration": 2.55, "text": "our roads lie together doctor", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0026.wav"}
{"duration": 11.39, "text": "before the two clergymen had got half way down the steep path that led from the commandant's house to the flat on which the cottages of the doctor and chaplain were built macklewain rejoined them", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0027.wav"}
{"duration": 3.21, "text": "another flogging to morrow said he grumblingly", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0028.wav"}
{"duration": 20.025, "text": "whom is he going to flog now", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0029.wav"}
{"duration": 3.205, "text": "you don't mean to say he's going to flog kirkland", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0030.wav"}
{"duration": 8.65, "text": "perhaps you'll have the goodness to allow me to be the best judge of that returned macklewain drawing up his little body to its least insignificant stature", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0031.wav"}
{"duration": 4.74, "text": "mister meekin expressed some alarm but doctor macklewain re assured him", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0032.wav"}
{"duration": 4.225, "text": "we can't do anything without evidence complain", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0033.wav"}
{"duration": 4.42, "text": "i shall find my portmanteau in my room you said yes yes", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0034.wav"}
{"duration": 3.285, "text": "he sleeps at the back and north hurried off", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0035.wav"}
{"duration": 6.85, "text": "an impulsive gentleman said meekin to macklewain as the sound of mister north's footsteps died away in the distance", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0036.wav"}
{"duration": 2.575, "text": "macklewain shook his head seriously", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0037.wav"}
{"duration": 2.865, "text": "he has the strangest fits at times", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0038.wav"}
{"duration": 5.685, "text": "unless it's a cancer in the stomach i don't know what it can be cancer in the stomach", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0039.wav"}
{"duration": 2.785, "text": "doctor we all have our crosses have we not", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0040.wav"}
{"duration": 2.475, "text": "how delightful the grass smells", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0041.wav"}
{"duration": 3.21, "text": "good night sir i hope you will be comfortable", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0042.wav"}
{"duration": 3.3, "text": "i'll teach my prisoners to attempt suicide", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0043.wav"}
{"duration": 2.365, "text": "that's macklewain's business", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0044.wav"}
{"duration": 2.765, "text": "then don't you interfere with me sir", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0045.wav"}
{"duration": 14.88, "text": "i've given my orders sir", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0046.wav"}
{"duration": 6.975, "text": "then captain burgess cried north his pale face flushing i tell you the boy's blood will be on your head", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0047.wav"}
{"duration": 4.83, "text": "i am a minister of god sir and i forbid you to commit this crime", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0048.wav"}
{"duration": 2.765, "text": "damn your impertinence sir burst out burgess", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0049.wav"}
{"duration": 2.72, "text": "you're a dismissed officer of the government sir", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0050.wav"}
{"duration": 3.535, "text": "this of course was mere bravado on the part of the commandant", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0051.wav"}
{"duration": 7.925, "text": "north knew well that he would never dare to attempt any such act of violence but the insult stung him like the cut of a whip", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0052.wav"}
{"duration": 8.795, "text": "show mister north out he said and go down to the barracks and tell troke that kirkland is to have a hundred lashes to morrow", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0053.wav"}
{"duration": 3.18, "text": "i'll show you who's master here my good sir", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0054.wav"}
{"duration": 19.53, "text": "this is murderous", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0055.wav"}
{"duration": 4.53, "text": "the government may go to and you too roared burgess get out", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0056.wav"}
{"duration": 2.535, "text": "they shall not flog that boy he said", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0057.wav"}
{"duration": 18.45, "text": "i'll report this to the government", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0058.wav"}
{"duration": 4.62, "text": "i wish i hadn't taken that brandy he said fool that i am", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0059.wav"}
{"duration": 4.025, "text": "oh god give me strength aid me help me", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0060.wav"}
{"duration": 2.485, "text": "o lord look down upon me", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0061.wav"}
{"duration": 4.24, "text": "he mixed a teaspoonful of this in a pannikin of water and drank it", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0062.wav"}
{"duration": 18.63, "text": "it relieved him for a while", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0063.wav"}
{"duration": 6.805, "text": "it was as though he had reached the crisis of a disease which had been for days gathering force", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0064.wav"}
{"duration": 4.2, "text": "i must have a teaspoonful he said to allay the craving", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0065.wav"}
{"duration": 7.125, "text": "twice he paused on the way to the sitting room and twice was he driven on by a power stronger than his will", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0066.wav"}
{"duration": 2.6950625, "text": "he smelt the nutty aroma of the spirit", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0067.wav"}
{"duration": 14.755, "text": "that at all times debasing at this particular time it was infamous that a vice unworthy of any man was doubly sinful in a man of education and a minister of god in vain", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0068.wav"}
{"duration": 10.21, "text": "in the midst of his arguments he found himself at the cupboard with the bottle at his lips in an attitude that was at once ludicrous and horrible", "key": ".././data/LibriSpeech/dev-clean/3752/4944/3752-4944-0069.wav"}
{"duration": 3.32, "text": "the two stray kittens gradually make themselves at home", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0000.wav"}
{"duration": 7.895, "text": "somehow or other cat has taught them that he's in charge here and he just chases them for fun now and again when he's not busy sleeping", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0001.wav"}
{"duration": 4.555, "text": "she doesn't pick them up but just having them in the room sure doesn't give her asthma", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0002.wav"}
{"duration": 5.16, "text": "when are you getting rid of these cats i'm not fixing to start an annex to kate's cat home", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0003.wav"}
{"duration": 5.5, "text": "right away when i bring home my new program he says how come you're taking one less course this half", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0004.wav"}
{"duration": 6.455, "text": "i explain that i'm taking music and also biology algebra english and french music he snorts", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0005.wav"}
{"duration": 15.84, "text": "pop it's a course", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0006.wav"}
{"duration": 5.28, "text": "he does and for once i win a round i keep music for this semester", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0007.wav"}
{"duration": 2.47, "text": "i'll be lucky if i have time to breathe", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0008.wav"}
{"duration": 6.52, "text": "sometimes schools do let kids take a lot of soft courses and then they're out on a limb later huh", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0009.wav"}
{"duration": 3.03, "text": "so he cares huh", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0010.wav"}
{"duration": 9.69, "text": "besides says tom half the reason you and your father are always bickering is that you're so much alike me like him sure", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0011.wav"}
{"duration": 3.64, "text": "as long as there's a bone on the floor the two of you worry it", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0012.wav"}
{"duration": 5.535, "text": "i get the pillows comfortably arranged on the floor with a big bottle of soda and a bag of popcorn within easy reach", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0013.wav"}
{"duration": 2.53, "text": "pop goes right on tuning his channel", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0014.wav"}
{"duration": 4.745, "text": "you're getting altogether too upset about these programs stop it and behave yourself", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0015.wav"}
{"duration": 2.455, "text": "it's your fault mop it up yourself", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0016.wav"}
{"duration": 6.12, "text": "i hear the t v going for a few minutes then pop turns it off and goes in the kitchen to talk to mom", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0017.wav"}
{"duration": 5.35, "text": "well i don't think you should turn a guy's t v program off in the middle without even finding out about it", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0018.wav"}
{"duration": 2.715, "text": "i look at my watch it's a quarter to eleven", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0019.wav"}
{"duration": 6.4, "text": "i turn off the television set i've lost track of what's happening and it doesn't seem to be the grandfather who's the spook after all", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0020.wav"}
{"duration": 4.28, "text": "it's the first time hilda has been to our house and tom introduces her around", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0021.wav"}
{"duration": 2.765, "text": "i told tom we shouldn't come so late says hilda", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0022.wav"}
{"duration": 4.32, "text": "tom says thanks and looks at hilda and she blushes really", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0023.wav"}
{"duration": 6.005, "text": "tom drinks a little more coffee and then he goes on the trouble is i can't get married on this flower shop job", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0024.wav"}
{"duration": 2.91, "text": "you know i'd get drafted in a year or two anyway", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0025.wav"}
{"duration": 2.595, "text": "i've decided to enlist in the army", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0026.wav"}
{"duration": 2.545, "text": "i'll have to check some more says tom", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0027.wav"}
{"duration": 2.95, "text": "here's to you a long happy life", "key": ".././data/LibriSpeech/dev-clean/1988/24833/1988-24833-0028.wav"}
{"duration": 14.95, "text": "fuchs brought up a sack of potatoes and a piece of cured pork from the cellar and grandmother packed some loaves of saturday's bread a jar of butter and several pumpkin pies in the straw of the wagon box", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0000.wav"}
{"duration": 14.21, "text": "occasionally one of the horses would tear off with his teeth a plant full of blossoms and walk along munching it the flowers nodding in time to his bites as he ate down toward them", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0001.wav"}
{"duration": 4.395, "text": "it's no better than a badger hole no proper dugout at all", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0002.wav"}
{"duration": 2.495, "text": "now why is that otto", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0003.wav"}
{"duration": 9.025, "text": "presently against one of those banks i saw a sort of shed thatched with the same wine colored grass that grew everywhere", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0004.wav"}
{"duration": 3.47, "text": "very glad very glad she ejaculated", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0005.wav"}
{"duration": 5.38, "text": "you'll get fixed up comfortable after while missus shimerda make good house", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0006.wav"}
{"duration": 5.865, "text": "my grandmother always spoke in a very loud tone to foreigners as if they were deaf", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0007.wav"}
{"duration": 14.92, "text": "she made missus shimerda understand the friendly intention of our visit and the bohemian woman handled the loaves of bread and even smelled them and examined the pies with lively curiosity exclaiming much good much thank", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0008.wav"}
{"duration": 5.16, "text": "the family had been living on corncakes and sorghum molasses for three days", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0009.wav"}
{"duration": 3.855, "text": "i remembered what the conductor had said about her eyes", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0010.wav"}
{"duration": 5.23, "text": "her skin was brown too and in her cheeks she had a glow of rich dark color", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0011.wav"}
{"duration": 4.57, "text": "even from a distance one could see that there was something strange about this boy", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0012.wav"}
{"duration": 2.89, "text": "he was born like that the others are smart", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0013.wav"}
{"duration": 19.665, "text": "ambrosch he make good farmer", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0014.wav"}
{"duration": 4.175, "text": "he struck ambrosch on the back and the boy smiled knowingly", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0015.wav"}
{"duration": 3.17, "text": "at that moment the father came out of the hole in the bank", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0016.wav"}
{"duration": 6.3, "text": "it was so long that it bushed out behind his ears and made him look like the old portraits i remembered in virginia", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0017.wav"}
{"duration": 3.535, "text": "i noticed how white and well shaped his own hands were", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0018.wav"}
{"duration": 6.135, "text": "we stood panting on the edge of the ravine looking down at the trees and bushes that grew below us", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0019.wav"}
{"duration": 6.78, "text": "the wind was so strong that i had to hold my hat on and the girls skirts were blown out before them", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0020.wav"}
{"duration": 4.935, "text": "she looked at me her eyes fairly blazing with things she could not say", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0021.wav"}
{"duration": 7.54, "text": "she pointed into the gold cottonwood tree behind whose top we stood and said again what name", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0022.wav"}
{"duration": 4.14, "text": "antonia pointed up to the sky and questioned me with her glance", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0023.wav"}
{"duration": 3.085, "text": "she got up on her knees and wrung her hands", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0024.wav"}
{"duration": 2.41, "text": "she was quick and very eager", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0025.wav"}
{"duration": 6.915, "text": "we were so deep in the grass that we could see nothing but the blue sky over us and the gold tree in front of us", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0026.wav"}
{"duration": 7.73, "text": "after antonia had said the new words over and over she wanted to give me a little chased silver ring she wore on her middle finger", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0027.wav"}
{"duration": 5.88, "text": "when i came up he touched my shoulder and looked searchingly down into my face for several seconds", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0028.wav"}
{"duration": 5.65, "text": "i became somewhat embarrassed for i was used to being taken for granted by my elders", "key": ".././data/LibriSpeech/dev-clean/1988/147956/1988-147956-0029.wav"}
{"duration": 16.825, "text": "in aristocratic communities the people readily give themselves up to bursts of tumultuous and boisterous gayety which shake off at once the recollection of their privations the natives of democracies are not fond of being thus violently broken in upon and they never lose sight of their own selves without regret", "key": ".././data/LibriSpeech/dev-clean/1988/148538/1988-148538-0000.wav"}
{"duration": 11.02, "text": "an american instead of going in a leisure hour to dance merrily at some place of public resort as the fellows of his calling continue to do throughout the greater part of europe shuts himself up at home to drink", "key": ".././data/LibriSpeech/dev-clean/1988/148538/1988-148538-0001.wav"}
{"duration": 4.45, "text": "i believe the seriousness of the americans arises partly from their pride", "key": ".././data/LibriSpeech/dev-clean/1988/148538/1988-148538-0002.wav"}
{"duration": 5.58, "text": "this is more especially the case amongst those free nations which form democratic communities", "key": ".././data/LibriSpeech/dev-clean/1988/148538/1988-148538-0003.wav"}
{"duration": 13.7, "text": "then there are in all classes a very large number of men constantly occupied with the serious affairs of the government and those whose thoughts are not engaged in the direction of the commonwealth are wholly engrossed by the acquisition of a private fortune", "key": ".././data/LibriSpeech/dev-clean/1988/148538/1988-148538-0004.wav"}
{"duration": 16.35, "text": "i do not believe in such republics any more than in that of plato or if the things we read of really happened i do not hesitate to affirm that these supposed democracies were composed of very different elements from ours and that they had nothing in common with the latter except their name", "key": ".././data/LibriSpeech/dev-clean/1988/148538/1988-148538-0005.wav"}
{"duration": 22.865, "text": "in aristocracies every man has one sole object which he unceasingly pursues but amongst democratic nations the existence of man is more complex the same mind will almost always embrace several objects at the same time and these objects are frequently wholly foreign to each other as it cannot know them all well the mind is readily satisfied with imperfect notions of each", "key": ".././data/LibriSpeech/dev-clean/1988/148538/1988-148538-0006.wav"}
{"duration": 7.44, "text": "chapter sixteen why the national vanity of the americans is more restless and captious than that of the english", "key": ".././data/LibriSpeech/dev-clean/1988/148538/1988-148538-0007.wav"}
{"duration": 6.815, "text": "the americans in their intercourse with strangers appear impatient of the smallest censure and insatiable of praise", "key": ".././data/LibriSpeech/dev-clean/1988/148538/1988-148538-0008.wav"}
{"duration": 7.4, "text": "if i say to an american that the country he lives in is a fine one ay he replies there is not its fellow in the world", "key": ".././data/LibriSpeech/dev-clean/1988/148538/1988-148538-0009.wav"}
{"duration": 8.685, "text": "if i applaud the freedom which its inhabitants enjoy he answers freedom is a fine thing but few nations are worthy to enjoy it", "key": ".././data/LibriSpeech/dev-clean/1988/148538/1988-148538-0010.wav"}
{"duration": 9.55, "text": "in aristocratic countries the great possess immense privileges upon which their pride rests without seeking to rely upon the lesser advantages which accrue to them", "key": ".././data/LibriSpeech/dev-clean/1988/148538/1988-148538-0011.wav"}
{"duration": 13.655, "text": "they therefore entertain a calm sense of their superiority they do not dream of vaunting privileges which everyone perceives and no one contests and these things are not sufficiently new to them to be made topics of conversation", "key": ".././data/LibriSpeech/dev-clean/1988/148538/1988-148538-0012.wav"}
{"duration": 10.405, "text": "they stand unmoved in their solitary greatness well assured that they are seen of all the world without any effort to show themselves off and that no one will attempt to drive them from that position", "key": ".././data/LibriSpeech/dev-clean/1988/148538/1988-148538-0013.wav"}
{"duration": 10.615, "text": "when an aristocracy carries on the public affairs its national pride naturally assumes this reserved indifferent and haughty form which is imitated by all the other classes of the nation", "key": ".././data/LibriSpeech/dev-clean/1988/148538/1988-148538-0014.wav"}
{"duration": 17.335, "text": "these persons then displayed towards each other precisely the same puerile jealousies which animate the men of democracies the same eagerness to snatch the smallest advantages which their equals contested and the same desire to parade ostentatiously those of which they were in possession", "key": ".././data/LibriSpeech/dev-clean/1988/148538/1988-148538-0015.wav"}
{"duration": 2.66, "text": "illustration long pepper", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0000.wav"}
{"duration": 11.05, "text": "long pepper this is the produce of a different plant from that which produces the black it consisting of the half ripe flower heads of what naturalists call piper longum and chaba", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0001.wav"}
{"duration": 10.26, "text": "originally the most valuable of these were found in the spice islands or moluccas of the indian ocean and were highly prized by the nations of antiquity", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0002.wav"}
{"duration": 5.405, "text": "the long pepper is less aromatic than the black but its oil is more pungent", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0003.wav"}
{"duration": 8.17, "text": "then add the yolks of the eggs well beaten stir them to the sauce but do not allow it to boil and serve very hot", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0004.wav"}
{"duration": 18.86, "text": "mode pare and slice the cucumbers as for the table sprinkle well with salt and let them remain for twenty four hours strain off the liquor pack in jars a thick layer of cucumbers and salt alternately tie down closely and when wanted for use take out the quantity required", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0005.wav"}
{"duration": 2.8, "text": "illustration the cucumber", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0006.wav"}
{"duration": 26.625, "text": "mode choose the greenest cucumbers and those that are most free from seeds put them in strong salt and water with a cabbage leaf to keep them down tie a paper over them and put them in a warm place till they are yellow then wash them and set them over the fire in fresh water with a very little salt and another cabbage leaf over them cover very closely but take care they do not boil", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0007.wav"}
{"duration": 20.285, "text": "put the sugar with one quarter pint of water in a saucepan over the fire remove the scum as it rises and add the lemon peel and ginger with the outside scraped off when the syrup is tolerably thick take it off the fire and when cold wipe the cucumbers dry and put them in", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0008.wav"}
{"duration": 5.84, "text": "seasonable this recipe should be used in june july or august", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0009.wav"}
{"duration": 11.505, "text": "solid rocks of salt are also found in various parts of the world and the county of chester contains many of these mines and it is from there that much of our salt comes", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0010.wav"}
{"duration": 14.0, "text": "some springs are so highly impregnated with salt as to have received the name of brine springs and are supposed to have become so by passing through the salt rocks below ground and thus dissolving a portion of this mineral substance", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0011.wav"}
{"duration": 5.405, "text": "mode put the milk in a very clean saucepan and let it boil", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0012.wav"}
{"duration": 6.01, "text": "beat the eggs stir to them the milk and pounded sugar and put the mixture into a jug", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0013.wav"}
{"duration": 8.13, "text": "place the jug in a saucepan of boiling water keep stirring well until it thickens but do not allow it to boil or it will curdle", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0014.wav"}
{"duration": 4.29, "text": "when it is sufficiently thick take it off as it should not boil", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0015.wav"}
{"duration": 2.78, "text": "illustration the lemon", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0016.wav"}
{"duration": 7.105, "text": "the lemon this fruit is a native of asia and is mentioned by virgil as an antidote to poison", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0017.wav"}
{"duration": 7.06, "text": "it is hardier than the orange and as one of the citron tribe was brought into europe by the arabians", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0018.wav"}
{"duration": 8.38, "text": "the lemon was first cultivated in england in the beginning of the seventeenth century and is now often to be found in our green houses", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0019.wav"}
{"duration": 9.34, "text": "this juice which is called citric acid may be preserved in bottles for a considerable time by covering it with a thin stratum of oil", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0020.wav"}
{"duration": 11.83, "text": "to pickle eggs", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0021.wav"}
{"duration": 6.77, "text": "seasonable this should be made about easter as at this time eggs are plentiful and cheap", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0022.wav"}
{"duration": 7.24, "text": "a store of pickled eggs will be found very useful and ornamental in serving with many first and second course dishes", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0023.wav"}
{"duration": 2.86, "text": "illustration ginger", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0024.wav"}
{"duration": 8.005, "text": "the ginger plant known to naturalists as zingiber officinale is a native of the east and west indies", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0025.wav"}
{"duration": 5.655, "text": "in jamaica it flowers about august or september fading about the end of the year", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0026.wav"}
{"duration": 9.535, "text": "beat the yolks of the other two eggs add them with a little flour and salt to those pounded mix all well together and roll into balls", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0027.wav"}
{"duration": 5.16, "text": "boil them before they are put into the soup or other dish they may be intended for", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0028.wav"}
{"duration": 2.625, "text": "lemon juice may be added at pleasure", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0029.wav"}
{"duration": 9.37, "text": "mode put the whole of the ingredients into a bottle and let it remain for a fortnight in a warm place occasionally shaking up the contents", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0030.wav"}
{"duration": 5.155, "text": "they ought to be taken up in the autumn and when dried in the house will keep till spring", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0031.wav"}
{"duration": 5.92, "text": "add the wine and if necessary a seasoning of cayenne when it will be ready to serve", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0032.wav"}
{"duration": 7.71, "text": "note the wine in this sauce may be omitted and an onion sliced and fried of a nice brown substituted for it", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0033.wav"}
{"duration": 3.68, "text": "simmer for a minute or two and serve in a tureen", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0034.wav"}
{"duration": 3.61, "text": "sufficient to serve with five or six mackerel", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0035.wav"}
{"duration": 13.875, "text": "various dishes are frequently ornamented and garnished with its graceful leaves and these are sometimes boiled in soups although it is more usually confined in english cookery to the mackerel sauce as here given", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0036.wav"}
{"duration": 2.97, "text": "forcemeat for cold savoury pies", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0037.wav"}
{"duration": 5.905, "text": "pound well and bind with one or two eggs which have been previously beaten and strained", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0038.wav"}
{"duration": 2.88, "text": "illustration marjoram", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0039.wav"}
{"duration": 7.92, "text": "it is a native of portugal and when its leaves are used as a seasoning herb they have an agreeable aromatic flavour", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0040.wav"}
{"duration": 12.15, "text": "mode mix all the ingredients well together carefully mincing them very finely beat up the egg moisten with it and work the whole very smoothly together", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0041.wav"}
{"duration": 3.87, "text": "sufficient for a moderate sized haddock or pike", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0042.wav"}
{"duration": 7.085, "text": "now beat and strain the eggs work these up with the other ingredients and the forcemeat will be ready for use", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0043.wav"}
{"duration": 5.77, "text": "boil for five minutes mince it very small and mix it with the other ingredients", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0044.wav"}
{"duration": 6.11, "text": "if it should be in an unsound state it must be on no account made use of", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0045.wav"}
{"duration": 2.635, "text": "illustration basil", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0046.wav"}
{"duration": 17.665, "text": "other sweet herbs are cultivated for purposes of medicine and perfumery they are most grateful both to the organs of taste and smelling and to the aroma derived from them is due in a great measure the sweet and exhilarating fragrance of our flowery meads", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0047.wav"}
{"duration": 14.72, "text": "french forcemeat", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0048.wav"}
{"duration": 15.835, "text": "it will be well to state in the beginning of this recipe that french forcemeat or quenelles consist of the blending of three separate processes namely panada udder and whatever meat you intend using panada", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0049.wav"}
{"duration": 8.79, "text": "place it over the fire keep constantly stirring to prevent its burning and when quite dry put in a small piece of butter", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0050.wav"}
{"duration": 9.29, "text": "put the udder into a stewpan with sufficient water to cover it let it stew gently till quite done when take it out to cool", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0051.wav"}
{"duration": 3.1, "text": "illustration pestle and mortar", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0052.wav"}
{"duration": 11.06, "text": "when the three ingredients are properly prepared pound them altogether in a mortar for some time for the more quenelles are pounded the more delicate they are", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0053.wav"}
{"duration": 7.725, "text": "if the quenelles are not firm enough add the yolk of another egg but omit the white which only makes them hollow and puffy inside", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0054.wav"}
{"duration": 9.51, "text": "any one with the slightest pretensions to refined cookery must in this particular implicitly follow the example of our friends across the channel", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0055.wav"}
{"duration": 18.9, "text": "fried bread crumbs", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0056.wav"}
{"duration": 8.31, "text": "the fat they are fried in should be clear and the crumbs should not have the slightest appearance or taste of having been in the least degree burnt", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0057.wav"}
{"duration": 2.36, "text": "fried bread for borders", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0058.wav"}
{"duration": 8.745, "text": "when quite crisp dip one side of the sippet into the beaten white of an egg mixed with a little flour and place it on the edge of the dish", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0059.wav"}
{"duration": 7.405, "text": "continue in this manner till the border is completed arranging the sippets a pale and a dark one alternately", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0060.wav"}
{"duration": 17.43, "text": "mode cut up the onion and carrot into small rings and put them into a stewpan with the herbs mushrooms bay leaf cloves and mace add the butter and simmer the whole very gently over a slow fire until the onion is quite tender", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0061.wav"}
{"duration": 4.14, "text": "sufficient half this quantity for two slices of salmon", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0062.wav"}
{"duration": 2.8, "text": "illustration sage", "key": ".././data/LibriSpeech/dev-clean/1919/142785/1919-142785-0063.wav"}
{"duration": 20.22, "text": "every elevation of the type man has hitherto been the work of an aristocratic society and so it will always be a society believing in a long scale of gradations of rank and differences of worth among human beings and requiring slavery in some form or other", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0000.wav"}
{"duration": 12.455, "text": "the distinctions of moral values have either originated in a ruling caste pleasantly conscious of being different from the ruled or among the ruled class the slaves and dependents of all sorts", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0001.wav"}
{"duration": 4.475, "text": "we truthful ones the nobility in ancient greece called themselves", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0002.wav"}
{"duration": 18.955, "text": "it is obvious that everywhere the designations of moral value were at first applied to men and were only derivatively and at a later period applied to actions it is a gross mistake therefore when historians of morals start with questions like why have sympathetic actions been praised", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0003.wav"}
{"duration": 6.985, "text": "he honours whatever he recognizes in himself such morality equals self glorification", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0004.wav"}
{"duration": 9.765, "text": "probably a pessimistic suspicion with regard to the entire situation of man will find expression perhaps a condemnation of man together with his situation", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0005.wav"}
{"duration": 14.295, "text": "here is the seat of the origin of the famous antithesis good and evil power and dangerousness are assumed to reside in the evil a certain dreadfulness subtlety and strength which do not admit of being despised", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0006.wav"}
{"duration": 14.93, "text": "according to slave morality therefore the evil man arouses fear according to master morality it is precisely the good man who arouses fear and seeks to arouse it while the bad man is regarded as the despicable being", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0007.wav"}
{"duration": 9.3, "text": "everywhere that slave morality gains the ascendancy language shows a tendency to approximate the significations of the words good and stupid", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0008.wav"}
{"duration": 24.365, "text": "or he will even say for many reasons i can delight in the good opinion of others perhaps because i love and honour them and rejoice in all their joys perhaps also because their good opinion endorses and strengthens my belief in my own good opinion perhaps because the good opinion of others even in cases where i do not share it is useful to me or gives promise of usefulness all this however is not vanity", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0009.wav"}
{"duration": 32.44, "text": "in fact conformably to the slow rise of the democratic social order and its cause the blending of the blood of masters and slaves the originally noble and rare impulse of the masters to assign a value to themselves and to think well of themselves will now be more and more encouraged and extended but it has at all times an older ampler and more radically ingrained propensity opposed to it and in the phenomenon of vanity this older propensity overmasters the younger", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0010.wav"}
{"duration": 17.225, "text": "the most varied experience teaches it what are the qualities to which it principally owes the fact that it still exists in spite of all gods and men and has hitherto been victorious these qualities it calls virtues and these virtues alone it develops to maturity", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0011.wav"}
{"duration": 15.7, "text": "variations whether they be deviations into the higher finer and rarer or deteriorations and monstrosities appear suddenly on the scene in the greatest exuberance and splendour the individual dares to be individual and detach himself", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0012.wav"}
{"duration": 32.645, "text": "at this turning point of history there manifest themselves side by side and often mixed and entangled together a magnificent manifold virgin forest like up growth and up striving a kind of tropical tempo in the rivalry of growth and an extraordinary decay and self destruction owing to the savagely opposing and seemingly exploding egoisms which strive with one another for sun and light and can no longer assign any limit restraint or forbearance for themselves by means of the hitherto existing morality", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0013.wav"}
{"duration": 28.795, "text": "nothing but new whys nothing but new hows no common formulas any longer misunderstanding and disregard in league with each other decay deterioration and the loftiest desires frightfully entangled the genius of the race overflowing from all the cornucopias of good and bad a portentous simultaneousness of spring and autumn full of new charms and mysteries peculiar to the fresh still inexhausted still unwearied corruption", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0014.wav"}
{"duration": 17.465, "text": "danger is again present the mother of morality great danger this time shifted into the individual into the neighbour and friend into the street into their own child into their own heart into all the most personal and secret recesses of their desires and volitions", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0015.wav"}
{"duration": 5.015, "text": "what will the moral philosophers who appear at this time have to preach", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0016.wav"}
{"duration": 19.71, "text": "this is the problem of race", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0017.wav"}
{"duration": 14.565, "text": "in our very democratic or rather very plebeian age education and culture must be essentially the art of deceiving deceiving with regard to origin with regard to the inherited plebeianism in body and soul", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0018.wav"}
{"duration": 19.115, "text": "the noble soul accepts the fact of his egoism without question and also without consciousness of harshness constraint or arbitrariness therein but rather as something that may have its basis in the primary law of things if he sought a designation for it he would say it is justice itself", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0019.wav"}
{"duration": 23.41, "text": "on this account the people of one nation understand one another better than those belonging to different nations even when they use the same language or rather when people have lived long together under similar conditions of climate soil danger requirement toil there originates therefrom an entity that understands itself namely a nation", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0020.wav"}
{"duration": 12.69, "text": "the greater the danger the greater is the need of agreeing quickly and readily about what is necessary not to misunderstand one another in danger that is what cannot at all be dispensed with in intercourse", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0021.wav"}
{"duration": 16.285, "text": "also in all loves and friendships one has the experience that nothing of the kind continues when the discovery has been made that in using the same words one of the two parties has feelings thoughts intuitions wishes or fears different from those of the other", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0022.wav"}
{"duration": 14.94, "text": "whichever groups of sensations within a soul awaken most readily begin to speak and give the word of command these decide as to the general order of rank of its values and determine ultimately its list of desirable things", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0023.wav"}
{"duration": 9.74, "text": "a man's estimates of value betray something of the structure of his soul and wherein it sees its conditions of life its intrinsic needs", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0024.wav"}
{"duration": 17.85, "text": "profound suffering makes noble it separates one of the most refined forms of disguise is epicurism along with a certain ostentatious boldness of taste which takes suffering lightly and puts itself on the defensive against all that is sorrowful and profound", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0025.wav"}
{"duration": 13.11, "text": "the highest instinct for purity places him who is affected with it in the most extraordinary and dangerous isolation as a saint for it is just holiness the highest spiritualization of the instinct in question", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0026.wav"}
{"duration": 19.12, "text": "occasionally too the waking call comes too late the chance which gives permission to take action when their best youth and strength for action have been used up in sitting still and how many a one just as he sprang up has found with horror that his limbs are benumbed and his spirits are now too heavy", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0027.wav"}
{"duration": 3.665, "text": "and whoever thou art what is it that now pleases thee", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0028.wav"}
{"duration": 2.915, "text": "only name it whatever i have i offer thee", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0029.wav"}
{"duration": 2.94, "text": "but you misunderstand him when you complain about it", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0030.wav"}
{"duration": 6.86, "text": "there must be a sort of repugnance in me to believe anything definite about myself is there perhaps some enigma therein", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0031.wav"}
{"duration": 13.36, "text": "probably but fortunately nothing for my own teeth perhaps it betrays the species to which i belong but not to myself as is sufficiently agreeable to me but what has happened to you", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0032.wav"}
{"duration": 5.555, "text": "i do not know he said hesitatingly perhaps the harpies have flown over my table", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0033.wav"}
{"duration": 14.985, "text": "to suffocate with his memories to him who has the desires of a lofty and dainty soul and only seldom finds his table laid and his food prepared the danger will always be great nowadays however it is extraordinarily so", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0034.wav"}
{"duration": 4.695, "text": "and to choose for company that roguish and cheerful vice politeness", "key": ".././data/LibriSpeech/dev-clean/422/122949/422-122949-0035.wav"}
{"duration": 3.13, "text": "shasta rambles and modoc memories", "key": ".././data/LibriSpeech/dev-clean/3000/15664/3000-15664-0000.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0001.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0002.wav"}
{"duration": 4.67, "text": "go quietly alone no harm will befall you", "key": ".././data/LibriSpeech/dev-clean/3000/15664/3000-15664-0003.wav"}
{"duration": 2.885, "text": "but it is far better to go afoot", "key": ".././data/LibriSpeech/dev-clean/3000/15664/3000-15664-0004.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0005.wav"}
{"duration": 2.55, "text": "only a little food will be required", "key": ".././data/LibriSpeech/dev-clean/3000/15664/3000-15664-0006.wav"}
{"duration": 6.965, "text": "thus one saunters on and on in the glorious radiance in utter peace and forgetfulness of time", "key": ".././data/LibriSpeech/dev-clean/3000/15664/3000-15664-0007.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0008.wav"}
{"duration": 7.975, "text": "at such time its height seems much less as if crouching and weary it were taking rest", "key": ".././data/LibriSpeech/dev-clean/3000/15664/3000-15664-0009.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0010.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0011.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0012.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0013.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0014.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0015.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0016.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0017.wav"}
{"duration": 5.65, "text": "the long gray slopes leading up to the glacier seem remarkably smooth and unbroken", "key": ".././data/LibriSpeech/dev-clean/3000/15664/3000-15664-0018.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0019.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0020.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0021.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0022.wav"}
{"duration": 5.1550625, "text": "mount bremer is the most noted stronghold of the sheep in the whole shasta region", "key": ".././data/LibriSpeech/dev-clean/3000/15664/3000-15664-0023.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0024.wav"}
{"duration": 4.97, "text": "while traveling with a company of hunters i saw about fifty in one flock", "key": ".././data/LibriSpeech/dev-clean/3000/15664/3000-15664-0025.wav"}
{"duration": 2.54, "text": "the mule deer are nearly as heavy", "key": ".././data/LibriSpeech/dev-clean/3000/15664/3000-15664-0026.wav"}
{"duration": 4.045, "text": "their long massive ears give them a very striking appearance", "key": ".././data/LibriSpeech/dev-clean/3000/15664/3000-15664-0027.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0028.wav"}
{"duration": 5.73, "text": "then fell the gloaming making everything still more forbidding and mysterious", "key": ".././data/LibriSpeech/dev-clean/3000/15664/3000-15664-0029.wav"}
{"duration": 3.07, "text": "then darkness like death", "key": ".././data/LibriSpeech/dev-clean/3000/15664/3000-15664-0030.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0031.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0032.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0033.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0034.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0035.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0036.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0037.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0038.wav"}
{"duration": 4.755, "text": "tracing rivers to their fountains makes the most charming of travels", "key": ".././data/LibriSpeech/dev-clean/3000/15664/3000-15664-0039.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0040.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0041.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0042.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0043.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0044.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/LibriSpeech/dev-clean/3000/15664/3000-15664-0045.wav"}
{"duration": 5.36, "text": "every landscape low and high seems doomed to be trampled and harried", "key": ".././data/LibriSpeech/dev-clean/3000/15664/3000-15664-0046.wav"}
{"duration": 4.37, "text": "grandfather came down wearing a white shirt and his sunday coat", "key": ".././data/LibriSpeech/dev-clean/1993/147965/1993-147965-0000.wav"}
{"duration": 2.685, "text": "morning prayers were longer than usual", "key": ".././data/LibriSpeech/dev-clean/1993/147965/1993-147965-0001.wav"}
{"duration": 9.36, "text": "he gave thanks for our food and comfort and prayed for the poor and destitute in great cities where the struggle for life was harder than it was here with us", "key": ".././data/LibriSpeech/dev-clean/1993/147965/1993-147965-0002.wav"}
{"duration": 7.375, "text": "because he talked so little his words had a peculiar force they were not worn dull from constant use", "key": ".././data/LibriSpeech/dev-clean/1993/147965/1993-147965-0003.wav"}
{"duration": 2.915, "text": "all afternoon he sat in the dining room", "key": ".././data/LibriSpeech/dev-clean/1993/147965/1993-147965-0004.wav"}
{"duration": 8.66, "text": "at about four o'clock a visitor appeared mister shimerda wearing his rabbit skin cap and collar and new mittens his wife had knitted", "key": ".././data/LibriSpeech/dev-clean/1993/147965/1993-147965-0005.wav"}
{"duration": 8.83, "text": "he sat still and passive his head resting against the back of the wooden rocking chair his hands relaxed upon the arms", "key": ".././data/LibriSpeech/dev-clean/1993/147965/1993-147965-0006.wav"}
{"duration": 7.57, "text": "his face had a look of weariness and pleasure like that of sick people when they feel relief from pain", "key": ".././data/LibriSpeech/dev-clean/1993/147965/1993-147965-0007.wav"}
{"duration": 5.5, "text": "he made the sign of the cross over me put on his cap and went off in the dark", "key": ".././data/LibriSpeech/dev-clean/1993/147965/1993-147965-0008.wav"}
{"duration": 8.42, "text": "they sat about the house most of the day as if it were sunday greasing their boots mending their suspenders plaiting whiplashes", "key": ".././data/LibriSpeech/dev-clean/1993/147964/1993-147964-0000.wav"}
{"duration": 4.75, "text": "anyway he would never allow one of his horses to be put to such a strain", "key": ".././data/LibriSpeech/dev-clean/1993/147964/1993-147964-0001.wav"}
{"duration": 6.33, "text": "i had wanted to get some picture books for yulka and antonia even yulka was able to read a little now", "key": ".././data/LibriSpeech/dev-clean/1993/147964/1993-147964-0002.wav"}
{"duration": 4.685, "text": "she cut squares of cotton cloth and we sewed them together into a book", "key": ".././data/LibriSpeech/dev-clean/1993/147964/1993-147964-0003.wav"}
{"duration": 7.3, "text": "on the white pages i grouped sunday school cards and advertising cards which i had brought from my old country", "key": ".././data/LibriSpeech/dev-clean/1993/147964/1993-147964-0004.wav"}
{"duration": 10.515, "text": "when he mounted his horse at the door i saw that he had a hatchet slung to his belt and he gave grandmother a meaning look which told me he was planning a surprise for me", "key": ".././data/LibriSpeech/dev-clean/1993/147964/1993-147964-0005.wav"}
{"duration": 3.47, "text": "i put on my cap and ran out to meet jake", "key": ".././data/LibriSpeech/dev-clean/1993/147964/1993-147964-0006.wav"}
{"duration": 6.865, "text": "he used to help my father cut christmas trees for me in virginia and he had not forgotten how much i liked them", "key": ".././data/LibriSpeech/dev-clean/1993/147964/1993-147964-0007.wav"}
{"duration": 7.04, "text": "by the time we had placed the cold fresh smelling little tree in a corner of the sitting room it was already christmas eve", "key": ".././data/LibriSpeech/dev-clean/1993/147964/1993-147964-0008.wav"}
{"duration": 8.97, "text": "from under the lining he now produced a collection of brilliantly colored paper figures several inches high and stiff enough to stand alone", "key": ".././data/LibriSpeech/dev-clean/1993/147964/1993-147964-0009.wav"}
{"duration": 20.565, "text": "i can see them now exactly as they looked working about the table in the lamplight jake with his heavy features so rudely moulded that his face seemed somehow unfinished otto with his half ear and the savage scar that made his upper lip curl so ferociously under his twisted mustache", "key": ".././data/LibriSpeech/dev-clean/1993/147964/1993-147964-0010.wav"}
{"duration": 11.135, "text": "the week following christmas brought in a thaw and by new year's day all the world about us was a broth of gray slush and the guttered slope between the windmill and the barn was running black water", "key": ".././data/LibriSpeech/dev-clean/1993/147966/1993-147966-0000.wav"}
{"duration": 12.565, "text": "it was the first time missus shimerda had been to our house and she ran about examining our carpets and curtains and furniture all the while commenting upon them to her daughter in an envious complaining tone", "key": ".././data/LibriSpeech/dev-clean/1993/147966/1993-147966-0001.wav"}
{"duration": 4.185, "text": "your mama i said angrily wants other people's things", "key": ".././data/LibriSpeech/dev-clean/1993/147966/1993-147966-0002.wav"}
{"duration": 2.595, "text": "for ambrosch my mama come here", "key": ".././data/LibriSpeech/dev-clean/1993/147966/1993-147966-0003.wav"}
{"duration": 4.865, "text": "but you see a body never knows what traits poverty might bring out in em", "key": ".././data/LibriSpeech/dev-clean/1993/147966/1993-147966-0004.wav"}
{"duration": 3.345, "text": "they began to laugh boisterously when they saw me calling", "key": ".././data/LibriSpeech/dev-clean/1993/147966/1993-147966-0005.wav"}
{"duration": 3.29, "text": "you've got a birthday present this time jim and no mistake", "key": ".././data/LibriSpeech/dev-clean/1993/147966/1993-147966-0006.wav"}
{"duration": 6.715, "text": "how infinite the wealth of love and hope garnered in these same tiny treasure houses and oh", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0000.wav"}
{"duration": 9.535, "text": "what bankrupts in the world we feel when death like some remorseless creditor seizes on all we fondly thought our own the twins", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0001.wav"}
{"duration": 5.76, "text": "the ghoul like fever was not to be braved with impunity and baulked of its prey", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0002.wav"}
{"duration": 14.3, "text": "the board not so formidable as she had imagined had inquired into her case and instead of sending her to stoke claypole her husband's buckinghamshire parish as she had dreaded had agreed to pay her rent", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0003.wav"}
{"duration": 7.4, "text": "margaret met jem wilson several days after his brothers were seriously ill and heard from him the state of things at his home", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0004.wav"}
{"duration": 7.98, "text": "she stopped with her hand on the latch of the wilsons door to still her beating heart and listened to the hushed quiet within", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0005.wav"}
{"duration": 27.88, "text": "she opened the door softly there sat missus wilson in the old rocking chair with one sick death like boy lying on her knee crying without let or pause but softly gently as fearing to disturb the troubled gasping child while behind her old alice let her fast dropping tears fall down on the dead body of the other twin which she was laying out on a board placed on a sort of sofa settee in a corner of the room", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0006.wav"}
{"duration": 7.91, "text": "over the child which yet breathed the father bent watching anxiously for some ground of hope where hope there was none", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0007.wav"}
{"duration": 3.39, "text": "is there any chance for the other one think you", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0008.wav"}
{"duration": 17.28, "text": "but earnest as the father was in watching the yet living he had eyes and ears for all that concerned the dead and sprang gently up and took his dead son on his hard couch in his arms with tender strength and carried him upstairs as if afraid of wakening him", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0009.wav"}
{"duration": 3.28, "text": "wishing him said mary in a tone of inquiry", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0010.wav"}
{"duration": 3.12, "text": "then the mother lifted up her voice and wept", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0011.wav"}
{"duration": 5.28, "text": "her cries brought her husband down to try with his aching heart to comfort hers", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0012.wav"}
{"duration": 5.075, "text": "mary and alice drew near the fire and stood in quiet sorrow for some time", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0013.wav"}
{"duration": 3.055, "text": "then alice broke the silence by saying", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0014.wav"}
{"duration": 8.2600625, "text": "afore christmas time i was as full as full could be of going home for good and all yo han heard how i've wished it this terrible long time", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0015.wav"}
{"duration": 5.845, "text": "but he stayed long there and at last his sturdy frame shook with his strong agony", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0016.wav"}
{"duration": 3.78, "text": "oh jem don't give way so i cannot bear to see you", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0017.wav"}
{"duration": 13.29, "text": "he did not speak as though fearing to destroy by sound or motion the happiness of that moment when her soft hand's touch thrilled through his frame and her silvery voice was whispering tenderness in his ear", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0018.wav"}
{"duration": 6.96, "text": "don't jem please don't whispered she again believing that his silence was only another form of grief", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0019.wav"}
{"duration": 16.98, "text": "mary i almost loathe myself when i feel i would not give up this minute when my brothers lie dead and father and mother are in such trouble for all my life that's past and gone and mary as she tried to release her hand you know what makes me feel so blessed", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0020.wav"}
{"duration": 10.49, "text": "he remained up stairs until after the early dawn showed mary that she need have no fear of going home through the deserted and quiet streets to try and get a little sleep before work hour", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0021.wav"}
{"duration": 16.54, "text": "so leaving kind messages to george and jane wilson and hesitating whether she might dare to send a few kind words to jem and deciding that she had better not she stepped out into the bright morning light so fresh a contrast to the darkened room where death had been", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0022.wav"}
{"duration": 10.7, "text": "her thoughts ran on jem's manner and words not but what she had known the tale they told for many a day but still she wished he had not put it so plainly", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0023.wav"}
{"duration": 11.69, "text": "i cannot think what possesses me that i must always be wanting to comfort him when he's downcast and that i must go meddling wi him to night when sure enough it was his aunt's place to speak to him", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0024.wav"}
{"duration": 9.645, "text": "i think i cannot go right for i either check myself till i'm downright cross to him or else i speak just natural and that's too kind and tender by half", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0025.wav"}
{"duration": 20.295, "text": "but will he thank me for it", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0026.wav"}
{"duration": 16.9, "text": "there was something of keen practical shrewdness about her which contrasted very bewitchingly with the simple foolish unworldly ideas she had picked up from the romances which miss simmonds young ladies were in the habit of recommending to each other yes", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0027.wav"}
{"duration": 10.17, "text": "the old leaven infused years ago by her aunt esther fermented in her little bosom and perhaps all the more for her father's aversion to the rich and the gentle", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0028.wav"}
{"duration": 11.665, "text": "it was a comfort to her when scolded by miss simmonds to think of the day when she would drive up to the door in her own carriage to order her gowns from the hasty tempered yet kind dressmaker", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0029.wav"}
{"duration": 15.52, "text": "but the best of her plans the holiest that which in some measure redeemed the vanity of the rest were those relating to her father her dear father now oppressed with care and always a disheartened gloomy person", "key": ".././data/LibriSpeech/dev-clean/1993/147149/1993-147149-0030.wav"}
{"duration": 2.89, "text": "chapter four the first night in camp", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0000.wav"}
{"duration": 2.97, "text": "even if i can't sing i can beat that", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0001.wav"}
{"duration": 3.005, "text": "not on the range why not demanded the boy", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0002.wav"}
{"duration": 2.975, "text": "a loud laugh followed at chunky's expense", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0003.wav"}
{"duration": 5.565, "text": "the pony did most of it admitted the lad i just gave him his head and that's all there was to it", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0004.wav"}
{"duration": 5.81, "text": "walter had gone out with the second guard and the others had gathered around the camp fire for their nightly story telling", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0005.wav"}
{"duration": 2.445, "text": "none of you will be fit for duty to morrow", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0006.wav"}
{"duration": 3.7, "text": "we've got a hard drive before us and every man must be fit as a fiddle", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0007.wav"}
{"duration": 2.345, "text": "humph grunted curley adams", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0008.wav"}
{"duration": 6.4, "text": "the cowboy did this very thing but within an hour he found himself alone the others having turned in one by one", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0009.wav"}
{"duration": 6.63, "text": "the lads found that a pair of blankets had been assigned to each of them with an ordinary wagon sheet doubled for a tarpaulin", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0010.wav"}
{"duration": 4.025, "text": "these they spread out on the ground using boots wrapped in coats for pillows", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0011.wav"}
{"duration": 6.59, "text": "stacy brown proved the only grumbler in the lot declaring that he could not sleep a wink on such a bed as that", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0012.wav"}
{"duration": 11.81, "text": "the horses of the outfit save those that were on night duty and two or three others that had developed a habit of straying had been turned loose early in the evening for animals on the trail are seldom staked down", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0013.wav"}
{"duration": 7.515, "text": "in spite of their hard couches the pony riders slept soundly even professor zepplin himself never waking the whole night through", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0014.wav"}
{"duration": 3.38, "text": "stacy grumbled turned over and went to sleep again", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0015.wav"}
{"duration": 4.35, "text": "you won't be so fast to wake up hard working cowboys after that i reckon", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0016.wav"}
{"duration": 5.055, "text": "lumpy bates came running toward him not daring to call out for fear of waking the camp", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0017.wav"}
{"duration": 6.195, "text": "hi there hissed lumpy filled with indignation that anyone should attempt to mount a pony from the right side", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0018.wav"}
{"duration": 3.095, "text": "stacy brown's left leg swung over the saddle", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0019.wav"}
{"duration": 2.315, "text": "where are they asked the boy", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0020.wav"}
{"duration": 11.925, "text": "keep a going and if you're lucky you'll run plumb into them was the jeering answer as the sleepy cowmen spurred their ponies on toward camp muttering their disapproval of taking along a bunch of boys on a cattle drive", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0021.wav"}
{"duration": 6.295, "text": "almost before the echoes of his voice had died away a shrill voice piped up from the tail end of the chuck wagon", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0022.wav"}
{"duration": 3.255, "text": "grub pi le grub pi le", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0023.wav"}
{"duration": 4.375, "text": "who is the wrangler this morning asked the foreman glancing about at his men", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0024.wav"}
{"duration": 3.795, "text": "a wrangler's a wrangler answered big foot stolidly", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0025.wav"}
{"duration": 4.43, "text": "he's a fellow who's all the time making trouble isn't he asked stacy innocently", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0026.wav"}
{"duration": 3.505, "text": "oh no this kind of a wrangler isn't laughed the foreman", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0027.wav"}
{"duration": 3.795, "text": "he's a trouble curer not a troublemaker except for himself", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0028.wav"}
{"duration": 6.695, "text": "pong tell the young gentlemen what would become of you if you were to serve bad meals to this outfit of cowpunchers", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0029.wav"}
{"duration": 20.385, "text": "how asked tad", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0030.wav"}
{"duration": 19.845, "text": "we had better start the drive this morning", "key": ".././data/LibriSpeech/dev-clean/6313/76958/6313-76958-0031.wav"}
{"duration": 2.355, "text": "you'll all be over if you don't have a care", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0000.wav"}
{"duration": 4.5, "text": "looks like a clump of bushes down there but i ain't sure can you make it out", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0001.wav"}
{"duration": 3.075, "text": "yes agreed tad that does look like bushes", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0002.wav"}
{"duration": 4.58, "text": "don't move around lie perfectly still warned the guide are you hurt", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0003.wav"}
{"duration": 3.26, "text": "and that tumble's enough to knock the sense out of a full grown man", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0004.wav"}
{"duration": 4.64, "text": "i could not think of allowing any of my charges to take so terrible a risk and", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0005.wav"}
{"duration": 3.005, "text": "no i am the lighter of the two urged tad", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0006.wav"}
{"duration": 4.93, "text": "i am the one to go after walt if anyone has to i'll go down mister thomas", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0007.wav"}
{"duration": 4.49, "text": "master tad is right decided the guide gazing at the two boys approvingly", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0008.wav"}
{"duration": 2.71, "text": "i protest shouted the professor", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0009.wav"}
{"duration": 3.805, "text": "you'd have both of us at the bottom if i left it to you to take care of this end", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0010.wav"}
{"duration": 5.12, "text": "be sure to fasten him securely to the loop before you give the signal to haul up warned the guide", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0011.wav"}
{"duration": 20.61, "text": "are you ready yes", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0012.wav"}
{"duration": 18.54, "text": "he tilted his head to look up", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0013.wav"}
{"duration": 3.785, "text": "the movement sent his body swaying giddily from side to side", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0014.wav"}
{"duration": 8.23, "text": "cautiously placing a hand against the rocks to steady himself tad wisely concluded that hereafter it would not pay to be too curious", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0015.wav"}
{"duration": 7.445, "text": "slowly but steadily the slender line was paid out amid a tense silence on the part of the little group at the top of the canyou", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0016.wav"}
{"duration": 5.065, "text": "after what seemed to them hours a sharp call from the depths reached their ears", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0017.wav"}
{"duration": 2.955, "text": "lige quickly made fast the line to a tree", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0018.wav"}
{"duration": 4.69, "text": "i see him called tad his voice sounding hollow and unnatural to those above", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0019.wav"}
{"duration": 2.99, "text": "he's so far to the right of me that i can't reach him", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0020.wav"}
{"duration": 4.975, "text": "lodged in the branches of a pinyon tree i think it is but he doesn't answer me", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0021.wav"}
{"duration": 7.78, "text": "lige leaning over the brink was able to follow the boy's movements by the aid of the thin arc of light made by the torch in tad's hand", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0022.wav"}
{"duration": 9.35, "text": "but from the cautious movements of the light far below them the guide understood that the lad was at work carrying out his part of the task of rescue to the best of his ability", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0023.wav"}
{"duration": 4.41, "text": "mebby you think he's having some sort of a picnic down there eh glared lige", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0024.wav"}
{"duration": 5.32, "text": "shall we haul up asked lige making a megaphone of his hands yes haul away", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0025.wav"}
{"duration": 20.43, "text": "sure thing answered the boy", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0026.wav"}
{"duration": 14.47, "text": "nor was his sense of security increased when in shifting his position the torch fell from his grasp the fagots scattering as they slipped down between the limbs of the tree and whirling in ever diminishing circles until finally he heard them clatter on the rocks below", "key": ".././data/LibriSpeech/dev-clean/6313/66125/6313-66125-0027.wav"}
{"duration": 2.815, "text": "he no doubt would bring food of some kind with him", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0000.wav"}
{"duration": 11.8, "text": "with a shout the boys dashed pell mell to meet the pack train and falling in behind the slow moving burros urged them on with derisive shouts and sundry resounding slaps on the animals flanks", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0001.wav"}
{"duration": 3.67, "text": "cold water is the most nourishing thing we've touched since last night", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0002.wav"}
{"duration": 5.45, "text": "we did not it must have come to life some time during the night and dug its way out laughed tad", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0003.wav"}
{"duration": 3.9, "text": "and we've got a surprise for you announced stacy swelling with pride", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0004.wav"}
{"duration": 4.58, "text": "jam exclaimed chunky stretching his neck and eyeing the dish longingly", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0005.wav"}
{"duration": 2.96, "text": "now fall to young gentlemen directed the professor", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0006.wav"}
{"duration": 2.455, "text": "i am free to admit that i am hungry too", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0007.wav"}
{"duration": 5.07, "text": "he buried his biscuit under a layer of jam over which he spread a thick coating of honey", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0008.wav"}
{"duration": 4.78, "text": "president brown i withdraw my criticism i offer you my humble apologies", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0009.wav"}
{"duration": 4.23, "text": "i reckon there are smiled the guide we are in the bear country now", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0010.wav"}
{"duration": 19.935, "text": "yes the country is full of caves", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0011.wav"}
{"duration": 3.09, "text": "this announcement filled the boys with excitement", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0012.wav"}
{"duration": 3.605, "text": "but i know an old settler who will lend us his dog if it is not out", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0013.wav"}
{"duration": 11.335, "text": "supper having been finished the party gathered about the camp fire for their evening chat after which admonishing stacy to keep within his tent and not to go borrowing trouble the boys turned in for a sound sleep", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0014.wav"}
{"duration": 7.52, "text": "as yet they had been unable to attempt any fancy riding with their ponies owing to the rugged nature of the country through which they had been journeying", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0015.wav"}
{"duration": 7.475, "text": "the boys were now all anxiety to start while the ponies after their sunday rest were almost as full of life as were their owners", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0016.wav"}
{"duration": 8.685, "text": "the little animals were becoming more sure footed every day and ned said that before the trip was finished jimmie would be able to walk a slack rope", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0017.wav"}
{"duration": 5.705, "text": "an early start was made so that the party reached the promised table lands shortly before ten o'clock in the forenoon", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0018.wav"}
{"duration": 2.46, "text": "a temporary camp was quickly pitched", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0019.wav"}
{"duration": 6.98, "text": "the great green field surrounded on all sides by tall trees made the place an ideal one for their purpose", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0020.wav"}
{"duration": 12.905, "text": "it was a beautiful race the little indian ponies seeming to enter thoroughly into the spirit of the contest stretching themselves out to their full lengths and with heads on a level with their backs fairly flew across the great plot of green", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0021.wav"}
{"duration": 4.29, "text": "all agreed that tad's superior horsemanship alone had won the race for him", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0022.wav"}
{"duration": 5.25, "text": "galloping into camp the boy fetched his sombrero which he carried well out into the field and tossed away", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0023.wav"}
{"duration": 7.925, "text": "then bidding the boys ride up near the spot to watch him he drew off some ten rods and wheeling spurred his pony to a run", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0024.wav"}
{"duration": 4.67, "text": "grasping the pommel with the left hand he appeared to dive head first toward the ground", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0025.wav"}
{"duration": 11.69, "text": "they saw his long hair almost brush the grass one of his hands swept down and up and once more tad butler rose standing in his stirrups uttering a cowboy yell as he waved the sombrero on high", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0026.wav"}
{"duration": 5.16, "text": "the boys howled with delight that is all did save stacy brown", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0027.wav"}
{"duration": 2.32, "text": "tad is an experienced rider", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0028.wav"}
{"duration": 7.07, "text": "the first time he rode swiftly by it leaning over to look at the hat as he passed holding to the pommel firmly with his left hand", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0029.wav"}
{"duration": 3.435, "text": "what's that for demanded ned wonderingly", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0030.wav"}
{"duration": 5.425, "text": "hat too close to me i couldn't get it explained chunky the boys roared", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0031.wav"}
{"duration": 14.88, "text": "why don't you move the pony", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0032.wav"}
{"duration": 9.065, "text": "once more stacy approached the sombrero his pony running well and as he drew near it they saw him rise in his saddle just as tad butler had done a few minutes before", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0033.wav"}
{"duration": 7.96, "text": "at the moment when he freed his left foot from the stirrup he threw his body sharply to the right reaching for the hat without taking the precaution to grasp the pommel", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0034.wav"}
{"duration": 4.2, "text": "as a result instead of stopping when he reached the hat the boy kept on going", "key": ".././data/LibriSpeech/dev-clean/6313/66129/6313-66129-0035.wav"}
{"duration": 9.81, "text": "they also found a martian calendar the year had been divided into ten more or less equal months and one of them had been doma", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0000.wav"}
{"duration": 6.855, "text": "bill chandler the zoologist had been going deeper and deeper into the old sea bottom of syrtis", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0001.wav"}
{"duration": 6.55, "text": "that took the center of interest away from archaeology and started a new burst of activity", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0002.wav"}
{"duration": 16.36, "text": "the civilian specialists in other fields and the space force people who had been holding tape lines and making sketches and snapping cameras were all flying to lower syrtis to find out how much oxygen there was and what kind of life it supported", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0003.wav"}
{"duration": 24.8, "text": "they had four or five species of what might loosely be called birds and something that could easily be classed as a reptile and a carnivorous mammal the size of a cat with birdlike claws and a herbivore almost identical with the piglike thing in the big darfhulva mural and another like a gazelle with a single horn in the middle of its forehead", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0004.wav"}
{"duration": 5.755, "text": "the daily newscasts from terra showed a corresponding shift in interest at home", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0005.wav"}
{"duration": 2.565, "text": "tony's found the martians", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0006.wav"}
{"duration": 5.605, "text": "it was locked from the inside and we had to burn it down with a torch that's where they are", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0007.wav"}
{"duration": 9.79, "text": "gloria standish who had dropped in for lunch was on the mezzanine fairly screaming into a radiophone extension dozen and a half of them", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0008.wav"}
{"duration": 3.625, "text": "well of course they're dead what a question", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0009.wav"}
{"duration": 6.56, "text": "martha remembered the closed door on the first survey they hadn't attempted opening it", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0010.wav"}
{"duration": 8.445, "text": "now it was burned away at both sides and lay still hot along the edges on the floor of the big office room in front", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0011.wav"}
{"duration": 8.79, "text": "a floodlight was on in the room inside and lattimer was going around looking at things while a space force officer stood by the door", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0012.wav"}
{"duration": 4.68, "text": "mass suicide that's what it was notice what's in the corners", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0013.wav"}
{"duration": 20.385, "text": "yes charcoal", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0014.wav"}
{"duration": 7.63, "text": "so they just came in here and lit the charcoal and sat drinking together till they all fell asleep", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0015.wav"}
{"duration": 9.255, "text": "the terran public wanted to hear about martians and if live martians couldn't be found a room full of dead ones was the next best thing", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0016.wav"}
{"duration": 15.365, "text": "tony lattimer the discoverer was beginning to cash in on his attentions to gloria and his ingratiation with sid he was always either making voice and image talks for telecast or listening to the news from the home planet", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0017.wav"}
{"duration": 6.875, "text": "without question he had become overnight the most widely known archaeologist in history", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0018.wav"}
{"duration": 9.345, "text": "not that i'm interested in all this for myself he disclaimed after listening to the telecast from terra two days after his discovery", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0019.wav"}
{"duration": 2.975, "text": "bring it to the public attention dramatize it", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0020.wav"}
{"duration": 6.55, "text": "so i believe i shall go back at least for a while and see what i can do", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0021.wav"}
{"duration": 9.21, "text": "lectures", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0022.wav"}
{"duration": 8.395, "text": "the organization of a society of martian archaeology with anthony lattimer ph d the logical candidate for the chair", "key": ".././data/LibriSpeech/dev-clean/251/136532/251-136532-0023.wav"}
{"duration": 6.26, "text": "he was young no spear had touched him no poison lurked in his wine", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0000.wav"}
{"duration": 3.725, "text": "i tell you it is not poison she cried", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0001.wav"}
{"duration": 6.965, "text": "since his birth he has been guarded so closely that the cleverest poisoners of the east could not reach him", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0002.wav"}
{"duration": 11.02, "text": "as you well know there are ten men and ten women whose sole duty is to taste his food and wine and fifty armed warriors guard his chamber as they guard it now", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0003.wav"}
{"duration": 3.325, "text": "a low confused moan waned from his mouth", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0004.wav"}
{"duration": 5.31, "text": "the man shrugged his broad shoulders and turned back into the arabesque chamber", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0005.wav"}
{"duration": 6.965, "text": "this man was clad in a brown camel hair robe and sandals and a green turban was on his head", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0006.wav"}
{"duration": 5.45, "text": "not until the heavens were in the proper order could they perform this necromancy", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0007.wav"}
{"duration": 6.23, "text": "with a long stained fingernail he mapped the constellations on the marble tiled floor", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0008.wav"}
{"duration": 8.955, "text": "the slant of the moon presaged evil for the king of vendhya the stars are in turmoil the serpent in the house of the elephant", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0009.wav"}
{"duration": 3.25, "text": "point of contact inquired the other", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0010.wav"}
{"duration": 7.47, "text": "all discarded portions of the human body still remain part of it attached to it by intangible connections", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0011.wav"}
{"duration": 11.105, "text": "but at the urgent entreaty of the princess of khosala who loved bhunda chand vainly he gave her a lock of his long black hair as a token of remembrance", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0012.wav"}
{"duration": 8.225, "text": "by which a soul is drawn from its body and across gulfs of echoing space returned the man on the mat", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0013.wav"}
{"duration": 6.685, "text": "on the dais under the golden dome the king cried out again racked by awful paroxysms", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0014.wav"}
{"duration": 5.38, "text": "they seek to snap the silver cord that binds me to my dying body", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0015.wav"}
{"duration": 8.97, "text": "they cluster around me their hands are taloned their eyes are red like flame burning in darkness", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0016.wav"}
{"duration": 2.885, "text": "their fingers sear me like fire", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0017.wav"}
{"duration": 2.83, "text": "i know now what brings me to the pyre", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0018.wav"}
{"duration": 11.475, "text": "there they strove to break the silver cord of life and thrust my soul into the body of a foul night weird their sorcery summoned up from hell ah", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0019.wav"}
{"duration": 5.555, "text": "your cry and the grip of your fingers brought me back but i am going fast", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0020.wav"}
{"duration": 3.98, "text": "there was the old imperious note in his failing whisper", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0021.wav"}
{"duration": 4.54, "text": "you have never disobeyed me obey my last command", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0022.wav"}
{"duration": 2.77, "text": "send my soul clean to asura", "key": ".././data/LibriSpeech/dev-clean/251/118436/251-118436-0023.wav"}
{"duration": 3.435, "text": "i'll be glad to try sir he replied", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0000.wav"}
{"duration": 5.48, "text": "inside a secret rocket telemetering device was mounted on its test stand", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0001.wav"}
{"duration": 3.13, "text": "this isn't part of your testing routine is it", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0002.wav"}
{"duration": 4.4, "text": "another engineer rushed toward the door to see what was happening outside", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0003.wav"}
{"duration": 10.9850625, "text": "electronic equipment cascaded from the wall shelves and a heavy duty chain hoist came loose from its overhead track plunging to the floor with a terrifying crash", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0004.wav"}
{"duration": 5.445, "text": "an instant later it crashed over pinning mark faber beneath it", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0005.wav"}
{"duration": 3.975, "text": "bud threw up his arms to protect himself but too late", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0006.wav"}
{"duration": 3.54, "text": "for minutes no one stirred among the wreckage", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0007.wav"}
{"duration": 6.525, "text": "then tom who had been stunned by some falling debris raised himself to a sitting position", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0008.wav"}
{"duration": 5.835, "text": "tom's eyes focused in horror on the wreckage enveloped by still billowing dust", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0009.wav"}
{"duration": 7.955, "text": "the sky was visible through several gaping holes in the roof which was sagging dangerously on its supporting trusses", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0010.wav"}
{"duration": 5.655, "text": "the young inventor had just noticed his friend lying pinned beneath a heavy beam nearby", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0011.wav"}
{"duration": 2.485, "text": "his friend's eyelids flickered", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0012.wav"}
{"duration": 4.96, "text": "we'd better not try to move him tom decided we'll get an ambulance", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0013.wav"}
{"duration": 4.98, "text": "they picked their way through the wreckage and emerged on a scene of frightful destruction", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0014.wav"}
{"duration": 2.615, "text": "let's see about getting help for mister faber", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0015.wav"}
{"duration": 6.77, "text": "and the only truck we had available was in that burning shed the superintendent added bitterly", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0016.wav"}
{"duration": 3.855, "text": "anyhow we want to help got a job for us", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0017.wav"}
{"duration": 7.505, "text": "within minutes tom was in charge of clearing away rubble and extricating anyone who might be trapped inside the buildings", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0018.wav"}
{"duration": 12.29, "text": "the telephone line was soon repaired and a steady stream of rescue vehicles began arriving from harkness fire trucks three ambulances and private cars driven by volunteers", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0019.wav"}
{"duration": 5.425, "text": "the two girls were as much upset as tom's mother tom laughed", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0020.wav"}
{"duration": 6.82, "text": "mister swift came into the living room just then and told tom how worried missus swift and sandy had been", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0021.wav"}
{"duration": 7.175, "text": "he smiled guiltily as he added but i must admit i was more than a little concerned myself", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0022.wav"}
{"duration": 2.335, "text": "he's a great scientist", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0023.wav"}
{"duration": 2.46, "text": "tom nodded unhappily", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0024.wav"}
{"duration": 3.66, "text": "male or female human or animal", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0025.wav"}
{"duration": 2.785, "text": "mister swift's eyes twinkled", "key": ".././data/LibriSpeech/dev-clean/251/137823/251-137823-0026.wav"}
{"duration": 9.5, "text": "thereafter this sonnet bred in me desire to write down in verse four other things touching my condition the which things it seemed to me that i had not yet made manifest", "key": ".././data/LibriSpeech/dev-clean/8842/302201/8842-302201-0000.wav"}
{"duration": 9.44, "text": "which thing being thus there came a day when certain ladies to whom it was well known they having been with me at divers times in my trouble were met together for the pleasure of gentle company", "key": ".././data/LibriSpeech/dev-clean/8842/302201/8842-302201-0001.wav"}
{"duration": 10.335, "text": "but when i still spake not one of them who before had been talking with another addressed me by my name saying to what end lovest thou this lady seeing that thou canst not support her presence", "key": ".././data/LibriSpeech/dev-clean/8842/302201/8842-302201-0002.wav"}
{"duration": 8.265, "text": "and now that it hath pleased her to deny me this love my master of his great goodness hath placed all my beatitude there where my hope will not fail me", "key": ".././data/LibriSpeech/dev-clean/8842/302201/8842-302201-0003.wav"}
{"duration": 7.59, "text": "then those ladies began to talk closely together and as i have seen snow fall among the rain so was their talk mingled with sighs", "key": ".././data/LibriSpeech/dev-clean/8842/302201/8842-302201-0004.wav"}
{"duration": 10.095, "text": "and i declare that when i speak thereof love sheds such perfect sweetness over me that if my courage failed not certainly to him my listeners must be all resign'd", "key": ".././data/LibriSpeech/dev-clean/8842/302201/8842-302201-0005.wav"}
{"duration": 9.865, "text": "whatever her sweet eyes are turned upon spirits of love do issue thence in flame which through their eyes who then may look on them pierce to the heart's deep chamber every one", "key": ".././data/LibriSpeech/dev-clean/8842/302201/8842-302201-0006.wav"}
{"duration": 4.855, "text": "to her i wend along in whose much strength my weakness is made strong", "key": ".././data/LibriSpeech/dev-clean/8842/302201/8842-302201-0007.wav"}
{"duration": 5.97, "text": "so to the road thou shalt be reconciled and find the lady and with the lady love", "key": ".././data/LibriSpeech/dev-clean/8842/302201/8842-302201-0008.wav"}
{"duration": 4.915, "text": "the second begins here an angel the third here dear song i know", "key": ".././data/LibriSpeech/dev-clean/8842/302201/8842-302201-0009.wav"}
{"duration": 2.475, "text": "the first part is divided into four", "key": ".././data/LibriSpeech/dev-clean/8842/302201/8842-302201-0010.wav"}
{"duration": 5.22, "text": "in the third i say what it is i purpose to speak so as not to be impeded by faintheartedness", "key": ".././data/LibriSpeech/dev-clean/8842/302201/8842-302201-0011.wav"}
{"duration": 4.805, "text": "in the fourth repeating to whom i purpose speaking i tell the reason why i speak to them", "key": ".././data/LibriSpeech/dev-clean/8842/302201/8842-302201-0012.wav"}
{"duration": 5.535, "text": "in the second i tell what is understood of her on earth here my lady is desired", "key": ".././data/LibriSpeech/dev-clean/8842/302201/8842-302201-0013.wav"}
{"duration": 15.62, "text": "this second part is divided into two for in the first i speak of her as regards the nobleness of her soul relating some of her virtues proceeding from her soul in the second i speak of her as regards the nobleness of her body narrating some of her beauties here love saith concerning her", "key": ".././data/LibriSpeech/dev-clean/8842/302201/8842-302201-0014.wav"}
{"duration": 8.985, "text": "this second part is divided into two for in the one i speak of the eyes which are the beginning of love in the second i speak of the mouth which is the end of love", "key": ".././data/LibriSpeech/dev-clean/8842/302201/8842-302201-0015.wav"}
{"duration": 14.65, "text": "he translated at an early age chiefly between eighteen forty five and eighteen forty nine a great number of poems by the italians contemporary with dante or preceding him and among other things he made a version of the whole vita nuova prose and verse", "key": ".././data/LibriSpeech/dev-clean/8842/302196/8842-302196-0000.wav"}
{"duration": 9.35, "text": "this book in its original form was received with favour and settled the claim of rossetti to rank as a poetic translator or indeed as a poet in his own right", "key": ".././data/LibriSpeech/dev-clean/8842/302196/8842-302196-0001.wav"}
{"duration": 6.655, "text": "the life blood of rhythmical translation is this commandment that a good poem shall not be turned into a bad one", "key": ".././data/LibriSpeech/dev-clean/8842/302196/8842-302196-0002.wav"}
{"duration": 8.86, "text": "the only true motive for putting poetry into a fresh language must be to endow a fresh nation as far as possible with one more possession of beauty", "key": ".././data/LibriSpeech/dev-clean/8842/302196/8842-302196-0003.wav"}
{"duration": 5.74, "text": "poetry not being an exact science literality of rendering is altogether secondary to this chief law", "key": ".././data/LibriSpeech/dev-clean/8842/302196/8842-302196-0004.wav"}
{"duration": 23.445, "text": "often would he avail himself of any special grace of his own idiom and epoch if only his will belonged to him often would some cadence serve him but for his author's structure some structure but for his author's cadence often the beautiful turn of a stanza must be weakened to adopt some rhyme which will tally and he sees the poet revelling in abundance of language where himself is scantily supplied", "key": ".././data/LibriSpeech/dev-clean/8842/302196/8842-302196-0005.wav"}
{"duration": 5.365, "text": "and if you have time it would be a great service to translate the analyses of the poems which i omitted", "key": ".././data/LibriSpeech/dev-clean/8842/302196/8842-302196-0006.wav"}
{"duration": 6.215, "text": "on january twenty fifth he wrote many and many thanks for a most essential service most thoroughly performed", "key": ".././data/LibriSpeech/dev-clean/8842/302196/8842-302196-0007.wav"}
{"duration": 5.31, "text": "my notes which you have taken the trouble of revising are of course quite paltry and useless", "key": ".././data/LibriSpeech/dev-clean/8842/302196/8842-302196-0008.wav"}
{"duration": 7.055, "text": "it is therefore and on all accounts unnecessary to say much more of the work here than it says for itself", "key": ".././data/LibriSpeech/dev-clean/8842/302196/8842-302196-0009.wav"}
{"duration": 8.335, "text": "throughout the vita nuova there is a strain like the first falling murmur which reaches the ear in some remote meadow and prepares us to look upon the sea", "key": ".././data/LibriSpeech/dev-clean/8842/302196/8842-302196-0010.wav"}
{"duration": 3.705, "text": "a word should be said here of the title of dante's autobiography", "key": ".././data/LibriSpeech/dev-clean/8842/302196/8842-302196-0011.wav"}
{"duration": 5.63, "text": "this has induced some editors of the vita nuova to explain the title as meaning early life", "key": ".././data/LibriSpeech/dev-clean/8842/302196/8842-302196-0012.wav"}
{"duration": 11.24, "text": "and at the first it seemed to me that i saw certain faces of women with their hair loosened which called out to me thou shalt surely die after the which other terrible and unknown appearances said unto me thou art dead", "key": ".././data/LibriSpeech/dev-clean/8842/302203/8842-302203-0000.wav"}
{"duration": 9.485, "text": "and so strong was my phantasy that i wept again in very truth and said with my true voice o excellent soul how blessed is he that now looketh upon thee", "key": ".././data/LibriSpeech/dev-clean/8842/302203/8842-302203-0001.wav"}
{"duration": 15.77, "text": "whereby other ladies who were about the room becoming aware of my discomfort by reason of the moan that she made who indeed was of my very near kindred led her away from where i was and then set themselves to awaken me thinking that i dreamed and saying sleep no longer and be not disquieted", "key": ".././data/LibriSpeech/dev-clean/8842/302203/8842-302203-0002.wav"}
{"duration": 4.335, "text": "when being aroused i opened mine eyes and knew that it had been a deception", "key": ".././data/LibriSpeech/dev-clean/8842/302203/8842-302203-0003.wav"}
{"duration": 13.045, "text": "and my hue was such that they look'd at each other and thought of death saying under their breath most tenderly o let us comfort him then unto me what dream was thine that it hath shaken thee so much", "key": ".././data/LibriSpeech/dev-clean/8842/302203/8842-302203-0004.wav"}
{"duration": 8.27, "text": "and therewithal such a bewilderment possess'd me that i shut mine eyes for peace and in my brain did cease order of thought and every healthful thing", "key": ".././data/LibriSpeech/dev-clean/8842/302203/8842-302203-0005.wav"}
{"duration": 5.28, "text": "then saw i many broken hinted sights in the uncertain state i stepp'd into", "key": ".././data/LibriSpeech/dev-clean/8842/302203/8842-302203-0006.wav"}
{"duration": 3.7, "text": "these wildering phantasies then carried me to see my lady dead", "key": ".././data/LibriSpeech/dev-clean/8842/302203/8842-302203-0007.wav"}
{"duration": 4.415, "text": "the second part begins here i was a thinking the first part divides into two", "key": ".././data/LibriSpeech/dev-clean/8842/302203/8842-302203-0008.wav"}
{"duration": 12.095, "text": "this lady's right name was joan but because of her comeliness or at least it was so imagined she was called of many primavera spring and went by that name among them", "key": ".././data/LibriSpeech/dev-clean/8842/302203/8842-302203-0009.wav"}
{"duration": 14.395, "text": "and in his speech he laugh'd and laugh'd again then while it was his pleasure to remain i chanced to look the way he had drawn near and saw the ladies joan and beatrice approach me this the other following one and a second marvel instantly", "key": ".././data/LibriSpeech/dev-clean/8842/302203/8842-302203-0010.wav"}
{"duration": 6.72, "text": "the second part begins here saying be now the third here then while it was his pleasure", "key": ".././data/LibriSpeech/dev-clean/8842/302203/8842-302203-0011.wav"}
{"duration": 9.71, "text": "he lives thy loss he dies from every limb mangled by thee lightnings of godhead shine from which thy darkness hath not where to hide", "key": ".././data/LibriSpeech/dev-clean/8842/304647/8842-304647-0000.wav"}
{"duration": 2.7, "text": "quinci impara a stupirti", "key": ".././data/LibriSpeech/dev-clean/8842/304647/8842-304647-0001.wav"}
{"duration": 31.7, "text": "in flesh was raimented how he was killed and buried from the dead how he arose to life with victory and reigned in heaven how all of us shall be glorious like him whose hearts to his are wed how they who die for love of reason give hypocrites tyrants sophists all who sell their neighbours ill for holiness to hell how the dead saint condemns the bad who live how all he does becomes a law for men how he at last to judge shall come again", "key": ".././data/LibriSpeech/dev-clean/8842/304647/8842-304647-0002.wav"}
{"duration": 7.845, "text": "this world's thick vapours whelm your eyes unworthy of that glorious show blind to his splendour bent upon his shame", "key": ".././data/LibriSpeech/dev-clean/8842/304647/8842-304647-0003.wav"}
{"duration": 10.155, "text": "money is false and light unless it be bought by a man's own worthy qualities and blood is such that its corrupt disease and ignorant pretence are foul to see", "key": ".././data/LibriSpeech/dev-clean/8842/304647/8842-304647-0004.wav"}
{"duration": 19.98, "text": "il popolo e una bestia", "key": ".././data/LibriSpeech/dev-clean/8842/304647/8842-304647-0005.wav"}
{"duration": 22.96, "text": "the people is a beast of muddy brain that knows not its own force and therefore stands loaded with wood and stone the powerless hands of a mere child guide it with bit and rein one kick would be enough to break the chain but the beast fears and what the child demands it does nor its own terror understands confused and stupefied by bugbears vain", "key": ".././data/LibriSpeech/dev-clean/8842/304647/8842-304647-0006.wav"}
{"duration": 12.11, "text": "most wonderful", "key": ".././data/LibriSpeech/dev-clean/8842/304647/8842-304647-0007.wav"}
{"duration": 8.28, "text": "that penance hath no blame which magdalen found sweet purging our shame self punishment is virtue all men know", "key": ".././data/LibriSpeech/dev-clean/8842/304647/8842-304647-0008.wav"}
{"duration": 11.955, "text": "organ of rut not reason is the lord who from the body politic doth drain lust for himself instead of toil and pain leaving us lean as crickets on dry sward", "key": ".././data/LibriSpeech/dev-clean/8842/304647/8842-304647-0009.wav"}
{"duration": 12.195, "text": "well too if he like love would filch our hoard with pleasure to ourselves sluicing our vein and vigour to perpetuate the strain of life by spilth of life within us stored", "key": ".././data/LibriSpeech/dev-clean/8842/304647/8842-304647-0010.wav"}
{"duration": 8.755, "text": "heaven help that body which a little mind housed in a head lacking ears tongue and eyes and senseless but for smell can tyrannise", "key": ".././data/LibriSpeech/dev-clean/8842/304647/8842-304647-0011.wav"}
{"duration": 4.325, "text": "due to thee their praise of maiden pure of teeming motherhood", "key": ".././data/LibriSpeech/dev-clean/8842/304647/8842-304647-0012.wav"}
{"duration": 8.875, "text": "thou like arcturus steadfast in the skies with tardy sense guidest thy kingdom fair bearing alone the load of liberty", "key": ".././data/LibriSpeech/dev-clean/8842/304647/8842-304647-0013.wav"}
{"duration": 3.175, "text": "the savage philosopher the dual mind", "key": ".././data/LibriSpeech/dev-clean/5536/43358/5536-43358-0000.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/LibriSpeech/dev-clean/5536/43358/5536-43358-0001.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/LibriSpeech/dev-clean/5536/43358/5536-43358-0002.wav"}
{"duration": 6.04, "text": "none might exhort or confess or in any way meddle with the religious experience of another", "key": ".././data/LibriSpeech/dev-clean/5536/43358/5536-43358-0003.wav"}
{"duration": 5.825, "text": "among us all men were created sons of god and stood erect as conscious of their divinity", "key": ".././data/LibriSpeech/dev-clean/5536/43358/5536-43358-0004.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/LibriSpeech/dev-clean/5536/43358/5536-43358-0005.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/LibriSpeech/dev-clean/5536/43358/5536-43358-0006.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/LibriSpeech/dev-clean/5536/43358/5536-43358-0007.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/LibriSpeech/dev-clean/5536/43358/5536-43358-0008.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/LibriSpeech/dev-clean/5536/43358/5536-43358-0009.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/LibriSpeech/dev-clean/5536/43358/5536-43358-0010.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/LibriSpeech/dev-clean/5536/43358/5536-43358-0011.wav"}
{"duration": 3.385, "text": "in this type of prayer there was no beseeching of favor or help", "key": ".././data/LibriSpeech/dev-clean/5536/43358/5536-43358-0012.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/LibriSpeech/dev-clean/5536/43358/5536-43358-0013.wav"}
{"duration": 2.83, "text": "this is the material or physical prayer", "key": ".././data/LibriSpeech/dev-clean/5536/43358/5536-43358-0014.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/LibriSpeech/dev-clean/5536/43358/5536-43358-0015.wav"}
{"duration": 2.425, "text": "who may condemn his superstition", "key": ".././data/LibriSpeech/dev-clean/5536/43358/5536-43358-0016.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/LibriSpeech/dev-clean/5536/43358/5536-43358-0017.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/LibriSpeech/dev-clean/5536/43358/5536-43358-0018.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/LibriSpeech/dev-clean/5536/43358/5536-43358-0019.wav"}
{"duration": 3.35, "text": "he had neither a national army nor an organized church", "key": ".././data/LibriSpeech/dev-clean/5536/43359/5536-43359-0000.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/LibriSpeech/dev-clean/5536/43359/5536-43359-0001.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/LibriSpeech/dev-clean/5536/43359/5536-43359-0002.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/LibriSpeech/dev-clean/5536/43359/5536-43359-0003.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/LibriSpeech/dev-clean/5536/43359/5536-43359-0004.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/LibriSpeech/dev-clean/5536/43359/5536-43359-0005.wav"}
{"duration": 4.34, "text": "the family was not only the social unit but also the unit of government", "key": ".././data/LibriSpeech/dev-clean/5536/43359/5536-43359-0006.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/LibriSpeech/dev-clean/5536/43359/5536-43359-0007.wav"}
{"duration": 2.69, "text": "when she fell the whole race fell with her", "key": ".././data/LibriSpeech/dev-clean/5536/43359/5536-43359-0008.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/LibriSpeech/dev-clean/5536/43359/5536-43359-0009.wav"}
{"duration": 3.775, "text": "his daily devotions were more necessary to him than daily food", "key": ".././data/LibriSpeech/dev-clean/5536/43359/5536-43359-0010.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/LibriSpeech/dev-clean/5536/43359/5536-43359-0011.wav"}
{"duration": 4.815, "text": "when he becomes an old man he loves to make a notable effort to prove his gratitude", "key": ".././data/LibriSpeech/dev-clean/5536/43359/5536-43359-0012.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/LibriSpeech/dev-clean/5536/43359/5536-43359-0013.wav"}
{"duration": 4.545, "text": "the hospitality of the wigwam is only limited by the institution of war", "key": ".././data/LibriSpeech/dev-clean/5536/43359/5536-43359-0014.wav"}
{"duration": 4.625, "text": "our honor is the guarantee for his safety so long as he is within the camp", "key": ".././data/LibriSpeech/dev-clean/5536/43359/5536-43359-0015.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/LibriSpeech/dev-clean/5536/43359/5536-43359-0016.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/LibriSpeech/dev-clean/5536/43359/5536-43359-0017.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/LibriSpeech/dev-clean/5536/43359/5536-43359-0018.wav"}
{"duration": 2.82, "text": "reincarnation and the converse of spirits", "key": ".././data/LibriSpeech/dev-clean/5536/43363/5536-43363-0000.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/LibriSpeech/dev-clean/5536/43363/5536-43363-0001.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/LibriSpeech/dev-clean/5536/43363/5536-43363-0002.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/LibriSpeech/dev-clean/5536/43363/5536-43363-0003.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/LibriSpeech/dev-clean/5536/43363/5536-43363-0004.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/LibriSpeech/dev-clean/5536/43363/5536-43363-0005.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/LibriSpeech/dev-clean/5536/43363/5536-43363-0006.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/LibriSpeech/dev-clean/5536/43363/5536-43363-0007.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/LibriSpeech/dev-clean/5536/43363/5536-43363-0008.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/LibriSpeech/dev-clean/5536/43363/5536-43363-0009.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/LibriSpeech/dev-clean/5536/43363/5536-43363-0010.wav"}
{"duration": 18.81, "text": "this was carried out to the letter", "key": ".././data/LibriSpeech/dev-clean/5536/43363/5536-43363-0011.wav"}
{"duration": 3.265, "text": "this was only one of his remarkable prophecies", "key": ".././data/LibriSpeech/dev-clean/5536/43363/5536-43363-0012.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/LibriSpeech/dev-clean/5536/43363/5536-43363-0013.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/LibriSpeech/dev-clean/5536/43363/5536-43363-0014.wav"}
{"duration": 4.74, "text": "five years later he repeated the service and again saved his people from awful slaughter", "key": ".././data/LibriSpeech/dev-clean/5536/43363/5536-43363-0015.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/LibriSpeech/dev-clean/5536/43363/5536-43363-0016.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/LibriSpeech/dev-clean/5536/43363/5536-43363-0017.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/LibriSpeech/dev-clean/5536/43363/5536-43363-0018.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/LibriSpeech/dev-clean/5536/43363/5536-43363-0019.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/LibriSpeech/dev-clean/7850/286674/7850-286674-0000.wav"}
{"duration": 2.85, "text": "it is disgraceful", "key": ".././data/LibriSpeech/dev-clean/7850/286674/7850-286674-0001.wav"}
{"duration": 5.71, "text": "they thought the trouble came from bad bringing up or no bringing up at all", "key": ".././data/LibriSpeech/dev-clean/7850/286674/7850-286674-0002.wav"}
{"duration": 6.22, "text": "they always ate plain food and plenty of it and they never ate between meals", "key": ".././data/LibriSpeech/dev-clean/7850/286674/7850-286674-0003.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/LibriSpeech/dev-clean/7850/286674/7850-286674-0004.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/LibriSpeech/dev-clean/7850/286674/7850-286674-0005.wav"}
{"duration": 3.3, "text": "both lips asked the larvae", "key": ".././data/LibriSpeech/dev-clean/7850/286674/7850-286674-0006.wav"}
{"duration": 3.455, "text": "well our lower lips anyway answered the nymph", "key": ".././data/LibriSpeech/dev-clean/7850/286674/7850-286674-0007.wav"}
{"duration": 2.75, "text": "our upper lips are so small they don't matter", "key": ".././data/LibriSpeech/dev-clean/7850/286674/7850-286674-0008.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/LibriSpeech/dev-clean/7850/286674/7850-286674-0009.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/LibriSpeech/dev-clean/7850/286674/7850-286674-0010.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/LibriSpeech/dev-clean/7850/286674/7850-286674-0011.wav"}
{"duration": 4.02, "text": "scared dah who's afraid answered he", "key": ".././data/LibriSpeech/dev-clean/7850/286674/7850-286674-0012.wav"}
{"duration": 2.345, "text": "here comes the snapping turtle", "key": ".././data/LibriSpeech/dev-clean/7850/286674/7850-286674-0013.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/LibriSpeech/dev-clean/7850/286674/7850-286674-0014.wav"}
{"duration": 3.53, "text": "they thought he might be going to take a nap after his dinner", "key": ".././data/LibriSpeech/dev-clean/7850/286674/7850-286674-0015.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/LibriSpeech/dev-clean/7850/286674/7850-286674-0016.wav"}
{"duration": 2.745, "text": "the nymphs had already gotten away", "key": ".././data/LibriSpeech/dev-clean/7850/286674/7850-286674-0017.wav"}
{"duration": 4.175, "text": "some are wonderfully wrought pretty little homes for birdikins", "key": ".././data/LibriSpeech/dev-clean/7850/281318/7850-281318-0000.wav"}
{"duration": 4.335, "text": "indeed it is not a nest at all only the beginning of one", "key": ".././data/LibriSpeech/dev-clean/7850/281318/7850-281318-0001.wav"}
{"duration": 4.29, "text": "and there is an old story about this which i shall tell you", "key": ".././data/LibriSpeech/dev-clean/7850/281318/7850-281318-0002.wav"}
{"duration": 3.205, "text": "oh what shall we do for a home", "key": ".././data/LibriSpeech/dev-clean/7850/281318/7850-281318-0003.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/LibriSpeech/dev-clean/7850/281318/7850-281318-0004.wav"}
{"duration": 20.43, "text": "she was indeed a clever bird", "key": ".././data/LibriSpeech/dev-clean/7850/281318/7850-281318-0005.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/LibriSpeech/dev-clean/7850/281318/7850-281318-0006.wav"}
{"duration": 4.31, "text": "and she saw the other birds hopping about and twittering helplessly", "key": ".././data/LibriSpeech/dev-clean/7850/281318/7850-281318-0007.wav"}
{"duration": 6.11, "text": "then all the other birds chirped eagerly yes yes let us ask her to teach us", "key": ".././data/LibriSpeech/dev-clean/7850/281318/7850-281318-0008.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/LibriSpeech/dev-clean/7850/281318/7850-281318-0009.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/LibriSpeech/dev-clean/7850/281318/7850-281318-0010.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/LibriSpeech/dev-clean/7850/281318/7850-281318-0011.wav"}
{"duration": 4.275, "text": "and where each bird perched there it was to build its nest", "key": ".././data/LibriSpeech/dev-clean/7850/281318/7850-281318-0012.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/LibriSpeech/dev-clean/7850/281318/7850-281318-0013.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/LibriSpeech/dev-clean/7850/281318/7850-281318-0014.wav"}
{"duration": 2.88, "text": "i thought that was the way to begin", "key": ".././data/LibriSpeech/dev-clean/7850/281318/7850-281318-0015.wav"}
{"duration": 3.305, "text": "certainly of course screamed the jackdaw", "key": ".././data/LibriSpeech/dev-clean/7850/281318/7850-281318-0016.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/LibriSpeech/dev-clean/7850/281318/7850-281318-0017.wav"}
{"duration": 4.72, "text": "criss cross criss cross so interrupted the wood pigeon", "key": ".././data/LibriSpeech/dev-clean/7850/281318/7850-281318-0018.wav"}
{"duration": 5.485, "text": "you say you know all about it then go on and finish your nests by yourselves", "key": ".././data/LibriSpeech/dev-clean/7850/281318/7850-281318-0019.wav"}
{"duration": 19.5744375, "text": "much luck may you have", "key": ".././data/LibriSpeech/dev-clean/7850/281318/7850-281318-0020.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/LibriSpeech/dev-clean/7850/281318/7850-281318-0021.wav"}
{"duration": 3.85, "text": "but the wood pigeon was in the worst case of them all", "key": ".././data/LibriSpeech/dev-clean/7850/281318/7850-281318-0022.wav"}
{"duration": 5.21, "text": "for she had only the foundation laid criss cross as the magpie had shown her", "key": ".././data/LibriSpeech/dev-clean/7850/281318/7850-281318-0023.wav"}
{"duration": 3.155, "text": "ferdinand meditates over his good fortune", "key": ".././data/LibriSpeech/dev-clean/7850/73752/7850-73752-0000.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/LibriSpeech/dev-clean/7850/73752/7850-73752-0001.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/LibriSpeech/dev-clean/7850/73752/7850-73752-0002.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/LibriSpeech/dev-clean/7850/73752/7850-73752-0003.wav"}
{"duration": 3.865, "text": "ferdinand felt his freedom as well as his happiness", "key": ".././data/LibriSpeech/dev-clean/7850/73752/7850-73752-0004.wav"}
{"duration": 19.26, "text": "it was indeed her handwriting", "key": ".././data/LibriSpeech/dev-clean/7850/73752/7850-73752-0005.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/LibriSpeech/dev-clean/7850/73752/7850-73752-0006.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/LibriSpeech/dev-clean/7850/73752/7850-73752-0007.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/LibriSpeech/dev-clean/7850/73752/7850-73752-0008.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/LibriSpeech/dev-clean/7850/73752/7850-73752-0009.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/LibriSpeech/dev-clean/7850/73752/7850-73752-0010.wav"}
{"duration": 2.96, "text": "his constancy to her was now rewarded", "key": ".././data/LibriSpeech/dev-clean/7850/73752/7850-73752-0011.wav"}
{"duration": 4.38, "text": "as for his friends the future must prove his gratitude to them", "key": ".././data/LibriSpeech/dev-clean/7850/73752/7850-73752-0012.wav"}
{"duration": 2.58, "text": "it was indeed dancing on a volcano", "key": ".././data/LibriSpeech/dev-clean/7850/73752/7850-73752-0013.wav"}
{"duration": 2.475, "text": "and now all had ended so happily", "key": ".././data/LibriSpeech/dev-clean/7850/73752/7850-73752-0014.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/LibriSpeech/dev-clean/7850/73752/7850-73752-0015.wav"}
{"duration": 3.59, "text": "he might be enchanted but that was the talisman", "key": ".././data/LibriSpeech/dev-clean/7850/73752/7850-73752-0016.wav"}
{"duration": 5.97, "text": "in the present unsettled though hopeful state of affairs ferdinand would not go home", "key": ".././data/LibriSpeech/dev-clean/7850/73752/7850-73752-0017.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/LibriSpeech/dev-clean/7850/73752/7850-73752-0018.wav"}
{"duration": 3.075, "text": "is papa alone enquired miss temple", "key": ".././data/LibriSpeech/dev-clean/7850/73752/7850-73752-0019.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/LibriSpeech/dev-clean/7850/111771/7850-111771-0000.wav"}
{"duration": 6.65, "text": "at this time grant was not taken with war and probably evinced little interest in army tactics", "key": ".././data/LibriSpeech/dev-clean/7850/111771/7850-111771-0001.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/LibriSpeech/dev-clean/7850/111771/7850-111771-0002.wav"}
{"duration": 3.425, "text": "general halleck in speaking of this battle said", "key": ".././data/LibriSpeech/dev-clean/7850/111771/7850-111771-0003.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/LibriSpeech/dev-clean/7850/111771/7850-111771-0004.wav"}
{"duration": 3.295, "text": "he was now commander of all the federal forces", "key": ".././data/LibriSpeech/dev-clean/7850/111771/7850-111771-0005.wav"}
{"duration": 3.83, "text": "the capture of lee was a far more difficult undertaking", "key": ".././data/LibriSpeech/dev-clean/7850/111771/7850-111771-0006.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/LibriSpeech/dev-clean/7850/111771/7850-111771-0007.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/LibriSpeech/dev-clean/7850/111771/7850-111771-0008.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/LibriSpeech/dev-clean/7850/111771/7850-111771-0009.wav"}
{"duration": 4.53, "text": "he had never been father lover husband friend", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0000.wav"}
{"duration": 4.65, "text": "the heart of that ex convict was full of virginity", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0001.wav"}
{"duration": 15.86, "text": "his sister and his sister's children had left him only a vague and far off memory which had finally almost completely vanished he had made every effort to find them and not having been able to find them he had forgotten them", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0002.wav"}
{"duration": 13.18, "text": "he suffered all the pangs of a mother and he knew not what it meant for that great and singular movement of a heart which begins to love is a very obscure and a very sweet thing", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0003.wav"}
{"duration": 12.77, "text": "only as he was five and fifty and cosette eight years of age all that might have been love in the whole course of his life flowed together into a sort of ineffable light", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0004.wav"}
{"duration": 7.93, "text": "cosette on her side had also unknown to herself become another being poor little thing", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0005.wav"}
{"duration": 6.57, "text": "she felt that which she had never felt before a sensation of expansion", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0006.wav"}
{"duration": 10.21, "text": "the man no longer produced on her the effect of being old or poor she thought jean valjean handsome just as she thought the hovel pretty", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0007.wav"}
{"duration": 10.235, "text": "nature a difference of fifty years had set a profound gulf between jean valjean and cosette destiny filled in this gulf", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0008.wav"}
{"duration": 3.28, "text": "to meet was to find each other", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0009.wav"}
{"duration": 10.06, "text": "when these two souls perceived each other they recognized each other as necessary to each other and embraced each other closely", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0010.wav"}
{"duration": 4.645, "text": "moreover jean valjean had chosen his refuge well", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0011.wav"}
{"duration": 8.36, "text": "he had paid her six months in advance and had commissioned the old woman to furnish the chamber and dressing room as we have seen", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0012.wav"}
{"duration": 5.87, "text": "week followed week these two beings led a happy life in that hovel", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0013.wav"}
{"duration": 4.8250625, "text": "cosette was no longer in rags she was in mourning", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0014.wav"}
{"duration": 4.19, "text": "and then he talked of her mother and he made her pray", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0015.wav"}
{"duration": 7.06, "text": "he passed hours in watching her dressing and undressing her doll and in listening to her prattle", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0016.wav"}
{"duration": 4.57, "text": "the best of us are not exempt from egotistical thoughts", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0017.wav"}
{"duration": 27.11, "text": "he had returned to prison this time for having done right he had quaffed fresh bitterness disgust and lassitude were overpowering him even the memory of the bishop probably suffered a temporary eclipse though sure to reappear later on luminous and triumphant but after all that sacred memory was growing dim", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0018.wav"}
{"duration": 8.0, "text": "who knows whether jean valjean had not been on the eve of growing discouraged and of falling once more", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0019.wav"}
{"duration": 4.62, "text": "alas he walked with no less indecision than cosette", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0020.wav"}
{"duration": 4.17, "text": "he protected her and she strengthened him", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0021.wav"}
{"duration": 4.335, "text": "he was that child's stay and she was his prop", "key": ".././data/LibriSpeech/dev-clean/174/168635/174-168635-0022.wav"}
{"duration": 4.02, "text": "forgotten too the name of gillian the lovely captive", "key": ".././data/LibriSpeech/dev-clean/174/50561/174-50561-0000.wav"}
{"duration": 15.86, "text": "worse and worse he is even presumed to be the captive's sweetheart who wheedles the flower the ring and the prison key out of the strict virgins for his own purposes and flies with her at last in his shallop across the sea to live with her happily ever after", "key": ".././data/LibriSpeech/dev-clean/174/50561/174-50561-0001.wav"}
{"duration": 19.305, "text": "but this is a fallacy", "key": ".././data/LibriSpeech/dev-clean/174/50561/174-50561-0002.wav"}
{"duration": 3.34, "text": "the wandering singer approaches them with his lute", "key": ".././data/LibriSpeech/dev-clean/174/50561/174-50561-0003.wav"}
{"duration": 18.54, "text": "the emperor's daughter", "key": ".././data/LibriSpeech/dev-clean/174/50561/174-50561-0004.wav"}
{"duration": 5.705, "text": "lady lady my rose white lady but will you not hear a roundel lady", "key": ".././data/LibriSpeech/dev-clean/174/50561/174-50561-0005.wav"}
{"duration": 5.215, "text": "o if you play us a roundel singer how can that harm the emperor's daughter", "key": ".././data/LibriSpeech/dev-clean/174/50561/174-50561-0006.wav"}
{"duration": 10.855, "text": "she would not speak though we danced a week with her thoughts a thousand leagues over the water singer singer wandering singer o my honey sweet singer", "key": ".././data/LibriSpeech/dev-clean/174/50561/174-50561-0007.wav"}
{"duration": 16.31, "text": "but if i play you a roundel lady get me a gift from the emperor's daughter her finger ring for my finger bring though she's pledged a thousand leagues over the water lady lady my fair lady o my rose white lady", "key": ".././data/LibriSpeech/dev-clean/174/50561/174-50561-0008.wav"}
{"duration": 16.32, "text": "the wandering singer", "key": ".././data/LibriSpeech/dev-clean/174/50561/174-50561-0009.wav"}
{"duration": 14.91, "text": "but i did once have the luck to hear and see the lady played in entirety the children had been granted leave to play just one more game before bed time and of course they chose the longest and played it without missing a syllable", "key": ".././data/LibriSpeech/dev-clean/174/50561/174-50561-0010.wav"}
{"duration": 9.52, "text": "the ladies in yellow dresses stand again in a ring about the emperor's daughter and are for the last time accosted by the singer with his lute", "key": ".././data/LibriSpeech/dev-clean/174/50561/174-50561-0011.wav"}
{"duration": 18.63, "text": "the wandering singer", "key": ".././data/LibriSpeech/dev-clean/174/50561/174-50561-0012.wav"}
{"duration": 10.615, "text": "i'll play for you now neath the apple bough and you shall dream on the lawn so shady lady lady my fair lady o my apple gold lady", "key": ".././data/LibriSpeech/dev-clean/174/50561/174-50561-0013.wav"}
{"duration": 14.4, "text": "the ladies", "key": ".././data/LibriSpeech/dev-clean/174/50561/174-50561-0014.wav"}
{"duration": 16.76, "text": "now you may play a serena singer a dream of night for an apple gold lady for the fruit is now on the apple bough and the moon is up and the lawn is shady singer singer wandering singer o my honey sweet singer", "key": ".././data/LibriSpeech/dev-clean/174/50561/174-50561-0015.wav"}
{"duration": 13.455, "text": "once more the singer plays and the ladies dance but one by one they fall asleep to the drowsy music and then the singer steps into the ring and unlocks the tower and kisses the emperor's daughter", "key": ".././data/LibriSpeech/dev-clean/174/50561/174-50561-0016.wav"}
{"duration": 2.825, "text": "i don't know what becomes of the ladies", "key": ".././data/LibriSpeech/dev-clean/174/50561/174-50561-0017.wav"}
{"duration": 19.08, "text": "bed time children", "key": ".././data/LibriSpeech/dev-clean/174/50561/174-50561-0018.wav"}
{"duration": 4.26, "text": "you see the treatment is a trifle fanciful", "key": ".././data/LibriSpeech/dev-clean/174/50561/174-50561-0019.wav"}
{"duration": 2.4, "text": "how we must simplify", "key": ".././data/LibriSpeech/dev-clean/174/84280/174-84280-0000.wav"}
{"duration": 18.33, "text": "it seems to me more and more as i live longer that most poetry and most literature and particularly the literature of the past is discordant with the vastness and variety the reserves and resources and recuperations of life as we live it to day", "key": ".././data/LibriSpeech/dev-clean/174/84280/174-84280-0001.wav"}
{"duration": 12.2, "text": "it is the expression of life under cruder and more rigid conditions than ours lived by people who loved and hated more naively aged sooner and died younger than we do", "key": ".././data/LibriSpeech/dev-clean/174/84280/174-84280-0002.wav"}
{"duration": 7.445, "text": "we range wider last longer and escape more and more from intensity towards understanding", "key": ".././data/LibriSpeech/dev-clean/174/84280/174-84280-0003.wav"}
{"duration": 20.53, "text": "and already this astounding blow begins to take its place among other events as a thing strange and terrible indeed but related to all the strangeness and mystery of life part of the universal mysteries of despair and futility and death that have troubled my consciousness since childhood", "key": ".././data/LibriSpeech/dev-clean/174/84280/174-84280-0004.wav"}
{"duration": 8.61, "text": "for a time the death of mary obscured her life for me but now her living presence is more in my mind again", "key": ".././data/LibriSpeech/dev-clean/174/84280/174-84280-0005.wav"}
{"duration": 7.03, "text": "it was that idea of waste that dominated my mind in a strange interview i had with justin", "key": ".././data/LibriSpeech/dev-clean/174/84280/174-84280-0006.wav"}
{"duration": 9.73, "text": "i became grotesquely anxious to assure him that indeed she and i had been as they say innocent throughout our last day together", "key": ".././data/LibriSpeech/dev-clean/174/84280/174-84280-0007.wav"}
{"duration": 4.52, "text": "you were wrong in all that i said she kept her faith with you", "key": ".././data/LibriSpeech/dev-clean/174/84280/174-84280-0008.wav"}
{"duration": 3.1, "text": "we never planned to meet and when we met", "key": ".././data/LibriSpeech/dev-clean/174/84280/174-84280-0009.wav"}
{"duration": 4.36, "text": "if we had been brother and sister indeed there was nothing", "key": ".././data/LibriSpeech/dev-clean/174/84280/174-84280-0010.wav"}
{"duration": 3.355, "text": "but now it doesn't seem to matter very much", "key": ".././data/LibriSpeech/dev-clean/174/84280/174-84280-0011.wav"}
{"duration": 14.43, "text": "and it is upon this effect of sweet and beautiful possibilities caught in the net of animal jealousies and thoughtless motives and ancient rigid institutions that i would end this writing", "key": ".././data/LibriSpeech/dev-clean/174/84280/174-84280-0012.wav"}
{"duration": 16.86, "text": "in mary it seems to me i found both womanhood and fellowship i found what many have dreamt of love and friendship freely given and i could do nothing but clutch at her to make her my possession", "key": ".././data/LibriSpeech/dev-clean/174/84280/174-84280-0013.wav"}
{"duration": 3.0100625, "text": "what alternative was there for her", "key": ".././data/LibriSpeech/dev-clean/174/84280/174-84280-0014.wav"}
{"duration": 13.73, "text": "she was destroyed not merely by the unconsidered undisciplined passions of her husband and her lover but by the vast tradition that sustains and enforces the subjugation of her sex", "key": ".././data/LibriSpeech/dev-clean/174/84280/174-84280-0015.wav"}
{"duration": 17.65, "text": "one winter evening as soon as his work was over for the day joseph locked the door of his smithy washed himself well put on clean clothes and taking his violin set out for testbridge mary was expecting him to tea", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0000.wav"}
{"duration": 4.73, "text": "it was the afternoon of a holiday and she had closed early", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0001.wav"}
{"duration": 6.72, "text": "was there ever a happier man than joseph that night as he strode along the footpath", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0002.wav"}
{"duration": 6.77, "text": "he pressed his violin case to his heart as if it were a living thing that could know that he loved it", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0003.wav"}
{"duration": 3.77, "text": "earth was gone and heaven was all", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0004.wav"}
{"duration": 6.43, "text": "blessed am i here now my god and blessed shall i be there then", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0005.wav"}
{"duration": 6.54, "text": "when he reached the suburbs the light of homes was shining through curtains of all colors", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0006.wav"}
{"duration": 4.395, "text": "just then he was in no mood to think of the sorrows", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0007.wav"}
{"duration": 2.8, "text": "the nettle and the dock said joseph", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0008.wav"}
{"duration": 3.005, "text": "he was in a mood for music was he not", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0009.wav"}
{"duration": 8.05, "text": "he laid down his violin and seated himself where mary told him in her father's arm chair by the fire", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0010.wav"}
{"duration": 10.08, "text": "letty finding herself not quite equal to the emergency came in her turn to call mary she went as quietly as if she were leaving a tiresome visitor", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0011.wav"}
{"duration": 6.515, "text": "the music was broken and joseph left alone with the dumb instruments", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0012.wav"}
{"duration": 6.0, "text": "but in his hands solitude and a violin were sure to marry in music", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0013.wav"}
{"duration": 4.57, "text": "they sat down and listened in silence", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0014.wav"}
{"duration": 7.295, "text": "her heart seemed to swell up into her throat and it was all she could do to keep from weeping", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0015.wav"}
{"duration": 6.85, "text": "a little longer and she was compelled to yield and the silent tears flowed freely", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0016.wav"}
{"duration": 5.485, "text": "letty too was overcome more than ever she had been by music", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0017.wav"}
{"duration": 9.945, "text": "let but a mood be strong enough and the soul clothing itself in that mood as with a garment can walk abroad and haunt the world", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0018.wav"}
{"duration": 9.865, "text": "it cried aloud that eternity was very long and like a great palace without a quiet room", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0019.wav"}
{"duration": 5.94, "text": "nor was this exactly the shape the thing took to the consciousness of the musician", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0020.wav"}
{"duration": 8.17, "text": "i love thee i love thee cried the violin and the worship was entreaty that knew not itself", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0021.wav"}
{"duration": 10.66, "text": "hast thou yet to learn that the love of the human is love is divine is but a lower form of a part of the love of god", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0022.wav"}
{"duration": 20.82, "text": "when thou lovest man or woman or child yea or even dog aright then wilt thou no longer need that i tell thee how god and his christ would not be content with each other alone in the glories even of the eternal original love because they could create more love", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0023.wav"}
{"duration": 6.465, "text": "he that loveth not his brother whom he hath seen how shall he love god whom he hath not seen", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0024.wav"}
{"duration": 5.705, "text": "a sob like a bird new born burst from mary's bosom", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0025.wav"}
{"duration": 10.43, "text": "that enchantment had possessed him usurping as it were the throne of his life and displacing it when it ceased he was not his own master", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0026.wav"}
{"duration": 6.4, "text": "he started to conscious confusion only neither knowing where he was nor what he did", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0027.wav"}
{"duration": 10.65, "text": "how it happened he never could tell but he brought down his violin with a crash against the piano then somehow stumbled and all but fell", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0028.wav"}
{"duration": 11.505, "text": "in the act of recovering himself he heard the neck of his instrument part from the body with a tearing discordant cry like the sound of the ruin of a living world", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0029.wav"}
{"duration": 5.455, "text": "his violin was broken but his being was made whole", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0030.wav"}
{"duration": 6.76, "text": "his treasure taken type of his self and a woman given him instead", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0031.wav"}
{"duration": 2.59, "text": "it's just like him he murmured", "key": ".././data/LibriSpeech/dev-clean/6295/64301/6295-64301-0032.wav"}
{"duration": 3.105, "text": "chapter seven the homecoming", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0000.wav"}
{"duration": 7.885, "text": "colonel leonidas talbot regarded the white flag with feelings in which triumph and sadness were mingled strangely", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0001.wav"}
{"duration": 6.105, "text": "but the emotions of harry and his comrades were for the moment those of victory only", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0002.wav"}
{"duration": 3.245, "text": "boats put out both from the fort and the shore", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0003.wav"}
{"duration": 12.315, "text": "the smoke itself which had formed a vast cloud over harbor forts and city was now drifting out to sea leaving all things etched sharply in the dazzling sunlight of a southern spring day", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0004.wav"}
{"duration": 4.4, "text": "that white flag and those boats going out mean that sumter is ours", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0005.wav"}
{"duration": 2.84, "text": "but the negotiations were soon completed", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0006.wav"}
{"duration": 4.59, "text": "all the amenities were preserved between the captured garrison and their captors", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0007.wav"}
{"duration": 13.4, "text": "the great state of virginia mother of presidents went out of the union at last and north carolina tennessee and arkansas followed her but maryland kentucky and missouri still hung in the balance", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0008.wav"}
{"duration": 8.265, "text": "lincoln had called for volunteers to put down a rebellion but harry heard everywhere in charleston that the confederacy was now secure", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0009.wav"}
{"duration": 10.09, "text": "the progress of president davis to the new capital set in the very face of the foe was to be one huge triumph of faith and loyalty", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0010.wav"}
{"duration": 2.525, "text": "there was not a single note of gloom", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0011.wav"}
{"duration": 4.58, "text": "europe which must have its cotton would favor the success of the south", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0012.wav"}
{"duration": 6.71, "text": "an extraordinary wave of emotion swept over the south carrying everybody with it", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0013.wav"}
{"duration": 16.16, "text": "beauregard at once wrote an order", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0014.wav"}
{"duration": 20.115, "text": "colonel kenton writes wisely", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0015.wav"}
{"duration": 11.51, "text": "we need kentucky and i understand that a very little more may bring the state to us go with your father i understand that you have been a brave young soldier here and may you do as well up there", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0016.wav"}
{"duration": 8.55, "text": "harry feeling pride but not showing it saluted and left the room going at once to madame delaunay's where he had left his baggage", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0017.wav"}
{"duration": 5.325, "text": "he intended to leave early in the morning but first he sought his friends and told them good bye", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0018.wav"}
{"duration": 4.015, "text": "harry gave his farewells with deep and genuine regret", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0019.wav"}
{"duration": 7.44, "text": "whether their manner was grave or frivolous he knew that these were good friends of his and he sincerely hoped that he would meet them again", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0020.wav"}
{"duration": 2.97, "text": "it was a different harry who started home late in april", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0021.wav"}
{"duration": 7.675, "text": "four months had made great changes he bore himself more like a man his manner was much more considered and grave", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0022.wav"}
{"duration": 3.41, "text": "he had seen great things and he had done his share of them", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0023.wav"}
{"duration": 4.195, "text": "he gazed upon a world full of responsibilities and perils", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0024.wav"}
{"duration": 5.99, "text": "but he looked back at charleston the gay the volatile and the beautiful with real affection", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0025.wav"}
{"duration": 3.34, "text": "it was almost buried now in flowers and foliage", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0026.wav"}
{"duration": 2.42, "text": "he was going home after victory", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0027.wav"}
{"duration": 2.56, "text": "he soon left charleston out of sight", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0028.wav"}
{"duration": 3.71, "text": "he felt the difference as soon as he reached the hills of his native state", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0029.wav"}
{"duration": 5.545, "text": "people were cooler here and they were more prone to look at the two sides of a question", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0030.wav"}
{"duration": 4.75, "text": "the air too was unlike that of south carolina there was a sharper tang to it", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0031.wav"}
{"duration": 3.94, "text": "it whipped his blood as it blew down from the slopes and crests", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0032.wav"}
{"duration": 10.25, "text": "it was afternoon when he reached the little station of winton and left the train a tall sturdy boy the superior of many a man in size strength and agility", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0033.wav"}
{"duration": 3.42, "text": "there were never before such times in old kentucky", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0034.wav"}
{"duration": 3.195, "text": "bill skelly an his gang them mountaineers are up", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0035.wav"}
{"duration": 7.215, "text": "he did not say the last as a boast but merely as an assurance to the liveryman who he saw was anxious on his account", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0036.wav"}
{"duration": 5.18, "text": "if you've got pistols just you think once before you shoot said collins", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0037.wav"}
{"duration": 9.33, "text": "harry thanked him threw his saddle bags across the horse a powerful bay and giving a final wave of his hand to the sympathetic liveryman rode away", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0038.wav"}
{"duration": 9.145, "text": "this was not the fashion of a year ago when they exchanged a friendly word or two but harry knew its cause now nobody could trust anybody else", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0039.wav"}
{"duration": 3.905, "text": "but he saw nothing that moved there no signal lights twinkled", "key": ".././data/LibriSpeech/dev-clean/6295/244435/6295-244435-0040.wav"}
{"duration": 3.5499375, "text": "long ago there lived a merchant who had three daughters", "key": ".././data/LibriSpeech/dev-clean/7976/110124/7976-110124-0000.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/LibriSpeech/dev-clean/7976/110124/7976-110124-0001.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/LibriSpeech/dev-clean/7976/110124/7976-110124-0002.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/LibriSpeech/dev-clean/7976/110124/7976-110124-0003.wav"}
{"duration": 4.735, "text": "have pity upon a poor unfortunate one he called out", "key": ".././data/LibriSpeech/dev-clean/7976/110124/7976-110124-0004.wav"}
{"duration": 5.21, "text": "let me enter i pray you to pass the night under your roof", "key": ".././data/LibriSpeech/dev-clean/7976/110124/7976-110124-0005.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/LibriSpeech/dev-clean/7976/110124/7976-110124-0006.wav"}
{"duration": 2.74, "text": "he is old as well as poor she said", "key": ".././data/LibriSpeech/dev-clean/7976/110124/7976-110124-0007.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/LibriSpeech/dev-clean/7976/110124/7976-110124-0008.wav"}
{"duration": 4.81, "text": "bui we should not forget our promise to our father cried the youngest daughter", "key": ".././data/LibriSpeech/dev-clean/7976/110124/7976-110124-0009.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/LibriSpeech/dev-clean/7976/110124/7976-110124-0010.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/LibriSpeech/dev-clean/7976/110124/7976-110124-0011.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/LibriSpeech/dev-clean/7976/110124/7976-110124-0012.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/LibriSpeech/dev-clean/7976/110124/7976-110124-0013.wav"}
{"duration": 5.21, "text": "she did not stir and he knew that the sleeping powder had thoroughly done its work", "key": ".././data/LibriSpeech/dev-clean/7976/110124/7976-110124-0014.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/LibriSpeech/dev-clean/7976/110124/7976-110124-0015.wav"}
{"duration": 4.18, "text": "it was the youngest one who deceived me cried the robber chieftain", "key": ".././data/LibriSpeech/dev-clean/7976/110124/7976-110124-0016.wav"}
{"duration": 2.685, "text": "perhaps you can outwit her yet cried another", "key": ".././data/LibriSpeech/dev-clean/7976/110124/7976-110124-0017.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/LibriSpeech/dev-clean/7976/110124/7976-110124-0018.wav"}