-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGAL.json
More file actions
3982 lines (3982 loc) · 80.1 KB
/
GAL.json
File metadata and controls
3982 lines (3982 loc) · 80.1 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": "GAL",
"content": [
"- Open English Translation—Readers’ Version (OET-RV) v0.1.59"
]
},
{
"type": "para",
"marker": "ide",
"content": [
"UTF-8\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"ESFM v0.6 GAL\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"WORDTABLE OET-LV_NT_word_table.tsv\n"
]
},
{
"type": "para",
"marker": "h",
"content": [
"Galatians\n"
]
},
{
"type": "para",
"marker": "toc1",
"content": [
"Galatians\n"
]
},
{
"type": "para",
"marker": "toc2",
"content": [
"Galatians\n"
]
},
{
"type": "para",
"marker": "toc3",
"content": [
"Gal.\n"
]
},
{
"type": "para",
"marker": "mt2",
"content": [
"Paul’s letter to the assemblies in\n"
]
},
{
"type": "para",
"marker": "mt1",
"content": [
"Galatia\n"
]
},
{
"type": "para",
"marker": "is1",
"content": [
"Introduction\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"At the time when the preaching of the good message about Yeshua began to spread and it started being accepted by non-Jews, an important question arose: whether or not it’s necessary for a person wanting to accept the message to also obey the Law of Mosheh. Paul argues that it’s not necessary because it’s by faith that we can receive life from the messiah, and it’s by faith that a person is considered guiltless in God’s eyes. But there among the groups of believers in Galasya (a province of Rome in Asia Minor, now part of modern Turkey), there were people who disagreed with Paul and believed that it’s still necessary for a follower of Yeshua to obey all of Mosheh’s laws in order to become righteous in God’s sight.\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"In ",
{
"type": "char",
"marker": "bk",
"content": [
"Paul’s letter to the assemblies in Galatia"
]
},
", he wrote so that people who had started to follow deviant teachings might return to the true faith. He began this by explaining the reasons that he himself became a missionary. He showed that his becoming a missionary wasn’t because he was selected by the people, but that God himself spoke to him, and what’s more, he was specifically sent by God to the non-Jews. As a result of that, he strove to ensure that people understood that there’s only one way to restore our relationship with God, and that’s through faith in God’s son.\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"Nearer the end of his letter, he answered those who say that it’s wrong not to obey Mosheh’s law. Paul stated that he would be afraid to leave behind God’s goodness and mercy just to become a slave of Mosheh’s rules. Again he advised that it’s necessary for them to listen to God’s spirit so that they’re changed and don’t follow the sinful desires of their own bodies.\n"
]
},
{
"type": "para",
"marker": "iot",
"content": [
"Main components of Paul’s letter\n"
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Introduction ",
{
"type": "char",
"marker": "ior",
"content": [
"1:1-10"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Paul’s calling as an ambassador of the messiah ",
{
"type": "char",
"marker": "ior",
"content": [
"1:11–2:14"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"The good message about the goodness and mercy of God ",
{
"type": "char",
"marker": "ior",
"content": [
"2:15–4:31"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Christian freedom and living ",
{
"type": "char",
"marker": "ior",
"content": [
"5:1–6:10"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Ending ",
{
"type": "char",
"marker": "ior",
"content": [
"6:11-18"
]
}
]
},
{
"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": "GAL 1"
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Greetings from Paul\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Salutation\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "GAL 1:1"
},
{
"type": "char",
"marker": "add",
"content": [
"This letter is from"
]
},
" Paul, one ",
{
"type": "char",
"marker": "add",
"content": [
"of Yeshua’s"
]
},
" ambassadors¦125555, not chosen by people or any human¦125558 desire, but¦125562 chosen ",
{
"type": "char",
"marker": "add",
"content": [
"directly"
]
},
" by Yeshua the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah¦125565"
]
},
" and¦125566 ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦125567"
]
},
" the father¦125568 who raised¦125570 Yeshua from the dead¦125574.\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "GAL 1:2"
},
{
"type": "char",
"marker": "add",
"content": [
"On behalf of"
]
},
" all the believers here, ",
{
"type": "char",
"marker": "add",
"content": [
"I’m writing"
]
},
" to the assemblies¦125582 ",
{
"type": "char",
"marker": "add",
"content": [
"of believers"
]
},
" in Galatia¦125584.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "GAL 1:3"
},
"May you¦125586 all experience the grace¦125585 and peace¦125588 that comes from ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦125590"
]
},
" the father¦125591 and our¦125595 ",
{
"type": "char",
"marker": "nd",
"content": [
"master¦125594 Yeshua"
]
},
" the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah¦125597"
]
},
",\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "GAL 1:4"
},
"the one who gave¦125599 himself¦125601 for our sins¦125605 to rescue¦125608 us from this present¦125615, evil¦125616 age, according¦125617 to ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦125621"
]
},
" our father’s¦125623 desire—\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "GAL 1:5"
},
{
"type": "char",
"marker": "add",
"content": [
"our father"
]
},
" who’ll be praised even through future ages. That’s how it is.\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"There’s only one good message\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 The One Gospel; One gospel for all; There Is Only One Good News; There Is No Other Gospel\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "GAL 1:6"
},
"I’m astounded that you ",
{
"type": "char",
"marker": "add",
"content": [
"people"
]
},
" have so quickly¦125638 replaced the good¦125650 message¦125650 ",
{
"type": "char",
"marker": "add",
"content": [
"that you heard"
]
},
" from the one who called¦125642 you to the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah"
]
},
"’s grace¦125646. You’ve replaced it with another¦125649 narrative\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "GAL 1:7"
},
"which¦125651 is not at all another¦125654 good message, but¦125662 rather comes from those who are confusing you and wanting¦125663 to alter¦125664 the ",
{
"type": "char",
"marker": "add",
"content": [
"actual"
]
},
" good message about the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah¦125668"
]
},
".\n",
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "GAL 1:8"
},
"Even if either we ourselves or ",
{
"type": "char",
"marker": "add",
"content": [
"even"
]
},
" a messenger¦125675 from heaven¦125677 were to preach a different ‘good message’ which disagrees with the good message that we ",
{
"type": "char",
"marker": "add",
"content": [
"first"
]
},
" preached to you, then they should¦125687 be cursed¦125686.\n",
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "GAL 1:9"
},
"As we’ve previously¦125689 said¦125689, and even now say it again¦125693: if anyone¦125696 preaches¦125698 a ‘good¦125698 message¦125698’ to you that’s different from what you already heard, let that person be cursed¦125703.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "10",
"sid": "GAL 1:10"
},
"Am I trying to please and persuade¦125708 people or ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦125712"
]
},
"? If I was still¦125719 trying to please people, I wouldn’t be ",
{
"type": "char",
"marker": "add",
"content": [
"worthy to be"
]
},
" one of the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah"
]
},
"’s slaves¦125723.\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"Paul was commissioned directly by God\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Paul Called by God; Paul’s Message Comes from Christ; How Paul Became an Apostle; Paul’s Vindication of His Apostleship\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "11",
"sid": "GAL 1:11"
},
"I’m letting you know, brothers¦125731 and¦125731 sisters¦125731, that¦125738 the good message I proclaimed didn’t¦125744 just come from human¦125747 ideas.\n",
{
"type": "verse",
"marker": "v",
"number": "12",
"sid": "GAL 1:12"
},
"It didn’t come from my ideas, nor was I taught¦125757 it by some other person, but it was revealed to me by ",
{
"type": "char",
"marker": "nd",
"content": [
"Yeshua"
]
},
" the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah¦125762"
]
},
".\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "13",
"sid": "GAL 1:13"
},
{
"type": "char",
"marker": "add",
"content": [
"Brothers and sisters,"
]
},
" you’ve heard¦125763 about my previous behaviour, when as a strict Jew, I was extreme in persecuting",
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:13: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Acts 8:3; 22:4-5; 26:9-11."
]
}
],
"caller": "+"
},
" the assembly¦125777 of God’s people, and was trying to destroy them.\n",
{
"type": "verse",
"marker": "v",
"number": "14",
"sid": "GAL 1:14"
},
"I was progressing¦125784 in Judaism¦125787",
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:14: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Acts 22:3."
]
}
],
"caller": "+"
},
" quicker than many of my¦125794 contemporaries¦125790, being¦125798 so much more zealous¦125797 in observing our ancient traditions¦125802.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "15",
"sid": "GAL 1:15"
},
"But¦125816 ",
{
"type": "char",
"marker": "add",
"content": [
"God"
]
},
", who’d planned this from even before I was born,",
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:15-16: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Acts 9:3-6; 22:6-10; 26:13-18."
]
}
],
"caller": "+"
},
" called¦125817 me, because of his¦125821 grace¦125820,\n",
{
"type": "verse",
"marker": "v",
"number": "16",
"sid": "GAL 1:16"
},
"so that he could reveal¦125822 his¦125825 son through me, and I could preach¦125829 the good¦125829 message¦125829 to non-Jews. I didn’t¦125836 rush to get advice from others,\n",
{
"type": "verse",
"marker": "v",
"number": "17",
"sid": "GAL 1:17"
},
"nor did I head to Yerushalem to ",
{
"type": "char",
"marker": "add",
"content": [
"consult with"
]
},
" the ambassadors¦125851 there that preceded me, but¦125856 I went away to Arabia¦125855 and then later returned¦125858 to Damascus¦125860.\n",
{
"type": "verse",
"marker": "v",
"number": "18",
"sid": "GAL 1:18"
},
"Then finally, after¦125862 three¦125864 years¦125863, I went¦125866 to Yerushalem",
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:18: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Acts 9:26-30."
]
}
],
"caller": "+"
},
" to get to know Peter, and¦125873 stayed with him¦125877 for just over two weeks.\n",
{
"type": "verse",
"marker": "v",
"number": "19",
"sid": "GAL 1:19"
},
"I didn’t¦125884 meet any of the other ambassadors¦125883, other than Yeshua’s brother¦125891, Yacob,\n",
{
"type": "verse",
"marker": "v",
"number": "20",
"sid": "GAL 1:20"
},
"and¦125895 what I’m writing to you, I’m writing with ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦125901"
]
},
" watching, so I’m not lying¦125904.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "21",
"sid": "GAL 1:21"
},
"Then I went¦125906 into the regions¦125909 of Syria¦125911 and¦125912 Cilicia¦125914.\n",
{
"type": "verse",
"marker": "v",
"number": "22",
"sid": "GAL 1:22"
},
"The assemblies¦125922 back in Yudea¦125925 that¦125926 believe in the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah¦125928"
]
},
" didn’t¦125917 know me by sight,\n",
{
"type": "verse",
"marker": "v",
"number": "23",
"sid": "GAL 1:23"
},
"but¦125930 had only heard about me—that¦125942 the person who’d once been persecuting them was now preaching¦125939 the good¦125939 message¦125939 about the faith¦125941 himself,\n",
{
"type": "verse",
"marker": "v",
"number": "24",
"sid": "GAL 1:24"
},
"and¦125945 they¦125946 praised¦125946 ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦125950"
]
},
" because of ",
{
"type": "char",
"marker": "add",
"content": [
"what had happened to"
]
},
" me.\n"
]
},
{
"type": "chapter",
"marker": "c",
"number": "2",
"sid": "GAL 2"
},
{
"type": "para",
"marker": "s1",
"content": [
"The ambassadors accept Paul and Barnabas\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 The Apostles Accept Paul\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Paul Accepted by the Apostles\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Paul and the Other Apostles\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "GAL 2:1"
},
"It was fourteen¦125953 years¦125954 later that I made the uphill trek to Yerushalem",
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"2:1: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Acts 11:30; 15:2."
]
}
],
"caller": "+"
},
" with Barnabas¦125961, taking Titos¦125965 along¦125963 as well.\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "GAL 2:2"
},
{
"type": "char",
"marker": "add",
"content": [
"God"
]
},
" had told me to go there, and I explained to the ",
{
"type": "char",
"marker": "add",
"content": [
"leaders there"
]
},
" the good¦125974 message¦125974 that I’d been proclaiming¦125976 to the non-Jews. I did it privately, to double-check that I wasn’t somehow¦125986 just acting vainly.\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "GAL 2:3"
},
"But not even Titos¦125994, who was with me, was compelled¦126000 to be circumcised¦126001, even though he’s a Greek¦125998.\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "GAL 2:4"
},
"However, some false¦126006 brothers¦126006 were sneaked¦126005 in to monitor the freedoms¦126011 that¦126013 we¦126014 have in the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah¦126017"
]
},
", ",
{
"type": "char",
"marker": "nd",
"content": [
"Yeshua"
]
},
", and they¦126021 wanted us to be enslaved¦126021 to their traditions.\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "GAL 2:5"
},
"But we¦126027 didn’t¦126024 submit¦126029 to them even for one hour¦126026, so that the truth¦126032 of the good¦126035 message¦126035 could continue¦126036 amongst you¦126039.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "GAL 2:6"
},
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"2:6: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Deu 10:17."
]
}
],
"caller": "+"
},
"And those people who were supposed ",
{
"type": "char",
"marker": "add",
"content": [
"leaders"
]
},
" (although what they were didn’t mean much to me, because¦126059 ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦126054"
]
},
" doesn’t go by appearances¦126052) didn’t really contribute¦126063 anything useful, as far as I could tell.\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "GAL 2:7"
},
"Instead, they saw that I’ve¦126069 been entrusted with taking the good¦126071 message¦126071 to the non-Jews, just like Peter¦126075 was entrusted to take it to the Jews,\n",
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "GAL 2:8"
},
"because the same ",
{
"type": "char",
"marker": "add",
"content": [
"God"
]