-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaudio_info.txt
1191 lines (1191 loc) · 210 KB
/
audio_info.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{ "ename":"Genesis", "cname":"创世记", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/1.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 1"},
{ "ename":"Genesis", "cname":"创世记", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/2.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 2"},
{ "ename":"Genesis", "cname":"创世记", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/3.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 3"},
{ "ename":"Genesis", "cname":"创世记", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/4.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 4"},
{ "ename":"Genesis", "cname":"创世记", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/5.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 5"},
{ "ename":"Genesis", "cname":"创世记", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/6.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 6"},
{ "ename":"Genesis", "cname":"创世记", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/7.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 7"},
{ "ename":"Genesis", "cname":"创世记", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/8.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 8"},
{ "ename":"Genesis", "cname":"创世记", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/9.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 9"},
{ "ename":"Genesis", "cname":"创世记", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/10.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 10"},
{ "ename":"Genesis", "cname":"创世记", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/11.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 11"},
{ "ename":"Genesis", "cname":"创世记", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/12.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 12"},
{ "ename":"Genesis", "cname":"创世记", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/13.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 13"},
{ "ename":"Genesis", "cname":"创世记", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/14.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 14"},
{ "ename":"Genesis", "cname":"创世记", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/15.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 15"},
{ "ename":"Genesis", "cname":"创世记", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/16.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 16"},
{ "ename":"Genesis", "cname":"创世记", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/17.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 17"},
{ "ename":"Genesis", "cname":"创世记", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/18.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 18"},
{ "ename":"Genesis", "cname":"创世记", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/19.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 19"},
{ "ename":"Genesis", "cname":"创世记", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/20.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 20"},
{ "ename":"Genesis", "cname":"创世记", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/21.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 21"},
{ "ename":"Genesis", "cname":"创世记", "chapter":22, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/22.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 22"},
{ "ename":"Genesis", "cname":"创世记", "chapter":23, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/23.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 23"},
{ "ename":"Genesis", "cname":"创世记", "chapter":24, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/24.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 24"},
{ "ename":"Genesis", "cname":"创世记", "chapter":25, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/25.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 25"},
{ "ename":"Genesis", "cname":"创世记", "chapter":26, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/26.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 26"},
{ "ename":"Genesis", "cname":"创世记", "chapter":27, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/27.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 27"},
{ "ename":"Genesis", "cname":"创世记", "chapter":28, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/28.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 28"},
{ "ename":"Genesis", "cname":"创世记", "chapter":29, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/29.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 29"},
{ "ename":"Genesis", "cname":"创世记", "chapter":30, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/30.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 30"},
{ "ename":"Genesis", "cname":"创世记", "chapter":31, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/31.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 31"},
{ "ename":"Genesis", "cname":"创世记", "chapter":32, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/32.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 32"},
{ "ename":"Genesis", "cname":"创世记", "chapter":33, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/33.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 33"},
{ "ename":"Genesis", "cname":"创世记", "chapter":34, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/34.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 34"},
{ "ename":"Genesis", "cname":"创世记", "chapter":35, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/35.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 35"},
{ "ename":"Genesis", "cname":"创世记", "chapter":36, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/36.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 36"},
{ "ename":"Genesis", "cname":"创世记", "chapter":37, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/37.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 37"},
{ "ename":"Genesis", "cname":"创世记", "chapter":38, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/38.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 38"},
{ "ename":"Genesis", "cname":"创世记", "chapter":39, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/39.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 39"},
{ "ename":"Genesis", "cname":"创世记", "chapter":40, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/40.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 40"},
{ "ename":"Genesis", "cname":"创世记", "chapter":41, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/41.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 41"},
{ "ename":"Genesis", "cname":"创世记", "chapter":42, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/42.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 42"},
{ "ename":"Genesis", "cname":"创世记", "chapter":43, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/43.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 43"},
{ "ename":"Genesis", "cname":"创世记", "chapter":44, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/44.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 44"},
{ "ename":"Genesis", "cname":"创世记", "chapter":45, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/45.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 45"},
{ "ename":"Genesis", "cname":"创世记", "chapter":46, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/46.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 46"},
{ "ename":"Genesis", "cname":"创世记", "chapter":47, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/47.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 47"},
{ "ename":"Genesis", "cname":"创世记", "chapter":48, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/48.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 48"},
{ "ename":"Genesis", "cname":"创世记", "chapter":49, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/49.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 49"},
{ "ename":"Genesis", "cname":"创世记", "chapter":50, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/1/50.mp3", "desc": "创世记 [Genesis] - 章 [chapter] 50"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/1.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 1"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/2.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 2"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/3.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 3"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/4.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 4"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/5.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 5"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/6.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 6"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/7.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 7"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/8.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 8"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/9.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 9"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/10.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 10"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/11.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 11"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/12.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 12"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/13.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 13"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/14.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 14"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/15.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 15"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/16.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 16"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/17.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 17"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/18.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 18"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/19.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 19"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/20.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 20"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/21.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 21"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":22, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/22.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 22"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":23, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/23.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 23"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":24, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/24.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 24"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":25, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/25.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 25"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":26, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/26.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 26"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":27, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/27.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 27"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":28, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/28.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 28"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":29, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/29.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 29"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":30, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/30.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 30"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":31, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/31.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 31"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":32, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/32.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 32"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":33, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/33.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 33"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":34, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/34.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 34"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":35, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/35.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 35"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":36, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/36.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 36"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":37, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/37.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 37"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":38, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/38.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 38"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":39, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/39.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 39"},
{ "ename":"Exodus", "cname":"出埃及记", "chapter":40, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/2/40.mp3", "desc": "出埃及记 [Exodus] - 章 [chapter] 40"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/1.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 1"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/2.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 2"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/3.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 3"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/4.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 4"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/5.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 5"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/6.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 6"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/7.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 7"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/8.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 8"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/9.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 9"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/10.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 10"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/11.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 11"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/12.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 12"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/13.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 13"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/14.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 14"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/15.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 15"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/16.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 16"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/17.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 17"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/18.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 18"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/19.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 19"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/20.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 20"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/21.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 21"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":22, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/22.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 22"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":23, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/23.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 23"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":24, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/24.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 24"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":25, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/25.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 25"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":26, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/26.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 26"},
{ "ename":"Leviticus", "cname":"利未记", "chapter":27, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/3/27.mp3", "desc": "利未记 [Leviticus] - 章 [chapter] 27"},
{ "ename":"Numbers", "cname":"民数记", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/1.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 1"},
{ "ename":"Numbers", "cname":"民数记", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/2.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 2"},
{ "ename":"Numbers", "cname":"民数记", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/3.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 3"},
{ "ename":"Numbers", "cname":"民数记", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/4.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 4"},
{ "ename":"Numbers", "cname":"民数记", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/5.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 5"},
{ "ename":"Numbers", "cname":"民数记", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/6.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 6"},
{ "ename":"Numbers", "cname":"民数记", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/7.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 7"},
{ "ename":"Numbers", "cname":"民数记", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/8.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 8"},
{ "ename":"Numbers", "cname":"民数记", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/9.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 9"},
{ "ename":"Numbers", "cname":"民数记", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/10.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 10"},
{ "ename":"Numbers", "cname":"民数记", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/11.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 11"},
{ "ename":"Numbers", "cname":"民数记", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/12.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 12"},
{ "ename":"Numbers", "cname":"民数记", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/13.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 13"},
{ "ename":"Numbers", "cname":"民数记", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/14.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 14"},
{ "ename":"Numbers", "cname":"民数记", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/15.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 15"},
{ "ename":"Numbers", "cname":"民数记", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/16.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 16"},
{ "ename":"Numbers", "cname":"民数记", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/17.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 17"},
{ "ename":"Numbers", "cname":"民数记", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/18.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 18"},
{ "ename":"Numbers", "cname":"民数记", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/19.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 19"},
{ "ename":"Numbers", "cname":"民数记", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/20.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 20"},
{ "ename":"Numbers", "cname":"民数记", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/21.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 21"},
{ "ename":"Numbers", "cname":"民数记", "chapter":22, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/22.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 22"},
{ "ename":"Numbers", "cname":"民数记", "chapter":23, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/23.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 23"},
{ "ename":"Numbers", "cname":"民数记", "chapter":24, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/24.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 24"},
{ "ename":"Numbers", "cname":"民数记", "chapter":25, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/25.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 25"},
{ "ename":"Numbers", "cname":"民数记", "chapter":26, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/26.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 26"},
{ "ename":"Numbers", "cname":"民数记", "chapter":27, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/27.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 27"},
{ "ename":"Numbers", "cname":"民数记", "chapter":28, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/28.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 28"},
{ "ename":"Numbers", "cname":"民数记", "chapter":29, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/29.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 29"},
{ "ename":"Numbers", "cname":"民数记", "chapter":30, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/30.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 30"},
{ "ename":"Numbers", "cname":"民数记", "chapter":31, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/31.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 31"},
{ "ename":"Numbers", "cname":"民数记", "chapter":32, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/32.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 32"},
{ "ename":"Numbers", "cname":"民数记", "chapter":33, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/33.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 33"},
{ "ename":"Numbers", "cname":"民数记", "chapter":34, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/34.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 34"},
{ "ename":"Numbers", "cname":"民数记", "chapter":35, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/35.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 35"},
{ "ename":"Numbers", "cname":"民数记", "chapter":36, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/4/36.mp3", "desc": "民数记 [Numbers] - 章 [chapter] 36"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/1.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 1"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/2.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 2"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/3.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 3"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/4.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 4"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/5.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 5"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/6.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 6"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/7.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 7"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/8.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 8"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/9.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 9"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/10.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 10"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/11.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 11"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/12.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 12"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/13.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 13"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/14.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 14"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/15.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 15"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/16.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 16"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/17.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 17"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/18.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 18"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/19.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 19"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/20.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 20"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/21.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 21"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":22, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/22.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 22"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":23, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/23.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 23"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":24, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/24.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 24"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":25, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/25.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 25"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":26, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/26.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 26"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":27, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/27.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 27"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":28, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/28.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 28"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":29, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/29.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 29"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":30, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/30.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 30"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":31, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/31.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 31"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":32, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/32.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 32"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":33, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/33.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 33"},
{ "ename":"Deuterenomy", "cname":"申命记", "chapter":34, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/5/34.mp3", "desc": "申命记 [Deuterenomy] - 章 [chapter] 34"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/1.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 1"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/2.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 2"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/3.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 3"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/4.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 4"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/5.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 5"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/6.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 6"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/7.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 7"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/8.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 8"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/9.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 9"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/10.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 10"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/11.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 11"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/12.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 12"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/13.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 13"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/14.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 14"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/15.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 15"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/16.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 16"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/17.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 17"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/18.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 18"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/19.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 19"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/20.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 20"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/21.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 21"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":22, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/22.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 22"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":23, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/23.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 23"},
{ "ename":"Joshua", "cname":"约书亚记", "chapter":24, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/6/24.mp3", "desc": "约书亚记 [Joshua] - 章 [chapter] 24"},
{ "ename":"Judges", "cname":"士师记", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/1.mp3", "desc": "士师记 [Judges] - 章 [chapter] 1"},
{ "ename":"Judges", "cname":"士师记", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/2.mp3", "desc": "士师记 [Judges] - 章 [chapter] 2"},
{ "ename":"Judges", "cname":"士师记", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/3.mp3", "desc": "士师记 [Judges] - 章 [chapter] 3"},
{ "ename":"Judges", "cname":"士师记", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/4.mp3", "desc": "士师记 [Judges] - 章 [chapter] 4"},
{ "ename":"Judges", "cname":"士师记", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/5.mp3", "desc": "士师记 [Judges] - 章 [chapter] 5"},
{ "ename":"Judges", "cname":"士师记", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/6.mp3", "desc": "士师记 [Judges] - 章 [chapter] 6"},
{ "ename":"Judges", "cname":"士师记", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/7.mp3", "desc": "士师记 [Judges] - 章 [chapter] 7"},
{ "ename":"Judges", "cname":"士师记", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/8.mp3", "desc": "士师记 [Judges] - 章 [chapter] 8"},
{ "ename":"Judges", "cname":"士师记", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/9.mp3", "desc": "士师记 [Judges] - 章 [chapter] 9"},
{ "ename":"Judges", "cname":"士师记", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/10.mp3", "desc": "士师记 [Judges] - 章 [chapter] 10"},
{ "ename":"Judges", "cname":"士师记", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/11.mp3", "desc": "士师记 [Judges] - 章 [chapter] 11"},
{ "ename":"Judges", "cname":"士师记", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/12.mp3", "desc": "士师记 [Judges] - 章 [chapter] 12"},
{ "ename":"Judges", "cname":"士师记", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/13.mp3", "desc": "士师记 [Judges] - 章 [chapter] 13"},
{ "ename":"Judges", "cname":"士师记", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/14.mp3", "desc": "士师记 [Judges] - 章 [chapter] 14"},
{ "ename":"Judges", "cname":"士师记", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/15.mp3", "desc": "士师记 [Judges] - 章 [chapter] 15"},
{ "ename":"Judges", "cname":"士师记", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/16.mp3", "desc": "士师记 [Judges] - 章 [chapter] 16"},
{ "ename":"Judges", "cname":"士师记", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/17.mp3", "desc": "士师记 [Judges] - 章 [chapter] 17"},
{ "ename":"Judges", "cname":"士师记", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/18.mp3", "desc": "士师记 [Judges] - 章 [chapter] 18"},
{ "ename":"Judges", "cname":"士师记", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/19.mp3", "desc": "士师记 [Judges] - 章 [chapter] 19"},
{ "ename":"Judges", "cname":"士师记", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/20.mp3", "desc": "士师记 [Judges] - 章 [chapter] 20"},
{ "ename":"Judges", "cname":"士师记", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/7/21.mp3", "desc": "士师记 [Judges] - 章 [chapter] 21"},
{ "ename":"Ruth", "cname":"路得记", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/8/1.mp3", "desc": " 路得记 [Ruth] - 章 [chapter] 1"},
{ "ename":"Ruth", "cname":"路得记", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/8/2.mp3", "desc": " 路得记 [Ruth] - 章 [chapter] 2"},
{ "ename":"Ruth", "cname":"路得记", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/8/3.mp3", "desc": " 路得记 [Ruth] - 章 [chapter] 3"},
{ "ename":"Ruth", "cname":"路得记", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/8/4.mp3", "desc": " 路得记 [Ruth] - 章 [chapter] 4"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/1.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 1"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/2.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 2"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/3.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 3"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/4.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 4"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/5.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 5"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/6.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 6"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/7.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 7"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/8.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 8"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/9.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 9"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/10.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 10"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/11.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 11"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/12.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 12"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/13.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 13"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/14.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 14"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/15.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 15"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/16.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 16"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/17.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 17"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/18.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 18"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/19.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 19"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/20.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 20"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/21.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 21"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":22, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/22.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 22"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":23, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/23.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 23"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":24, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/24.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 24"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":25, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/25.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 25"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":26, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/26.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 26"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":27, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/27.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 27"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":28, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/28.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 28"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":29, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/29.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 29"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":30, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/30.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 30"},
{ "ename":"1 Samuel", "cname":"撒母耳记上 ", "chapter":31, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/9/31.mp3", "desc": "撒母耳记上 [1 Samuel] - 章 [chapter] 31"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/1.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 1"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/2.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 2"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/3.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 3"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/4.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 4"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/5.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 5"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/6.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 6"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/7.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 7"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/8.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 8"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/9.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 9"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/10.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 10"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/11.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 11"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/12.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 12"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/13.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 13"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/14.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 14"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/15.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 15"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/16.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 16"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/17.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 17"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/18.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 18"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/19.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 19"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/20.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 20"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/21.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 21"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":22, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/22.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 22"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":23, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/23.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 23"},
{ "ename":"2 Samuel", "cname":"撒母耳记下", "chapter":24, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/10/24.mp3", "desc": "撒母耳记下 [2 Samuel] - 章 [chapter] 24"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/1.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 1"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/2.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 2"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/3.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 3"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/4.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 4"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/5.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 5"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/6.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 6"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/7.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 7"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/8.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 8"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/9.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 9"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/10.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 10"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/11.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 11"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/12.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 12"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/13.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 13"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/14.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 14"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/15.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 15"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/16.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 16"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/17.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 17"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/18.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 18"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/19.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 19"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/20.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 20"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/21.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 21"},
{ "ename":"1 Kings", "cname":"列王纪上", "chapter":22, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/11/22.mp3", "desc": "列王纪上 [1 Kings] - 章 [chapter] 22"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/1.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 1"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/2.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 2"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/3.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 3"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/4.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 4"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/5.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 5"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/6.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 6"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/7.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 7"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/8.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 8"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/9.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 9"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/10.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 10"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/11.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 11"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/12.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 12"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/13.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 13"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/14.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 14"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/15.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 15"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/16.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 16"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/17.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 17"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/18.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 18"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/19.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 19"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/20.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 20"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/21.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 21"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":22, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/22.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 22"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":23, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/23.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 23"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":24, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/24.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 24"},
{ "ename":"2 Kings", "cname":"列王纪下", "chapter":25, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/12/25.mp3", "desc": "列王纪下 [2 Kings] - 章 [chapter] 25"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/1.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 1"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/2.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 2"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/3.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 3"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/4.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 4"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/5.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 5"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/6.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 6"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/7.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 7"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/8.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 8"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/9.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 9"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/10.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 10"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/11.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 11"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/12.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 12"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/13.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 13"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/14.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 14"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/15.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 15"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/16.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 16"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/17.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 17"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/18.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 18"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/19.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 19"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/20.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 20"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/21.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 21"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":22, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/22.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 22"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":23, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/23.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 23"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":24, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/24.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 24"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":25, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/25.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 25"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":26, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/26.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 26"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":27, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/27.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 27"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":28, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/28.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 28"},
{ "ename":"1 Chronicles", "cname":"历代志上", "chapter":29, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/13/29.mp3", "desc": "历代志上 [1 Chronicles] - 章 [chapter] 29"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/1.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 1"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/2.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 2"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/3.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 3"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/4.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 4"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/5.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 5"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/6.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 6"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/7.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 7"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/8.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 8"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/9.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 9"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/10.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 10"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/11.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 11"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/12.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 12"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/13.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 13"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/14.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 14"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/15.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 15"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/16.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 16"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/17.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 17"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/18.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 18"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/19.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 19"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/20.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 20"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/21.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 21"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":22, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/22.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 22"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":23, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/23.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 23"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":24, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/24.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 24"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":25, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/25.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 25"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":26, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/26.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 26"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":27, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/27.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 27"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":28, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/28.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 28"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":29, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/29.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 29"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":30, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/30.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 30"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":31, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/31.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 31"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":32, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/32.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 32"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":33, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/33.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 33"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":34, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/34.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 34"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":35, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/35.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 35"},
{ "ename":"2 Chronicles", "cname":"历代志下", "chapter":36, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/14/36.mp3", "desc": "历代志下 [2 Chronicles] - 章 [chapter] 36"},
{ "ename":"Ezra", "cname":"以斯拉记", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/15/1.mp3", "desc": "以斯拉记 [Ezra] - 章 [chapter] 1"},
{ "ename":"Ezra", "cname":"以斯拉记", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/15/2.mp3", "desc": "以斯拉记 [Ezra] - 章 [chapter] 2"},
{ "ename":"Ezra", "cname":"以斯拉记", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/15/3.mp3", "desc": "以斯拉记 [Ezra] - 章 [chapter] 3"},
{ "ename":"Ezra", "cname":"以斯拉记", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/15/4.mp3", "desc": "以斯拉记 [Ezra] - 章 [chapter] 4"},
{ "ename":"Ezra", "cname":"以斯拉记", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/15/5.mp3", "desc": "以斯拉记 [Ezra] - 章 [chapter] 5"},
{ "ename":"Ezra", "cname":"以斯拉记", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/15/6.mp3", "desc": "以斯拉记 [Ezra] - 章 [chapter] 6"},
{ "ename":"Ezra", "cname":"以斯拉记", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/15/7.mp3", "desc": "以斯拉记 [Ezra] - 章 [chapter] 7"},
{ "ename":"Ezra", "cname":"以斯拉记", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/15/8.mp3", "desc": "以斯拉记 [Ezra] - 章 [chapter] 8"},
{ "ename":"Ezra", "cname":"以斯拉记", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/15/9.mp3", "desc": "以斯拉记 [Ezra] - 章 [chapter] 9"},
{ "ename":"Ezra", "cname":"以斯拉记", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/15/10.mp3", "desc": "以斯拉记 [Ezra] - 章 [chapter] 10"},
{ "ename":"Nehemiah", "cname":"尼希米记", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/16/1.mp3", "desc": "尼希米记 [Nehemiah] - 章 [chapter] 1"},
{ "ename":"Nehemiah", "cname":"尼希米记", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/16/2.mp3", "desc": "尼希米记 [Nehemiah] - 章 [chapter] 2"},
{ "ename":"Nehemiah", "cname":"尼希米记", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/16/3.mp3", "desc": "尼希米记 [Nehemiah] - 章 [chapter] 3"},
{ "ename":"Nehemiah", "cname":"尼希米记", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/16/4.mp3", "desc": "尼希米记 [Nehemiah] - 章 [chapter] 4"},
{ "ename":"Nehemiah", "cname":"尼希米记", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/16/5.mp3", "desc": "尼希米记 [Nehemiah] - 章 [chapter] 5"},
{ "ename":"Nehemiah", "cname":"尼希米记", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/16/6.mp3", "desc": "尼希米记 [Nehemiah] - 章 [chapter] 6"},
{ "ename":"Nehemiah", "cname":"尼希米记", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/16/7.mp3", "desc": "尼希米记 [Nehemiah] - 章 [chapter] 7"},
{ "ename":"Nehemiah", "cname":"尼希米记", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/16/8.mp3", "desc": "尼希米记 [Nehemiah] - 章 [chapter] 8"},
{ "ename":"Nehemiah", "cname":"尼希米记", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/16/9.mp3", "desc": "尼希米记 [Nehemiah] - 章 [chapter] 9"},
{ "ename":"Nehemiah", "cname":"尼希米记", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/16/10.mp3", "desc": "尼希米记 [Nehemiah] - 章 [chapter] 10"},
{ "ename":"Nehemiah", "cname":"尼希米记", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/16/11.mp3", "desc": "尼希米记 [Nehemiah] - 章 [chapter] 11"},
{ "ename":"Nehemiah", "cname":"尼希米记", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/16/12.mp3", "desc": "尼希米记 [Nehemiah] - 章 [chapter] 12"},
{ "ename":"Nehemiah", "cname":"尼希米记", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/16/13.mp3", "desc": "尼希米记 [Nehemiah] - 章 [chapter] 13"},
{ "ename":"Esther", "cname":"以斯帖记", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/17/1.mp3", "desc": "以斯帖记 [Esther] - 章 [chapter] 1"},
{ "ename":"Esther", "cname":"以斯帖记", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/17/2.mp3", "desc": "以斯帖记 [Esther] - 章 [chapter] 2"},
{ "ename":"Esther", "cname":"以斯帖记", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/17/3.mp3", "desc": "以斯帖记 [Esther] - 章 [chapter] 3"},
{ "ename":"Esther", "cname":"以斯帖记", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/17/4.mp3", "desc": "以斯帖记 [Esther] - 章 [chapter] 4"},
{ "ename":"Esther", "cname":"以斯帖记", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/17/5.mp3", "desc": "以斯帖记 [Esther] - 章 [chapter] 5"},
{ "ename":"Esther", "cname":"以斯帖记", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/17/6.mp3", "desc": "以斯帖记 [Esther] - 章 [chapter] 6"},
{ "ename":"Esther", "cname":"以斯帖记", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/17/7.mp3", "desc": "以斯帖记 [Esther] - 章 [chapter] 7"},
{ "ename":"Esther", "cname":"以斯帖记", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/17/8.mp3", "desc": "以斯帖记 [Esther] - 章 [chapter] 8"},
{ "ename":"Esther", "cname":"以斯帖记", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/17/9.mp3", "desc": "以斯帖记 [Esther] - 章 [chapter] 9"},
{ "ename":"Esther", "cname":"以斯帖记", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/17/10.mp3", "desc": "以斯帖记 [Esther] - 章 [chapter] 10"},
{ "ename":"Job", "cname":"约伯记", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/1.mp3", "desc": "约伯记 [Job] - 章 [chapter] 1"},
{ "ename":"Job", "cname":"约伯记", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/2.mp3", "desc": "约伯记 [Job] - 章 [chapter] 2"},
{ "ename":"Job", "cname":"约伯记", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/3.mp3", "desc": "约伯记 [Job] - 章 [chapter] 3"},
{ "ename":"Job", "cname":"约伯记", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/4.mp3", "desc": "约伯记 [Job] - 章 [chapter] 4"},
{ "ename":"Job", "cname":"约伯记", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/5.mp3", "desc": "约伯记 [Job] - 章 [chapter] 5"},
{ "ename":"Job", "cname":"约伯记", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/6.mp3", "desc": "约伯记 [Job] - 章 [chapter] 6"},
{ "ename":"Job", "cname":"约伯记", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/7.mp3", "desc": "约伯记 [Job] - 章 [chapter] 7"},
{ "ename":"Job", "cname":"约伯记", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/8.mp3", "desc": "约伯记 [Job] - 章 [chapter] 8"},
{ "ename":"Job", "cname":"约伯记", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/9.mp3", "desc": "约伯记 [Job] - 章 [chapter] 9"},
{ "ename":"Job", "cname":"约伯记", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/10.mp3", "desc": "约伯记 [Job] - 章 [chapter] 10"},
{ "ename":"Job", "cname":"约伯记", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/11.mp3", "desc": "约伯记 [Job] - 章 [chapter] 11"},
{ "ename":"Job", "cname":"约伯记", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/12.mp3", "desc": "约伯记 [Job] - 章 [chapter] 12"},
{ "ename":"Job", "cname":"约伯记", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/13.mp3", "desc": "约伯记 [Job] - 章 [chapter] 13"},
{ "ename":"Job", "cname":"约伯记", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/14.mp3", "desc": "约伯记 [Job] - 章 [chapter] 14"},
{ "ename":"Job", "cname":"约伯记", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/15.mp3", "desc": "约伯记 [Job] - 章 [chapter] 15"},
{ "ename":"Job", "cname":"约伯记", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/16.mp3", "desc": "约伯记 [Job] - 章 [chapter] 16"},
{ "ename":"Job", "cname":"约伯记", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/17.mp3", "desc": "约伯记 [Job] - 章 [chapter] 17"},
{ "ename":"Job", "cname":"约伯记", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/18.mp3", "desc": "约伯记 [Job] - 章 [chapter] 18"},
{ "ename":"Job", "cname":"约伯记", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/19.mp3", "desc": "约伯记 [Job] - 章 [chapter] 19"},
{ "ename":"Job", "cname":"约伯记", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/20.mp3", "desc": "约伯记 [Job] - 章 [chapter] 20"},
{ "ename":"Job", "cname":"约伯记", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/21.mp3", "desc": "约伯记 [Job] - 章 [chapter] 21"},
{ "ename":"Job", "cname":"约伯记", "chapter":22, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/22.mp3", "desc": "约伯记 [Job] - 章 [chapter] 22"},
{ "ename":"Job", "cname":"约伯记", "chapter":23, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/23.mp3", "desc": "约伯记 [Job] - 章 [chapter] 23"},
{ "ename":"Job", "cname":"约伯记", "chapter":24, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/24.mp3", "desc": "约伯记 [Job] - 章 [chapter] 24"},
{ "ename":"Job", "cname":"约伯记", "chapter":25, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/25.mp3", "desc": "约伯记 [Job] - 章 [chapter] 25"},
{ "ename":"Job", "cname":"约伯记", "chapter":26, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/26.mp3", "desc": "约伯记 [Job] - 章 [chapter] 26"},
{ "ename":"Job", "cname":"约伯记", "chapter":27, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/27.mp3", "desc": "约伯记 [Job] - 章 [chapter] 27"},
{ "ename":"Job", "cname":"约伯记", "chapter":28, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/28.mp3", "desc": "约伯记 [Job] - 章 [chapter] 28"},
{ "ename":"Job", "cname":"约伯记", "chapter":29, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/29.mp3", "desc": "约伯记 [Job] - 章 [chapter] 29"},
{ "ename":"Job", "cname":"约伯记", "chapter":30, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/30.mp3", "desc": "约伯记 [Job] - 章 [chapter] 30"},
{ "ename":"Job", "cname":"约伯记", "chapter":31, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/31.mp3", "desc": "约伯记 [Job] - 章 [chapter] 31"},
{ "ename":"Job", "cname":"约伯记", "chapter":32, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/32.mp3", "desc": "约伯记 [Job] - 章 [chapter] 32"},
{ "ename":"Job", "cname":"约伯记", "chapter":33, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/33.mp3", "desc": "约伯记 [Job] - 章 [chapter] 33"},
{ "ename":"Job", "cname":"约伯记", "chapter":34, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/34.mp3", "desc": "约伯记 [Job] - 章 [chapter] 34"},
{ "ename":"Job", "cname":"约伯记", "chapter":35, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/35.mp3", "desc": "约伯记 [Job] - 章 [chapter] 35"},
{ "ename":"Job", "cname":"约伯记", "chapter":36, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/36.mp3", "desc": "约伯记 [Job] - 章 [chapter] 36"},
{ "ename":"Job", "cname":"约伯记", "chapter":37, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/37.mp3", "desc": "约伯记 [Job] - 章 [chapter] 37"},
{ "ename":"Job", "cname":"约伯记", "chapter":38, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/38.mp3", "desc": "约伯记 [Job] - 章 [chapter] 38"},
{ "ename":"Job", "cname":"约伯记", "chapter":39, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/39.mp3", "desc": "约伯记 [Job] - 章 [chapter] 39"},
{ "ename":"Job", "cname":"约伯记", "chapter":40, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/40.mp3", "desc": "约伯记 [Job] - 章 [chapter] 40"},
{ "ename":"Job", "cname":"约伯记", "chapter":41, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/41.mp3", "desc": "约伯记 [Job] - 章 [chapter] 41"},
{ "ename":"Job", "cname":"约伯记", "chapter":42, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/18/42.mp3", "desc": "约伯记 [Job] - 章 [chapter] 42"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/1.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 1"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/2.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 2"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/3.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 3"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/4.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 4"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/5.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 5"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/6.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 6"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/7.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 7"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/8.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 8"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/9.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 9"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/10.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 10"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/11.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 11"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/12.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 12"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/13.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 13"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/14.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 14"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/15.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 15"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/16.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 16"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/17.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 17"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/18.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 18"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/19.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 19"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/20.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 20"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/21.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 21"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":22, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/22.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 22"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":23, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/23.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 23"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":24, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/24.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 24"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":25, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/25.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 25"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":26, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/26.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 26"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":27, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/27.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 27"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":28, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/28.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 28"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":29, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/29.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 29"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":30, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/30.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 30"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":31, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/31.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 31"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":32, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/32.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 32"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":33, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/33.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 33"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":34, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/34.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 34"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":35, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/35.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 35"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":36, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/36.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 36"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":37, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/37.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 37"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":38, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/38.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 38"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":39, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/39.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 39"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":40, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/40.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 40"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":41, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/41.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 41"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":42, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/42.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 42"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":43, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/43.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 43"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":44, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/44.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 44"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":45, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/45.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 45"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":46, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/46.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 46"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":47, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/47.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 47"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":48, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/48.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 48"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":49, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/49.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 49"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":50, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/50.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 50"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":51, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/51.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 51"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":52, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/52.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 52"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":53, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/53.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 53"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":54, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/54.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 54"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":55, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/55.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 55"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":56, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/56.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 56"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":57, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/57.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 57"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":58, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/58.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 58"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":59, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/59.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 59"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":60, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/60.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 60"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":61, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/61.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 61"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":62, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/62.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 62"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":63, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/63.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 63"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":64, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/64.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 64"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":65, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/65.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 65"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":66, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/66.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 66"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":67, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/67.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 67"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":68, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/68.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 68"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":69, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/69.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 69"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":70, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/70.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 70"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":71, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/71.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 71"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":72, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/72.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 72"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":73, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/73.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 73"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":74, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/74.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 74"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":75, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/75.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 75"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":76, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/76.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 76"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":77, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/77.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 77"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":78, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/78.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 78"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":79, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/79.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 79"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":80, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/80.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 80"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":81, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/81.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 81"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":82, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/82.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 82"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":83, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/83.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 83"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":84, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/84.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 84"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":85, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/85.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 85"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":86, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/86.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 86"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":87, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/87.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 87"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":88, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/88.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 88"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":89, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/89.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 89"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":90, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/90.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 90"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":91, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/91.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 91"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":92, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/92.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 92"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":93, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/93.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 93"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":94, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/94.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 94"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":95, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/95.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 95"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":96, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/96.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 96"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":97, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/97.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 97"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":98, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/98.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 98"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":99, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/99.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 99"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":100, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/100.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 100"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":101, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/101.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 101"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":102, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/102.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 102"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":103, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/103.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 103"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":104, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/104.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 104"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":105, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/105.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 105"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":106, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/106.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 106"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":107, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/107.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 107"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":108, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/108.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 108"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":109, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/109.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 109"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":110, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/110.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 110"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":111, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/111.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 111"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":112, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/112.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 112"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":113, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/113.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 113"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":114, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/114.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 114"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":115, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/115.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 115"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":116, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/116.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 116"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":117, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/117.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 117"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":118, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/118.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 118"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":119, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/119.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 119"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":120, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/120.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 120"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":121, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/121.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 121"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":122, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/122.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 122"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":123, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/123.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 123"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":124, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/124.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 124"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":125, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/125.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 125"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":126, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/126.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 126"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":127, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/127.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 127"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":128, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/128.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 128"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":129, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/129.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 129"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":130, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/130.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 130"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":131, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/131.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 131"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":132, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/132.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 132"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":133, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/133.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 133"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":134, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/134.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 134"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":135, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/135.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 135"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":136, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/136.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 136"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":137, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/137.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 137"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":138, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/138.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 138"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":139, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/139.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 139"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":140, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/140.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 140"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":141, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/141.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 141"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":142, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/142.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 142"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":143, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/143.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 143"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":144, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/144.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 144"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":145, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/145.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 145"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":146, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/146.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 146"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":147, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/147.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 147"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":148, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/148.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 148"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":149, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/149.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 149"},
{ "ename":"Psalms", "cname":"诗篇", "chapter":150, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/19/150.mp3", "desc": "诗篇 [Psalms] - 章 [chapter] 150"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/1.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 1"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/2.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 2"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/3.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 3"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/4.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 4"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/5.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 5"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/6.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 6"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/7.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 7"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/8.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 8"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/9.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 9"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/10.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 10"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/11.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 11"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/12.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 12"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/13.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 13"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/14.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 14"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/15.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 15"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/16.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 16"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/17.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 17"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/18.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 18"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/19.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 19"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/20.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 20"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/21.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 21"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":22, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/22.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 22"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":23, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/23.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 23"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":24, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/24.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 24"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":25, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/25.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 25"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":26, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/26.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 26"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":27, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/27.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 27"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":28, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/28.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 28"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":29, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/29.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 29"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":30, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/30.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 30"},
{ "ename":"Proverbs", "cname":"箴言", "chapter":31, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/20/31.mp3", "desc": "箴言 [Proverbs] - 章 [chapter] 31"},
{ "ename":"Ecclesiastes", "cname":"传道书", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/21/1.mp3", "desc": "传道书 [Ecclesiastes] - 章 [chapter] 1"},
{ "ename":"Ecclesiastes", "cname":"传道书", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/21/2.mp3", "desc": "传道书 [Ecclesiastes] - 章 [chapter] 2"},
{ "ename":"Ecclesiastes", "cname":"传道书", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/21/3.mp3", "desc": "传道书 [Ecclesiastes] - 章 [chapter] 3"},
{ "ename":"Ecclesiastes", "cname":"传道书", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/21/4.mp3", "desc": "传道书 [Ecclesiastes] - 章 [chapter] 4"},
{ "ename":"Ecclesiastes", "cname":"传道书", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/21/5.mp3", "desc": "传道书 [Ecclesiastes] - 章 [chapter] 5"},
{ "ename":"Ecclesiastes", "cname":"传道书", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/21/6.mp3", "desc": "传道书 [Ecclesiastes] - 章 [chapter] 6"},
{ "ename":"Ecclesiastes", "cname":"传道书", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/21/7.mp3", "desc": "传道书 [Ecclesiastes] - 章 [chapter] 7"},
{ "ename":"Ecclesiastes", "cname":"传道书", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/21/8.mp3", "desc": "传道书 [Ecclesiastes] - 章 [chapter] 8"},
{ "ename":"Ecclesiastes", "cname":"传道书", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/21/9.mp3", "desc": "传道书 [Ecclesiastes] - 章 [chapter] 9"},
{ "ename":"Ecclesiastes", "cname":"传道书", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/21/10.mp3", "desc": "传道书 [Ecclesiastes] - 章 [chapter] 10"},
{ "ename":"Ecclesiastes", "cname":"传道书", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/21/11.mp3", "desc": "传道书 [Ecclesiastes] - 章 [chapter] 11"},
{ "ename":"Ecclesiastes", "cname":"传道书", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/21/12.mp3", "desc": "传道书 [Ecclesiastes] - 章 [chapter] 12"},
{ "ename":"Songs of Songs", "cname":"雅歌", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/22/1.mp3", "desc": "雅歌 [Songs of Songs] - 章 [chapter] 1"},
{ "ename":"Songs of Songs", "cname":"雅歌", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/22/2.mp3", "desc": "雅歌 [Songs of Songs] - 章 [chapter] 2"},
{ "ename":"Songs of Songs", "cname":"雅歌", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/22/3.mp3", "desc": "雅歌 [Songs of Songs] - 章 [chapter] 3"},
{ "ename":"Songs of Songs", "cname":"雅歌", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/22/4.mp3", "desc": "雅歌 [Songs of Songs] - 章 [chapter] 4"},
{ "ename":"Songs of Songs", "cname":"雅歌", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/22/5.mp3", "desc": "雅歌 [Songs of Songs] - 章 [chapter] 5"},
{ "ename":"Songs of Songs", "cname":"雅歌", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/22/6.mp3", "desc": "雅歌 [Songs of Songs] - 章 [chapter] 6"},
{ "ename":"Songs of Songs", "cname":"雅歌", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/22/7.mp3", "desc": "雅歌 [Songs of Songs] - 章 [chapter] 7"},
{ "ename":"Songs of Songs", "cname":"雅歌", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/22/8.mp3", "desc": "雅歌 [Songs of Songs] - 章 [chapter] 8"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/1.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 1"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/2.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 2"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/3.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 3"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/4.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 4"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/5.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 5"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/6.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 6"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/7.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 7"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/8.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 8"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/9.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 9"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/10.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 10"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/11.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 11"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/12.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 12"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/13.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 13"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/14.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 14"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/15.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 15"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/16.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 16"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/17.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 17"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/18.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 18"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/19.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 19"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/20.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 20"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/21.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 21"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":22, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/22.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 22"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":23, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/23.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 23"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":24, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/24.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 24"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":25, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/25.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 25"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":26, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/26.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 26"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":27, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/27.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 27"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":28, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/28.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 28"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":29, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/29.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 29"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":30, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/30.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 30"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":31, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/31.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 31"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":32, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/32.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 32"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":33, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/33.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 33"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":34, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/34.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 34"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":35, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/35.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 35"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":36, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/36.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 36"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":37, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/37.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 37"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":38, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/38.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 38"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":39, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/39.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 39"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":40, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/40.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 40"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":41, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/41.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 41"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":42, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/42.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 42"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":43, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/43.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 43"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":44, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/44.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 44"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":45, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/45.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 45"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":46, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/46.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 46"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":47, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/47.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 47"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":48, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/48.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 48"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":49, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/49.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 49"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":50, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/50.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 50"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":51, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/51.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 51"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":52, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/52.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 52"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":53, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/53.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 53"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":54, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/54.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 54"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":55, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/55.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 55"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":56, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/56.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 56"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":57, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/57.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 57"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":58, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/58.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 58"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":59, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/59.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 59"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":60, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/60.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 60"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":61, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/61.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 61"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":62, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/62.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 62"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":63, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/63.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 63"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":64, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/64.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 64"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":65, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/65.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 65"},
{ "ename":"Isaiah", "cname":"以赛亚书", "chapter":66, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/23/66.mp3", "desc": "以赛亚书 [Isaiah]h - 章 [chapter] 66"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/1.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 1"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/2.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 2"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/3.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 3"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/4.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 4"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/5.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 5"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/6.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 6"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/7.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 7"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/8.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 8"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/9.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 9"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/10.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 10"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/11.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 11"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/12.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 12"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/13.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 13"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/14.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 14"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/15.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 15"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/16.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 16"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/17.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 17"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/18.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 18"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/19.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 19"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/20.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 20"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/21.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 21"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":22, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/22.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 22"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":23, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/23.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 23"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":24, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/24.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 24"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":25, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/25.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 25"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":26, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/26.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 26"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":27, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/27.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 27"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":28, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/28.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 28"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":29, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/29.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 29"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":30, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/30.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 30"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":31, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/31.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 31"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":32, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/32.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 32"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":33, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/33.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 33"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":34, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/34.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 34"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":35, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/35.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 35"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":36, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/36.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 36"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":37, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/37.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 37"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":38, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/38.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 38"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":39, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/39.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 39"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":40, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/40.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 40"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":41, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/41.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 41"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":42, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/42.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 42"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":43, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/43.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 43"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":44, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/44.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 44"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":45, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/45.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 45"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":46, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/46.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 46"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":47, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/47.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 47"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":48, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/48.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 48"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":49, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/49.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 49"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":50, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/50.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 50"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":51, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/51.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 51"},
{ "ename":"Jeremiah", "cname":"耶利米书", "chapter":52, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/24/52.mp3", "desc": "耶利米书 [Jeremiah] - 章 [chapter] 52"},
{ "ename":"Lamentations", "cname":"耶利米哀歌", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/25/1.mp3", "desc": "耶利米哀歌 [Lamentations] - 章 [chapter] 1"},
{ "ename":"Lamentations", "cname":"耶利米哀歌", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/25/2.mp3", "desc": "耶利米哀歌 [Lamentations] - 章 [chapter] 2"},
{ "ename":"Lamentations", "cname":"耶利米哀歌", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/25/3.mp3", "desc": "耶利米哀歌 [Lamentations] - 章 [chapter] 3"},
{ "ename":"Lamentations", "cname":"耶利米哀歌", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/25/4.mp3", "desc": "耶利米哀歌 [Lamentations] - 章 [chapter] 4"},
{ "ename":"Lamentations", "cname":"耶利米哀歌", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/25/5.mp3", "desc": "耶利米哀歌 [Lamentations] - 章 [chapter] 5"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/1.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 1"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/2.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 2"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/3.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 3"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/4.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 4"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/5.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 5"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/6.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 6"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/7.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 7"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/8.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 8"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/9.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 9"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/10.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 10"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/11.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 11"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/12.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 12"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/13.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 13"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/14.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 14"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/15.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 15"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/16.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 16"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/17.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 17"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/18.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 18"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/19.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 19"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/20.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 20"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/21.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 21"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":22, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/22.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 22"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":23, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/23.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 23"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":24, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/24.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 24"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":25, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/25.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 25"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":26, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/26.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 26"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":27, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/27.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 27"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":28, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/28.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 28"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":29, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/29.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 29"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":30, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/30.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 30"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":31, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/31.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 31"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":32, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/32.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 32"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":33, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/33.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 33"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":34, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/34.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 34"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":35, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/35.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 35"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":36, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/36.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 36"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":37, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/37.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 37"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":38, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/38.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 38"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":39, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/39.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 39"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":40, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/40.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 40"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":41, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/41.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 41"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":42, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/42.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 42"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":43, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/43.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 43"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":44, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/44.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 44"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":45, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/45.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 45"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":46, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/46.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 46"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":47, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/47.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 47"},
{ "ename":"Ezekiel", "cname":"以西结书", "chapter":48, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/26/48.mp3", "desc": "以西结书 [Ezekiel] - 章 [chapter] 48"},
{ "ename":"Daniel", "cname":"但以理书", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/27/1.mp3", "desc": "但以理书 [Daniel] - 章 [chapter] 1"},
{ "ename":"Daniel", "cname":"但以理书", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/27/2.mp3", "desc": "但以理书 [Daniel] - 章 [chapter] 2"},
{ "ename":"Daniel", "cname":"但以理书", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/27/3.mp3", "desc": "但以理书 [Daniel] - 章 [chapter] 3"},
{ "ename":"Daniel", "cname":"但以理书", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/27/4.mp3", "desc": "但以理书 [Daniel] - 章 [chapter] 4"},
{ "ename":"Daniel", "cname":"但以理书", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/27/5.mp3", "desc": "但以理书 [Daniel] - 章 [chapter] 5"},
{ "ename":"Daniel", "cname":"但以理书", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/27/6.mp3", "desc": "但以理书 [Daniel] - 章 [chapter] 6"},
{ "ename":"Daniel", "cname":"但以理书", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/27/7.mp3", "desc": "但以理书 [Daniel] - 章 [chapter] 7"},
{ "ename":"Daniel", "cname":"但以理书", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/27/8.mp3", "desc": "但以理书 [Daniel] - 章 [chapter] 8"},
{ "ename":"Daniel", "cname":"但以理书", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/27/9.mp3", "desc": "但以理书 [Daniel] - 章 [chapter] 9"},
{ "ename":"Daniel", "cname":"但以理书", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/27/10.mp3", "desc": "但以理书 [Daniel] - 章 [chapter] 10"},
{ "ename":"Daniel", "cname":"但以理书", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/27/11.mp3", "desc": "但以理书 [Daniel] - 章 [chapter] 11"},
{ "ename":"Daniel", "cname":"但以理书", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/27/12.mp3", "desc": "但以理书 [Daniel] - 章 [chapter] 12"},
{ "ename":"Hosea", "cname":"何西阿书", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/28/1.mp3", "desc": " 何西阿书 [Hosea] - 章 [chapter] 1"},
{ "ename":"Hosea", "cname":"何西阿书", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/28/2.mp3", "desc": " 何西阿书 [Hosea] - 章 [chapter] 2"},
{ "ename":"Hosea", "cname":"何西阿书", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/28/3.mp3", "desc": " 何西阿书 [Hosea] - 章 [chapter] 3"},
{ "ename":"Hosea", "cname":"何西阿书", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/28/4.mp3", "desc": " 何西阿书 [Hosea] - 章 [chapter] 4"},
{ "ename":"Hosea", "cname":"何西阿书", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/28/5.mp3", "desc": " 何西阿书 [Hosea] - 章 [chapter] 5"},
{ "ename":"Hosea", "cname":"何西阿书", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/28/6.mp3", "desc": " 何西阿书 [Hosea] - 章 [chapter] 6"},
{ "ename":"Hosea", "cname":"何西阿书", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/28/7.mp3", "desc": " 何西阿书 [Hosea] - 章 [chapter] 7"},
{ "ename":"Hosea", "cname":"何西阿书", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/28/8.mp3", "desc": " 何西阿书 [Hosea] - 章 [chapter] 8"},
{ "ename":"Hosea", "cname":"何西阿书", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/28/9.mp3", "desc": " 何西阿书 [Hosea] - 章 [chapter] 9"},
{ "ename":"Hosea", "cname":"何西阿书", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/28/10.mp3", "desc": " 何西阿书 [Hosea] - 章 [chapter] 10"},
{ "ename":"Hosea", "cname":"何西阿书", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/28/11.mp3", "desc": " 何西阿书 [Hosea] - 章 [chapter] 11"},
{ "ename":"Hosea", "cname":"何西阿书", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/28/12.mp3", "desc": " 何西阿书 [Hosea] - 章 [chapter] 12"},
{ "ename":"Hosea", "cname":"何西阿书", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/28/13.mp3", "desc": " 何西阿书 [Hosea] - 章 [chapter] 13"},
{ "ename":"Hosea", "cname":"何西阿书", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/28/14.mp3", "desc": " 何西阿书 [Hosea] - 章 [chapter] 14"},
{ "ename":"Joel", "cname":"约珥书", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/29/1.mp3", "desc": "约珥书 [Joel] - 章 [chapter] 1"},
{ "ename":"Joel", "cname":"约珥书", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/29/2.mp3", "desc": "约珥书 [Joel] - 章 [chapter] 2"},
{ "ename":"Joel", "cname":"约珥书", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/29/3.mp3", "desc": "约珥书 [Joel] - 章 [chapter] 3"},
{ "ename":"Amos", "cname":"阿摩司书", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/30/1.mp3", "desc": "阿摩司书 [Amos] - 章 [chapter] 1"},
{ "ename":"Amos", "cname":"阿摩司书", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/30/2.mp3", "desc": "阿摩司书 [Amos] - 章 [chapter] 2"},
{ "ename":"Amos", "cname":"阿摩司书", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/30/3.mp3", "desc": "阿摩司书 [Amos] - 章 [chapter] 3"},
{ "ename":"Amos", "cname":"阿摩司书", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/30/4.mp3", "desc": "阿摩司书 [Amos] - 章 [chapter] 4"},
{ "ename":"Amos", "cname":"阿摩司书", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/30/5.mp3", "desc": "阿摩司书 [Amos] - 章 [chapter] 5"},
{ "ename":"Amos", "cname":"阿摩司书", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/30/6.mp3", "desc": "阿摩司书 [Amos] - 章 [chapter] 6"},
{ "ename":"Amos", "cname":"阿摩司书", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/30/7.mp3", "desc": "阿摩司书 [Amos] - 章 [chapter] 7"},
{ "ename":"Amos", "cname":"阿摩司书", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/30/8.mp3", "desc": "阿摩司书 [Amos] - 章 [chapter] 8"},
{ "ename":"Amos", "cname":"阿摩司书", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/30/9.mp3", "desc": "阿摩司书 [Amos] - 章 [chapter] 9"},
{ "ename":"Obadiah", "cname":"俄巴底亚书", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/31/1.mp3", "desc": "俄巴底亚书 [Obadiah] - 章 [chapter] 1"},
{ "ename":"Jonah", "cname":"约拿书", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/32/1.mp3", "desc": "约拿书 [Jonah] - 章 [chapter] 1"},
{ "ename":"Jonah", "cname":"约拿书", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/32/2.mp3", "desc": "约拿书 [Jonah] - 章 [chapter] 2"},
{ "ename":"Jonah", "cname":"约拿书", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/32/3.mp3", "desc": "约拿书 [Jonah] - 章 [chapter] 3"},
{ "ename":"Jonah", "cname":"约拿书", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/32/4.mp3", "desc": "约拿书 [Jonah] - 章 [chapter] 4"},
{ "ename":"Micah", "cname":"弥迦书", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/33/1.mp3", "desc": "弥迦书 [Micah] - 章 [chapter] 1"},
{ "ename":"Micah", "cname":"弥迦书", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/33/2.mp3", "desc": "弥迦书 [Micah] - 章 [chapter] 2"},
{ "ename":"Micah", "cname":"弥迦书", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/33/3.mp3", "desc": "弥迦书 [Micah] - 章 [chapter] 3"},
{ "ename":"Micah", "cname":"弥迦书", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/33/4.mp3", "desc": "弥迦书 [Micah] - 章 [chapter] 4"},
{ "ename":"Micah", "cname":"弥迦书", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/33/5.mp3", "desc": "弥迦书 [Micah] - 章 [chapter] 5"},
{ "ename":"Micah", "cname":"弥迦书", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/33/6.mp3", "desc": "弥迦书 [Micah] - 章 [chapter] 6"},
{ "ename":"Micah", "cname":"弥迦书", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/33/7.mp3", "desc": "弥迦书 [Micah] - 章 [chapter] 7"},
{ "ename":"Nahum", "cname":"那鸿书", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/34/1.mp3", "desc": "那鸿书 [Nahum] - 章 [chapter] 1"},
{ "ename":"Nahum", "cname":"那鸿书", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/34/2.mp3", "desc": "那鸿书 [Nahum] - 章 [chapter] 2"},
{ "ename":"Nahum", "cname":"那鸿书", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/34/3.mp3", "desc": "那鸿书 [Nahum] - 章 [chapter] 3"},
{ "ename":"Habakkuk", "cname":"哈巴谷书", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/35/1.mp3", "desc": "哈巴谷书 - Habakkuk - 章 [chapter] 1"},
{ "ename":"Habakkuk", "cname":"哈巴谷书", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/35/2.mp3", "desc": "哈巴谷书 - Habakkuk - 章 [chapter] 2"},
{ "ename":"Habakkuk", "cname":"哈巴谷书", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/35/3.mp3", "desc": "哈巴谷书 - Habakkuk - 章 [chapter] 3"},
{ "ename":"Zephaniah", "cname":"西番雅书", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/36/1.mp3", "desc": "西番雅书 [Zephaniah] - 章 [chapter] 1"},
{ "ename":"Zephaniah", "cname":"西番雅书", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/36/2.mp3", "desc": "西番雅书 [Zephaniah] - 章 [chapter] 2"},
{ "ename":"Zephaniah", "cname":"西番雅书", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/36/3.mp3", "desc": "西番雅书 [Zephaniah] - 章 [chapter] 3"},
{ "ename":"Haggai", "cname":"哈该书", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/37/1.mp3", "desc": "哈该书 [Haggai] - 章 [chapter] 1"},
{ "ename":"Haggai", "cname":"哈该书", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/37/2.mp3", "desc": "哈该书 [Haggai] - 章 [chapter] 2"},
{ "ename":"Zechariah", "cname":"撒迦利亚书", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/38/1.mp3", "desc": "撒迦利亚书 [Zechariah] - 章 [chapter] 1"},
{ "ename":"Zechariah", "cname":"撒迦利亚书", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/38/2.mp3", "desc": "撒迦利亚书 [Zechariah] - 章 [chapter] 2"},
{ "ename":"Zechariah", "cname":"撒迦利亚书", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/38/3.mp3", "desc": "撒迦利亚书 [Zechariah] - 章 [chapter] 3"},
{ "ename":"Zechariah", "cname":"撒迦利亚书", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/38/4.mp3", "desc": "撒迦利亚书 [Zechariah] - 章 [chapter] 4"},
{ "ename":"Zechariah", "cname":"撒迦利亚书", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/38/5.mp3", "desc": "撒迦利亚书 [Zechariah] - 章 [chapter] 5"},
{ "ename":"Zechariah", "cname":"撒迦利亚书", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/38/6.mp3", "desc": "撒迦利亚书 [Zechariah] - 章 [chapter] 6"},
{ "ename":"Zechariah", "cname":"撒迦利亚书", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/38/7.mp3", "desc": "撒迦利亚书 [Zechariah] - 章 [chapter] 7"},
{ "ename":"Zechariah", "cname":"撒迦利亚书", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/38/8.mp3", "desc": "撒迦利亚书 [Zechariah] - 章 [chapter] 8"},
{ "ename":"Zechariah", "cname":"撒迦利亚书", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/38/9.mp3", "desc": "撒迦利亚书 [Zechariah] - 章 [chapter] 9"},
{ "ename":"Zechariah", "cname":"撒迦利亚书", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/38/10.mp3", "desc": "撒迦利亚书 [Zechariah] - 章 [chapter] 10"},
{ "ename":"Zechariah", "cname":"撒迦利亚书", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/38/11.mp3", "desc": "撒迦利亚书 [Zechariah] - 章 [chapter] 11"},
{ "ename":"Zechariah", "cname":"撒迦利亚书", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/38/12.mp3", "desc": "撒迦利亚书 [Zechariah] - 章 [chapter] 12"},
{ "ename":"Zechariah", "cname":"撒迦利亚书", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/38/13.mp3", "desc": "撒迦利亚书 [Zechariah] - 章 [chapter] 13"},
{ "ename":"Zechariah", "cname":"撒迦利亚书", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/38/14.mp3", "desc": "撒迦利亚书 [Zechariah] - 章 [chapter] 14"},
{ "ename":"Malachi", "cname":"玛拉基书", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/39/1.mp3", "desc": "玛拉基书 [Malachi] - 章 [chapter] 1"},
{ "ename":"Malachi", "cname":"玛拉基书", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/39/2.mp3", "desc": "玛拉基书 [Malachi] - 章 [chapter] 2"},
{ "ename":"Malachi", "cname":"玛拉基书", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/39/3.mp3", "desc": "玛拉基书 [Malachi] - 章 [chapter] 3"},
{ "ename":"Malachi", "cname":"玛拉基书", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/39/4.mp3", "desc": "玛拉基书 [Malachi] - 章 [chapter] 4"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/1.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 1"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/2.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 2"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/3.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 3"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/4.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 4"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/5.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 5"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/6.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 6"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/7.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 7"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/8.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 8"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/9.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 9"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/10.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 10"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/11.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 11"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/12.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 12"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/13.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 13"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/14.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 14"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/15.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 15"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/16.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 16"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/17.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 17"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/18.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 18"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/19.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 19"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/20.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 20"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/21.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 21"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":22, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/22.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 22"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":23, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/23.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 23"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":24, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/24.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 24"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":25, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/25.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 25"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":26, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/26.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 26"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":27, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/27.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 27"},
{ "ename":"Matthew", "cname":"马太福音", "chapter":28, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/40/28.mp3", "desc": "马太福音 [Matthew] - 章 [chapter] 28"},
{ "ename":"Mark", "cname":"马可福音 ", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/41/1.mp3", "desc": "马可福音 - Mark - 章 [chapter] 1"},
{ "ename":"Mark", "cname":"马可福音 ", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/41/2.mp3", "desc": "马可福音 - Mark - 章 [chapter] 2"},
{ "ename":"Mark", "cname":"马可福音 ", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/41/3.mp3", "desc": "马可福音 - Mark - 章 [chapter] 3"},
{ "ename":"Mark", "cname":"马可福音 ", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/41/4.mp3", "desc": "马可福音 - Mark - 章 [chapter] 4"},
{ "ename":"Mark", "cname":"马可福音 ", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/41/5.mp3", "desc": "马可福音 - Mark - 章 [chapter] 5"},
{ "ename":"Mark", "cname":"马可福音 ", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/41/6.mp3", "desc": "马可福音 - Mark - 章 [chapter] 6"},
{ "ename":"Mark", "cname":"马可福音 ", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/41/7.mp3", "desc": "马可福音 - Mark - 章 [chapter] 7"},
{ "ename":"Mark", "cname":"马可福音 ", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/41/8.mp3", "desc": "马可福音 - Mark - 章 [chapter] 8"},
{ "ename":"Mark", "cname":"马可福音 ", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/41/9.mp3", "desc": "马可福音 - Mark - 章 [chapter] 9"},
{ "ename":"Mark", "cname":"马可福音 ", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/41/10.mp3", "desc": "马可福音 - Mark - 章 [chapter] 10"},
{ "ename":"Mark", "cname":"马可福音 ", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/41/11.mp3", "desc": "马可福音 - Mark - 章 [chapter] 11"},
{ "ename":"Mark", "cname":"马可福音 ", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/41/12.mp3", "desc": "马可福音 - Mark - 章 [chapter] 12"},
{ "ename":"Mark", "cname":"马可福音 ", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/41/13.mp3", "desc": "马可福音 - Mark - 章 [chapter] 13"},
{ "ename":"Mark", "cname":"马可福音 ", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/41/14.mp3", "desc": "马可福音 - Mark - 章 [chapter] 14"},
{ "ename":"Mark", "cname":"马可福音 ", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/41/15.mp3", "desc": "马可福音 - Mark - 章 [chapter] 15"},
{ "ename":"Mark", "cname":"马可福音 ", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/41/16.mp3", "desc": "马可福音 - Mark - 章 [chapter] 16"},
{ "ename":"Luke", "cname":"路加福音", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/1.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 1"},
{ "ename":"Luke", "cname":"路加福音", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/2.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 2"},
{ "ename":"Luke", "cname":"路加福音", "chapter":3, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/3.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 3"},
{ "ename":"Luke", "cname":"路加福音", "chapter":4, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/4.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 4"},
{ "ename":"Luke", "cname":"路加福音", "chapter":5, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/5.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 5"},
{ "ename":"Luke", "cname":"路加福音", "chapter":6, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/6.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 6"},
{ "ename":"Luke", "cname":"路加福音", "chapter":7, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/7.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 7"},
{ "ename":"Luke", "cname":"路加福音", "chapter":8, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/8.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 8"},
{ "ename":"Luke", "cname":"路加福音", "chapter":9, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/9.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 9"},
{ "ename":"Luke", "cname":"路加福音", "chapter":10, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/10.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 10"},
{ "ename":"Luke", "cname":"路加福音", "chapter":11, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/11.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 11"},
{ "ename":"Luke", "cname":"路加福音", "chapter":12, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/12.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 12"},
{ "ename":"Luke", "cname":"路加福音", "chapter":13, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/13.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 13"},
{ "ename":"Luke", "cname":"路加福音", "chapter":14, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/14.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 14"},
{ "ename":"Luke", "cname":"路加福音", "chapter":15, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/15.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 15"},
{ "ename":"Luke", "cname":"路加福音", "chapter":16, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/16.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 16"},
{ "ename":"Luke", "cname":"路加福音", "chapter":17, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/17.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 17"},
{ "ename":"Luke", "cname":"路加福音", "chapter":18, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/18.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 18"},
{ "ename":"Luke", "cname":"路加福音", "chapter":19, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/19.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 19"},
{ "ename":"Luke", "cname":"路加福音", "chapter":20, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/20.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 20"},
{ "ename":"Luke", "cname":"路加福音", "chapter":21, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/21.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 21"},
{ "ename":"Luke", "cname":"路加福音", "chapter":22, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/22.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 22"},
{ "ename":"Luke", "cname":"路加福音", "chapter":23, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/23.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 23"},
{ "ename":"Luke", "cname":"路加福音", "chapter":24, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/42/24.mp3", "desc": " 路加福音 - Luke - 章 [chapter] 24"},
{ "ename":"John", "cname":"约翰福音", "chapter":1, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/43/1.mp3", "desc": "约翰福音 [John] - 章 [chapter] 1"},
{ "ename":"John", "cname":"约翰福音", "chapter":2, "url": "http://audio.wordproaudio.com/bibles/app/audio/4/43/2.mp3", "desc": "约翰福音 [John] - 章 [chapter] 2"},