-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCO2.json
More file actions
6327 lines (6327 loc) · 131 KB
/
CO2.json
File metadata and controls
6327 lines (6327 loc) · 131 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": "2CO",
"content": [
"- Open English Translation—Readers’ Version (OET-RV) v0.1.50"
]
},
{
"type": "para",
"marker": "ide",
"content": [
"UTF-8\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"ESFM v0.6 CO2\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"WORDTABLE OET-LV_NT_word_table.tsv\n"
]
},
{
"type": "para",
"marker": "h",
"content": [
"2 Corinthians\n"
]
},
{
"type": "para",
"marker": "toc1",
"content": [
"2 Corinthians\n"
]
},
{
"type": "para",
"marker": "toc2",
"content": [
"2 Corinthians\n"
]
},
{
"type": "para",
"marker": "toc3",
"content": [
"2 Cor.\n"
]
},
{
"type": "para",
"marker": "mt2",
"content": [
"Paul’s second letter to the believers in\n"
]
},
{
"type": "para",
"marker": "mt1",
"content": [
"Corinth\n"
]
},
{
"type": "para",
"marker": "is1",
"content": [
"Introduction\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"This is Paul’s second letter to the believers in Corinth that we have in our Bibles, but could easily have been his third or fourth letter to them. We deduce this from his reference to other letters, e.g., see https://www.GotQuestions.org/how-many-letters-Corinthians.html, but we don’t have copies of them.\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"This letter from Paul to the believers in Corinth was written from Macedonia at a time when his relationship with the believers there wasn’t very good.\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"In first part of this document, Paul tells about his relationship with the believers there in Corinth. He explains his sadness concerning the shame of the believers and their disobedience of him. Then he tells again about his happiness that his anger faded after the believers repented of their sin and then their good relationship was restored. He urged the believers to continue to collect a gift of aid for poor believers in Yerushalem.\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"In the final four chapters, Paul justifies his missionary status to them. (Those that accused Paul said that he’s not a true ambassador of Messiah.)\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-11"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Paul’s relationship with the believers in Corinth ",
{
"type": "char",
"marker": "ior",
"content": [
"1:12–7:16"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Aid for believers in Yudea ",
{
"type": "char",
"marker": "ior",
"content": [
"8:1–9:15"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Paul’s defence of his ambassadorial status ",
{
"type": "char",
"marker": "ior",
"content": [
"10:1–12:21"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Ending ",
{
"type": "char",
"marker": "ior",
"content": [
"13:1-13"
]
}
]
},
{
"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": "2CO 1"
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Greetings from Paul; Salutation\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "2CO 1:1"
},
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:1: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Acts 18:1."
]
}
],
"caller": "+"
},
{
"type": "char",
"marker": "add",
"content": [
"This letter is from"
]
},
" Paul, a missionary of ",
{
"type": "char",
"marker": "nd",
"content": [
"Messiah¦120623 Yeshua"
]
},
" by God’s will, and¦120629 from our brother¦120632, Timothy¦120630.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "char",
"marker": "add",
"content": [
"It’s written"
]
},
" to God’s assembly¦120634 in Corinth¦120641, along with all the believers throughout ",
{
"type": "char",
"marker": "add",
"content": [
"the province of"
]
},
" Achaia¦120651.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "2CO 1:2"
},
{
"type": "char",
"marker": "add",
"content": [
"May"
]
},
" ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦120658"
]
},
" our¦120660 father¦120659 and ",
{
"type": "char",
"marker": "nd",
"content": [
"master¦120662 Yeshua Messiah¦120664"
]
},
" give you¦120654 all grace¦120652 and peace¦120656.\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"Suffering and comfort\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 The God of All Comfort; Paul’s Thanksgiving after Affliction; Paul Gives Thanks to God; God Offers Comfort to All\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "2CO 1:3"
},
{
"type": "char",
"marker": "add",
"content": [
"May"
]
},
" the god and father of our¦120672 ",
{
"type": "char",
"marker": "nd",
"content": [
"master¦120671 Yeshua Messiah¦120674"
]
},
" ",
{
"type": "char",
"marker": "add",
"content": [
"be"
]
},
" blessed. He is the father of compassion¦120678 and ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦120667"
]
},
" of all comfort¦120682\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "2CO 1:4"
},
"who comforts us through all our¦120690 trials so that we¦120704 can comfort others through all their trials with the ",
{
"type": "char",
"marker": "add",
"content": [
"same"
]
},
" comfort that ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦120708"
]
},
" comforts us with.\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "2CO 1:5"
},
"In the same way that Messiah’s many sufferings¦120713 are ",
{
"type": "char",
"marker": "add",
"content": [
"expected"
]
},
" of us, so too the Messiah’s plentiful comfort¦120726 also ",
{
"type": "char",
"marker": "add",
"content": [
"reaches"
]
},
" us.\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "2CO 1:6"
},
"If we’re being oppressed¦120730, it’s for your comfort and salvation¦120736, and if we’re being comforted, it’s for your comfort which enables you all to endure¦120746 the same¦120748 sufferings that¦120743 we’re suffering.\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "2CO 1:7"
},
"We have confident¦120767 expectations for you all because we know that you are partners¦120782 in suffering¦120785, and¦120762 hence also in comfort¦120789.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "2CO 1:8"
},
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:8: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"1Cor 15:32."
]
}
],
"caller": "+"
},
"Brothers¦120795 and sisters, we don’t¦120790 want you¦120793 to miss out on knowing¦120794 about¦120797 our difficulties in ",
{
"type": "char",
"marker": "add",
"content": [
"the province of"
]
},
" Asia¦120806 ",
{
"type": "char",
"marker": "add",
"content": [
"Minor"
]
},
". We were weighed¦120813 down with ",
{
"type": "char",
"marker": "add",
"content": [
"a situation"
]
},
" totally beyond¦120811 our power¦120812, so much so that¦120801 we thought we wouldn’t live through it.\n",
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "2CO 1:9"
},
"We were resigned in ourselves to the death¦120827 sentence¦120825 so that we wouldn’t trust¦120831 in ourselves but¦120820 in ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦120838"
]
},
" who brings the dead¦120842 back to life—\n",
{
"type": "verse",
"marker": "v",
"number": "10",
"sid": "2CO 1:10"
},
{
"type": "char",
"marker": "add",
"content": [
"the one"
]
},
" who rescued us from that death¦120848 and¦120852 will rescue us ",
{
"type": "char",
"marker": "add",
"content": [
"again"
]
},
". He’s the one we¦120858 put our hope in that he¦120862 will continue to rescue us\n",
{
"type": "verse",
"marker": "v",
"number": "11",
"sid": "2CO 1:11"
},
"as you¦120866 also cooperated¦120863 with us through¦120885 your requests ",
{
"type": "char",
"marker": "add",
"content": [
"to him"
]
},
". Through this, many people¦120879 will give thanks¦120887 on our behalf for the gift¦120884 that was granted to us ",
{
"type": "char",
"marker": "add",
"content": [
"in answer to the prayers"
]
},
" of many.\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"The changes to Paul’s plans\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 The Change in Paul’s Plans; Paul’s Change of Plans; The Postponement of Paul’s Visit; Paul’s concern for the church at Corinth\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "12",
"sid": "2CO 1:12"
},
"So this is our¦120894 boast¦120893: Our¦120894 consciences¦120900 testify¦120898 that we¦120921 have conducted¦120921 ",
{
"type": "char",
"marker": "add",
"content": [
"ourselves"
]
},
" in the world (and even more so towards¦120927 all of you¦120928) with purity¦120905 and godly sincerity¦120909, not with worldly wisdom¦120915, but¦120907 ",
{
"type": "char",
"marker": "add",
"content": [
"relying on"
]
},
" God’s grace¦120919.\n",
{
"type": "verse",
"marker": "v",
"number": "13",
"sid": "2CO 1:13"
},
"We’re not writing¦120932 other ideas to you other than what you’re all reading¦120937. You’re also understanding ",
{
"type": "char",
"marker": "add",
"content": [
"it"
]
},
" and I’m hoping¦120941 that you’ll be able to understand it all the way through to the end¦120946\n",
{
"type": "verse",
"marker": "v",
"number": "14",
"sid": "2CO 1:14"
},
"as you ",
{
"type": "char",
"marker": "add",
"content": [
"initially"
]
},
" partially understood¦120952 us. Then on the day¦120968 when ",
{
"type": "char",
"marker": "nd",
"content": [
"Master¦120970 Yeshua"
]
},
" ",
{
"type": "char",
"marker": "add",
"content": [
"returns"
]
},
", you’ll be able to boast¦120957 about us just as we do about all of you.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "15",
"sid": "2CO 1:15"
},
"Because of my confidence¦120976 in that, I had wanted to visit you all so that you’d have a second¦120986 ",
{
"type": "char",
"marker": "add",
"content": [
"taste"
]
},
" of grace¦120988,\n",
{
"type": "verse",
"marker": "v",
"number": "16",
"sid": "2CO 1:16"
},
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:16: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Acts 19:1."
]
}
],
"caller": "+"
},
"and to continue on to Macedonia¦120997 and to stay again on the way back, and then to have you all ",
{
"type": "char",
"marker": "add",
"content": [
"help"
]
},
" send me on my way to Yudea¦121012.\n",
{
"type": "verse",
"marker": "v",
"number": "17",
"sid": "2CO 1:17"
},
"Was I just being light-",
{
"type": "char",
"marker": "add",
"content": [
"headed"
]
},
" when I hoped for that¦121037? Or what was I thinking? Was I just thinking in worldly ways where yes, I might, and¦121036 ",
{
"type": "char",
"marker": "add",
"content": [
"at the same time"
]
},
", no, I might not?\n",
{
"type": "verse",
"marker": "v",
"number": "18",
"sid": "2CO 1:18"
},
"But¦121055 our¦121047 message¦121046 to you¦121050 all hasn’t been ",
{
"type": "char",
"marker": "add",
"content": [
"both"
]
},
" ‘yes’ and¦121055 ‘no’, because ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦121043"
]
},
" is faithful¦121040.\n",
{
"type": "verse",
"marker": "v",
"number": "19",
"sid": "2CO 1:19"
},
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:19: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Acts 18:5."
]
}
],
"caller": "+"
},
"His son ",
{
"type": "char",
"marker": "nd",
"content": [
"Yeshua Messiah¦121066"
]
},
" who I’ve preached about to you all, as well as ",
{
"type": "char",
"marker": "add",
"content": [
"hearing it"
]
},
" from Silas and Timothy¦121078, didn’t¦121079 become ‘yes’ and ‘no’, but¦121075 in him it’s become ‘yes’.\n",
{
"type": "verse",
"marker": "v",
"number": "20",
"sid": "2CO 1:20"
},
"Concerning the many promises¦121092 ",
{
"type": "char",
"marker": "add",
"content": [
"made by"
]
},
" God, in ",
{
"type": "char",
"marker": "add",
"content": [
"Messiah"
]
},
" they’re ‘yes’, and therefore through him the ‘Let it be so’, resulting in honour for God through us.\n",
{
"type": "verse",
"marker": "v",
"number": "21",
"sid": "2CO 1:21"
},
"It’s ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦121126"
]
},
" who commissioned us and who confirms¦121115 you¦121119 and us to ",
{
"type": "char",
"marker": "nd",
"content": [
"Messiah¦121121"
]
},
",\n",
{
"type": "verse",
"marker": "v",
"number": "22",
"sid": "2CO 1:22"
},
"and God also ",
{
"type": "char",
"marker": "add",
"content": [
"places his"
]
},
" seal ",
{
"type": "char",
"marker": "add",
"content": [
"on"
]
},
" us and places ",
{
"type": "char",
"marker": "add",
"content": [
"his"
]
},
" ",
{
"type": "char",
"marker": "nd",
"content": [
"spirit¦121136"
]
},
" in our¦121140 hearts¦121139.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "23",
"sid": "2CO 1:23"
},
"I call on ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦121145"
]
},
" as a witness¦121143 for my soul¦121150 that it was to spare you¦121153 all that I didn’t come to Corinth¦121157.\n",
{
"type": "verse",
"marker": "v",
"number": "24",
"sid": "2CO 1:24"
},
"Not that we are in any way the masters¦121160 of your faith, but rather we are fellow-workers sharing in your happiness because¦121171 you all stand in the faith.\n"
]
},
{
"type": "chapter",
"marker": "c",
"number": "2",
"sid": "2CO 2"
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "2CO 2:1"
},
"So I made the decision myself¦121177 not to make a sad visit to you¦121187,\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "2CO 2:2"
},
"because¦121190 if I’m making you¦121194 all upset, who ",
{
"type": "char",
"marker": "add",
"content": [
"would be left to"
]
},
" cheer me up except¦121201 for the people that¦121198 I would’ve just upset?\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "2CO 2:3"
},
"So¦121207 I wrote¦121208 this same¦121211 thing, so that when I came, I wouldn’t get your¦121232 upsets when I should be being happy, having trusted¦121223 in you all that my happiness is in you.\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "2CO 2:4"
},
"I wrote¦121241 to you much difficulty and anguish¦121239 in my heart¦121240 and through¦121243 many tears¦121245, not wanted to make you all upset, but¦121238 rather so that you’d know¦121253 how much love¦121251 toward¦121257 you all is much greater than all that.\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"Forgiveness for the offender\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Forgiveness for the Sinner\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "2CO 2:5"
},
"If someone has caused grief, he¦121265 hasn’t upset me, well not much, because I don’t¦121263 want to be burdening¦121271 you¦121273 all.\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "2CO 2:6"
},
"The punishment¦121278 imposed on him by most of you is appropriate,\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "2CO 2:7"
},
"so now you should forgive¦121288 and comfort¦121290 him in case excess pain should drive him out.\n",
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "2CO 2:8"
},
"That’s why I’m urging all of you¦121301 to ",
{
"type": "char",