-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLAM.json
More file actions
3676 lines (3676 loc) · 105 KB
/
LAM.json
File metadata and controls
3676 lines (3676 loc) · 105 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": "Lam",
"content": []
},
{
"type": "para",
"marker": "ide",
"content": [
"UTF-8\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"ESFM v0.6 LAM\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"WORDTABLE OET-LV_OT_word_table.tsv\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"The parsed Hebrew text used to create this file is Copyright © 2019 by https://hb.openscriptures.org\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"Our English glosses are released CC0 by https://Freely-Given.org\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"ESFM file created 2026-04-09 12:49 by extract_glossed_OSHB_OT_to_ESFM v1.0\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"USFM file edited by ScriptedBibleEditor v0.35\n"
]
},
{
"type": "para",
"marker": "h",
"content": [
"Lamentations\n"
]
},
{
"type": "para",
"marker": "toc1",
"content": [
"Lamentations\n"
]
},
{
"type": "para",
"marker": "toc2",
"content": [
"Lamentations\n"
]
},
{
"type": "para",
"marker": "toc3",
"content": [
"Lam\n"
]
},
{
"type": "para",
"marker": "mt1",
"content": [
"Lamentations\n"
]
},
{
"type": "para",
"marker": "ie",
"content": []
},
{
"type": "chapter",
"marker": "c",
"number": "1",
"sid": "Lam 1"
},
{
"type": "para",
"marker": "nb",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "Lam 1:1"
},
"How¦331461 alone¦331464 it¦331463_sits¦331463 the¦331465=city¦331465 great¦331466_of¦331466 people¦331467 it¦331468_has¦331468_become¦331468 like¦331469÷a¦331469_widow¦331469 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦331470"
]
},
"_great¦331470_of¦331470",
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:1 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: Marks a place where we agree with BHQ against BHS in reading L."
]
}
],
"caller": "+"
},
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:1 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: Marks an anomalous form."
]
}
],
"caller": "+"
},
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:1 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: We read punctuation in L differently from BHS."
]
}
],
"caller": "+"
},
" among¦331474÷nations¦331474 a¦331475_princess¦331475_of¦331475 among¦331476÷provinces¦331476 it¦331477_has¦331477_become¦331477 (into)¦331478_forced¦331478÷labour¦331478.\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "Lam 1:2"
},
"bitterly¦331481_(weep)¦331481 it¦331482_weeps¦331482 in¦331483÷night¦331483 and¦331484÷its¦331484_of¦331484÷tear[s]¦331484 ",
{
"type": "char",
"marker": "add",
"content": [
"+are¦331485"
]
},
"_on¦331485 cheek¦331486_of¦331486÷its¦331486 there¦331487_",
{
"type": "char",
"marker": "add",
"content": [
"+is¦331487"
]
},
"_not¦331487 to/for¦331489=her/it¦331489 a¦331490_comforter¦331490 from¦331491=all¦331491 its¦331493_of¦331493÷lovers¦331493 all¦331494_of¦331494 friends¦331496_of¦331496÷its¦331496 they¦331497_have¦331497_dealt¦331497_treacherously¦331497 with¦331498÷it¦331498 they¦331499_have¦331499_become¦331499 to/for¦331500=her/it¦331500 (into)¦331501÷enemies¦331501.\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "Lam 1:3"
},
"Yəhūdāh/(Judah)¦331505 it¦331504_has¦331504_gone¦331504_into¦331504_exile¦331504 from¦331506÷affliction¦331506 and¦331507÷from¦331507÷an¦331507_abundance¦331507_of¦331507 servitude¦331508 it¦331509 it¦331510_dwells¦331510 among¦331511÷nations¦331511 not¦331512 it¦331513_has¦331513_found¦331513 a¦331514_resting¦331514_place¦331514 all¦331515_of¦331515 ",
{
"type": "char",
"marker": "add",
"content": [
"those¦331517_of¦331517÷who¦331517"
]
},
"_pursue¦331517_it¦331517 they¦331518÷have¦331518_overtaken¦331518_it¦331518 between¦331519 the¦331520_narrow¦331520÷places¦331520.\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "Lam 1:4"
},
"the¦331523_roads¦331523_of¦331523 Tsiyyōn/(Zion)¦331524 ",
{
"type": "char",
"marker": "add",
"content": [
"+are¦331525"
]
},
"_mourning¦331525 from¦331526÷not¦331526_of¦331526 ",
{
"type": "char",
"marker": "add",
"content": [
"those¦331527_who¦331527"
]
},
"_come¦331527_of¦331527 (of)¦331528_an¦331528_appointed¦331528_feast¦331528 all¦331529_of¦331529 gates¦331531_of¦331531÷its¦331531 ",
{
"type": "char",
"marker": "add",
"content": [
"+are¦331532"
]
},
"_desolate¦331532 priests¦331533_of¦331533÷its¦331533 ",
{
"type": "char",
"marker": "add",
"content": [
"+are¦331534"
]
},
"_groaning¦331534 virgins¦331535_of¦331535÷its¦331535 ",
{
"type": "char",
"marker": "add",
"content": [
"+are¦331536"
]
},
"_grieved¦331536",
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:4 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: Marks a place where we agree with BHQ against BHS in reading L."
]
}
],
"caller": "+"
},
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:4 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: We read punctuation in L differently from BHS."
]
}
],
"caller": "+"
},
" and¦331539=she¦331539 it¦331540_is¦331540_bitter¦331540 to/for¦331542=her/it¦331542.\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "Lam 1:5"
},
"foes¦331546_of¦331546÷its¦331546 they¦331545_have¦331545_become¦331545 (into)¦331547_a¦331547÷head¦331547 enemies¦331548_of¦331548÷its¦331548 they¦331549_are¦331549_at¦331549_ease¦331549 if/because¦331550 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦331552"
]
},
" he¦331553÷has¦331553_grieved¦331553_it¦331553 on¦331554 the¦331555_multitude¦331555_of¦331555 its¦331557_transgressions¦331557_of¦331557÷of¦331557 children¦331558_of¦331558÷its¦331558 they¦331559_have¦331559_gone¦331559 captivity¦331560 to¦331561=(the)¦331561_face¦331561_of/in¦331561_front¦331561_of/before¦331561 a¦331563_foe¦331563.\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "Lam 1:6"
},
"and¦331566=he/it¦331566_went¦331566_out¦331566 wwww¦331567 wwww¦331569",
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:6 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB variant note: מן־בת: (x-qere) 'מִ/בַּת': lemma=m/1323 morph=HR/Ncfsc id=25A74 מִ/בַּת"
]
}
],
"caller": "+"
},
" of¦331572_Tsiyyōn¦331572 all¦331573_of¦331573 splendour¦331575_of¦331575÷its¦331575 princes¦331577_of¦331577÷its¦331577 they¦331576_have¦331576_become¦331576 like¦331578÷deer¦331578 ",
{
"type": "char",
"marker": "add",
"content": [
"which¦331579"
]
},
"_not¦331579 pasture¦331582 they¦331581_have¦331581_found¦331581 and¦331583÷they¦331583_have¦331583_gone¦331583 with¦331584÷not¦331584 strength¦331586 to¦331587=(the)¦331587_face¦331587_of/in¦331587_front¦331587_of/before¦331587 ",
{
"type": "char",
"marker": "add",
"content": [
"one¦331588_who¦331588"
]
},
"_pursued¦331588.\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "Lam 1:7"
},
"Yərūshālam/(Jerusalem)¦331592 it¦331591_has¦331591_remembered¦331591 the¦331593_days¦331593_of¦331593 its¦331594_affliction¦331594_of¦331594÷of¦331594 and¦331595÷its¦331595_of¦331595÷homelessness(es)¦331595 all¦331596_of¦331596 things¦331597_of¦331597÷its¦331597_precious¦331597 which¦331598 they¦331599_were¦331599 from¦331600÷days¦331600_of¦331600 antiquity¦331601 when¦331602÷fell¦331602 people¦331603_of¦331603÷its¦331603 in¦331604_",
{
"type": "char",
"marker": "add",
"content": [
"+the¦331604"
]
},
"÷hand¦331604_of¦331604 a¦331606_foe¦331606 and¦331607÷there¦331607_",
{
"type": "char",
"marker": "add",
"content": [
"+was¦331607"
]
},
"_not¦331607 a¦331608_helper¦331608 to/for¦331609=her/it¦331609 they¦331610÷saw¦331610_it¦331610 foes¦331611 they¦331612_laughed¦331612 on¦331613 cessation(s)¦331614_of¦331614÷its¦331614.\n",
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "Lam 1:8"
},
"sin¦331617 Yərūshālam/(Jerusalem)¦331619 it¦331618_has¦331618_sinned¦331618 therefore¦331620 yes/correct/thus/so¦331622 (into)¦331623÷impurity¦331623 it¦331624_has¦331624_become¦331624 all¦331625_of¦331625 ",
{
"type": "char",
"marker": "add",
"content": [
"those¦331627_of¦331627÷who¦331627"
]
},
"_honoured¦331627_it¦331627 they¦331628÷despise¦331628_it¦331628 if/because¦331629 they¦331631_have¦331631_seen¦331631 nakedness¦331632_of¦331632÷its¦331632 also¦331633 it¦331635 it¦331636_has¦331636_groaned¦331636 and¦331637÷it¦331637_has¦331637_turned¦331637_away¦331637 backward¦331638.\n",
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "Lam 1:9"
},
"uncleanness¦331641_of¦331641÷its¦331641 ",
{
"type": "char",
"marker": "add",
"content": [
"+was¦331642"
]
},
"_the¦331642÷skirts¦331642_of¦331642÷of¦331642_its¦331642_robe¦331642 not¦331643 it¦331644_remembered¦331644 outcome¦331645_of¦331645÷its¦331645 and¦331646÷it¦331646_has¦331646_come¦331646_down¦331646 wonders¦331647 there¦331648_",
{
"type": "char",
"marker": "add",
"content": [
"+is¦331648"
]
},
"_not¦331648 a¦331649_comforter¦331649 to/for¦331650=her/it¦331650 see¦331651 Oh¦331652_",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦331652"
]
},
" untr DOM¦331653untr* affliction¦331655_of¦331655÷my¦331655 if/because¦331656 it¦331657_has¦331657_magnified¦331657_itself¦331657 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦331658"
]
},
"_enemy¦331658.\n",
{
"type": "verse",
"marker": "v",
"number": "10",
"sid": "Lam 1:10"
},
"his/its¦331661=hand¦331661 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦331663"
]
},
"_foe¦331663 he¦331662_has¦331662_spread¦331662_out¦331662 over¦331664 all¦331665_of¦331665 things¦331667_of¦331667÷its¦331667_desirable¦331667 if/because¦331668 it¦331670_saw¦331670 nations¦331671 ",
{
"type": "char",
"marker": "add",
"content": [
"which¦331672"
]
},
"_they¦331672_went¦331672 sanctuary¦331673_of¦331673÷its¦331673 which¦331674 you¦331675_had¦331675_commanded¦331675 not¦331676 they¦331678_will¦331678_come¦331678 in¦331679÷assembly¦331679 to/for¦331680=you(fs)¦331680.\n",
{
"type": "verse",
"marker": "v",
"number": "11",
"sid": "Lam 1:11"
},
"all¦331683_of¦331683 people¦331685_of¦331685÷its¦331685 ",
{
"type": "char",
"marker": "add",
"content": [
"+are¦331686"
]
},
"_groaning¦331686 ",
{
"type": "char",
"marker": "add",
"content": [
"they¦331687"
]
},
"_",
{
"type": "char",
"marker": "add",
"content": [
"+are¦331687"
]
},
"_seeking¦331687 bread¦331688 they¦331689_have¦331689_given¦331689 things¦331690_of¦331690÷their¦331690_desirable¦331690",
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:11 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB variant note: מחמודי/הם: (x-qere) 'מַחֲמַדֵּי/הֶ֛ם': lemma=4261 n=1.0.0 morph=HNcmpc/Sp3mp id=25SaV מַחֲמַדֵּי/הֶ֛ם"
]
}
],
"caller": "+"
},
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:11 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: Yathir readings in L which we have designated as Qeres when both Dothan and BHS list a Qere."
]
}
],
"caller": "+"
},
" for¦331693÷food¦331693 to¦331694÷restore¦331694 life¦331695 see¦331696 Oh¦331697_",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦331697"
]
},
" and¦331698÷look¦331698 if/because¦331699 I¦331700_am¦331700 worthless¦331701.\n",
{
"type": "verse",
"marker": "v",
"number": "12",
"sid": "Lam 1:12"
},
"not¦331704 to¦331705÷you(pl)¦331705 Oh¦331706_all¦331706_of¦331706 ",
{
"type": "char",
"marker": "add",
"content": [
"you(pl)¦331708_who¦331708"
]
},
"_pass¦331708_by¦331708_of¦331708 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦331709"
]
},
"_road¦331709 look¦331710 and¦331711÷see¦331711 if¦331712 there¦331714_",
{
"type": "char",
"marker": "add",
"content": [
"+is¦331714"
]
},
" pain¦331715 like¦331716÷my¦331716_of¦331716÷pain¦331716 which¦331717 it¦331718_has¦331718_been¦331718_done¦331718 to¦331719=me¦331719 which¦331720 he¦331721_has¦331721_caused¦331721_grief¦331721 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦331722"
]
},
" in/on¦331723=day¦331723 of¦331724_the¦331724_burning¦331724_of¦331724 his¦331725_anger¦331725_of¦331725÷of¦331725.\n",
{
"type": "verse",
"marker": "v",
"number": "13",
"sid": "Lam 1:13"
},
"from¦331728÷a¦331728_high¦331728_place¦331728 he¦331729_sent¦331729 fire¦331731 in¦331732÷my¦331732_of¦331732÷bones¦331732 and¦331733÷he¦331733÷mastered¦331733_it¦331733 he¦331734_spread¦331734_out¦331734 a¦331735_net¦331735 for¦331736÷my¦331736_of¦331736÷feet¦331736 he¦331737÷made¦331737_me¦331737_turn¦331737_back¦331737 backward¦331738 he¦331739÷made¦331739_me¦331739 desolate¦331740 all¦331741_of¦331741 the¦331743=day¦331743 faint¦331744.\n",
{
"type": "verse",
"marker": "v",
"number": "14",
"sid": "Lam 1:14"
},
"the¦331748_yoke¦331748_of¦331748 it¦331747_has¦331747_been¦331747_bound¦331747_on¦331747 my¦331749_transgressions¦331749_of¦331749÷of¦331749 in¦331750=his/its¦331750=hand¦331750 they¦331751_are¦331751_woven¦331751_together¦331751 they¦331752_have¦331752_come¦331752_up¦331752 on¦331753 neck¦331755_of¦331755÷my¦331755 he¦331756_has¦331756_made¦331756_feeble¦331756 strength¦331757_of¦331757÷my¦331757 he¦331758÷has¦331758_given¦331758_me¦331758 my¦331759=master¦331759 in¦331760÷the¦331760_hands¦331760_of¦331760 ",
{
"type": "char",
"marker": "add",
"content": [
"those¦331761_whom¦331761"
]
},
"_not¦331761 I¦331763_am¦331763_able¦331763 to¦331764_stand¦331764.\n",
{
"type": "verse",
"marker": "v",
"number": "15",
"sid": "Lam 1:15"
},
"he¦331767_has¦331767_thrown¦331767_away¦331767 all¦331768_of¦331768 my¦331770_mighty¦331770_of¦331770÷",
{
"type": "char",
"marker": "add",
"content": [
">ones¦331770"
]
},
" my¦331772=master¦331772 in¦331773÷my¦331773_of¦331773÷midst¦331773 he¦331774_has¦331774_proclaimed¦331774 on¦331775÷me¦331775 an¦331776_appointed¦331776_meeting¦331776 to¦331777÷break¦331777 men¦331778_of¦331778÷my¦331778_young¦331778 a¦331779_winepress¦331779 my¦331781=master¦331781 he¦331780_has¦331780_trodden¦331780 for¦331782÷the¦331782_virgin¦331782_of¦331782 the¦331783_daughter¦331783_of¦331783 Yəhūdāh/(Judah)¦331785.\n",
{
"type": "verse",
"marker": "v",
"number": "16",
"sid": "Lam 1:16"
},
"on¦331788 these¦331790_",
{
"type": "char",
"marker": "add",
"content": [
">things¦331790"
]
},
" I¦331792 ",
{
"type": "char",
"marker": "add",
"content": [
"+am¦331793"
]
},
"_weeping¦331793 eye¦331794_of¦331794÷my¦331794 eye¦331796_of¦331796÷my¦331796 ",
{
"type": "char",
"marker": "add",
"content": [
"+is¦331797"
]
},
"_going¦331797_down¦331797 water¦331798 if/because¦331799 he¦331801_is¦331801_far¦331801 from¦331802÷me¦331802 a¦331803_comforter¦331803 ",
{
"type": "char",
"marker": "add",
"content": [
"who¦331804"
]
},
"_restores¦331804 life¦331805_of¦331805÷my¦331805 children¦331807_of¦331807÷my¦331807 they¦331806_are¦331806 desolate¦331808 if/because¦331809 he¦331810_has¦331810_prevailed¦331810 an¦331811_enemy¦331811.\n",
{
"type": "verse",
"marker": "v",
"number": "17",
"sid": "Lam 1:17"
},
"Tsiyyōn/(Zion)¦331815 it¦331814_has¦331814_spread¦331814_out¦331814 (in)¦331816÷its¦331816_of¦331816÷hands¦331816 there¦331817_",
{
"type": "char",
"marker": "add",
"content": [
"+is¦331817"
]
},
"_not¦331817 a¦331818_comforter¦331818 to/for¦331819=her/it¦331819 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦331821"
]
},
" he¦331820_has¦331820_commanded¦331820 of¦331822÷Yaˊₐqoⱱ/(Jacob)¦331822 ",
{
"type": "char",
"marker": "add",
"content": [
"+those¦331823"
]
},
"_around¦331823_of¦331823÷him¦331823 ",
{
"type": "char",
"marker": "add",
"content": [
"+be¦331824"
]
},
"_his¦331824_foes¦331824_of¦331824÷",
{
"type": "char",
"marker": "add",
"content": [
"+will¦331824"
]
},
" Yərūshālam/(Jerusalem)¦331826 it¦331825_has¦331825_become¦331825 (into)¦331827_an¦331827÷impure¦331827_thing¦331827 between¦331828÷them¦331828.\n",
{
"type": "verse",
"marker": "v",
"number": "18",
"sid": "Lam 1:18"
},
{
"type": "char",
"marker": "add",
"content": [
"+is¦331831"
]
},
"_righteous¦331831 he¦331832 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦331833"
]
},
" if/because¦331834 mouth¦331835_of¦331835÷his¦331835 I¦331836_have¦331836_been¦331836_rebellious¦331836 listen¦331837 please¦331839 Oh¦331840_all¦331840_of¦331840 wwww¦331842",
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:18 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB variant note: עמים: (x-qere) 'הָֽ/עַמִּ֗ים': lemma=d/5971 a n=0.1.1 morph=HTd/Ncmpa id=25qK3 הָֽ/עַמִּ֗ים"
]
}
],
"caller": "+"
},
" and¦331844÷see¦331844 pain¦331845_of¦331845÷my¦331845 women¦331846_of¦331846÷my¦331846_young¦331846 and¦331847÷my¦331847_young¦331847_of¦331847÷men¦331847 they¦331848_have¦331848_gone¦331848 in¦331849÷captivity¦331849.\n",
{
"type": "verse",
"marker": "v",
"number": "19",
"sid": "Lam 1:19"
},
"I¦331852_called¦331852 to¦331853÷my¦331853_of¦331853÷lovers¦331853 they¦331854 they¦331855÷betrayed¦331855_me¦331855 priests¦331856_of¦331856÷my¦331856 and¦331857÷my¦331857_of¦331857÷elders¦331857 in¦331858÷city¦331858 they¦331859_perished¦331859 if/because¦331860 they¦331862_sought¦331862 food¦331863 for¦331864÷themselves¦331864 and¦331865÷they¦331865_restored¦331865 untr DOM¦331866untr* life¦331868_of¦331868÷their¦331868.\n",
{
"type": "verse",
"marker": "v",
"number": "20",
"sid": "Lam 1:20"
},
"see¦331871 Oh¦331872_",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦331872"
]
},
" if/because¦331873 distress¦331875 to¦331877=me¦331877 parts¦331878_of¦331878÷my¦331878_inward¦331878 they¦331879_are¦331879_in¦331879_turmoil¦331879 heart¦331881_of¦331881÷my¦331881 it¦331880_has¦331880_been¦331880_overturned¦331880 in¦331882÷my¦331882_inner¦331882_of¦331882÷being¦331882 if/because¦331883 extremely¦331884_(be¦331884_rebellious)¦331884 I¦331885_have¦331885_been¦331885_rebellious¦331885 from¦331886÷outside¦331886 it¦331887_has¦331887_bereaved¦331887 a¦331889_sword¦331889 ",
{
"type": "char",
"marker": "add",
"content": [
"+is¦331890"
]
},
"_in¦331890÷house¦331890 like¦331891÷death¦331891.\n",
{
"type": "verse",
"marker": "v",
"number": "21",
"sid": "Lam 1:21"
},
"they¦331894_heard¦331894 if/because¦331895_that¦331895 ",
{
"type": "char",
"marker": "add",
"content": [
"+was¦331896"
]
},
"_groaning¦331896 I¦331897 there¦331898_",
{
"type": "char",
"marker": "add",
"content": [
"+is¦331898"
]
},
"_not¦331898 a¦331899_comforter¦331899 to¦331900=me¦331900 all¦331901_of¦331901 enemies¦331903_of¦331903÷my¦331903 they¦331904_heard¦331904 distress¦331905_of¦331905÷my¦331905 they¦331906_rejoiced¦331906 (cmp)¦331907 you¦331908 you¦331909_have¦331909_acted¦331909 you¦331910_have¦331910_brought¦331910 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦331911"
]
},
"_day¦331911 ",
{
"type": "char",
"marker": "add",
"content": [
"which¦331913"
]
},
"_you¦331913_proclaimed¦331913 and¦331914÷let¦331914_them¦331914_be¦331914 like¦331915÷me¦331915.\n",
{
"type": "verse",
"marker": "v",
"number": "22",
"sid": "Lam 1:22"
},
"all¦331919_of¦331919 may¦331918_it¦331918_come¦331918 wickedness¦331921_of¦331921÷their¦331921 to¦331922=your¦331922=face¦331922 and¦331923÷deal¦331923_severely¦331923 to¦331924÷them¦331924 just¦331925=as¦331925 you¦331926_have¦331926_dealt¦331926_severely¦331926 to¦331927=me¦331927 on¦331928 all¦331929_of¦331929 transgressions¦331931_of¦331931÷my¦331931 if/because¦331932 ",
{
"type": "char",
"marker": "add",
"content": [
"+are¦331934"
]
},
"_many¦331934 groaning(s)¦331935_of¦331935÷my¦331935 and¦331936÷my¦331936_of¦331936÷heart¦331936 ",
{
"type": "char",
"marker": "add",
"content": [
"+is¦331937"
]
},
"_faint¦331937.\n"
]
},
{
"type": "chapter",
"marker": "c",
"number": "2",
"sid": "Lam 2"
},
{
"type": "para",
"marker": "nb",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "Lam 2:1"
},
"how¦331940 he¦331941_covers¦331941_with¦331941_a¦331941_cloud¦331941 in¦331942÷his¦331942_of¦331942÷anger¦331942 my¦331944=master¦331944 untr DOM¦331945untr* the¦331947_daughter¦331947_of¦331947 Tsiyyōn/(Zion)¦331949 he¦331950_has¦331950_thrown¦331950 from¦331951÷heaven¦331951 earth¦331952 the¦331953_splendour¦331953_of¦331953 Yisrā",
{
"type": "char",
"marker": "sup",
"content": [
"ʼēl"
]
},
"/(Israel)¦331954 and¦331955=not¦331955 he¦331957_has¦331957_remembered¦331957 the¦331958_footstool¦331958_of¦331958 his¦331960_feet¦331960_of¦331960÷of¦331960 in/on¦331961=day¦331961 his¦331962_anger¦331962_of¦331962÷of¦331962.\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "Lam 2:2"
},
"my¦331966=master¦331966 he¦331965_has¦331965_swallowed¦331965_up¦331965 wwww¦331967",
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"2:2 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB variant note: לא: (x-qere) 'וְ/לֹ֣א': lemma=c/3808 morph=HC/Tn id=25rGa וְ/לֹ֣א"
]
}
],
"caller": "+"
},
" he¦331969_has¦331969_spared¦331969 untr DOM¦331970untr* all¦331971_of¦331971 the¦331973_settlements¦331973_of¦331973 Yaˊₐqoⱱ/(Jacob)¦331974 he¦331975_has¦331975_torn¦331975_down¦331975 in¦331976÷his¦331976_of¦331976÷severe¦331976_anger¦331976 the¦331977_fortifications¦331977_of¦331977 the¦331978_daughter¦331978_of¦331978 Yəhūdāh/(Judah)¦331980 he¦331981_has¦331981_made¦331981_",
{
"type": "char",
"marker": "add",
"content": [
"them¦331981"
]
},
"_touch¦331981 (to)¦331982÷ground¦331982 he¦331983_has¦331983_profaned¦331983 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦331984"
]
},
"_kingdom¦331984 and¦331985÷its¦331985_of¦331985÷princes¦331985.\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "Lam 2:3"
},
"he¦331988_has¦331988_cut¦331988_off¦331988 in¦331989_",
{
"type": "char",
"marker": "add",
"content": [
"+the¦331989"
]
},
"÷heat¦331989_of¦331989",
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"2:3 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: Marks a place where we agree with BHQ against BHS in reading L."
]
}
],
"caller": "+"
},
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"2:3 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: Marks an anomalous form."
]
}
],
"caller": "+"
},
{
"type": "note",
"marker": "f",