-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathJDG.json
More file actions
19945 lines (19945 loc) · 391 KB
/
JDG.json
File metadata and controls
19945 lines (19945 loc) · 391 KB
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
{
"type": "USJ",
"version": "3.1",
"content": [
{
"type": "book",
"marker": "id",
"code": "JDG",
"content": [
"- Open English Translation—Readers’ Version (OET-RV) v0.1.14"
]
},
{
"type": "para",
"marker": "ide",
"content": [
"UTF-8\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"ESFM v0.6 JDG\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"WORDTABLE OET-LV_OT_word_table.tsv\n"
]
},
{
"type": "para",
"marker": "h",
"content": [
"Heroes and Guides\n"
]
},
{
"type": "para",
"marker": "toc1",
"content": [
"Various Heroes and Guides\n"
]
},
{
"type": "para",
"marker": "toc2",
"content": [
"Heroes and Guides\n"
]
},
{
"type": "para",
"marker": "toc3",
"content": [
"Ldrs\n"
]
},
{
"type": "para",
"marker": "mt2",
"content": [
"The accounts of\n"
]
},
{
"type": "para",
"marker": "mt1",
"content": [
"Various Heroes and Guides\n"
]
},
{
"type": "para",
"marker": "mt3",
"content": [
"commonly called ‘Judges’\n"
]
},
{
"type": "para",
"marker": "is1",
"content": [
"Introduction\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"This document commonly called ‘",
{
"type": "char",
"marker": "bk",
"content": [
"Judges"
]
},
"’, contains a collection of accounts of ‘",
{
"type": "char",
"marker": "bk",
"content": [
"Various Heroes and Guides/Leaders"
]
},
"’ who helped to rescue the Israeli people from their oppressors. It covers the times from their invasion of Canaan through to just before their first king. Most of these heroes or guides were actually warriors. Shimshon (commonly called ‘Samson’) is the best-known of all of them, and his story can be read in chapters 13–16.\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"From this document we can learn that Yisrael (‘Israel’ in older English translations) prospered when they obeyed Yahweh’s instructions, but when they disobeyed, then God allowed other peoples and nations to oppress them. However, God is always ready and prepared to save his people whenever they turn away from their disobedience and return again to obeying the instructions that he’d given them.\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"The previous book was named after the main character Yehoshua (Joshua) and the following books (Ruth and 1 Shemuel/Samuel) are named after their main characters, but this document with somewhere around a dozen important characters, has no single prominent character that it could be named after. Instead it’s traditionally named ‘Judges’ in English because of around twenty uses of the Hebrew root ‘שָׁפַט’ (shafat) often in roots normally translated as ‘judged’. Despite that, there’s not a single account in this document of these leaders judging the cases and conflicts of the common people. This dilemma offers two possible interpretations: 1/ that these leaders (often military leaders) did judge cases for the common people, but those details aren’t recorded, or 2/ (which we’ve leaned more towards) that this Hebrew word has a wider range of meaning, and so we’ve leaned towards the English word ‘guided’ or ‘led’ in these contexts.\n"
]
},
{
"type": "para",
"marker": "iot",
"content": [
"Main components of this account\n"
]
},
{
"type": "para",
"marker": "io1",
"content": [
"The events up until Yehoshua’s death ",
{
"type": "char",
"marker": "ior",
"content": [
"1:1–2:10"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"The various heroes/guides of Yisrael ",
{
"type": "char",
"marker": "ior",
"content": [
"2:11–16:31"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Various other events ",
{
"type": "char",
"marker": "ior",
"content": [
"17:1–21:25"
]
}
]
},
{
"type": "para",
"marker": "rem",
"content": [
"This is still a very early look into the unfinished text of the Open English Translation of the Bible. Please double-check the text in advance before using in public.\n"
]
},
{
"type": "para",
"marker": "ie",
"content": []
},
{
"type": "chapter",
"marker": "c",
"number": "1",
"sid": "JDG 1"
},
{
"type": "para",
"marker": "s1",
"content": [
"Yehudah and Simeon capture Adoni-Bezek\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Completing the conquest of Canaan; Israel Fights the Remaining Canaanites; Israel’s Failure to Complete the Conquest of Canaan; Judah and Simeon Conquer the Land; The Tribes of Judah and Simeon Capture Adonibezek\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "JDG 1:1"
},
"After Yehoshua’s death¦111579, the Israelis¦111583 asked Yahweh¦111584, “",
{
"type": "char",
"marker": "add",
"content": [
"≈Which tribe should go¦111587 first¦111593 to attack the Canaanites¦111592"
]
},
"?”\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "JDG 1:2"
},
"“Yehudah¦111599 will go¦111600 first,” Yahweh¦111598 ",
{
"type": "char",
"marker": "add",
"content": [
"≈answered"
]
},
". “Listen, I’ve¦111602 ",
{
"type": "char",
"marker": "add",
"content": [
"≈already determined that they’ll conquer"
]
},
" the land.”\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "JDG 1:3"
},
"Then the Yehudah¦111609 ",
{
"type": "char",
"marker": "add",
"content": [
"leaders"
]
},
" said¦111608 to ",
{
"type": "char",
"marker": "add",
"content": [
"the tribe of"
]
},
" Simeon¦111610, “",
{
"type": "char",
"marker": "add",
"content": [
"≈Come"
]
},
" with¦111614 ",
{
"type": "char",
"marker": "add",
"content": [
"#us"
]
},
" into the region that we’ve been allocated and¦111608 we can fight¦111615 together against¦111616 the Canaanites¦111616. Then we’ll do the same in¦111614 your¦111622 area.” So¦111608 ",
{
"type": "char",
"marker": "add",
"content": [
"≈the warriors from the two tribes worked together"
]
},
".\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "JDG 1:4"
},
"When¦111628 ",
{
"type": "char",
"marker": "add",
"content": [
"*they"
]
},
" attacked, Yahweh¦111630 ",
{
"type": "char",
"marker": "add",
"content": [
"≈gave¦111629 them victory over"
]
},
" the Canaanites¦111633 and the Perizzites¦111634 and they killed ten¦111638 thousand¦111639 men at¦111635 Bezek¦111637.\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "JDG 1:5"
},
"They ",
{
"type": "char",
"marker": "add",
"content": [
"≈confronted"
]
},
" Adoni¦111645-Bezek in¦111647 Bezek and fought¦111648 against him (then¦111642 eventually defeating¦111650 the Canaanites¦111653 and the Perizzites¦111656).\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "JDG 1:6"
},
"Adoni¦111659-Bezek¦111660 ",
{
"type": "char",
"marker": "add",
"content": [
"tried to"
]
},
" flee but¦111658 they chased him and captured him, cutting off his thumbs¦111668 and big¦111670 toes.\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "JDG 1:7"
},
"“Seventy kings¦111678 had their thumbs¦111679 and big¦111681 toes chopped off,” Adoni¦111673-Bezek¦111675 said¦111672, “and were gathering¦111684 scraps of food beneath my table¦111686. Just as I have done, so God¦111693 has repaid¦111690 to me.” Then¦111672 they took him to Yerushalem¦111695 and he died¦111696 there¦111697.\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"The capture of Yerushalem and Hebron\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 The Tribe of Judah Conquers Jerusalem and Hebron\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "JDG 1:8"
},
"The warriors from Yehudah¦111703 attacked Yerushalem¦111704 and captured¦111705 the city, killing the inhabitants and setting the city on¦111704 fire.\n",
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "JDG 1:9"
},
"Then¦111717 they¦111718 fought against¦111722 the Canaanites¦111722 who lived in the hill country¦111724, in the southern ",
{
"type": "char",
"marker": "add",
"content": [
"wilderness"
]
},
", and¦111717 in the ",
{
"type": "char",
"marker": "add",
"content": [
"western"
]
},
" foothills.\n",
{
"type": "verse",
"marker": "v",
"number": "10",
"sid": "JDG 1:10"
},
{
"type": "char",
"marker": "add",
"content": [
"*They"
]
},
" also fought the Canaanites¦111732 in¦111734 Kiriath¦111740-Arba (now known as Hebron¦111734) and killed Sheshai¦111744, Ahiman¦111747, and Talmai¦111750.\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"Otniel captures Debir\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Othniel Conquers the City of Debir\n"
]
},
{
"type": "para",
"marker": "r",
"content": [
"(Josh. 15:13-19)\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "11",
"sid": "JDG 1:11"
},
"From there¦111753 ",
{
"type": "char",
"marker": "add",
"content": [
"#they"
]
},
" ",
{
"type": "char",
"marker": "add",
"content": [
"≈fought against¦111754"
]
},
" Kiriath¦111764-Sepher¦111764 (now known as Debir¦111757).\n",
{
"type": "verse",
"marker": "v",
"number": "12",
"sid": "JDG 1:12"
},
"Caleb¦111767 ",
{
"type": "char",
"marker": "add",
"content": [
"had"
]
},
" said¦111766, “Whoever attacks¦111770 Kiriath¦111773-Sepher¦111775 and¦111766 captures¦111776 it ",
{
"type": "char",
"marker": "add",
"content": [
"≈can marry"
]
},
" my daughter¦111782 Aksah.”\n",
{
"type": "verse",
"marker": "v",
"number": "13",
"sid": "JDG 1:13"
},
"Otniel¦111786 (son of Caleb’s¦111791 younger brother¦111790 Kenaz¦111789) captured¦111785 it so ",
{
"type": "char",
"marker": "add",
"content": [
"@Caleb"
]
},
" gave¦111794 his daughter¦111800 Aksah¦111799 to him to become his wife.\n",
{
"type": "verse",
"marker": "v",
"number": "14",
"sid": "JDG 1:14"
},
{
"type": "char",
"marker": "add",
"content": [
"≈After the wedding"
]
},
", she urged¦111805 ",
{
"type": "char",
"marker": "add",
"content": [
"@Otniel"
]
},
" to ask¦111806 her father¦111809 for a field¦111810. When¦111803 she got off her donkey¦111813, Caleb¦111817 asked her, “What can I do for you?”\n",
{
"type": "verse",
"marker": "v",
"number": "15",
"sid": "JDG 1:15"
},
"“Give me a blessing¦111827,” she ",
{
"type": "char",
"marker": "add",
"content": [
"≈requested"
]
},
". “Although you’ve¦111831 given¦111831 me land in the southern wilderness, give¦111832 me some springs of water¦111835 as well.” So¦111822 Caleb¦111839 gave¦111836 her the upper¦111842 springs and¦111822 the lower¦111845 springs.\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"The victory of descendants of Yehudah and Benyamin\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 The Victories of the Tribes of Judah and Benjamin\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "16",
"sid": "JDG 1:16"
},
"The Kenites¦111849 (descendants of Mosheh’s¦111851 father-in-law), left the city¦111853 of palm¦111854 trees¦111854 ",
{
"type": "char",
"marker": "add",
"content": [
"(Yericho)"
]
},
" and went with Yehudah’s¦111858 descendants to the southern wilderness¦111859 near Arad¦111863 and lived with the people¦111868 ",
{
"type": "char",
"marker": "add",
"content": [
"there"
]
},
".\n",
{
"type": "verse",
"marker": "v",
"number": "17",
"sid": "JDG 1:17"
},
"Then¦111870 the warriors of Yehudah¦111871 and Simeon¦111874 conquered the Canaanites¦111879 living¦111880 at Tsefat and destroyed ",
{
"type": "char",
"marker": "add",
"content": [
"@the city¦111889"
]
},
". ",
{
"type": "char",
"marker": "add",
"content": [
"Now"
]
},
" it’s called¦111884 Hormah¦111890 ",
{
"type": "char",
"marker": "add",
"content": [
"(which means ‘complete destruction’)"
]
},
".\n",
{
"type": "verse",
"marker": "v",
"number": "18",
"sid": "JDG 1:18"
},
{
"type": "char",
"marker": "add",
"content": [
"*They"
]
},
" also captured¦111892 Gaza¦111896, Ashkelon¦111902, and Ekron¦111908 and ",
{
"type": "char",
"marker": "add",
"content": [
"all"
]
},
" their surrounding territories.\n",
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Israel Fails to Conquer the Land\n"
]
},
{
"type": "verse",
"marker": "v",
"number": "19",
"sid": "JDG 1:19"
},
"Yahweh¦111914 helped Yehudah¦111917 and¦111921 ",
{
"type": "char",
"marker": "add",
"content": [
"#they"
]
},
" took¦111921 possession¦111921 of the hill country¦111924, although they weren’t able to conquer the people living down in the plains¦111931 because they had iron on their chariots¦111934.\n",
{
"type": "verse",
"marker": "v",
"number": "20",
"sid": "JDG 1:20"
},
"They gave¦111938 Hebron¦111942 to Caleb¦111939 just as Mosheh¦111945 had directed, and¦111938 he dispossessed¦111946 the three¦111950 sons¦111951 of the Anak¦111952 from there¦111947.",
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:20: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Josh 15:13-14."
]
}
],
"caller": "+"
},
"\n",
{
"type": "verse",
"marker": "v",
"number": "21",
"sid": "JDG 1:21"
},
{
"type": "char",
"marker": "add",
"content": [
"≈However"
]
},
" Benyamin’s¦111962 descendants didn’t¦111959 drive the Yebusites¦111956 living¦111957 in Yerushalem out, so ",
{
"type": "char",
"marker": "add",
"content": [
"*they"
]
},
" have lived among the Benyamites in Yerushalem to this day¦111971.",
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:21: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Josh 15:63; 2Sam 5:6; 1Ch 11:4."
]
}
],
"caller": "+"
},
"\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"Efrayim and Menashsheh conquer Beyt-El\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 The Tribes of Ephraim and Manasseh Conquer Beyt-El\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "22",
"sid": "JDG 1:22"
},
"Also¦111982 Yosef’s¦111978 descendants attacked Beyt-El, and Yahweh¦111985 ",
{
"type": "char",
"marker": "add",
"content": [
"≈helped"
]
},
" them.\n",
{
"type": "verse",
"marker": "v",
"number": "23",
"sid": "JDG 1:23"
},
{
"type": "char",
"marker": "add",
"content": [
"*They"
]
},
" sent spies out to Beyt-El¦111991 (previously called Luz¦111999)\n",
{
"type": "verse",
"marker": "v",
"number": "24",
"sid": "JDG 1:24"
},
"and ",
{
"type": "char",
"marker": "add",
"content": [
"*they"
]
},
" saw a man coming¦112004 out of the city and told him, “Please¦112012 show us an entrance¦112014 into the city, and we’ll be kind to you.”\n",
{
"type": "verse",
"marker": "v",
"number": "25",
"sid": "JDG 1:25"
},
{
"type": "char",
"marker": "add",
"content": [
"≈So¦112020"
]
},
" he showed¦112020 them an entrance¦112023, and ",
{
"type": "char",
"marker": "add",
"content": [
"@their warriors"
]
},
" ",
{
"type": "char",
"marker": "add",
"content": [
"attacked and"
]
},
" ",
{
"type": "char",
"marker": "add",
"content": [
"≈killed the inhabitants"
]
},
", but¦112020 they let the man¦112034 and his family¦112039 go¦112040 free.\n",
{
"type": "verse",
"marker": "v",
"number": "26",
"sid": "JDG 1:26"
},
"The man¦112043 went¦112042 to the land of the Hittites¦112045 and ",
{
"type": "char",
"marker": "add",
"content": [
"≈founded"
]
},
" a city¦112047 and called it Luz¦112050 (which it’s still called to this day¦112054).\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"The locals not driven out by the Israelis\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 People Who Were Not Driven Out by the Israelites\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "27",
"sid": "JDG 1:27"
},
{
"type": "char",
"marker": "add",
"content": [
"≈However"
]
},
" Menashsheh’s¦112061 ",
{
"type": "char",
"marker": "add",
"content": [
"descendants"
]
},
" didn’t¦112058 drive out those living in Beyt-Shan, Taanak, Dor¦112080, Yibleam, or Meggidon, because the Canaanites¦112099 were determined¦112098 ",
{
"type": "char",
"marker": "add",
"content": [
"≈to keep living there"
]
},
".",
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:27-28: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Josh 17:11-13."
]
}
],
"caller": "+"
},
"\n",
{
"type": "verse",
"marker": "v",
"number": "28",
"sid": "JDG 1:28"
},
"(",
{
"type": "char",
"marker": "add",
"content": [
"Later,"
]
},
" the Israelis became¦112107 stronger¦112107 and¦112104 ",
{
"type": "char",
"marker": "add",
"content": [
"≈they forced¦112113 the Canaanites¦112112 to work for them as their slaves"
]
},
", but¦112104 they didn’t¦112115 drive¦112114 them out.)\n",
{
"type": "verse",
"marker": "v",
"number": "29",
"sid": "JDG 1:29"
},
"Nor did Efrayim’s¦112119 ",
{
"type": "char",
"marker": "add",
"content": [
"descendants"
]
},
" drive the Canaanites¦112124 out of Gezer¦112126, so ",
{
"type": "char",
"marker": "add",
"content": [
"*they"
]
},
" continued to live among them.",
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:29: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Josh 16:10."
]
}
],
"caller": "+"
},
"\n"
]