forked from STEPBible/STEPBible-Data
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTEHMC - Tyndale Expansion of Hebrew Morphhology Codes - TyndaleHouse.com STEPBible.org CC BY-NC.txt
4270 lines (4259 loc) · 351 KB
/
TEHMC - Tyndale Expansion of Hebrew Morphhology Codes - TyndaleHouse.com STEPBible.org CC BY-NC.txt
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
TEHMC - Tyndale Expansion of Hebrew Morphhology Codes - TyndaleHouse.com STEPBible.org CC BY-NC.txt
Hebrew morphology codes with expanded explanations in terms of parsing, meaning and example
===========================================================
Data created for www.STEPBible.org by Tyndale House Cambridge (CC BY-NC 4.0)
===========================================================
This licence allows you to:
* Include any part of this data in free software or free publications without requesting permission
* Request permission if your project is not free. A reasonable request is unlikely to be refused.
* Download the data and reformat it for your application
* Refer others to this repository as the source of the data.
And you should:
* List any changes you make to the data. Please also send changes to [email protected] so that others can benefit.
* Attribute the original data to "Tyndale House, Cambridge" linked to www.TyndaleHouse.com,
and to "STEP Bible" linked to www.STEPBible.org
* Link to its source at https://tyndale.github.io/STEPBible-Data/
If you use this data, we'd love to hear about your project when you make it available. Email us at [email protected].
==============================================================
FIELD DESCRIPTIONS:
==============
Codes + expansion - based on OpenScripture codes which are similar to Westminster codes used by BibleWorks and other commercial software. These codes are described in detail at https://goo.gl/HP4mZQ#HebMorph
- some of the parsing is derived from the data in the codes: Stem implies the likely Action and Voice; Form implies the likely Tense and Mood. These are not definite and depend on context and the normal usage of each verb. See more at https://docs.google.com/document/d/1wQ67vPIrNxvICy5QmSeromQUJmePml1nQxv7n1gJ8qw/edit#bookmark=id.evqm50b2x4wq
- the 1st character indicates Hebrew or Aramaic. When codes are strung together, this character becomes "/", e.g. "HC/Ncmsa"
morphology - the morphology in a phrase that makes sense in English
explanation - the meaning of this morphology in a phrase that makes sense in English
example - an example of how a Hebrew or Aramaic word in this form might be translated, using: "Jew" for gentilics, "person/man/woman" for nouns, "late" for adjectives etc
- verbs are based on עָנָה (H6031b) which means, roughly: Qal= "to lower"; Piel= "to humble"; Hiphil="to humiliate"
THE ELEMENTS OF MORPHOLOGY:
Functions: Conjunction, Adverb, Preposition, Particle, Pronoun, Noun, Adjective, Verb, Suffix
- these are defined and parsed in line with OpenScriptures with a few embelishments - see the table at https://goo.gl/HP4mZQ#HebMorph
Stem: Aphel, Haphel, Hiphil, Hishtaphel, Hithpaal, Hithpael, Hithpeel, Hophal, Hothpaal, Ishtaphel, Ithpaal, Itpeel, Niphal, Nithpael, Pael, Peal, Peil, Piel, Pual, Qal, Shaphel, Tiphil
(other minor forms are subsumed into these). For their interpretation https://docs.google.com/document/d/1wQ67vPIrNxvICy5QmSeromQUJmePml1nQxv7n1gJ8qw/edit#bookmark=id.evqm50b2x4wq
Action, Determined by Stem: Simple, Intensive/resultive, Causative/declarative.
In explations these are "performing", "intensifying or achieving" and "causing or confirming"
Voice, Determined by Stem: Active, Passive, Reflexive/iterative.
In explanations these are done "by", "to" and "to or for themselves by"
Form - for non-verbs: different forms depending on Functions. See the table at https://goo.gl/HP4mZQ#HebMorph
- for vebs: Participle, Participle passive, Infinitive, Imperfective, Sequential Imperfective, Conjunction+Imperfective, Perfective, Sequential Perfective, Imperative.
In explanations, Imperfective is "incomplete", Perfective is "complete" and sequential follows the 'completeness' of the previous verb.
Tense, Determined by form: Future/present (for Imperf), Past/present (for Perf), Present/future (for Imperative), N/A (for Part, Infin).
In explanations, the most likely tense is listed first.
Mood, Determined by form: Imperative, Cohortative, Jussive, Enacted (ie not Jussive or Cohortative or Imperative), Enacted/Cohortative, Enacted/Jussive (for ambiguous Imperfective form).
In explanations, "should" is used for cohortative and "may" for Jussive.
Person: First, Second, Third.
In explanations these are "the one speaking or writing", "the one being addressed", "the one being discussed".
Gender: Feminine, Masculine, Either.
For proper nouns: Feminine individual, Masculine individual, Location, Other title (includes names of months, ranks, divinities etc)
Number: Singular, Plural, Dual
State: Construct, Absolute (ie non-construct), Definite (ie includes an Aramaic determinate suffix - this will be replaced by Absolute or Construct in STEPBible tagging).
In explanation, a construct is "a term combined with another"
NOTES:
* Articles and Definite or Paragogic forms are referred to in explanations as "important".
* Passive is determined by the Stem, but Participle Passive turns an Active stem into Passive. So Participle actives are recorded simply as Participle, because they can often take a passive voice.
* Hothpaal in some other systems is classified as Passive, but it is classified here as Reflexive. This occurs only rarely (Lev.13.55, 56 הֻכַּבֵּ֣ס ‘washed out’; Num.1.47; 2.33; 26.62 הָתְפָּקְד֖וּ ‘they were enrolled’; Deu.24.4 הֻטַּמָּ֔אָה ‘she has been declared unclean’; 1Ki.20.27 הָתְפָּקְדוּ֙ ‘they were3 mustered’; Isa.34.6 הֻדַּ֣שְׁנָה ‘it has fattened itself’). Normally this is passive, though it can have some reflexive undertones (esp. Isa.34.6).
* Nithpael in some other systems is classified as equivalent to Reflexive, but it is classified here as Passive. It occurs only rarely (Deu.21.8 וְנִכַּפֵּ֥ר ‘and it will be atoned for’; Prov.27.15 נִשְׁתָּוָֽה ‘she is like’; Eze.23.48 וְנִֽוַּסְּרוּ֙ ‘and.they.will.be.warned’). All these instances are Passive (with the possible exception of Pro.27.15).
* Hithpael in some other systems is classified as Intensive (or Resultative which is more typical for Hithpael), but it is classified here as Simple. This is difficult to decide because there is evidence for either side. Only a few verbs have meanings for Qal/Niphal sufficiently different to Piel/Pual to enable assigning the Hithpael clearly to one rather than the other. See more notes at https://docs.google.com/document/d/1wQ67vPIrNxvICy5QmSeromQUJmePml1nQxv7n1gJ8qw/edit#bookmark=id.79gmkybm2s9t
* "Enacted" means Indicative - ie not subjunctive (a form that has disappeared in Hebrew) or jussive or cohortative (forms that have disappeared in most verbs in Hebrew). In many cases of Imperfective, it is impossible to know if the form is Jussive/Cohortative or not, so it is marked Enacted/jussive or Enacted/cohortative.
* "Sequential" verbs (aka consecutive or non-conjunctive) are prefixed with a vav which changes imperfective to perfective meaning and vice-versa. In general, a section begins with a non-sequential verb and may be succeeded by a number of sequential verbs till the end of the section.
* "Conjunctive" verbs are prefixed with a vav as a conjunction, so it does not change the meaning of the verb. This is recognised by vowel changes in Imperfective verbs. It is rare with Perfective verbs and there is no difference in form by which to identify it, so this is done by context. See more at https://docs.google.com/document/d/1wQ67vPIrNxvICy5QmSeromQUJmePml1nQxv7n1gJ8qw/edit#bookmark=id.ygjzsla2gxpu
"1 CODE" Group#1 specific Function specific Stem specific Action specific Voice specific Form specific Tense specific Mood specific Person specific Gender specific Number specific State 12-CODE again Group#2 Function Stem Action Voice Form Tense Mood Person Gender Number State 23-CODE again Group#3 Function abbreviated Stem explained Action explained Voice explained Form explained Tense explained Mood explained Person explained Gender explained Number explained State explained 34-CODE again Group#4 Function in description Stem in description Action in description Voice in description Form in description Tense in description Mood in description Person in description Gender in description Number in description State 45-CODE again Group#5 Explanation Order for Explanation Longer Example Shorter Example Description Order for Description Elements listed
$
AC Function=Conjunction
Conjunction
a conjunction
"giving to‚ rich _and_ poor": "and"
$
HC Function=Conjunction
Conjunction
a conjunction
"giving to‚ rich _and_ poor": "and"
$
Hc Function=Conjunction; Form=Consecutive;
Consecutive Conjunction
a conjunction marking continued action in the same tense as the preceding verb
"giving to‚ rich _and_ poor": "and"
$
AD Function=Adverb
Adverb
DESCRIBING an action
"it was _wisely_ given": "loudly, soon"
$
HD Function=Adverb
Adverb
DESCRIBING an action
"it was _wisely_ given": "loudly, soon"
$
AR Function=Preposition
Preposition
a RELATIONSHIP to another person or thing
"_of‚ from‚ by‚ in_": "_of‚ to, from‚ in_"
$
HR Function=Preposition
Preposition
a RELATIONSHIP to another person or thing
"_of‚ from‚ by‚ in_": "_of‚ to, from‚ in_"
$
ARd Function=Preposition ; Form=Definite
Preposition (Definite)
a RELATIONSHIP to another person or thing with an indication that it is important or it has been referred to
"_of‚ from‚ by‚ in_": "_of‚ to, from‚ in_"
$
HRd Function=Preposition ; Form=Definite
Preposition (Definite)
a RELATIONSHIP to another person or thing with an indication that it is important or it has been referred to
"_of‚ from‚ by‚ in_": "_of‚ to, from‚ in_"
$
ATa Function=Particle ; Form=Definite article (Aramaic)
Definite article (Aramaic)
an INDICATOR that is important or it has been referred to
Example: the
$
ATc Function=Particle ; Form=Conditional
Conditional Particle
an INDICATOR that condition or a consequence follows
Example: "if, for"
$
HTc Function=Particle ; Form=Conditional
Conditional Particle
an INDICATOR that condition or a consequence follows
Example: "if, for"
$
HTd Function=Particle ; Form=Definite article (Hebrew)
Definite article (Hebrew)
an INDICATOR that this is important or it has been referred to
Example: the
$
ATj Function=Particle ; Form=Interjection
Interjection
an INDICATOR that this is an exclamation
Example: Oh!
$
HTj Function=Particle ; Form=Interjection
Interjection
an INDICATOR that this is an exclamation
Example: Oh!
$
ATm Function=Particle ; Form=Demonstrative
Demonstrative Particle
an INDICATOR that is pointing to a specific person or thing
Example: that
$
HTm Function=Particle ; Form=Demonstrative
Demonstrative Particle
an INDICATOR that is pointing to a specific person or thing
Example: that
$
ATn Function=Particle ; Form=Negative
Negative Particle
an INDICATOR that this is not so
Example: not
$
HTn Function=Particle ; Form=Negative
Negative Particle
an INDICATOR that this is not so
Example: not
$
ATo Function=Particle ; Form=Object indicator
Object indicator
an INDICATOR that this are who the action happens to or for
Example: ( )
$
HTo Function=Particle ; Form=Object indicator
Object indicator
an INDICATOR that this are who the action happens to or for
Example: ( )
$
ATr Function=Particle ; Form=Relative
Relative Particle
an INDICATOR that this has already been referred to in the sentence
Example: which
$
HTr Function=Particle ; Form=Relative
Relative Particle
an INDICATOR that this has already been referred to in the sentence
Example: which
$
ATi Function=Particle ; Form=Interrogative
Interrogative Particle
an INDICATOR that a question is being asked
Example: when
$
HTi Function=Particle ; Form=Interrogative
Interrogative Particle
an INDICATOR that a question is being asked
Example: when
$
APi Function=Pronoun ; Form=Interrogative
Interrogative Pronoun
an INDICATOR that a question is being asked
Example: who
$
HPi Function=Pronoun ; Form=Interrogative
Interrogative Pronoun
an INDICATOR that a question is being asked
Example: who
$
APp1bp Function=Pronoun ; Form=Personal ; Person=First; Gender=Either gender; Number=Plural
Pronoun (First Plural Either gender)
a reference to RECENTLY MENTIONED male or female people or things that are speaking or writing this
Example: "we, us"
$
HPp1bp Function=Pronoun ; Form=Personal ; Person=First; Gender=Either gender; Number=Plural
Pronoun (First Plural Either gender)
a reference to RECENTLY MENTIONED male or female people or things that are speaking or writing this
Example: "we, us"
$
APp1bs Function=Pronoun ; Form=Personal ; Person=First; Gender=Either gender; Number=Singular
Pronoun (First Singular Either gender)
a reference to a RECENTLY MENTIONED male or female person or thing that is speaking or writing this
Example: "I, me"
$
HPp1bs Function=Pronoun ; Form=Personal ; Person=First; Gender=Either gender; Number=Singular
Pronoun (First Singular Either gender)
a reference to a RECENTLY MENTIONED male or female person or thing that is speaking or writing this
Example: "I, me"
$
APp2fp Function=Pronoun ; Form=Personal ; Person=Second; Gender=Feminine; Number=Plural
Pronoun (Second Plural Feminine)
a reference to RECENTLY MENTIONED female people or things being addressed
Example: you
$
HPp2fp Function=Pronoun ; Form=Personal ; Person=Second; Gender=Feminine; Number=Plural
Pronoun (Second Plural Feminine)
a reference to RECENTLY MENTIONED female people or things being addressed
Example: you
$
APp2fs Function=Pronoun ; Form=Personal ; Person=Second; Gender=Feminine; Number=Singular
Pronoun (Second Singular Feminine)
a reference to a RECENTLY MENTIONED female person or thing being addressed
Example: you
$
HPp2fs Function=Pronoun ; Form=Personal ; Person=Second; Gender=Feminine; Number=Singular
Pronoun (Second Singular Feminine)
a reference to a RECENTLY MENTIONED female person or thing being addressed
Example: you
$
APp2mp Function=Pronoun ; Form=Personal ; Person=Second; Gender=Masculine; Number=Plural
Pronoun (Second Plural Masculine)
a reference to RECENTLY MENTIONED male people or things being addressed
Example: you (males)
$
HPp2mp Function=Pronoun ; Form=Personal ; Person=Second; Gender=Masculine; Number=Plural
Pronoun (Second Plural Masculine)
a reference to RECENTLY MENTIONED male people or things being addressed
Example: you (males)
$
APp2ms Function=Pronoun ; Form=Personal ; Person=Second; Gender=Masculine; Number=Singular
Pronoun (Second Singular Masculine)
a reference to a RECENTLY MENTIONED male person or thing being addressed
Example: you
$
HPp2ms Function=Pronoun ; Form=Personal ; Person=Second; Gender=Masculine; Number=Singular
Pronoun (Second Singular Masculine)
a reference to a RECENTLY MENTIONED male person or thing being addressed
Example: you
$
APp3fp Function=Pronoun ; Form=Personal ; Person=Third; Gender=Feminine; Number=Plural
Pronoun (Third Plural Feminine)
a reference to RECENTLY MENTIONED female people or things being discussed
Example: "they, them"
$
HPp3fp Function=Pronoun ; Form=Personal ; Person=Third; Gender=Feminine; Number=Plural
Pronoun (Third Plural Feminine)
a reference to RECENTLY MENTIONED female people or things being discussed
Example: "they, them"
$
APp3fs Function=Pronoun ; Form=Personal ; Person=Third; Gender=Feminine; Number=Singular
Pronoun (Third Singular Feminine)
a reference to a RECENTLY MENTIONED female person or thing being discussed
Example: she
$
HPp3fs Function=Pronoun ; Form=Personal ; Person=Third; Gender=Feminine; Number=Singular
Pronoun (Third Singular Feminine)
a reference to a RECENTLY MENTIONED female person or thing being discussed
Example: she
$
APp3mp Function=Pronoun ; Form=Personal ; Person=Third; Gender=Masculine; Number=Plural
Pronoun (Third Plural Masculine)
a reference to RECENTLY MENTIONED male people or things being discussed
Example: "they, them (males)"
$
HPp3mp Function=Pronoun ; Form=Personal ; Person=Third; Gender=Masculine; Number=Plural
Pronoun (Third Plural Masculine)
a reference to RECENTLY MENTIONED male people or things being discussed
Example: "they, them (males)"
$
APp3ms Function=Pronoun ; Form=Personal ; Person=Third; Gender=Masculine; Number=Singular
Pronoun (Third Singular Masculine)
a reference to a RECENTLY MENTIONED male person or thing being discussed
Example: "he, him"
$
HPp3ms Function=Pronoun ; Form=Personal ; Person=Third; Gender=Masculine; Number=Singular
Pronoun (Third Singular Masculine)
a reference to a RECENTLY MENTIONED male person or thing being discussed
Example: "he, him"
$
ASd Function=Suffix ; Form=Directional
Directional Suffix
AND the direction is toward this
Example: to there
$
HSd Function=Suffix ; Form=Directional
Directional Suffix
AND the direction is toward this
Example: to there
$
ASh Function=Suffix ; Form=Paragogic Hé
Paragogic Hé
AND it is important
Example: !
$
HSh Function=Suffix ; Form=Paragogic Hé
Paragogic Hé
AND it is important
Example: !
$
ASn Function=Suffix ; Form=Paragogic Nun
Paragogic Nun
AND it is important
Example: !
$
HSn Function=Suffix ; Form=Paragogic Nun
Paragogic Nun
AND it is important
Example: !
$
ASp1bs Function=Suffix ; Form=Personal ; Person=First; Gender=Either gender; Number=Singular
Suffix (First Singular Either gender)
"WHICH belongs to, is done to, or is done by a male or female person or thing that are speaking or writing this"
Example: "we, us, our"
$
HSp1bs Function=Suffix ; Form=Personal ; Person=First; Gender=Either gender; Number=Singular
Suffix (First Singular Either gender)
"WHICH belongs to, is done to, or is done by a male or female person or thing that are speaking or writing this"
Example: "we, us, our"
$
ASp1bp Function=Suffix ; Form=Personal ; Person=First; Gender=Either gender; Number=Plural
Suffix (First Plural Either gender)
"WHICH belongs to, is done to, or is done by male or female people or things that is speaking or writing this"
Example: "I, me, my"
$
HSp1bp Function=Suffix ; Form=Personal ; Person=First; Gender=Either gender; Number=Plural
Suffix (First Plural Either gender)
"WHICH belongs to, is done to, or is done by male or female people or things that is speaking or writing this"
Example: "I, me, my"
$
ASp2fs Function=Suffix ; Form=Personal ; Person=Second; Gender=Feminine; Number=Singular
Suffix (Second Singular Feminine)
"WHICH belongs to, is done to, or is done by a female person or thing being addressed"
Example: "you, your"
$
HSp2fs Function=Suffix ; Form=Personal ; Person=Second; Gender=Feminine; Number=Singular
Suffix (Second Singular Feminine)
"WHICH belongs to, is done to, or is done by a female person or thing being addressed"
Example: "you, your"
$
ASp2fp Function=Suffix ; Form=Personal ; Person=Second; Gender=Feminine; Number=Plural
Suffix (Second Plural Feminine)
"WHICH belongs to, is done to, or is done by female people or things being addressed"
Example: "you, your"
$
HSp2fp Function=Suffix ; Form=Personal ; Person=Second; Gender=Feminine; Number=Plural
Suffix (Second Plural Feminine)
"WHICH belongs to, is done to, or is done by female people or things being addressed"
Example: "you, your"
$
ASp2ms Function=Suffix ; Form=Personal ; Person=Second; Gender=Masculine; Number=Singular
Suffix (Second Singular Masculine)
"WHICH belongs to, is done to, or is done by a male person or thing being addressed"
Example: "you, your"
$
HSp2ms Function=Suffix ; Form=Personal ; Person=Second; Gender=Masculine; Number=Singular
Suffix (Second Singular Masculine)
"WHICH belongs to, is done to, or is done by a male person or thing being addressed"
Example: "you, your"
$
ASp2mp Function=Suffix ; Form=Personal ; Person=Second; Gender=Masculine; Number=Plural
Suffix (Second Plural Masculine)
"WHICH belongs to, is done to, or is done by male people or things being addressed"
Example: "you, your"
$
HSp2mp Function=Suffix ; Form=Personal ; Person=Second; Gender=Masculine; Number=Plural
Suffix (Second Plural Masculine)
"WHICH belongs to, is done to, or is done by male people or things being addressed"
Example: "you, your"
$
ASp3fs Function=Suffix ; Form=Personal ; Person=Third; Gender=Feminine; Number=Singular
Suffix (Third Singular Feminine)
"WHICH belongs to, is done to, or is done by a female person or thing being discussed"
Example: "they, them, their"
$
HSp3fs Function=Suffix ; Form=Personal ; Person=Third; Gender=Feminine; Number=Singular
Suffix (Third Singular Feminine)
"WHICH belongs to, is done to, or is done by a female person or thing being discussed"
Example: "they, them, their"
$
ASp3fp Function=Suffix ; Form=Personal ; Person=Third; Gender=Feminine; Number=Plural
Suffix (Third Plural Feminine)
"WHICH belongs to, is done to, or is done by female people or things being discussed"
Example: "she, her"
$
HSp3fp Function=Suffix ; Form=Personal ; Person=Third; Gender=Feminine; Number=Plural
Suffix (Third Plural Feminine)
"WHICH belongs to, is done to, or is done by female people or things being discussed"
Example: "she, her"
$
ASp3ms Function=Suffix ; Form=Personal ; Person=Third; Gender=Masculine; Number=Singular
Suffix (Third Singular Masculine)
"WHICH belongs to, is done to, or is done by a male person or thing being discussed"
Example: "they, them, their"
$
HSp3ms Function=Suffix ; Form=Personal ; Person=Third; Gender=Masculine; Number=Singular
Suffix (Third Singular Masculine)
"WHICH belongs to, is done to, or is done by a male person or thing being discussed"
Example: "they, them, their"
$
ASp3mp Function=Suffix ; Form=Personal ; Person=Third; Gender=Masculine; Number=Plural
Suffix (Third Plural Masculine)
"WHICH belongs to, is done to, or is done by male people or things being discussed"
Example: "he, him, his"
$
HSp3mp Function=Suffix ; Form=Personal ; Person=Third; Gender=Masculine; Number=Plural
Suffix (Third Plural Masculine)
"WHICH belongs to, is done to, or is done by male people or things being discussed"
Example: "he, him, his"
$
ANpf Function=Noun ; Form=Proper ; Gender=Feminine
Proper Noun (Feminine individual)
the NAME of a female individual
Example: Mary
$
HNpf Function=Noun ; Form=Proper ; Gender=Feminine
Proper Noun (Feminine individual)
the NAME of a female individual
Example: Mary
$
ANpl Function=Noun ; Form=Proper ; Gender=Location
Proper Noun (Location)
the NAME of a location
Example: Judea
$
HNpl Function=Noun ; Form=Proper ; Gender=Location
Proper Noun (Location)
the NAME of a location
Example: Judea
$
ANpm Function=Noun ; Form=Proper ; Gender=Masculine
Proper Noun (Masculine individual)
the NAME of a male individual
Example: Joseph
$
HNpm Function=Noun ; Form=Proper ; Gender=Masculine
Proper Noun (Masculine individual)
the NAME of a male individual
Example: Joseph
$
ANpt Function=Noun ; Form=Proper ; Gender=Title
Proper Noun (Title)
"the NAME of a deity, rank or month"
Example: Pharoah
$
HNpt Function=Noun ; Form=Proper ; Gender=Title
Proper Noun (Title)
"the NAME of a deity, rank or month"
Example: Pharoah
$
ANgbsa Function=Noun ; Form=Gentilic ; Gender=Either gender; Number=Singular; State=Absolute
"Noun (Gentilic, Singular Either gender, Absolute)"
a male or female member of a NAMED group
Example: a Jew
$
HNgbsa Function=Noun ; Form=Gentilic ; Gender=Either gender; Number=Singular; State=Absolute
"Noun (Gentilic, Singular Either gender, Absolute)"
a male or female member of a NAMED group
Example: a Jew
$
ANgbsd Function=Noun ; Form=Gentilic ; Gender=Either gender; Number=Singular; State=Definite
"Noun (Gentilic, Singular Either gender, Definite)"
an important a male or femaleperson or thing a NAMED group
Example: the Jew
$
HNgbsd Function=Noun ; Form=Gentilic ; Gender=Either gender; Number=Singular; State=Definite
"Noun (Gentilic, Singular Either gender, Definite)"
an important a male or femaleperson or thing a NAMED group
Example: the Jew
$
ANgfsa Function=Noun ; Form=Gentilic ; Gender=Feminine; Number=Singular; State=Absolute
"Noun (Gentilic, Singular Feminine, Absolute)"
a female member of a NAMED group
Example: a Jewess
$
HNgfsa Function=Noun ; Form=Gentilic ; Gender=Feminine; Number=Singular; State=Absolute
"Noun (Gentilic, Singular Feminine, Absolute)"
a female member of a NAMED group
Example: a Jewess
$
ANgfsc Function=Noun ; Form=Gentilic ; Gender=Feminine; Number=Singular; State=Construct
"Noun (Gentilic, Singular Feminine, Construct)"
"a female member of a NAMED group, combined with another term"
Example: son of a Jewess
$
HNgfsc Function=Noun ; Form=Gentilic ; Gender=Feminine; Number=Singular; State=Construct
"Noun (Gentilic, Singular Feminine, Construct)"
"a female member of a NAMED group, combined with another term"
Example: son of a Jewess
$
ANgfpa Function=Noun ; Form=Gentilic ; Gender=Feminine; Number=Plural; State=Absolute
"Noun (Gentilic, Plural Feminine, Absolute)"
female members of a NAMED group
Example: some Jewesses
$
HNgfpa Function=Noun ; Form=Gentilic ; Gender=Feminine; Number=Plural; State=Absolute
"Noun (Gentilic, Plural Feminine, Absolute)"
female members of a NAMED group
Example: some Jewesses
$
ANgmpa Function=Noun ; Form=Gentilic ; Gender=Masculine; Number=Plural; State=Absolute
"Noun (Gentilic, Plural Masculine, Absolute)"
male members of a NAMED group
Example: (males) Jews
$
HNgmpa Function=Noun ; Form=Gentilic ; Gender=Masculine; Number=Plural; State=Absolute
"Noun (Gentilic, Plural Masculine, Absolute)"
male members of a NAMED group
Example: (males) Jews
$
ANgmpc Function=Noun ; Form=Gentilic ; Gender=Masculine; Number=Plural; State=Construct
"Noun (Gentilic, Plural Masculine, Construct)"
"male members of a NAMED group, combined with another term"
Example: (males) sons of Jews
$
HNgmpc Function=Noun ; Form=Gentilic ; Gender=Masculine; Number=Plural; State=Construct
"Noun (Gentilic, Plural Masculine, Construct)"
"male members of a NAMED group, combined with another term"
Example: (males) sons of Jews
$
ANgmpd Function=Noun ; Form=Gentilic ; Gender=Masculine; Number=Plural; State=Definite
"Noun (Gentilic, Plural Masculine, Definite)"
important malemembers of a NAMED group
Example: (males) the Jews
$
HNgmpd Function=Noun ; Form=Gentilic ; Gender=Masculine; Number=Plural; State=Definite
"Noun (Gentilic, Plural Masculine, Definite)"
important malemembers of a NAMED group
Example: (males) the Jews
$
AAabsa Function=Adjective ; Form=Common ; Gender=Either gender; Number=Singular; State=Absolute
"Adjective (Singular Either gender, Absolute)"
a male or female person or thing in any way except numerical
Example: late (person/thing)
$
HAabsa Function=Adjective ; Form=Common ; Gender=Either gender; Number=Singular; State=Absolute
"Adjective (Singular Either gender, Absolute)"
a male or female person or thing in any way except numerical
Example: late (person/thing)
$
ANcbsa Function=Noun ; Form=Common ; Gender=Either gender; Number=Singular; State=Absolute
"Noun (Singular Either gender, Absolute)"
a reference to a male or female PERSON OR THING
Example: person
$
HNcbsa Function=Noun ; Form=Common ; Gender=Either gender; Number=Singular; State=Absolute
"Noun (Singular Either gender, Absolute)"
a reference to a male or female PERSON OR THING
Example: person
$
AAcbsa Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Singular; State=Absolute
"Numerical Adjective (Singular Either gender, Absolute)"
DESCRIBING the number of a male or female person or thing
Example: one (person/thing)
$
HAcbsa Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Singular; State=Absolute
"Numerical Adjective (Singular Either gender, Absolute)"
DESCRIBING the number of a male or female person or thing
Example: one (person/thing)
$
AAobsa Function=Adjective ; Form=Numerical position ; Gender=Either gender; Number=Singular; State=Absolute
"Numerical position Adjective (Singular Either gender, Absolute)"
DESCRIBING the numerical position of a male or female person or thing
Example: first (person/thing)
$
HAobsa Function=Adjective ; Form=Numerical position ; Gender=Either gender; Number=Singular; State=Absolute
"Numerical position Adjective (Singular Either gender, Absolute)"
DESCRIBING the numerical position of a male or female person or thing
Example: first (person/thing)
$
ANcbsc Function=Noun ; Form=Common ; Gender=Either gender; Number=Singular; State=Construct
"Noun (Singular Either gender, Construct)"
"a reference to a male or female PERSON OR THING, combined with another term"
Example: person (of Israel)
$
HNcbsc Function=Noun ; Form=Common ; Gender=Either gender; Number=Singular; State=Construct
"Noun (Singular Either gender, Construct)"
"a reference to a male or female PERSON OR THING, combined with another term"
Example: person (of Israel)
$
AAabsc Function=Adjective ; Form=Common ; Gender=Either gender; Number=Singular; State=Construct
"Adjective (Singular Either gender, Construct)"
"DESCRIBING a male or female person or thing, combined with another term"
Example: late (of Israel)
$
HAabsc Function=Adjective ; Form=Common ; Gender=Either gender; Number=Singular; State=Construct
"Adjective (Singular Either gender, Construct)"
"DESCRIBING a male or female person or thing, combined with another term"
Example: late (of Israel)
$
AAcbsc Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Singular; State=Construct
"Numerical Adjective (Singular Either gender, Construct)"
"DESCRIBING the number of a male or female person or thing, combined with another term"
Example: one (of Israel)
$
HAcbsc Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Singular; State=Construct
"Numerical Adjective (Singular Either gender, Construct)"
"DESCRIBING the number of a male or female person or thing, combined with another term"
Example: one (of Israel)
$
ANcbsd Function=Noun ; Form=Common ; Gender=Either gender; Number=Singular; State=Definite
"Noun (Singular Either gender, Definite)"
an important male or female PERSON OR THING
Example: the person
$
HNcbsd Function=Noun ; Form=Common ; Gender=Either gender; Number=Singular; State=Definite
"Noun (Singular Either gender, Definite)"
an important male or female PERSON OR THING
Example: the person
$
AAabsd Function=Adjective ; Form=Common ; Gender=Either gender; Number=Singular; State=Definite
"Adjective (Singular Either gender, Definite)"
an important a male or female person or thing
Example: the late (person/thing)
$
HAabsd Function=Adjective ; Form=Common ; Gender=Either gender; Number=Singular; State=Definite
"Adjective (Singular Either gender, Definite)"
an important a male or female person or thing
Example: the late (person/thing)
$
AAcbsd Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Singular; State=Definite
"Numerical Adjective (Singular Either gender, Definite)"
the number of an important male or female person or thing
Example: the one (person/thing)
$
HAcbsd Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Singular; State=Definite
"Numerical Adjective (Singular Either gender, Definite)"
the number of an important male or female person or thing
Example: the one (person/thing)
$
AAobsd Function=Adjective ; Form=Numerical position ; Gender=Either gender; Number=Singular; State=Definite
"Numerical position Adjective (Singular Either gender, Definite)"
the numerical position of an important male or female person or thing
Example: the first (person/thing)
$
HAobsd Function=Adjective ; Form=Numerical position ; Gender=Either gender; Number=Singular; State=Definite
"Numerical position Adjective (Singular Either gender, Definite)"
the numerical position of an important male or female person or thing
Example: the first (person/thing)
$
ANcfda Function=Noun ; Form=Common ; Gender=Feminine; Number=Dual; State=Absolute
"Noun (Dual Feminine, Absolute)"
a reference to two female people or things
Example: both late (females)
$
HNcfda Function=Noun ; Form=Common ; Gender=Feminine; Number=Dual; State=Absolute
"Noun (Dual Feminine, Absolute)"
a reference to two female people or things
Example: both late (females)
$
AAcfda Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Dual; State=Absolute
"Numerical Adjective (Dual Feminine, Absolute)"
DESCRIBING the number of two female people or things
Example: both two (females)
$
HAcfda Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Dual; State=Absolute
"Numerical Adjective (Dual Feminine, Absolute)"
DESCRIBING the number of two female people or things
Example: both two (females)
$
ANcfdc Function=Noun ; Form=Common ; Gender=Feminine; Number=Dual; State=Construct
"Noun (Dual Feminine, Construct)"
"a reference to two female PEOPLE OR THINGS, combined with another term"
Example: both late (women of Israel)
$
HNcfdc Function=Noun ; Form=Common ; Gender=Feminine; Number=Dual; State=Construct
"Noun (Dual Feminine, Construct)"
"a reference to two female PEOPLE OR THINGS, combined with another term"
Example: both late (women of Israel)
$
AAcfdc Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Dual; State=Construct
"Numerical Adjective (Dual Feminine, Construct)"
"DESCRIBING the number of two female people or things, combined with another term"
Example: both two (women of Israel)
$
HAcfdc Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Dual; State=Construct
"Numerical Adjective (Dual Feminine, Construct)"
"DESCRIBING the number of two female people or things, combined with another term"
Example: both two (women of Israel)
$
ANcbda Function=Noun ; Form=Common ; Gender=Either gender; Number=Dual; State=Absolute
"Noun (Dual Either gender, Absolute)"
a reference to two male or female PEOPLE OR THINGS
Example: both people
$
HNcbda Function=Noun ; Form=Common ; Gender=Either gender; Number=Dual; State=Absolute
"Noun (Dual Either gender, Absolute)"
a reference to two male or female PEOPLE OR THINGS
Example: both people
$
AAcbda Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Dual; State=Absolute
"Numerical Adjective (Dual Either gender, Absolute)"
DESCRIBING the number of two male or female people or things
Example: both late (people/things)
$
HAcbda Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Dual; State=Absolute
"Numerical Adjective (Dual Either gender, Absolute)"
DESCRIBING the number of two male or female people or things
Example: both late (people/things)
$
ANcbdc Function=Noun ; Form=Common ; Gender=Either gender; Number=Dual; State=Construct
"Noun (Dual Either gender, Construct)"
"a reference to two male or female PEOPLE OR THINGS, combined with another term"
Example: both people (of Israel)
$
HNcbdc Function=Noun ; Form=Common ; Gender=Either gender; Number=Dual; State=Construct
"Noun (Dual Either gender, Construct)"
"a reference to two male or female PEOPLE OR THINGS, combined with another term"
Example: both people (of Israel)
$
AAcbdc Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Dual; State=Construct
"Numerical Adjective (Dual Either gender, Construct)"
"DESCRIBING the number of two male or female people or things, combined with another term"
Example: both late (people of Israel)
$
HAcbdc Function=Adjective ; Form=Numerical ; Gender=Either gender; Number=Dual; State=Construct
"Numerical Adjective (Dual Either gender, Construct)"
"DESCRIBING the number of two male or female people or things, combined with another term"
Example: both late (people of Israel)
$
ANcbpc Function=Noun ; Form=Common ; Gender=Either gender; Number=Plural; State=Construct
"Noun (Plural Either gender, Construct)"
"a reference to male or female PEOPLE OR THINGS, combined with another term"
Example: people (of Israel)
$
HNcbpc Function=Noun ; Form=Common ; Gender=Either gender; Number=Plural; State=Construct
"Noun (Plural Either gender, Construct)"
"a reference to male or female PEOPLE OR THINGS, combined with another term"
Example: people (of Israel)
$
ANcfsa Function=Noun ; Form=Common ; Gender=Feminine; Number=Singular; State=Absolute
"Noun (Singular Feminine, Absolute)"
a reference to a female PERSON OR THING
Example: woman
$
HNcfsa Function=Noun ; Form=Common ; Gender=Feminine; Number=Singular; State=Absolute
"Noun (Singular Feminine, Absolute)"
a reference to a female PERSON OR THING
Example: woman
$
AAafsa Function=Adjective ; Form=Common ; Gender=Feminine; Number=Singular; State=Absolute
"Adjective (Singular Feminine, Absolute)"
DESCRIBING a female person or thing
Example: late (woman)
$
HAafsa Function=Adjective ; Form=Common ; Gender=Feminine; Number=Singular; State=Absolute
"Adjective (Singular Feminine, Absolute)"
DESCRIBING a female person or thing
Example: late (woman)
$
AAcfsa Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Singular; State=Absolute
"Numerical Adjective (Singular Feminine, Absolute)"
DESCRIBING the number of a female person or thing
Example: one (woman)
$
HAcfsa Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Singular; State=Absolute
"Numerical Adjective (Singular Feminine, Absolute)"
DESCRIBING the number of a female person or thing
Example: one (woman)
$
AAofsa Function=Adjective ; Form=Numerical position ; Gender=Feminine; Number=Singular; State=Absolute
"Numerical position Adjective (Singular Feminine, Absolute)"
DESCRIBING the numerical position of a female person or thing
Example: first (woman)
$
HAofsa Function=Adjective ; Form=Numerical position ; Gender=Feminine; Number=Singular; State=Absolute
"Numerical position Adjective (Singular Feminine, Absolute)"
DESCRIBING the numerical position of a female person or thing
Example: first (woman)
$
ANcfsc Function=Noun ; Form=Common ; Gender=Feminine; Number=Singular; State=Construct
"Noun (Singular Feminine, Construct)"
"a reference to a female PERSON OR THING, combined with another term"
Example: woman (of Israel)
$
HNcfsc Function=Noun ; Form=Common ; Gender=Feminine; Number=Singular; State=Construct
"Noun (Singular Feminine, Construct)"
"a reference to a female PERSON OR THING, combined with another term"
Example: woman (of Israel)
$
AAafsc Function=Adjective ; Form=Common ; Gender=Feminine; Number=Singular; State=Construct
"Adjective (Singular Feminine, Construct)"
"DESCRIBING a female person or thing, combined with another term"
Example: late (woman of Israel)
$
HAafsc Function=Adjective ; Form=Common ; Gender=Feminine; Number=Singular; State=Construct
"Adjective (Singular Feminine, Construct)"
"DESCRIBING a female person or thing, combined with another term"
Example: late (woman of Israel)
$
AAcfsc Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Singular; State=Construct
"Numerical Adjective (Singular Feminine, Construct)"
"DESCRIBING the number of a female person or thing, combined with another term"
Example: one (woman of Israel)
$
HAcfsc Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Singular; State=Construct
"Numerical Adjective (Singular Feminine, Construct)"
"DESCRIBING the number of a female person or thing, combined with another term"
Example: one (woman of Israel)
$
AAofsc Function=Adjective ; Form=Numerical position ; Gender=Feminine; Number=Singular; State=Construct
"Numerical position Adjective (Singular Feminine, Construct)"
"DESCRIBING the numerical position of a female person or thing, combined with another term"
Example: first (woman of Israel)
$
HAofsc Function=Adjective ; Form=Numerical position ; Gender=Feminine; Number=Singular; State=Construct
"Numerical position Adjective (Singular Feminine, Construct)"
"DESCRIBING the numerical position of a female person or thing, combined with another term"
Example: first (woman of Israel)
$
ANcfsd Function=Noun ; Form=Common ; Gender=Feminine; Number=Singular; State=Definite
"Noun (Singular Feminine, Definite)"
an important a female PERSON OR THING
Example: the woman
$
HNcfsd Function=Noun ; Form=Common ; Gender=Feminine; Number=Singular; State=Definite
"Noun (Singular Feminine, Definite)"
an important a female PERSON OR THING
Example: the woman
$
AAafsd Function=Adjective ; Form=Common ; Gender=Feminine; Number=Singular; State=Definite
"Adjective (Singular Feminine, Definite)"
an important a female person or thing
Example: the late (woman)
$
HAafsd Function=Adjective ; Form=Common ; Gender=Feminine; Number=Singular; State=Definite
"Adjective (Singular Feminine, Definite)"
an important a female person or thing
Example: the late (woman)
$
AAofsd Function=Adjective ; Form=Numerical position ; Gender=Feminine; Number=Singular; State=Definite
"Numerical position Adjective (Singular Feminine, Definite)"
the numerical position of an important female person or thing
Example: the first (woman)
$
HAofsd Function=Adjective ; Form=Numerical position ; Gender=Feminine; Number=Singular; State=Definite
"Numerical position Adjective (Singular Feminine, Definite)"
the numerical position of an important female person or thing
Example: the first (woman)
$
ANcfpa Function=Noun ; Form=Common ; Gender=Feminine; Number=Plural; State=Absolute
"Noun (Plural Feminine, Absolute)"
a reference to female PEOPLE OR THINGS
Example: women
$
HNcfpa Function=Noun ; Form=Common ; Gender=Feminine; Number=Plural; State=Absolute
"Noun (Plural Feminine, Absolute)"
a reference to female PEOPLE OR THINGS
Example: women
$
AAafpa Function=Adjective ; Form=Common ; Gender=Feminine; Number=Plural; State=Absolute
"Adjective (Plural Feminine, Absolute)"
DESCRIBING female people or things
Example: late (females)
$
HAafpa Function=Adjective ; Form=Common ; Gender=Feminine; Number=Plural; State=Absolute
"Adjective (Plural Feminine, Absolute)"
DESCRIBING female people or things
Example: late (females)
$
AAcfpa Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Plural; State=Absolute
"Numerical Adjective (Plural Feminine, Absolute)"
DESCRIBING the number of female people or things
Example: three (females)
$
HAcfpa Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Plural; State=Absolute
"Numerical Adjective (Plural Feminine, Absolute)"
DESCRIBING the number of female people or things
Example: three (females)
$
AAofpa Function=Adjective ; Form=Numerical position ; Gender=Feminine; Number=Plural; State=Absolute
"Numerical position Adjective (Plural Feminine, Absolute)"
DESCRIBING the numerical position of female people or things
Example: first (females)
$
HAofpa Function=Adjective ; Form=Numerical position ; Gender=Feminine; Number=Plural; State=Absolute
"Numerical position Adjective (Plural Feminine, Absolute)"
DESCRIBING the numerical position of female people or things
Example: first (females)
$
ANcfpc Function=Noun ; Form=Common ; Gender=Feminine; Number=Plural; State=Construct
"Noun (Plural Feminine, Construct)"
"a reference to female PEOPLE OR THINGS, combined with another term"
Example: women (of Israel)
$
HNcfpc Function=Noun ; Form=Common ; Gender=Feminine; Number=Plural; State=Construct
"Noun (Plural Feminine, Construct)"
"a reference to female PEOPLE OR THINGS, combined with another term"
Example: women (of Israel)
$
AAafpc Function=Adjective ; Form=Common ; Gender=Feminine; Number=Plural; State=Construct
"Adjective (Plural Feminine, Construct)"
"DESCRIBING female people or things, combined with another term"
Example: late (women of Israel)
$
HAafpc Function=Adjective ; Form=Common ; Gender=Feminine; Number=Plural; State=Construct
"Adjective (Plural Feminine, Construct)"
"DESCRIBING female people or things, combined with another term"
Example: late (women of Israel)
$
AAcfpc Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Plural; State=Construct
"Numerical Adjective (Plural Feminine, Construct)"
"DESCRIBING the number of female people or things, combined with another term"
Example: three (women of Israel)
$
HAcfpc Function=Adjective ; Form=Numerical ; Gender=Feminine; Number=Plural; State=Construct
"Numerical Adjective (Plural Feminine, Construct)"
"DESCRIBING the number of female people or things, combined with another term"
Example: three (women of Israel)
$
ANcfpd Function=Noun ; Form=Common ; Gender=Feminine; Number=Plural; State=Definite
"Noun (Plural Feminine, Definite)"
important female PEOPLE OR THINGS
Example: the women
$
HNcfpd Function=Noun ; Form=Common ; Gender=Feminine; Number=Plural; State=Definite
"Noun (Plural Feminine, Definite)"
important female PEOPLE OR THINGS
Example: the women
$
AAafpd Function=Adjective ; Form=Common ; Gender=Feminine; Number=Plural; State=Definite
"Adjective (Plural Feminine, Definite)"
important female people or things
Example: the late (females)
$
HAafpd Function=Adjective ; Form=Common ; Gender=Feminine; Number=Plural; State=Definite
"Adjective (Plural Feminine, Definite)"
important female people or things
Example: the late (females)
$
AAofpd Function=Adjective ; Form=Numerical position ; Gender=Feminine; Number=Plural; State=Definite
"Numerical position Adjective (Plural Feminine, Definite)"
the numerical position of important female people or things
Example: the first (females)
$
HAofpd Function=Adjective ; Form=Numerical position ; Gender=Feminine; Number=Plural; State=Definite
"Numerical position Adjective (Plural Feminine, Definite)"
the numerical position of important female people or things
Example: the first (females)
$
ANcmsa Function=Noun ; Form=Common ; Gender=Masculine; Number=Singular; State=Absolute
"Noun (Singular Masculine, Absolute)"
a reference to a male PERSON OR THING
Example: man
$
HNcmsa Function=Noun ; Form=Common ; Gender=Masculine; Number=Singular; State=Absolute
"Noun (Singular Masculine, Absolute)"
a reference to a male PERSON OR THING
Example: man
$
AAamsa Function=Adjective ; Form=Common ; Gender=Masculine; Number=Singular; State=Absolute
"Adjective (Singular Masculine, Absolute)"
DESCRIBING a male person or thing
Example: late (man)
$
HAamsa Function=Adjective ; Form=Common ; Gender=Masculine; Number=Singular; State=Absolute
"Adjective (Singular Masculine, Absolute)"
DESCRIBING a male person or thing
Example: late (man)
$
ANcmsc Function=Noun ; Form=Common ; Gender=Masculine; Number=Singular; State=Construct
"Noun (Singular Masculine, Construct)"
"a reference to a male PERSON OR THING, combined with another term"
Example: man (of Israel)
$
HNcmsc Function=Noun ; Form=Common ; Gender=Masculine; Number=Singular; State=Construct
"Noun (Singular Masculine, Construct)"
"a reference to a male PERSON OR THING, combined with another term"
Example: man (of Israel)
$
AAamsc Function=Adjective ; Form=Common ; Gender=Masculine; Number=Singular; State=Construct
"Adjective (Singular Masculine, Construct)"
"DESCRIBING a male person or thing, combined with another term"
Example: late (man of Israel)