-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathACT.json
More file actions
18292 lines (18292 loc) · 429 KB
/
ACT.json
File metadata and controls
18292 lines (18292 loc) · 429 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": "ACT",
"content": [
"- Open English Translation—Readers’ Version (OET-RV) v0.3.59"
]
},
{
"type": "para",
"marker": "ide",
"content": [
"UTF-8\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"ESFM v0.6 ACT\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"WORDTABLE OET-LV_NT_word_table.tsv\n"
]
},
{
"type": "para",
"marker": "h",
"content": [
"Acts\n"
]
},
{
"type": "para",
"marker": "toc1",
"content": [
"Acts\n"
]
},
{
"type": "para",
"marker": "toc2",
"content": [
"Acts\n"
]
},
{
"type": "para",
"marker": "toc3",
"content": [
"Acts\n"
]
},
{
"type": "para",
"marker": "mt2",
"content": [
"The continued account by\n"
]
},
{
"type": "para",
"marker": "mt1",
"content": [
"Luke\n"
]
},
{
"type": "para",
"marker": "mt2",
"content": [
"commonly called\n"
]
},
{
"type": "para",
"marker": "mt1",
"content": [
"Acts\n"
]
},
{
"type": "para",
"marker": "is1",
"content": [
"Introduction\n"
]
},
{
"type": "para",
"marker": "is2",
"content": [
"Author\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"This account commonly known as ",
{
"type": "char",
"marker": "bk",
"content": [
"The acts of the missionaries of Yeshua the Messiah"
]
},
", is the continuation of ",
{
"type": "char",
"marker": "bk",
"content": [
"The Good Message according to Luke"
]
},
", and unlike most other Bibles, the ",
{
"type": "char",
"marker": "em",
"content": [
"Open English Translation"
]
},
" places these two accounts one after the other.\n"
]
},
{
"type": "para",
"marker": "is2",
"content": [
"This account\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"The main purpose of this account is to tell about the actions of the first followers of Yeshua (Jesus) the messiah. God’s spirit helped them to proclaim good message about him “in Yerushalem (Jerusalem) and all across ",
{
"type": "char",
"marker": "add",
"content": [
"the provinces of"
]
},
" Yudea (Judaea) and Shomron (Samaria), and all the way to the furthest parts of the planet” (1:8).\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"This document has three divisions related to the expanding circles as the good message from Yeshua the messiah spread wider and wider: (1) In ",
{
"type": "char",
"marker": "bd",
"content": [
"Yerushalem"
]
},
" where the believers start to get organised after Yeshua ascended up into the clouds; (2) the work and the message spreads wider out to all of the district of ",
{
"type": "char",
"marker": "bd",
"content": [
"Yudea"
]
},
"; and (3) spreading more widely again around the Mediterranean Ocean and all the way to ",
{
"type": "char",
"marker": "bd",
"content": [
"Rome"
]
},
".\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"It’s also documented here about how God’s spirit came to the believers as they were together in a room in Yerushalem at the Festival of Pentecost (fifty days after The Passover). The spirit helps and gives wisdom and strength to the believers and teachers of believers.\n"
]
},
{
"type": "para",
"marker": "iot",
"content": [
"Main components of Luke’s second account\n"
]
},
{
"type": "para",
"marker": "io1",
"content": [
"The believers start to get organised ",
{
"type": "char",
"marker": "ior",
"content": [
"1:1-26"
]
}
]
},
{
"type": "para",
"marker": "io2",
"content": [
"a. The final command of Yeshua and his promise ",
{
"type": "char",
"marker": "ior",
"content": [
"1:1-14"
]
}
]
},
{
"type": "para",
"marker": "io2",
"content": [
"b. The replacing of Yudas/Judas ",
{
"type": "char",
"marker": "ior",
"content": [
"1:15-26"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Witnessing in Yerushalem/Jerusalem ",
{
"type": "char",
"marker": "ior",
"content": [
"2:1–8:3"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Expanding out to Yudea/Judaea and Shomron/Samaria ",
{
"type": "char",
"marker": "ior",
"content": [
"8:4–12:25"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Paul’s activities ",
{
"type": "char",
"marker": "ior",
"content": [
"13:1–28:31"
]
}
]
},
{
"type": "para",
"marker": "io2",
"content": [
"a. Paul’s first missionary trip ",
{
"type": "char",
"marker": "ior",
"content": [
"13:1–14:28"
]
}
]
},
{
"type": "para",
"marker": "io2",
"content": [
"b. The conference in Yerushalem ",
{
"type": "char",
"marker": "ior",
"content": [
"15:1-35"
]
}
]
},
{
"type": "para",
"marker": "io2",
"content": [
"c. Paul’s second missionary trip ",
{
"type": "char",
"marker": "ior",
"content": [
"15:36–18:22"
]
}
]
},
{
"type": "para",
"marker": "io2",
"content": [
"d. Paul’s third missionary trip ",
{
"type": "char",
"marker": "ior",
"content": [
"18:23–21:16"
]
}
]
},
{
"type": "para",
"marker": "io2",
"content": [
"e. Paul is imprisoned in Yerushalem, taken to Caesarea, and from there to Rome ",
{
"type": "char",
"marker": "ior",
"content": [
"21:17–28:31"
]
}
]
},
{
"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": "ACT 1"
},
{
"type": "para",
"marker": "s1",
"content": [
"Introduction\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 The Promise of the Holy Spirit; Jesus Taken Up Into Heaven\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "ACT 1:1"
},
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:1: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Luk 1:1-4."
]
}
],
"caller": "+"
},
"Dear Theofilus¦81661, I wrote my first¦81655 account¦81656 about all the things that¦81662 ",
{
"type": "char",
"marker": "nd",
"content": [
"Yeshua"
]
},
" began¦81663 to do and¦81668 to teach¦81669\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "ACT 1:2"
},
"until¦81670 the day¦81672 when he was taken¦81682 up",
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:1: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Luk 24:51."
]
}
],
"caller": "+"
},
" ",
{
"type": "char",
"marker": "add",
"content": [
"into the sky"
]
},
" after, with the help of the holy ",
{
"type": "char",
"marker": "nd",
"content": [
"spirit¦81678"
]
},
", having¦81674 commanded¦81674 the missionaries that he had chosen¦81681.\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"Yeshua, alive, tells them to wait\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "ACT 1:3"
},
"After the time¦81696 of his suffering¦81697, Yeshua presented¦81692 himself¦81693 to them in ways that were infallible proofs¦81701 ",
{
"type": "char",
"marker": "add",
"content": [
"that he was alive again"
]
},
"—appearing¦81706 to them and telling them about God’s kingdom¦81715.\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "ACT 1:4"
},
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:4: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Luk 24:49."
]
}
],
"caller": "+"
},
"Once when they were together¦81719, he told¦81724 them, “",
{
"type": "char",
"marker": "wj",
"content": [
"Don’t leave Yerushalem, but¦81718 wait there for what was promised¦81733 by the father¦81735, as you all have ",
{
"type": "char",
"marker": "add",
"content": [
"already"
]
},
" heard¦81737 me say."
]
},
"\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "ACT 1:5"
},
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:5: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Mat 3:11; Mrk 1:8; Luk 3:16; Yhn 1:33."
]
}
],
"caller": "+"
},
{
"type": "char",
"marker": "wj",
"content": [
"Yohan¦81745 immersed ",
{
"type": "char",
"marker": "add",
"content": [
"people"
]
},
" in water¦81748, but you all will be immersed in the holy ",
{
"type": "char",
"marker": "nd",
"content": [
"spirit¦81753"
]
},
" in just a few days¦81765."
]
},
"”\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"Yeshua’s ascension\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 The Ascension of Jesus; Jesus Is Taken Up to Heaven\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "ACT 1:6"
},
"So¦81771 when they were ",
{
"type": "char",
"marker": "add",
"content": [
"next"
]
},
" gathered together¦81773, they asked him¦81776, “",
{
"type": "char",
"marker": "nd",
"content": [
"Master¦81778"
]
},
", is this now the time when you’ll be restoring¦81784 the kingdom¦81787 to Yisrael¦81790?”",
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:6 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"At the time of asking, Israelis were burdened under the rule and taxes of the Roman occupiers."
]
}
],
"caller": "+"
},
"\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "ACT 1:7"
},
"But¦81796 Yeshua responded¦81795 to them, “",
{
"type": "char",
"marker": "wj",
"content": [
"You don’t¦81799 need to know¦81802 the times¦81803 or seasons¦81805 ",
{
"type": "char",
"marker": "add",
"content": [
"when future events will happen"
]
},
"—it’s the father¦81808 who decides all that¦81806."
]
},
"\n",
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "ACT 1:8"
},
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:8: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Mat 28:19; Mrk 16:15; Luk 24:47-48."
]
}
],
"caller": "+"
},
{
"type": "char",
"marker": "wj",
"content": [
"However, you all will be receiving¦81815 power¦81816 when the holy ",
{
"type": "char",
"marker": "nd",
"content": [
"spirit¦81820"
]
},
" lands on you. Then you’ll tell ",
{
"type": "char",
"marker": "add",
"content": [
"people"
]
},
" about me in Yerushalem and all across ",
{
"type": "char",
"marker": "add",
"content": [
"the provinces of"
]
},
" Yudea¦81835 and Shomron¦81837 ",
{
"type": "char",
"marker": "add",
"content": [
"(Samaria¦81837)"
]
},
", and all the way to the furthest parts of the planet."
]
},
"”\n",
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "ACT 1:9"
},
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:9: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Mrk 16:19; Luk 24:50-51."
]
}
],
"caller": "+"
},
"After he’d said¦81846 that and¦81844 while they were still looking at him, he was lifted¦81853 up ",
{
"type": "char",
"marker": "add",
"content": [
"into the sky"
]
},
" until they could no longer see him because of the ",
{
"type": "char",
"marker": "add",
"content": [
"#clouds"
]
},
".\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "10",
"sid": "ACT 1:10"
},
"As they¦81868 stood¦81878 there staring into the sky¦81871 after he’d gone, suddenly two¦81877 men¦81876 in white¦81885 clothes¦81882 were standing beside them\n",
{
"type": "verse",
"marker": "v",
"number": "11",
"sid": "ACT 1:11"
},
"and said, “You men from Galilee¦81890! Why are you still standing there looking¦81893 up at the sky? This ",
{
"type": "char",
"marker": "nd",
"content": [
"Yeshua"
]
},
" who’s been taken¦81902 up away from you into heaven will come back in the same way that¦81901 you saw him go up into heaven.”\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"Matthias replaces Yudas Iscariot\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 The church in Jerusalem; Matthias Chosen to Replace Judas; Matthias Replaces Judas; Judas’ Successor\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "12",
"sid": "ACT 1:12"
},
"Then they¦81919 walked down the Mt¦81923. of Olives¦81926 and returned¦81919 to Yerushalem which was less than a kilometre away.\n",
{
"type": "verse",
"marker": "v",
"number": "13",
"sid": "ACT 1:13"
},
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:13: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Mat 10:2-4; Mrk 3:16-19; Luk 6:14-16."
]
}
],
"caller": "+"
},
"They went¦81944 into the upstairs¦81943 room¦81943 where¦81945 they were staying¦81947—Peter¦81950 and Yohan, Yacob and Andrew¦81958, Philip¦81959 and Thomas¦81961, Bartholomew¦81962 and Matthew¦81964, Yacob (son of Alfeus), Simon¦81970 (the Zealot member¦81972), and Yudas¦81974 (son of Yacob).\n",
{
"type": "verse",
"marker": "v",
"number": "14",
"sid": "ACT 1:14"
},
"They were united in their ongoing prayers¦81983, along with Maria¦81993 the mother¦81995 of ",
{
"type": "char",
"marker": "nd",
"content": [
"Yeshua"
]
},
", and his¦82002 brothers¦82001.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "15",
"sid": "ACT 1:15"
},
"Then¦82003 one day, Peter¦82011 stood¦82009 up in the meeting of the believers¦82015 (about¦82028 120¦82030 of them) and¦82019 said¦82017,\n",
{
"type": "verse",
"marker": "v",
"number": "16",
"sid": "ACT 1:16"
},
"“Brothers¦82033, it was necessary¦82034 for the scripture¦82038 to be fulfilled¦82036, where the holy ",
{
"type": "char",
"marker": "nd",
"content": [
"spirit¦82043"
]
},
" had spoken¦82041 previously¦82041 through David¦82048 about Yudas¦82050, the one who guided¦82053 those that¦82040 arrested¦82055 ",
{
"type": "char",
"marker": "nd",
"content": [
"Yeshua¦82057"
]
},
"\n",
{
"type": "verse",
"marker": "v",
"number": "17",
"sid": "ACT 1:17"
},
"because Yudas was one of us and¦82064 took his part in our work¦82070.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "18",
"sid": "ACT 1:18"
},
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:18-19: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Mat 27:3-8."
]
}
],
"caller": "+"
},
"(Yudas had bought a field with the money¦82079 he had received for his treachery, and when he had fallen down ",
{
"type": "char",
"marker": "add",
"content": [
"in that field"
]
},
", his stomach had burst¦82086 open and his intestines¦82092 had slid out ",
{
"type": "char",
"marker": "add",
"content": [
"on the ground"
]
},
".\n",
{
"type": "verse",
"marker": "v",
"number": "19",
"sid": "ACT 1:19"
},
"So¦82095 everyone in Yerushalem started calling¦82104 that place ‘The field of blood¦82116’.)\n"
]