-
Notifications
You must be signed in to change notification settings - Fork 0
/
zip_audio_en.log
39187 lines (39187 loc) · 908 KB
/
zip_audio_en.log
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
Working Directory = E:\Projects\GitHUB\RTAsset_Publisher
Java Argument: Key-> src=RTAsset_Audio_EN_Set1
Java Argument: Key-> compress=true
Java Argument: Key-> cmd=build_dist
Running: cmd=build_dist:src=RTAsset_Audio_EN_Set1:compress=true
Listing folder: E:\Projects\GitHUB\RTAsset_Publisher\RTAsset_Audio_EN_Set1
Folder assets
Processing: assets
Listing folder: E:\Projects\GitHUB\RTAsset_Publisher\RTAsset_Audio_EN_Set1/assets
Folder audio
Processing: audio
Listing folder: E:\Projects\GitHUB\RTAsset_Publisher\RTAsset_Audio_EN_Set1/assets/audio
Folder effect
Folder en
Processing: effect
Listing folder: E:\Projects\GitHUB\RTAsset_Publisher\RTAsset_Audio_EN_Set1/assets/audio/effect
Folder chimes
Folder cmu
Processing: chimes
Listing folder: E:\Projects\GitHUB\RTAsset_Publisher\RTAsset_Audio_EN_Set1/assets/audio/effect/chimes
File 13.mp3
File 15.mp3
File 17.mp3
File 18.mp3
File 20.mp3
File 21.mp3
File 22.mp3
File 23.mp3
File 24.mp3
File 25.mp3
File 27.mp3
File 29.mp3
File 30.mp3
File 32.mp3
File 33.mp3
File 34.mp3
File 35.mp3
File 36.mp3
File 37.mp3
File 39.mp3
File 41.mp3
File 42.mp3
File 44.mp3
File 45.mp3
File 46.mp3
File 47.mp3
File 48.mp3
File 49.mp3
File 50.mp3
File 51.mp3
File 53.mp3
File 54.mp3
File 56.mp3
File 57.mp3
File 58.mp3
File 59.mp3
File 60.mp3
File 61.mp3
Processing: 13.mp3
filename :13
prunedname :13
hashname :c51ce410c124a10e0db5e4b97fc2af39
Processing: 15.mp3
filename :15
prunedname :15
hashname :9bf31c7ff062936a96d3c8bd1f8f2ff3
Processing: 17.mp3
filename :17
prunedname :17
hashname :70efdf2ec9b086079795c442636b55fb
Processing: 18.mp3
filename :18
prunedname :18
hashname :6f4922f45568161a8cdf4ad2299f6d23
Processing: 20.mp3
filename :20
prunedname :20
hashname :98f13708210194c475687be6106a3b84
Processing: 21.mp3
filename :21
prunedname :21
hashname :3c59dc048e8850243be8079a5c74d079
Processing: 22.mp3
filename :22
prunedname :22
hashname :b6d767d2f8ed5d21a44b0e5886680cb9
Processing: 23.mp3
filename :23
prunedname :23
hashname :37693cfc748049e45d87b8c7d8b9aacd
Processing: 24.mp3
filename :24
prunedname :24
hashname :1ff1de774005f8da13f42943881c655f
Processing: 25.mp3
filename :25
prunedname :25
hashname :8e296a067a37563370ded05f5a3bf3ec
Processing: 27.mp3
filename :27
prunedname :27
hashname :02e74f10e0327ad868d138f2b4fdd6f0
Processing: 29.mp3
filename :29
prunedname :29
hashname :6ea9ab1baa0efb9e19094440c317e21b
Processing: 30.mp3
filename :30
prunedname :30
hashname :34173cb38f07f89ddbebc2ac9128303f
Processing: 32.mp3
filename :32
prunedname :32
hashname :6364d3f0f495b6ab9dcf8d3b5c6e0b01
Processing: 33.mp3
filename :33
prunedname :33
hashname :182be0c5cdcd5072bb1864cdee4d3d6e
Processing: 34.mp3
filename :34
prunedname :34
hashname :e369853df766fa44e1ed0ff613f563bd
Processing: 35.mp3
filename :35
prunedname :35
hashname :1c383cd30b7c298ab50293adfecb7b18
Processing: 36.mp3
filename :36
prunedname :36
hashname :19ca14e7ea6328a42e0eb13d585e4c22
Processing: 37.mp3
filename :37
prunedname :37
hashname :a5bfc9e07964f8dddeb95fc584cd965d
Processing: 39.mp3
filename :39
prunedname :39
hashname :d67d8ab4f4c10bf22aa353e27879133c
Processing: 41.mp3
filename :41
prunedname :41
hashname :3416a75f4cea9109507cacd8e2f2aefc
Processing: 42.mp3
filename :42
prunedname :42
hashname :a1d0c6e83f027327d8461063f4ac58a6
Processing: 44.mp3
filename :44
prunedname :44
hashname :f7177163c833dff4b38fc8d2872f1ec6
Processing: 45.mp3
filename :45
prunedname :45
hashname :6c8349cc7260ae62e3b1396831a8398f
Processing: 46.mp3
filename :46
prunedname :46
hashname :d9d4f495e875a2e075a1a4a6e1b9770f
Processing: 47.mp3
filename :47
prunedname :47
hashname :67c6a1e7ce56d3d6fa748ab6d9af3fd7
Processing: 48.mp3
filename :48
prunedname :48
hashname :642e92efb79421734881b53e1e1b18b6
Processing: 49.mp3
filename :49
prunedname :49
hashname :f457c545a9ded88f18ecee47145a72c0
Processing: 50.mp3
filename :50
prunedname :50
hashname :c0c7c76d30bd3dcaefc96f40275bdc0a
Processing: 51.mp3
filename :51
prunedname :51
hashname :2838023a778dfaecdc212708f721b788
Processing: 53.mp3
filename :53
prunedname :53
hashname :d82c8d1619ad8176d665453cfb2e55f0
Processing: 54.mp3
filename :54
prunedname :54
hashname :a684eceee76fc522773286a895bc8436
Processing: 56.mp3
filename :56
prunedname :56
hashname :9f61408e3afb633e50cdf1b20de6f466
Processing: 57.mp3
filename :57
prunedname :57
hashname :72b32a1f754ba1c09b3695e0cb6cde7f
Processing: 58.mp3
filename :58
prunedname :58
hashname :66f041e16a60928b05a7e228a89c3799
Processing: 59.mp3
filename :59
prunedname :59
hashname :093f65e080a295f8076b1c5722a46aa2
Processing: 60.mp3
filename :60
prunedname :60
hashname :072b030ba126b2f4b2374f342be9ed44
Processing: 61.mp3
filename :61
prunedname :61
hashname :7f39f8317fbdb1988ef4c628eba02591
Processing: cmu
Listing folder: E:\Projects\GitHUB\RTAsset_Publisher\RTAsset_Audio_EN_Set1/assets/audio/effect/cmu
Folder xprize
Processing: xprize
Listing folder: E:\Projects\GitHUB\RTAsset_Publisher\RTAsset_Audio_EN_Set1/assets/audio/effect/cmu/xprize
Folder akira
Folder bubble_pop
Processing: akira
Listing folder: E:\Projects\GitHUB\RTAsset_Publisher\RTAsset_Audio_EN_Set1/assets/audio/effect/cmu/xprize/akira
File Carscreech2.mp3
File Correct v1.mp3
File Incorrect v1.mp3
File Racecar v3-2.mp3
Processing: Carscreech2.mp3
filename :Carscreech2
prunedname :carscreech2
hashname :b720b44d8c7f2d825cff4e2cf5225434
Processing: Correct v1.mp3
filename :Correct v1
prunedname :correctv1
hashname :f7422640f57dea749c3dc62470dcd298
Processing: Incorrect v1.mp3
filename :Incorrect v1
prunedname :incorrectv1
hashname :cdaa29d10de1332cabb2ca3e49190565
Processing: Racecar v3-2.mp3
filename :Racecar v3-2
prunedname :racecarv32
hashname :7ac138cc0fac543768b80c9937a2a076
Processing: bubble_pop
Listing folder: E:\Projects\GitHUB\RTAsset_Publisher\RTAsset_Audio_EN_Set1/assets/audio/effect/cmu/xprize/bubble_pop
File coin.mp3
File gamesound.mp3
File popSound.mp3
File scorecard.mp3
File wrong.mp3
Processing: coin.mp3
filename :coin
prunedname :coin
hashname :96a9519b8fddd17e8cc4bba0408ffffd
Processing: gamesound.mp3
filename :gamesound
prunedname :gamesound
hashname :c468a820302162f8eaae76de10028585
Processing: popSound.mp3
filename :popSound
prunedname :popsound
hashname :0077e5f0bcd5d614d1a1311907ea5412
Processing: scorecard.mp3
filename :scorecard
prunedname :scorecard
hashname :0efc148cd48bcad5b26b999f05c9c208
Processing: wrong.mp3
filename :wrong
prunedname :wrong
hashname :2bda2998d9b0ee197da142a0447f6725
Processing: en
Listing folder: E:\Projects\GitHUB\RTAsset_Publisher\RTAsset_Audio_EN_Set1/assets/audio/en
File 0.mp3
File 1.mp3
File 2.mp3
File 3.mp3
File 4.mp3
File 5.mp3
File 6.mp3
File 7.mp3
File 8.mp3
File 9.mp3
Folder cmu
File Good job.mp3
File Good.mp3
File Huh.mp3
File Next time you can do better.mp3
File Now lets practice writing some numbers.mp3
File Please write the number.mp3
File That doesnt look like.mp3
File That looks like.mp3
File the number.mp3
File This is the number.mp3
File Try again.mp3
File with your finger.mp3
Processing: 0.mp3
filename :0
prunedname :0
hashname :cfcd208495d565ef66e7dff9f98764da
Processing: 1.mp3
filename :1
prunedname :1
hashname :c4ca4238a0b923820dcc509a6f75849b
Processing: 2.mp3
filename :2
prunedname :2
hashname :c81e728d9d4c2f636f067f89cc14862c
Processing: 3.mp3
filename :3
prunedname :3
hashname :eccbc87e4b5ce2fe28308fd9f2a7baf3
Processing: 4.mp3
filename :4
prunedname :4
hashname :a87ff679a2f3e71d9181a67b7542122c
Processing: 5.mp3
filename :5
prunedname :5
hashname :e4da3b7fbbce2345d7772b0674a318d5
Processing: 6.mp3
filename :6
prunedname :6
hashname :1679091c5a880faf6fb5e6087eb1b2dc
Processing: 7.mp3
filename :7
prunedname :7
hashname :8f14e45fceea167a5a36dedd4bea2543
Processing: 8.mp3
filename :8
prunedname :8
hashname :c9f0f895fb98ab9159f51fd0297e236d
Processing: 9.mp3
filename :9
prunedname :9
hashname :45c48cce2e2d7fbdea1afc51c7c6ad26
Processing: cmu
Listing folder: E:\Projects\GitHUB\RTAsset_Publisher\RTAsset_Audio_EN_Set1/assets/audio/en/cmu
Folder xprize
Processing: xprize
Listing folder: E:\Projects\GitHUB\RTAsset_Publisher\RTAsset_Audio_EN_Set1/assets/audio/en/cmu/xprize
Folder activity_selector
Folder akira
Folder arithmetic
Folder bubble_pop
Folder global
Folder missing_number
Folder story_reading
Folder writing
Processing: activity_selector
Listing folder: E:\Projects\GitHUB\RTAsset_Publisher\RTAsset_Audio_EN_Set1/assets/audio/en/cmu/xprize/activity_selector
Folder quality_low
Folder quality_orig
Processing: quality_low
Listing folder: E:\Projects\GitHUB\RTAsset_Publisher\RTAsset_Audio_EN_Set1/assets/audio/en/cmu/xprize/activity_selector/quality_low
File I want to stop using RoboTutor.mp3
File it was just right.mp3
File it was too easy.mp3
File it was too hard.mp3
File Let RoboTutor decide.mp3
File lets ask robotutor.mp3
File lets do it again.mp3
File numbers and math.mp3
File quit.mp3
File reading and writing.mp3
File shapes.mp3
File stories.mp3
File Tap here for a story.mp3
File Tap here for numbers and math.mp3
File Tap here for reading and writing.mp3
File tap here if it was just right.mp3
File Tap here if it was too easy and you want something harder.mp3
File Tap here if it was too hard and you want something easier.mp3
File tap here to ask robotutor.mp3
File tap here to do the same thing again.mp3
File Tap here to learn shapes.mp3
File Tap here to let RoboTutor decide.mp3
File tap here to stop using robotutor.mp3
File what did you think of that.mp3
File What do you want to work on today.mp3
File What would you like to do.mp3
Processing: I want to stop using RoboTutor.mp3
filename :I want to stop using RoboTutor
prunedname :iwanttostopusingrobotutor
hashname :87fa52781967fec30a271212202cf7c8
Processing: it was just right.mp3
filename :it was just right
prunedname :itwasjustright
hashname :fc8842036e6f99abd31b7772f586ccd7
Processing: it was too easy.mp3
filename :it was too easy
prunedname :itwastooeasy
hashname :3ccb67feb7cc08fac2585ffb2e5f278c
Processing: it was too hard.mp3
filename :it was too hard
prunedname :itwastoohard
hashname :25b9edac7dbb4abdf4983b68487e7933
Processing: Let RoboTutor decide.mp3
filename :Let RoboTutor decide
prunedname :letrobotutordecide
hashname :98db43bd6cf2291284792199fe680e03
Processing: lets ask robotutor.mp3
filename :lets ask robotutor
prunedname :letsaskrobotutor
hashname :47ada2f92cf5dc9c03fcbbea2c071b9c
Processing: lets do it again.mp3
filename :lets do it again
prunedname :letsdoitagain
hashname :272c5ce5f4c9952fde4f203a86973f24
Processing: numbers and math.mp3
filename :numbers and math
prunedname :numbersandmath
hashname :0fe0b29e28536fc7cf54c3ade53f2d76
Processing: quit.mp3
filename :quit
prunedname :quit
hashname :dbd73c2b545209688ed794c0d5413d5a
Processing: reading and writing.mp3
filename :reading and writing
prunedname :readingandwriting
hashname :a51db5970a0d69282a548fd6af4ff793
Processing: shapes.mp3
filename :shapes
prunedname :shapes
hashname :8a995d2704d5368bf91297d33117ab6d
Processing: stories.mp3
filename :stories
prunedname :stories
hashname :5e0bfe3e3e1cf5f82a532eb269d93342
Processing: Tap here for a story.mp3
filename :Tap here for a story
prunedname :taphereforastory
hashname :953e2e8bd717063d08ead5403dbd0afc
Processing: Tap here for numbers and math.mp3
filename :Tap here for numbers and math
prunedname :tapherefornumbersandmath
hashname :955d475d836a9e6976a5bca91926c704
Processing: Tap here for reading and writing.mp3
filename :Tap here for reading and writing
prunedname :taphereforreadingandwriting
hashname :bc8f7b439c8cc34fc6fc4e963e66dbc7
Processing: tap here if it was just right.mp3
filename :tap here if it was just right
prunedname :taphereifitwasjustright
hashname :5fc7f3a6a6cdeaef09eacea68c83fc4e
Processing: Tap here if it was too easy and you want something harder.mp3
filename :Tap here if it was too easy and you want something harder
prunedname :taphereifitwastooeasyandyouwantsomethingharder
hashname :cfcaa74f674c3ffb00d3ce0649750d1f
Processing: Tap here if it was too hard and you want something easier.mp3
filename :Tap here if it was too hard and you want something easier
prunedname :taphereifitwastoohardandyouwantsomethingeasier
hashname :8eb0d21c478c575a395cf9cb6da42e1a
Processing: tap here to ask robotutor.mp3
filename :tap here to ask robotutor
prunedname :tapheretoaskrobotutor
hashname :359d09138a07790fe849e2b4985c6b59
Processing: tap here to do the same thing again.mp3
filename :tap here to do the same thing again
prunedname :tapheretodothesamethingagain
hashname :48beb33fc62ca63b4f7c2f91b820ba68
Processing: Tap here to learn shapes.mp3
filename :Tap here to learn shapes
prunedname :tapheretolearnshapes
hashname :f7712d3a84be35758abd70977bfe9bf5
Processing: Tap here to let RoboTutor decide.mp3
filename :Tap here to let RoboTutor decide
prunedname :tapheretoletrobotutordecide
hashname :d39950ec96e6a5361508996ce7ae6444
Processing: tap here to stop using robotutor.mp3
filename :tap here to stop using robotutor
prunedname :tapheretostopusingrobotutor
hashname :77e05074fd84c5f6a15d0b0763cad6b1
Processing: what did you think of that.mp3
filename :what did you think of that
prunedname :whatdidyouthinkofthat
hashname :26d7b1a45d3ce7e6a986e8d763b5a6b9
Processing: What do you want to work on today.mp3
filename :What do you want to work on today
prunedname :whatdoyouwanttoworkontoday
hashname :be04427d2cc0b69f9267126ca9e7f7f8
Processing: What would you like to do.mp3
filename :What would you like to do
prunedname :whatwouldyouliketodo
hashname :8ca494c51527170a3495b657bdee934a
Processing: quality_orig
Processing: akira
Listing folder: E:\Projects\GitHUB\RTAsset_Publisher\RTAsset_Audio_EN_Set1/assets/audio/en/cmu/xprize/akira
File and.mp3
File between.mp3
File less than.mp3
File more than.mp3
File so tap here.mp3
File the same as.mp3
File this is.mp3
File This says.mp3
File this.mp3
Processing: and.mp3
filename :and
prunedname :and
hashname :be5d5d37542d75f93a87094459f76678
Processing: between.mp3
filename :between
prunedname :between
hashname :2942c466ae985c4fe2d8cc9d0c801501
Processing: less than.mp3
filename :less than
prunedname :lessthan
hashname :a5fa324707be552e3fcde68359ba1330
Processing: more than.mp3
filename :more than
prunedname :morethan
hashname :d11395f3033fa2dec8d0bd83dfa640f5
Processing: so tap here.mp3
filename :so tap here
prunedname :sotaphere
hashname :02686ea3b212422f79025059079cc8ed
Processing: the same as.mp3
filename :the same as
prunedname :thesameas
hashname :83bb559754c20cb199f8b93bc65cb356
Processing: this is.mp3
filename :this is
prunedname :thisis
hashname :f684b2f3d4218ee06dad551b3bb2074b
Processing: This says.mp3
filename :This says
prunedname :thissays
hashname :a55ffa2a0ead48ba2ba144a901759bbc
Processing: this.mp3
filename :this
prunedname :this
hashname :9e925e9341b490bfd3b4c4ca3b0c1ef2
Processing: arithmetic
Listing folder: E:\Projects\GitHUB\RTAsset_Publisher\RTAsset_Audio_EN_Set1/assets/audio/en/cmu/xprize/arithmetic
Folder quality_low
Folder quality_orig
Processing: quality_low
Listing folder: E:\Projects\GitHUB\RTAsset_Publisher\RTAsset_Audio_EN_Set1/assets/audio/en/cmu/xprize/arithmetic/quality_low
File Adding 0 things plus 3 things means.mp3
File Adding 3 things plus 0 things means.mp3
File Adding 3 things plus 2 things means.mp3
File and adding them up.mp3
File and count them one by one.mp3
File and count up from.mp3
File and write the result here.mp3
File audiolist.en.txt
File circle.mp3
File Copy your answer here.mp3
File Good.mp3
File here.mp3
File hexagon.mp3
File How many things are here.mp3
File How many things are left.mp3
File How many things are there.mp3
File How many things do you get.mp3
File In fact 0 plus any number is just the number.mp3
File In fact any number minus 0 is just the number.mp3
File In fact any number plus 0 is just the number.mp3
File Let's add some numbers now.mp3
File Let's multiply some numbers now.mp3
File Let's subtract some numbers now.mp3
File Let's tap on the 3 things.mp3
File Let's tap on the three things to add them to the two things.mp3
File Let's tap on the two things and see how many are left.mp3
File Lets write.mp3
File means writing.mp3
File Multiplying.mp3
File Not quite try again.mp3
File Now add the first two.mp3
File Now add the last.mp3
File Now add the next.mp3
File Now add the third.mp3
File Now you try it.mp3
File pentagon.mp3
File Remember that 0 minus 0 is 0.mp3
File Remember that 0 plus 0 is 0.mp3
File Remember that 0 plus any number is just the number.mp3
File Remember that any number minus 0 is just the number.mp3
File Remember that any number plus 0 is just the number.mp3
File Right.mp3
File s and write their sum here.mp3
File So 0 plus 3 is 3.mp3
File So 3 minus 0 is 3.mp3
File So 3 minus 2 is 1.mp3
File So 3 plus 0 is 3.mp3
File So 3 plus 2 is 5.mp3
File So what is.mp3
File square.mp3
File star.mp3
File Subtracting 3 things minus 0 things means.mp3
File Subtracting 3 things minus 2 things means.mp3
File Tap here and please write your answer.mp3
File Tap on the.mp3
File This is called a minus sign.mp3
File This is called a plus sign.mp3
File times one under the other.mp3
File times.mp3
File to take them away.mp3
File triangle.mp3
File What about adding 0 plus something.mp3
File What about adding something plus 0.mp3
File What about subtracting something minus 0.mp3
File Write the fifth.mp3
File Write the first.mp3
File Write the fourth.mp3
File Write the last.mp3
File Write the second.mp3
File Write the sixth.mp3
File Write the third.mp3
Processing: Adding 0 things plus 3 things means.mp3
filename :Adding 0 things plus 3 things means
prunedname :adding0thingsplus3thingsmeans
hashname :38632989d5d5b40ad38e19826afea83c
Processing: Adding 3 things plus 0 things means.mp3
filename :Adding 3 things plus 0 things means
prunedname :adding3thingsplus0thingsmeans
hashname :db9615645fdf138d75b7f8bd49c9112e
Processing: Adding 3 things plus 2 things means.mp3
filename :Adding 3 things plus 2 things means
prunedname :adding3thingsplus2thingsmeans
hashname :3fe0ded743b5e7f5c866f183ac65511c
Processing: and adding them up.mp3
filename :and adding them up
prunedname :andaddingthemup
hashname :9d56964b63fb3d796d611ad24848531c
Processing: and count them one by one.mp3
filename :and count them one by one
prunedname :andcountthemonebyone
hashname :b4d94c693f406fdc7bf24e620b544a96
Processing: and count up from.mp3
filename :and count up from
prunedname :andcountupfrom
hashname :db26dea444e90c65962f03bd9ccc7d48
Processing: and write the result here.mp3
filename :and write the result here
prunedname :andwritetheresulthere
hashname :43033c43264b9410b9bc37a80942aa55
Processing: audiolist.en.txt
Processing: circle.mp3
filename :circle
prunedname :circle
hashname :9b6ddeba5b33e577c07c35d8505c6072
Processing: Copy your answer here.mp3
filename :Copy your answer here
prunedname :copyyouranswerhere
hashname :00c1566d7178e462c114f8ab17813580
Processing: Good.mp3
filename :Good
prunedname :good
hashname :755f85c2723bb39381c7379a604160d8
Processing: here.mp3
filename :here
prunedname :here
hashname :6c92285fa6d3e827b198d120ea3ac674
Processing: hexagon.mp3
filename :hexagon
prunedname :hexagon
hashname :fcadedce5939367d6558b793607399d8
Processing: How many things are here.mp3
filename :How many things are here
prunedname :howmanythingsarehere
hashname :25095ba6864cf0b3b95fa1a8ce3b5859
Processing: How many things are left.mp3
filename :How many things are left
prunedname :howmanythingsareleft
hashname :bbd5d00d528c69a4989d601b7427254f
Processing: How many things are there.mp3
filename :How many things are there
prunedname :howmanythingsarethere
hashname :fcaed7802ed0cca2c6a16607672b773c
Processing: How many things do you get.mp3
filename :How many things do you get
prunedname :howmanythingsdoyouget
hashname :88d6d212ac1f6acffdd9d926be66df0f
Processing: In fact 0 plus any number is just the number.mp3
filename :In fact 0 plus any number is just the number
prunedname :infact0plusanynumberisjustthenumber
hashname :2478e35271cd01ef4a57839409dd0d20
Processing: In fact any number minus 0 is just the number.mp3
filename :In fact any number minus 0 is just the number
prunedname :infactanynumberminus0isjustthenumber
hashname :5199b43582e93f271bf541fc8197e147
Processing: In fact any number plus 0 is just the number.mp3
filename :In fact any number plus 0 is just the number
prunedname :infactanynumberplus0isjustthenumber
hashname :504d25245447ea26528d77e49e0a6287
Processing: Let's add some numbers now.mp3
filename :Let's add some numbers now
prunedname :letsaddsomenumbersnow
hashname :16bf098800c751e9e5c9318683ea7896
Processing: Let's multiply some numbers now.mp3
filename :Let's multiply some numbers now
prunedname :letsmultiplysomenumbersnow
hashname :b44a16d52d9c554f1297dc7588afc00d
Processing: Let's subtract some numbers now.mp3
filename :Let's subtract some numbers now
prunedname :letssubtractsomenumbersnow
hashname :4d9880807b42d9eb0de6e073d4b6c5f6
Processing: Let's tap on the 3 things.mp3
filename :Let's tap on the 3 things
prunedname :letstaponthe3things
hashname :496ddec6ae0aeaf874e4da01c77d5fbe
Processing: Let's tap on the three things to add them to the two things.mp3
filename :Let's tap on the three things to add them to the two things
prunedname :letstaponthethreethingstoaddthemtothetwothings
hashname :7b320fb5bf3fe885ccccbe1245d1914c
Processing: Let's tap on the two things and see how many are left.mp3
filename :Let's tap on the two things and see how many are left
prunedname :letstaponthetwothingsandseehowmanyareleft
hashname :2ed7da94f3097d9c6a8fedc91579d70e
Processing: Lets write.mp3
filename :Lets write
prunedname :letswrite
hashname :255d57b5dce8086c872474587c5f0fab
Processing: means writing.mp3
filename :means writing
prunedname :meanswriting
hashname :d55f4da266b81f5a1c9f2936f9e38c9b
Processing: Multiplying.mp3
filename :Multiplying
prunedname :multiplying
hashname :2825289e9e8bf53abb6e854403d65c5c
Processing: Not quite try again.mp3
filename :Not quite try again
prunedname :notquitetryagain
hashname :aaf7674ca96697ecfa91bc57ff922226
Processing: Now add the first two.mp3
filename :Now add the first two
prunedname :nowaddthefirsttwo
hashname :aac0c2c649bab46aeacbe08b64889a30
Processing: Now add the last.mp3
filename :Now add the last
prunedname :nowaddthelast
hashname :c37c6db72bda9650a34f96dc72202154
Processing: Now add the next.mp3
filename :Now add the next
prunedname :nowaddthenext
hashname :dd700bc7ca90cc3e2b6be1e6329cafa3
Processing: Now add the third.mp3
filename :Now add the third
prunedname :nowaddthethird
hashname :dc9a5eae4ff85d442a8202c279624aa4
Processing: Now you try it.mp3
filename :Now you try it
prunedname :nowyoutryit
hashname :f2029a0dabc0bc6f9868bdee8b8dbe8b
Processing: pentagon.mp3
filename :pentagon
prunedname :pentagon
hashname :9f390d3c7eca88d5b8db183d23d2b4f0
Processing: Remember that 0 minus 0 is 0.mp3
filename :Remember that 0 minus 0 is 0
prunedname :rememberthat0minus0is0
hashname :2bdf40f252f6574a8e700b0d249a9d2e
Processing: Remember that 0 plus 0 is 0.mp3
filename :Remember that 0 plus 0 is 0
prunedname :rememberthat0plus0is0
hashname :0708100dd585d84a264f0f106e400697
Processing: Remember that 0 plus any number is just the number.mp3
filename :Remember that 0 plus any number is just the number
prunedname :rememberthat0plusanynumberisjustthenumber
hashname :7e7686641bdb1790a793bfc7a13b7e25
Processing: Remember that any number minus 0 is just the number.mp3
filename :Remember that any number minus 0 is just the number
prunedname :rememberthatanynumberminus0isjustthenumber
hashname :f0c115901573a2b43305db6bdb405d6e
Processing: Remember that any number plus 0 is just the number.mp3
filename :Remember that any number plus 0 is just the number
prunedname :rememberthatanynumberplus0isjustthenumber
hashname :502b677017e3cf660191e5cb51f5138c
Processing: Right.mp3
filename :Right
prunedname :right
hashname :7c4f29407893c334a6cb7a87bf045c0d
Processing: s and write their sum here.mp3
filename :s and write their sum here
prunedname :sandwritetheirsumhere
hashname :45cce89b724d5d892dcc5ea502458d09
Processing: So 0 plus 3 is 3.mp3
filename :So 0 plus 3 is 3
prunedname :so0plus3is3
hashname :a4f9febc42d9f763247ffbefd2318ec7
Processing: So 3 minus 0 is 3.mp3
filename :So 3 minus 0 is 3
prunedname :so3minus0is3
hashname :2142a62b3b97ce988c8acb6a52844497
Processing: So 3 minus 2 is 1.mp3
filename :So 3 minus 2 is 1
prunedname :so3minus2is1
hashname :71cf07e95b313ac0d454c271f0d9bee6
Processing: So 3 plus 0 is 3.mp3
filename :So 3 plus 0 is 3
prunedname :so3plus0is3
hashname :f555069b8a3a3710d07897fd0faad27f
Processing: So 3 plus 2 is 5.mp3
filename :So 3 plus 2 is 5
prunedname :so3plus2is5
hashname :a6e6f2d9e82235be1c8e6908c9fe7ced
Processing: So what is.mp3
filename :So what is
prunedname :sowhatis
hashname :d389561e048a3fb86317b886c6011f36
Processing: square.mp3
filename :square
prunedname :square
hashname :2fc01ec765ec0cb3dcc559126de20b30
Processing: star.mp3
filename :star
prunedname :star
hashname :8ff953dd97c4405234a04291dee39e0b
Processing: Subtracting 3 things minus 0 things means.mp3
filename :Subtracting 3 things minus 0 things means
prunedname :subtracting3thingsminus0thingsmeans
hashname :dc5591f75b0a4fb2545852c34412db94
Processing: Subtracting 3 things minus 2 things means.mp3
filename :Subtracting 3 things minus 2 things means
prunedname :subtracting3thingsminus2thingsmeans
hashname :de2fef0f2d448d5019844905338a76df
Processing: Tap here and please write your answer.mp3
filename :Tap here and please write your answer
prunedname :taphereandpleasewriteyouranswer
hashname :2bda8d6c7c6fca56393a0add37dbbe9a
Processing: Tap on the.mp3
filename :Tap on the
prunedname :taponthe
hashname :059761e6001ed0c6ab0ad8e91bbeff95
Processing: This is called a minus sign.mp3
filename :This is called a minus sign
prunedname :thisiscalledaminussign
hashname :d58838901bf1a883c5b14c64cd4d3a10
Processing: This is called a plus sign.mp3
filename :This is called a plus sign
prunedname :thisiscalledaplussign
hashname :cc7fcf586ad29cc41544ed82beb3be7f
Processing: times one under the other.mp3
filename :times one under the other
prunedname :timesoneundertheother
hashname :88a41343dc4a6b9b936ec33487721f78
Processing: times.mp3
filename :times
prunedname :times
hashname :f2b798f672d4b42c0359ced11d4f10cd
Processing: to take them away.mp3
filename :to take them away
prunedname :totakethemaway
hashname :ceeab4b720c38e64e04db8ebe36b465a
Processing: triangle.mp3
filename :triangle
prunedname :triangle
hashname :cef44b46f16ae8ecf664df4266ffdbf9
Processing: What about adding 0 plus something.mp3
filename :What about adding 0 plus something
prunedname :whataboutadding0plussomething
hashname :029e0e5f9a3ad541dd3ffdaddfc8cc44
Processing: What about adding something plus 0.mp3
filename :What about adding something plus 0
prunedname :whataboutaddingsomethingplus0
hashname :4d8a1b46395110c09f3ebee1cc7e7ce6
Processing: What about subtracting something minus 0.mp3
filename :What about subtracting something minus 0
prunedname :whataboutsubtractingsomethingminus0
hashname :f7f85a2c47b9576c94c16076c7ee9fbe
Processing: Write the fifth.mp3
filename :Write the fifth
prunedname :writethefifth
hashname :e8ff20e5623189b00420877d427e62ae
Processing: Write the first.mp3
filename :Write the first
prunedname :writethefirst
hashname :66b9619389231883ab4717c4eb91d425
Processing: Write the fourth.mp3
filename :Write the fourth
prunedname :writethefourth
hashname :4c85a9cab4ac0695adedbd5a59269dc8
Processing: Write the last.mp3
filename :Write the last
prunedname :writethelast
hashname :1bfa0af6618e8622357cea0c116464f1
Processing: Write the second.mp3
filename :Write the second
prunedname :writethesecond
hashname :27c184afa01c1595d3fe2192b8a9b9e2
Processing: Write the sixth.mp3
filename :Write the sixth
prunedname :writethesixth
hashname :de23b0cc009e50934d6fc0eb43061a38
Processing: Write the third.mp3
filename :Write the third
prunedname :writethethird
hashname :c6e0f180edcd34bdf17334dc275acf10
Processing: quality_orig
Processing: bubble_pop
Listing folder: E:\Projects\GitHUB\RTAsset_Publisher\RTAsset_Audio_EN_Set1/assets/audio/en/cmu/xprize/bubble_pop
File Not quite.mp3
File Please tap on it.mp3
File Please tap.mp3
File Thats.mp3
Processing: Not quite.mp3
filename :Not quite
prunedname :notquite
hashname :2339770259a3fbec90b4ba5c54b4f164
Processing: Please tap on it.mp3
filename :Please tap on it
prunedname :pleasetaponit
hashname :563c4b2e4b8d4324aff2c95ee93434f6
Processing: Please tap.mp3
filename :Please tap
prunedname :pleasetap
hashname :1d7aa2a307a9c50ce1f26ec308a9cf9a
Processing: Thats.mp3
filename :Thats
prunedname :thats
hashname :fb0d9ed177dbc6392e64f771a7b01cd7
Processing: global
Listing folder: E:\Projects\GitHUB\RTAsset_Publisher\RTAsset_Audio_EN_Set1/assets/audio/en/cmu/xprize/global
File above.mp3
File abuse.mp3
File accept.mp3
File ace.wav
Folder letters
File Next time you can do better.mp3
Folder numbers
Folder shapes
Folder words
File You did a good job.mp3
File You wrote all of them correctly.mp3
Processing: above.mp3
filename :above
prunedname :above
hashname :55a9d6aa251e3c334db4ab4055a4a004
Processing: abuse.mp3
filename :abuse
prunedname :abuse
hashname :3afa60bc8941f838f1d2aff21b5d89f8
Processing: accept.mp3
filename :accept
prunedname :accept
hashname :4abe77c201ff11663ccdf52fd6ecea86
Processing: ace.wav
Processing: letters
Listing folder: E:\Projects\GitHUB\RTAsset_Publisher\RTAsset_Audio_EN_Set1/assets/audio/en/cmu/xprize/global/letters
File a.mp3
File b.mp3
File c.mp3
File d.mp3
File e.mp3
File f.mp3
File g.mp3
File h.mp3
File i.mp3
File j.mp3
File k.mp3
File l.mp3
File m.mp3
File n.mp3
File o.mp3
File p.mp3
File q.mp3
File r.mp3
File s.mp3
File t.mp3
File u.mp3
File v.mp3
File w.mp3
File x.mp3
File y.mp3
File z.mp3
Processing: a.mp3
filename :a
prunedname :a
hashname :0cc175b9c0f1b6a831c399e269772661
Processing: b.mp3
filename :b
prunedname :b
hashname :92eb5ffee6ae2fec3ad71c777531578f
Processing: c.mp3
filename :c
prunedname :c
hashname :4a8a08f09d37b73795649038408b5f33
Processing: d.mp3
filename :d
prunedname :d
hashname :8277e0910d750195b448797616e091ad
Processing: e.mp3
filename :e
prunedname :e
hashname :e1671797c52e15f763380b45e841ec32
Processing: f.mp3
filename :f
prunedname :f
hashname :8fa14cdd754f91cc6554c9e71929cce7
Processing: g.mp3
filename :g
prunedname :g
hashname :b2f5ff47436671b6e533d8dc3614845d
Processing: h.mp3
filename :h
prunedname :h
hashname :2510c39011c5be704182423e3a695e91
Processing: i.mp3
filename :i
prunedname :i
hashname :865c0c0b4ab0e063e5caa3387c1a8741
Processing: j.mp3