-
Notifications
You must be signed in to change notification settings - Fork 0
/
bag_ava.lexd
13932 lines (13749 loc) · 527 KB
/
bag_ava.lexd
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
# ----------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------
# VERB PATTERNS
PATTERN Prateritum
(( agrInitial VerbStem[Idecl,B,AgrInit] ) | VerbStem[Idecl,B,-AgrInit] ) [:>] PratAdd[IBdecl]
(( agrInitial VerbStem[Idecl,A,AgrInit] ) | VerbStem[Idecl,A,-AgrInit] ) [:>] PratAdd[reg]
(( agrInitial VerbStem[IIdecl,B,AgrInit] ) | VerbStem[IIdecl,B,-AgrInit] ) [:>] PratAdd[IBdecl]
(( agrInitial VerbStem[IIdecl,B,AgrInit] ) | VerbStem[IIdecl,B,-AgrInit] ) [:>] PratAdd[IIBdecl]
(( agrInitial VerbStem[IIdecl,A,AgrInit] ) | VerbStem[IIdecl,A,-AgrInit] ) [:>] PratAdd[IAdecl]
(( agrInitial VerbStem[IIdecl,A,AgrInit] ) | VerbStem[IIdecl,A,-AgrInit] ) [:>] PratAdd[reg]
(( agrInitial VerbStem[IIIdecl,B,AgrInit] ) | VerbStem[IIIdecl,B,-AgrInit] ) [:>] PratAdd[IIIBdecl]
(( agrInitial VerbStem[IIIdecl,A,AgrInit] ) | VerbStem[IIIdecl,A,-AgrInit] ) [:>] PratAdd[reg]
(( agrInitial VerbStem[IVdecl,AgrInit] ) | VerbStem[IVdecl,-AgrInit] ) [:>] PratAdd[reg]
(( agrInitial VerbStem[Vdecl,AgrInit] ) | VerbStem[Vdecl,-AgrInit] ) [:>] PratAdd[reg]
PATTERN Imperfect
(( agrInitial VerbStem[IVdecl,AgrInit] ) | VerbStem[IVdecl,-AgrInit] ) [:>] ImperfAdd[IVdecl]
(( agrInitial VerbStem[IIdecl,AgrInit] ) | VerbStem[IIdecl,-AgrInit] ) [:>] ImperfAdd[IIdecl]
(( agrInitial VerbStem[Idecl,AgrInit] ) | VerbStem[Idecl,-AgrInit] ) [:>] ImperfAdd[Idecl]
(( agrInitial VerbStem[IIIdecl,AgrInit] ) | VerbStem[IIIdecl,-AgrInit] ) [:>] ImperfAdd[reg]
(( agrInitial VerbStem[Vdecl,AgrInit] ) | VerbStem[Vdecl,-AgrInit] ) [:>] ImperfAdd[reg]
PATTERN Potentialis
(( agrInitial VerbStem[IIIdecl,B,AgrInit] ) | VerbStem[IIIdecl,B,-AgrInit] ) [:>] PotAdd[IIIdecl]
(( agrInitial VerbStem[IIIdecl,B,AgrInit] ) | VerbStem[IIIdecl,B,-AgrInit] ) [:>] PotAdd[reg]
(( agrInitial VerbStem[IIIdecl,A,AgrInit] ) | VerbStem[IIIdecl,A,-AgrInit] ) [:>] PotAdd[IIIAdecl]
(( agrInitial VerbStem[IIIdecl,A,AgrInit] ) | VerbStem[IIIdecl,A,-AgrInit] ) [:>] PotAdd[Adecl]
(( agrInitial VerbStem[Vdecl,AgrInit] ) | VerbStem[Vdecl,-AgrInit] ) [:>] PotAdd[Vdecl]
(( agrInitial VerbStem[Idecl,B,AgrInit] ) | VerbStem[Idecl,B,-AgrInit] ) [:>] PotAdd[reg]
(( agrInitial VerbStem[Idecl,A,AgrInit] ) | VerbStem[Idecl,A,-AgrInit] ) [:>] PotAdd[Adecl]
(( agrInitial VerbStem[IIdecl,B,AgrInit] ) | VerbStem[IIdecl,B,-AgrInit] ) [:>] PotAdd[reg]
(( agrInitial VerbStem[IIdecl,A,AgrInit] ) | VerbStem[IIdecl,A,-AgrInit] ) [:>] PotAdd[Adecl]
(( agrInitial VerbStem[IVdecl,AgrInit] ) | VerbStem[IVdecl,-AgrInit] ) [:>] PotAdd[reg]
PATTERN Prohibitive
(( agrInitial VerbStem[IIIdecl,AgrInit] ) | VerbStem[IIIdecl,-AgrInit] ) [:>] ProhAdd[IIIdecl]
(( agrInitial VerbStem[Idecl,AgrInit] ) | VerbStem[Idecl,-AgrInit] ) [:>] ProhAdd[Idecl]
(( agrInitial VerbStem[IIdecl,AgrInit] ) | VerbStem[IIdecl,-AgrInit] ) [:>] ProhAdd[IIdecl]
(( agrInitial VerbStem[IVdecl,AgrInit] ) | VerbStem[IVdecl,-AgrInit] ) [:>] ProhAdd[IVdecl]
(( agrInitial VerbStem[Vdecl,AgrInit] ) | VerbStem[Vdecl,-AgrInit] ) [:>] ProhAdd[Vdecl]
PATTERN EmphStem
Imperfect EmphAffix
PATTERN PratPart # p. 91
Prateritum PartAffix[irreg]
PATTERN NegPratPart # p. 91
Prateritum negSuffix[pst] PartAffix[irreg]
PATTERN ImpPart # p. 92
Imperfect PartAffix[reg]
PATTERN FutPart # p. 94
Potentialis FutAffix[part] PartAffix[reg]
PATTERN FutNegPartI # pp. 95-96
Prohibitive negSuffix[pst] PartAffix[irreg]
PATTERN FutNegPartII # pp. 95-96
Prohibitive negSuffix[pst] CvbAffix[negFut] FutAffix[part] PartAffix[reg]
PATTERN Masdar # pp. 90-91
Prateritum MasdarEnd[reg]
PATTERN NegMasdar # p. 91
Prateritum negSuffix[pst] MasdarEnd[neg]
PATTERN EmphNegMasdar # p. 95
EmphStem negSuffix[pst] MasdarEnd[neg]
PATTERN EmphNegPratPart # p. 95
EmphStem negSuffix[pst] PartAffix[irreg]
PATTERN EmphFutNegPartI # p. 95
EmphStem ProhAdd[IIIdecl] negSuffix[pst] PartAffix[irreg]
PATTERN EmphFutNegPartII # p. 95
EmphStem ProhAdd[IIIdecl] negSuffix[pst] CvbAffix[negFut] FutAffix[part] PartAffix[reg]
PATTERN IrrPart # p. 99
VerbCopula [<pp>:]
IrrPrtStem [<pp>:]
PATTERN AllMasdars
Masdar
NegMasdar
EmphNegMasdar
PATTERN AllParticiples
PratPart
NegPratPart
ImpPart
FutPart
FutNegPartI
FutNegPartII
EmphNegPratPart
EmphNegPratPart
EmphFutNegPartI
EmphFutNegPartII
IrrPart
# ----------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------
# NOUN PATTERNS
PATTERN aPlusHpl
hplPlOblVowel[preA] PlOblMarker[hpl]
# patterns to implement variations of the Vbi marker, see Kibrik 133
PATTERN AbiPl
biPlVowel[Abi] PlMarker[plBi]
PATTERN UbiPl
biPlVowel[Ubi] PlMarker[plBi]
PATTERN IbiPl
biPlVowel[Ibi] PlMarker[plBi]
PATTERN EbiPl
biPlVowel[Ebi] PlMarker[plBi]
PATTERN JabiPl
biPlVowel[Jabi] PlMarker[plBi]
PATTERN NoVbiPl
biPlVowel[noVbi] PlMarker[plBi]
# ----------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------
# NUMERAL PATTERNS
PATTERN decLinks
decimal decComp
PATTERN decimal
rootDec [<*>:] dec
PATTERN centi
rootCent [<*>:] cent
PATTERN milli
rootCent [<*>:] mil
PATTERN singles
rootInit[DaNumber] end[DaNumber]
rootInit[RaNumber] end[RaNumber] # ра, Кибрик et al. С. 155
PATTERN DaSuffixedNums
decimal end
milli end
centi end
PATTERN NomNumbersAgr
rootOne[norm] ( OblAdjSingular[OblSu] | OblAdjPlural[OblPlLu] )
singles ( OblAdjSingular[OblSu] | OblAdjPlural[OblPlLu] )
DaSuffixedNums ( OblAdjSingular[OblSu] | OblAdjPlural[OblPlLu] )
PATTERN NomNumbersNonAgr
rootOne[norm] ( OblAdjSingular[-OblSu,-OblPlLu] | OblAdjPlural[OblPlLi] )
singles OblAdjSingular[OblFLi]
singles OblAdjSingular[OblNLi]
singles OblAdjPlural[OblPlLi]
DaSuffixedNums OblAdjSingular[OblLi]
DaSuffixedNums OblAdjSingular[OblNLi]
DaSuffixedNums OblAdjPlural[OblPlLi]
PATTERN OrdNumbersSer1
singles ordinalOpt? ordinal[ser1]
decLinks singles ordinalOpt? ordinal[ser1]
DaSuffixedNums ordinalOpt? ordinal[ser1]
PATTERN OrdNumbersSer2
singles ordinalOpt ordinal[ser2]
decLinks singles ordinalOpt ordinal[ser2]
DaSuffixedNums ordinalOpt ordinal[ser2]
# ----------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------
# CASE SYSTEM PATTERNS
PATTERN OblAdjAgr
agrFinal[Msg] OblSingular[OblSu]
agrFinal[Hpl] OblPlural[OblPlLu]
PATTERN OblAdjNonAgr
agrFinal[Fsg] OblSingular[OblLi]
agrFinal[Nsg] OblSingular[OblLi]
agrFinal[Npl] OblPlural[OblPlLi]
PATTERN OblAdjDative
agrFinal[Msg] DatExcMin[OblSu]
agrFinal[Fsg] DatExcMin[OblLi]
agrFinal[Nsg] DatExcMin[OblLi]
agrFinal[Hpl] DatExcMin[OblPlLu]
agrFinal[Npl] DatExcMin[OblLi]
PATTERN OblAdjSup
agrFinal[Msg] SupExcMin[OblSu] directCase
agrFinal[Fsg] SupExcMin[OblLi] directCase
agrFinal[Nsg] SupExcMin[OblLi] directCase
agrFinal[Hpl] SupExcMin[OblPlLu] directCase
agrFinal[Npl] SupExcMin[OblLi] directCase
PATTERN LiFusion
SupExceptions[OblFLi]
SupExceptions[OblNLi]
DatExceptions[OblFLi]
DatExceptions[OblNLi]
PATTERN CasesGenAgr
CaseMain[ErgR,-nullNom]
genitiveCase[GenAgr]
locMain directCase
PATTERN CasesGenNonAgr
CaseMain[ErgR,-nullNom]
genitiveCase[-GenAgr]
locMain directCase
PATTERN CasesAll
CaseMain[ErgR,-nullNom]
genitiveCase
locMain directCase
PATTERN AddCasesMsg
CaseMain[nullNom]
DatExcMin[OblSu]
SupExcMin[OblSu] directCase
PATTERN AddCasesFNsg
CaseMain[nullNom]
DatExcMin[OblLi]
SupExcMin[OblLi] directCase
PATTERN AddCasesHpl
CaseMain[nullNom]
DatExcMin[OblPlLu]
SupExcMin[OblPlLu] directCase
PATTERN AddCasesNpl
CaseMain[nullNom]
DatExcMin[OblLi]
SupExcMin[OblLi] directCase
# ----------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------
# MISCELLANEOUS PATTERNS
PATTERN PronModifiers
NegPronounSuffix
IndefPronounSuffix
PATTERN UCl # = Universal clitics
PostClitic[all]
RestrParticle
ModalParticle
UQparticle
QuestParticle PostClitic[all]?
negSuffix[pst] QuestParticle? PostClitic[all]?
PATTERN NCl # = Nominal clitics
PostClitic
RestrParticle
ModalParticle
UQparticle
QuestParticle PostClitic?
negSuffix[pst] QuestParticle? PostClitic?
# ----------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------
# MAIN PATTERNS
# ----------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------
PATTERNS
# ----------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------
# NUMBERS
#
rootOne[norm] agrFinal[-Hpl,-Npl] UCl?
singles UCl?
decimal UCl? # аца
centi UCl? # бешен
DaSuffixedNums UCl?
#
#forms with links
#
decLinks UCl? # ацал, link in 11-19
rootDec conjDec UCl? # ац, link in 21-29
centi conjCentMil UCl?
milli conjCentMil UCl? # links in 101-199, 10001-1999
#
#nominalized cardinal numbers
#
singles DatExceptions[-OblPlRu,-OblPlDu] NCl?
DaSuffixedNums DatExceptions[-OblPlRu,-OblPlDu] NCl?
NomNumbersAgr CasesGenAgr NCl?
NomNumbersNonAgr CasesGenNonAgr NCl?
#
#collective numbers
#
singles col
decimal col
DaSuffixedNums col
#
#ordinal numbers
#
rootOne[ord]
OrdNumbersSer1 agrFinal
OrdNumbersSer2
#
#nominalized ordinals
#
OrdNumbersSer1 agrFinal CaseMain[nullNom] NCl?
OrdNumbersSer1 OblAdjAgr CasesGenAgr NCl?
OrdNumbersSer1 OblAdjNonAgr CasesGenNonAgr NCl?
OrdNumbersSer1 OblAdjDative NCl?
OrdNumbersSer1 OblAdjSup NCl?
#
#distributional numbers
#
rootOne[red] agrFinal # цецеб = 1
rootCent centDist [<*>:] cent end[DaNumber]?
rootCent milDist [<*>:] mil end[DaNumber]?
decDist [:гь]? dec ( end[DaNumber] | end[RaNumber] ) # гьабдигьабда = 10
2xRootInit[excl] # 2
2xRootInit[-excl,DaNumber] end[DaNumber]
2xRootInit[-excl,RaNumber] end[RaNumber]
2xRootDec [<*>:] dec end?
#
# multiplicative numerals
#
rootOne[norm] multSuffix[norm]
rootInit multSuffix[norm]
rootOne[norm] multSuffix[alt] end
rootInit multSuffix[alt] end
decimal multSuffix[alt] end
milli multSuffix[alt] end
centi multSuffix[alt] end
DaSuffixedNums multSuffix[large]
# ----------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------
# ADJECTIVE
agrInitial adjNoDeclAgr UCl?
adjNoDecl UCl?
#adjective agreement
#
agrInitial adjDouble agrFinal UCl? # can agree with 2 heads, see Kibrik et al.
adjSingle agrFinal UCl?
#
#nominalized adjectives
#double
agrInitial[Msg] adjDouble agrFinal[Msg] AddCasesMsg NCl?
agrInitial[Fsg] adjDouble agrFinal[Fsg] AddCasesFNsg NCl?
agrInitial[Nsg] adjDouble agrFinal[Nsg] AddCasesFNsg NCl?
agrInitial[Hpl] adjDouble agrFinal[Hpl] AddCasesHpl NCl?
agrInitial[Npl] adjDouble agrFinal[Npl] AddCasesNpl NCl?
agrInitial[Msg] adjDouble agrFinal[Msg] OblSingular[OblSu] CasesGenAgr NCl?
agrInitial[Fsg] adjDouble agrFinal[Fsg] OblSingular[OblLi] CasesGenNonAgr NCl?
agrInitial[Nsg] adjDouble agrFinal[Nsg] OblSingular[OblLi] CasesGenNonAgr NCl?
agrInitial[Hpl] adjDouble agrFinal[Hpl] OblPlural[OblPlLu] CasesGenAgr NCl?
agrInitial[Npl] adjDouble agrFinal[Npl] OblPlural[OblPlLi] CasesGenNonAgr NCl?
#single
adjSingle agrFinal CaseMain[nullNom] NCl?
adjSingle OblAdjAgr CasesGenAgr NCl?
adjSingle OblAdjNonAgr CasesGenNonAgr NCl?
adjSingle OblAdjDative NCl?
adjSingle OblAdjSup NCl?
# ----------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------
# PRONOUN
#personal pronouns
#
PerPronounStems genitiveCase[GenAgr] NCl?
PerPronounStems[PrExc] [<obl>:] CaseMain[ErgR,-RegErg,-nullNom] NCl?
PerPronounStems[PrExc] [<obl>:] DatExcMin[pron] NCl?
PerPronounStems[PrExc] [<obl>:] SupExcMin[pron] NCl?
PerPronounStems[-PrExc] CaseMain[nullNom] NCl?
PerPronounStems[-PrExc] [<obl>:] CaseMain[ErgR,-nullNom] NCl?
PerPronounExc NCl?
PerPronounStems [<obl>:] locMain directCase NCl?
#
#demonstrative pronouns
#
DemPronoun agrFinal CaseMain[nullNom] NCl?
#
#adverbial pronouns
#
DemPronoun [:гьи]? agrMiddle AdvPronAffix
# vocab plurals
DemPronoun agrFinal[Npl] OblSingular[OblU] ( CaseMain[ErgR,-nullNom] | genitiveCase[-GenAgr] ) NCl? # o-r-u , see vocab, 580
DemPronoun agrFinal[Npl] OblSingular[OblU] locMain directCase NCl?
DemPronoun agrFinal[Hpl] OblPlural[OblPlLu] ( CaseMain[ErgR,-nullNom] | genitiveCase[GenAgr] ) NCl? # o-ba-lu- , see vocab, 580
DemPronoun agrFinal[Hpl] OblPlural[OblPlLu] locMain directCase NCl?
# Kibrik plurals
DemPronoun OblAdjPlural[OblPlRu] ( CaseMain[ErgR,-nullNom] | genitiveCase[GenAgr] ) NCl?
DemPronoun ( DatExceptions[OblPlRu] | SupExceptions[OblPlRu] ) NCl?
DemPronoun OblAdjPlural[OblPlRi] ( CaseMain[ErgR,-nullNom] | genitiveCase[-GenAgr] ) NCl?
DemPronoun ( OblAdjPlural[OblPlRu] | OblAdjPlural[OblPlRi] ) locMain directCase NCl?
# F / N sg
DemPronoun ( OblAdjSingular[OblFLi] | OblAdjSingular[OblNLi] ) ( CaseMain[ErgR,-nullNom] | genitiveCase[-GenAgr] ) NCl?
DemPronoun LiFusion NCl?
DemPronoun ( OblAdjSingular[OblFLi] | OblAdjSingular[OblNLi] ) locMain directCase NCl?
# M sg
DemPronoun OblAdjSingular[OblSu] ( CaseMain[ErgR,-nullNom] | genitiveCase[GenAgr] ) NCl?
DemPronoun ( DatExceptions[OblSu] | SupExceptions[OblSu] ) NCl?
DemPronoun OblAdjSingular[OblSu] locMain directCase NCl?
#
#logophoric pronouns + reflexive pronouns, see Kibrik et al. 162-163
#
LogPronoun[nom] agrFinal CaseMain[nullNom] RefSuffix? NCl?
# F / N sg
LogPronoun[obl] ( OblAdjSingular[OblFLi] | OblAdjSingular[OblNLi] ) CasesGenNonAgr RefSuffix? NCl?
LogPronoun[obl] LiFusion RefSuffix? NCl?
# M sg
LogPronoun[obl] OblAdjSingular[OblSu] CasesGenAgr RefSuffix? NCl?
LogPronoun[obl] ( DatExceptions[OblSu] | SupExceptions[OblSu] ) RefSuffix? NCl?
# plurals
LogPronoun[obl] OblAdjPlural[OblPlDu] CasesGenAgr RefSuffix? NCl?
LogPronoun[obl] ( DatExceptions[OblPlDu] | SupExceptions[OblPlDu] ) RefSuffix? NCl?
LogPronoun[obl] OblAdjPlural[OblPlDiri] CasesGenNonAgr RefSuffix? NCl?
#
#interrogative & negative pronouns
#
InterPronounExc PronModifiers? # nominative, see Kibrik et al, 164 & vocab, 580
InterPronoun[H] CasesGenAgr PronModifiers? NCl?
InterPronoun[H] DatExcMin[pron] PronModifiers? NCl?
InterPronoun[N] OblSingular[OblLi] CasesGenNonAgr PronModifiers? NCl?
#which pronoun
WhichPronoun ( agrInitial[Msg] | ( agrInitial[Fsg] | agrInitial[Nsg] ) ) WhichInfix[sg] CaseMain[nullNom] PronModifiers? NCl?
WhichPronoun ( agrInitial[Hpl] | agrInitial[Npl] ) WhichInfix[pl] CaseMain[nullNom] PronModifiers? NCl?
WhichPronoun agrInitial[Msg] WhichInfix[sg] OblSingular[OblSu] CasesGenAgr PronModifiers? NCl?
WhichPronoun agrInitial[Fsg] WhichInfix[sg] OblSingular[OblLi] CasesGenNonAgr PronModifiers? NCl?
WhichPronoun agrInitial[Nsg] WhichInfix[sg] OblSingular[OblLi] CasesGenNonAgr PronModifiers? NCl?
WhichPronoun agrInitial[Hpl] WhichInfix[pl] OblPlural[OblPlU] CasesGenAgr PronModifiers? NCl?
WhichPronoun agrInitial[Npl] WhichInfix[pl] OblPlural[OblPlU] CasesGenNonAgr PronModifiers? NCl?
WhichPronoun agrInitial[Msg] WhichInfix[sg] ( DatExcMin[-OblPlLu,-OblPlAlu,-pron] | ( SupExcMin[-OblPlLu,-OblPlAlu] directCase ) )
#number interrogative
NumPronoun CaseMain[nullNom] PronModifiers? NCl?
NumPronoun OblAdjSingular[OblSu] CasesGenAgr PronModifiers? NCl?
NumPronoun ( OblAdjSingular[OblFLi] | OblAdjSingular[OblNLi] ) CasesGenNonAgr PronModifiers? NCl?
NumPronoun OblAdjPlural[OblPlAlu] CasesGenAgr PronModifiers? NCl?
NumPronoun ( DatExceptions[OblSu] | ( DatExceptions[OblFLi] | DatExceptions[OblNLi] ) ) PronModifiers? NCl?
NumPronoun ( SupExceptions[OblSu] | ( SupExceptions[OblFLi] | SupExceptions[OblNLi] ) ) PronModifiers? NCl?
NumPronounExc[sup] directCase NCl?
NumPronounExc[-sup] NCl?
#"Each" pronoun
EachPronoun agrMiddle[Msg] EachInfix agrMiddle[Msg] AddCasesMsg NCl?
EachPronoun agrMiddle[Fsg] EachInfix agrMiddle[Fsg] AddCasesFNsg NCl?
EachPronoun agrMiddle[Nsg] EachInfix agrMiddle[Nsg] AddCasesFNsg NCl?
EachPronoun agrMiddle[Msg] EachInfix agrMiddle[Msg] OblSingular[OblSu] CasesGenAgr NCl?
EachPronoun agrMiddle[Fsg] EachInfix agrMiddle[Fsg] OblSingular[OblLi] CasesGenNonAgr NCl?
EachPronoun agrMiddle[Nsg] EachInfix agrMiddle[Nsg] OblSingular[OblLi] CasesGenNonAgr NCl?
#Interrogative adjective pronoun
InterAdjPronoun agrFinal[Msg] AddCasesMsg NCl?
InterAdjPronoun ( agrFinal[Fsg] | agrFinal[Nsg] ) AddCasesFNsg NCl?
InterAdjPronoun agrFinal[Msg] OblSingular[OblSu] CasesGenAgr NCl?
InterAdjPronoun ( agrFinal[Fsg] | agrFinal[Nsg] ) OblSingular[OblLi] CasesGenNonAgr NCl?
InterAdjPronoun agrFinal[Hpl] AddCasesHpl NCl?
InterAdjPronoun agrFinal[Npl] AddCasesNpl NCl?
InterAdjPronoun agrFinal[Hpl] OblPlural[OblPlLu] CasesGenAgr NCl?
InterAdjPronoun agrFinal[Npl] OblPlural[OblPlLi] CasesGenNonAgr NCl?
#indef pronoun ser. #2
InterPronounExc[Hsg] ( AltIndefPronounSuffix[Msg] | AltIndefPronounSuffix[Fsg] ) NCl?
InterPronounExc[Nsg] AltIndefPronounSuffix[Nsg] NCl?
InterPronounExc[Hsg] AltIndefPronounSuffix[Hpl] NCl?
InterPronounExc[Npl] AltIndefPronounSuffix[Npl] NCl?
InterPronoun[H] CasesGenAgr ( AltIndefPronounSuffix[Hpl] | ( AltIndefPronounSuffix[Msg] | AltIndefPronounSuffix[Fsg] ) ) NCl?
InterPronoun[H] DatExcMin[pron] ( AltIndefPronounSuffix[Hpl] | ( AltIndefPronounSuffix[Msg] | AltIndefPronounSuffix[Fsg] ) ) NCl?
InterPronoun[H] SupExcMin[pron] directCase ( AltIndefPronounSuffix[Hpl] | ( AltIndefPronounSuffix[Msg] | AltIndefPronounSuffix[Fsg] ) ) NCl?
InterPronoun[N] OblSingular[OblNLi] CasesGenNonAgr AltIndefPronounSuffix[Nsg] NCl?
InterPronoun[N] ( DatExcMin[OblLi] | ( SupExcMin[OblLi] directCase ) ) AltIndefPronounSuffix[Nsg] NCl?
InterPronoun[N] OblPlural[OblPlLi] CasesGenNonAgr AltIndefPronounSuffix[Npl] NCl?
InterPronoun[N] ( DatExcMin[OblLi] | ( SupExcMin[OblLi] directCase ) ) AltIndefPronounSuffix[Npl] NCl?
#anypronoun
AnyPronoun agrFinal[Msg] AddCasesMsg NCl?
AnyPronoun ( agrFinal[Fsg] | agrFinal[Nsg] ) AddCasesFNsg NCl?
AnyPronoun agrFinal[Msg] OblSingular[OblSu] CasesGenAgr NCl?
AnyPronoun ( agrFinal[Fsg] | agrFinal[Nsg] ) OblSingular[OblLi] CasesGenNonAgr NCl?
AnyPronoun agrFinal[Hpl] AddCasesHpl NCl?
AnyPronoun agrFinal[Npl] AddCasesNpl NCl?
AnyPronoun agrFinal[Hpl] OblPlural[OblPlLu] CasesGenAgr NCl?
AnyPronoun agrFinal[Npl] OblPlural[OblPlLi] CasesGenNonAgr NCl?
#allpronoun
agrInitial[Msg] AllPronoun agrMiddle[Msg] AddCasesMsg DaPostfix
agrInitial[Fsg] AllPronoun agrMiddle[Fsg] AddCasesFNsg DaPostfix
agrInitial[Nsg] AllPronoun agrMiddle[Nsg] AddCasesFNsg DaPostfix
agrInitial[Hpl] AllPronoun agrMiddle[Hpl] AddCasesHpl DaPostfix
agrInitial[Nsg] AllPronoun agrMiddle[Npl] AddCasesNpl DaPostfix
agrInitial[Msg] AllPronoun agrMiddle[Msg] OblSingular[OblSu] CasesGenAgr DaPostfix
agrInitial[Fsg] AllPronoun agrMiddle[Fsg] OblSingular[OblLi] CasesGenNonAgr DaPostfix
agrInitial[Nsg] AllPronoun agrMiddle[Nsg] OblSingular[OblLi] CasesGenNonAgr DaPostfix
agrInitial[Hpl] AllPronoun agrMiddle[Hpl] OblSingular[OblSu] CasesGenAgr DaPostfix
agrInitial[Nsg] AllPronoun agrMiddle[Npl] OblPlural[OblPlLi] CasesGenNonAgr DaPostfix
#universal ser. #3, see Kibrik et al. 166
InterPronounExc[Hsg] IndefPronounSuffix ( AddCasesMsg | AddCasesFNsg ) NCl?
InterPronounExc[Hsg] IndefPronounSuffix OblAdjSingular[OblSu] CasesGenAgr NCl?
InterPronounExc[Hsg] IndefPronounSuffix OblAdjSingular[OblLi] CasesGenNonAgr NCl?
InterPronounExc[Nsg] IndefPronounSuffix ( OblSingular[OblLi] CasesGenNonAgr | AddCasesFNsg ) NCl?
InterPronounExc[Npl] IndefPronounSuffix ( OblAdjPlural[OblPlLi] CasesGenNonAgr | AddCasesNpl ) NCl?
#Misc. pronouns
HowMuchPronoun agrFinal NCl?
HowPronoun ( AltIndefPronounSuffix | PronModifiers )? NCl?
WhenPronoun ( AltIndefPronounSuffix | PronModifiers )? NCl?
NumPronoun ( AltIndefPronounSuffix | PronModifiers )? NCl?
LocPronoun ( AltIndefPronounSuffix | PronModifiers )? NCl?
InterAdjPronoun agrMiddle ( AltIndefPronounSuffix | PronModifiers )? NCl?
# ----------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------
# NOUN
#sg absolutives
NounAbs CaseMain[nullNom] NCl?
#sg obliques
NounOblSame OblSingular[OblZero] CasesAll NCl?
NounOblSu OblSingular[OblSu] CasesGenAgr NCl?
NounOblSu AddCasesMsg NCl?
NounOblLi OblSingular[OblLi] CasesGenNonAgr NCl?
NounOblLi AddCasesFNsg NCl?
NounOblI OblSingular[OblI] CasesAll NCl?
NounOblA OblSingular[OblA] CasesAll NCl?
NounOblU OblSingular[OblU] CasesAll NCl?
NounOblE OblSingular[OblE] CasesAll NCl?
NounOblSon OblSingular[OblZero] CasesAll NCl?
NounOblIrreg OblSingular[OblZero] CasesAll NCl?
#absolutives
NounPlBi NoVbiPl CaseMain[nullNom] NCl?
NounPlAbi AbiPl CaseMain[nullNom] NCl?
NounPlIbi IbiPl CaseMain[nullNom] NCl?
NounPlUbi UbiPl CaseMain[nullNom] NCl?
NounPlEbi EbiPl CaseMain[nullNom] NCl?
NounPlJabi JabiPl CaseMain[nullNom] NCl?
NounPlMi PlMarker[plMi] CaseMain[nullNom] NCl?
NounPlZabi PlMarker[plZabi] CaseMain[nullNom] NCl? # zabi adi & ari only used in animate naouns, see Kibrik 132
NounPlBadi PlMarker[plBadi] CaseMain[nullNom] NCl?
NounPlAdi PlMarker[plAdi] CaseMain[nullNom] NCl?
NounPlAri PlMarker[plAri] CaseMain[nullNom] NCl?
NounPlAli PlMarker[plAli] CaseMain[nullNom] NCl?
NounPlDari PlMarker[plDari] CaseMain[nullNom] NCl?
NounPlDi PlMarker[plDi] CaseMain[nullNom] NCl?
NounPlI PlMarker[plI] CaseMain[nullNom] NCl?
NounPlA PlMarker[plA] CaseMain[nullNom] NCl?
NounPlIrreg NCl?
#hpl obliques
NounPlAbi[hpl] AbiPl aPlusHpl ( AddCasesHpl | CasesGenAgr ) NCl?
NounPlUbi[hpl] UbiPl aPlusHpl ( AddCasesHpl | CasesGenAgr ) NCl?
NounPlIbi[hpl] IbiPl aPlusHpl ( AddCasesHpl | CasesGenAgr ) NCl?
NounPlEbi[hpl] EbiPl aPlusHpl ( AddCasesHpl | CasesGenAgr ) NCl?
NounPlJabi[hpl] JabiPl aPlusHpl ( AddCasesHpl | CasesGenAgr ) NCl?
NounPlBi[hpl] NoVbiPl aPlusHpl ( AddCasesHpl | CasesGenAgr ) NCl?
#
NounPlZabi PlMarker[plZabi] aPlusHpl ( AddCasesHpl | CasesGenAgr ) NCl? #zabi adi & ari only used in animate nouns, see Kibrik 132
NounPlAdi PlMarker[plAdi] PlOblMarker[hpl] ( AddCasesHpl | CasesGenAgr ) NCl?
NounPlAri PlMarker[plAri] OblPlural[OblPlU] ( AddCasesHpl | CasesGenAgr ) NCl?
#
NounPlDari[hpl] PlMarker[plDari] aPlusHpl ( AddCasesHpl | CasesGenAgr ) NCl?
NounPlBadi[hpl] PlMarker[plBadi] PlOblMarker[hpl] ( AddCasesHpl | CasesGenAgr ) NCl?
NounPlDi[hpl] PlMarker[plDi] PlOblMarker[hpl] ( AddCasesHpl | CasesGenAgr ) NCl?
NounPlI[hpl] PlMarker[plI] aPlusHpl ( AddCasesHpl | CasesGenAgr ) NCl?
NounPlA[hpl] PlMarker[plA] aPlusHpl ( AddCasesHpl | CasesGenAgr ) NCl?
#npl obliques
NounPlAbi[npl] AbiPl PlOblMarker[npl,plBi] CasesGenNonAgr NCl?
NounPlUbi[npl] UbiPl PlOblMarker[npl,plBi] CasesGenNonAgr NCl?
NounPlIbi[npl] IbiPl PlOblMarker[npl,plBi] CasesGenNonAgr NCl?
NounPlEbi[npl] EbiPl PlOblMarker[npl,plBi] CasesGenNonAgr NCl?
NounPlJabi[npl] JabiPl PlOblMarker[npl,plBi] CasesGenNonAgr NCl?
NounPlBi[npl] NoVbiPl PlOblMarker[npl,plBi] CasesGenNonAgr NCl?
NounPlMi[npl] PlMarker[plMi] PlOblMarker[npl,plBi] CasesGenNonAgr NCl?
NounPlAli[npl] PlMarker[plAli] PlOblMarker[npl,plBi] CasesGenNonAgr NCl?
NounPlDari[npl] PlMarker[plDari] PlOblMarker[npl,plDari] CasesGenNonAgr NCl?
NounPlDi[npl] PlMarker[plDi] PlOblMarker[npl,plBi] CasesGenNonAgr NCl?
NounPlI[npl] PlMarker[plI] PlOblMarker[npl,plI] CasesGenNonAgr NCl?
# plural "a" gets replaced by "e" in oblique forms
NounPlA[npl] PlMarker[plA] PlOblMarker[npl,plA] CasesGenNonAgr NCl?
# exclusions "horse" and "goat", see Kibrik 138.
NounPlI[excl] PlMarker[plI] PlOblMarker[npl,plA] CasesGenNonAgr NCl?
NounPlIrreg PlOblMarker[npl,plI] CasesGenNonAgr NCl?
# ----------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------
# VERB
VerbCopula UCl?
IrrCvb UCl?
#
# inflective verb derivatives
#
AllMasdars AddCasesFNsg NCl?
AllMasdars OblSingular[OblA] CasesGenNonAgr NCl?
AllMasdars OblSingular[OblI] CasesGenNonAgr NCl?
AllMasdars OblSingular[OblLi] CasesGenNonAgr NCl?
AllParticiples agrFinal ( UCl | TimeMarker )?
# case forms
AllParticiples agrFinal CaseMain[nullNom] NCl?
AllParticiples OblAdjAgr CasesGenAgr NCl?
AllParticiples OblAdjNonAgr CasesGenNonAgr NCl?
AllParticiples OblAdjDative NCl?
AllParticiples OblAdjSup NCl?
#
## PRATERITUM DERIVATIVES
#
# ! prateritum, p. 91
Prateritum UCl?
# ! negative prateritum, p. 91
Prateritum negSuffix[pst] UCl?
# ! Prateritum converb, p. 91
Prateritum agrVerb CvbEnd[past] UCl?
# ! negative Prateritum converb, p. 91
Prateritum negSuffix[pst] CvbAffix[negCvb] agrVerb CvbEnd[past] UCl?
# ! Irrealis, p. 91
Prateritum IrrAffix
# ! posterior converb, pp. 90-91
Prateritum CvbEnd[post] UCl?
Potentialis CvbEnd[post] UCl?
# ! limitative converb, pp. 90-91
Prateritum CvbEnd[lim] UCl?
Potentialis CvbEnd[lim] UCl?
# ! I imperative for intransitive, p. 97
Prateritum ImperAffix[ImpI] UCl?
# ! II imperative for intransitive, p. 97
Prateritum ImperAffix[ImpII] UCl?
# Positive Optative for intransitive, p. 97
Prateritum ImperAffix[ImpI] OptEnd UCl?
Prateritum ImperAffix[ImpII] OptEnd UCl?
#
## IMPERFECT DERIVATIVES
#
# ! imperfect infinitive, p. 92
Imperfect InfAffix[reg] UCl?
# ! negative future, p. 92
Imperfect negSuffix[fut] UCl?
# ! imperfect converb, p. 92
Imperfect CvbEnd[praes] UCl?
#
## POTENTIALIS DERIVATIVES
#
# ! potentialis infinitive, p. 94
Potentialis InfAffix[reg] UCl?
# ! potentialis prospective converb, p. 94
Potentialis CvbAffix[prosp] agrVerb CvbEnd[past] UCl?
# ! potentialis future converb, p. 94
Potentialis FutAffix[cvb] CvbEnd[praes] UCl?
# ! synth future, p. 93
Potentialis FutEnd[synth] UCl?
# ! reactive future, p. 93
Potentialis FutEnd[react] UCl?
# ! conditional converb, p. 93
Potentialis CvbEnd[cond] UCl?
# ! reason converb, p. 93
Potentialis CvbEnd[rsn] UCl?
# ! conclusive converb, p. 93
Potentialis CvbEnd[conc] UCl?
# ! posterior converb, p. 93
Potentialis CvbEnd[post] UCl?
# ! I anterior converb, p. 93
Potentialis CvbEnd[antI] UCl?
# ! II anterior converb, p. 93
Potentialis CvbEnd[antII] UCl?
# ! imperative for transitive, pp. 96-97
Potentialis ImperAffix[ImpI] UCl?
# ! positive optative for transitive, p. 97
Potentialis ImperAffix[ImpI] OptEnd UCl?
#
## PROHIBITIVE DERIVATIVES
#
# ! regular prohibitive, pp. 94, 96
Prohibitive ProhEnd UCl?
# ! negative infinitive p. 96
Prohibitive negSuffix[pst] InfAffix[neg] #UCl?
# ! negative future converb, p. 96
Prohibitive negSuffix[pst] CvbAffix[negFut] FutAffix[cvb] CvbEnd[praes] #UCl?
# ! negative optative
Prohibitive ProhEnd OptEnd UCl?
#
## EMPHATIC NEGATIVE DERIVATIVES
#
# ! negative prateritum, 95
EmphStem negSuffix[pst] UCl?
# ! negative Prateritum converb, 95
EmphStem negSuffix[pst] CvbAffix[negCvb] agrVerb CvbEnd[past] UCl?
# ! negative future, p. 95
EmphStem negSuffix[fut] UCl?
# ! negative prohibitive, p. 95
EmphStem ProhAdd[IIIdecl] ProhEnd UCl?
# ! negative infinitive, p. 95
EmphStem ProhAdd[IIIdecl] negSuffix[past] InfAffix[neg] UCl?
# ! negative future converb, p. 95
EmphStem ProhAdd[IIIdecl] negSuffix[past] CvbAffix[negFut] FutAffix[cvb] CvbEnd[praes] UCl?
# ----------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------
# MISCELLANEOUS
TimeMarker
Clitic
agrInitial AgrParticle
Particle
Adverb UCl?
MiscPronounExc UCl?
Interjection
# ----------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------
# LEXICON ENTRIES
# ----------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------
#
# COMMON MARKERS
#
LEXICON negSuffix
<neg>:чӀи[pst]
<fut><neg>:чӀе[fut]
LEXICON TimeMarker
<temp>:къалъани[temp] # 597
<temp>:къарлъир[temp] # 597
<temp>:къолъани[temp] # M 483
<temp>:къалъир[temp] # M 483
LEXICON PostClitic
<restr>:{ep.й}ел[all]
<quot>:ди[all]
<quot>:гъа[all]
<quot>:гъади[all]
<quot><add>:гъадила[all]
<quot>:гъала[all]
<quot>:гъалади[all]
<quot><add>:гъаладила[all]
<quot>:гъе[all]
<quot>:гъеди[all]
<quot><add>:гъедила[all]
<quot><add>:дила[all]
<all>:аби[all]
<all>:гъаби[all]
<add>:ла[all] # 179
<add>:лъа[all] # 179
<ident>:да[all] # 180
<ident><add>:дала[all] # 180
<comit>:лена[nom]
<comit>:ена[nom]
<rula>:гъула[all] # 180
<uq>:хъал[all] # 182
# -----------------------------------------------------------------------------------------------
# NUMBER DERIVATION
#
LEXICON end
:да[DaNumber]
:ра[RaNumber]
LEXICON col
<coll>:ла
# number modifiers
#
LEXICON ordinal
<ord>:лъо[ser1]
<ord>:ла[ser2]
LEXICON ordinalOpt
:ла
LEXICON dec
гьацӀа<num><ten>:ацӀа
LEXICON cent
бешенда<num><hundred>:нусго<num>:бешен
LEXICON mil
азарда<num><thousand>:азарго<num>:азар
# distributional number modifiers
#
LEXICON decDist
цев<num><distr>:гьацӀи
LEXICON centDist
<distr>:беши
LEXICON milDist # changed i for it to persist
<distr>:аз{n.и}
# number links
#
LEXICON decComp
<cmp>:л # 11-19
LEXICON conjDec
гьацӀа<num><ten><cmp>:ацӀ # 21-29
LEXICON conjCentMil
<cmp>:чӀекӀуб
<cmp>:чӀекуб
#
# multiplicative numerals
#
LEXICON multSuffix
<mult>:ацӀис[norm]
<mult>:ацӀи[alt]
<mult>:лъир[large]
# --------------------------------------------------------------------------------------------
# NOMINAL INFLECTION
# Oblique stem markers
#
LEXICON OblSingular
<obl>:[OblZero]
<obl>:а[OblA]
<obl>:и[OblI]
<obl>:е[OblE]
<obl>:у[OblU]
<obl>:щу[OblSu]
<obl>:лу[OblLu]
<obl>:лъи[OblLi]
LEXICON OblPlural
<obl>:а[OblPlA]
<obl>:алу[OblPlAlu]
<obl>:лу[OblPlLu]
<obl>:лъи[OblPlLi]
<obl>:у[OblPlU]
LEXICON hplPlOblVowel
:а[preA]
:и[preI]
LEXICON PlOblMarker
<obl>:лу[hpl]
<obl>:а[npl,plDari,plBi]
<obl>:и[npl,plI]
<obl>:е[npl,plA]
LEXICON OblAdjSingular
<hu><m><sg><obl>:щу[OblSu]
<hu><f><sg><obl>:лъи[OblFLi]
<nn><nt><sg><obl>:лъи[OblNLi]
LEXICON OblAdjPlural
<hu><mf><pl><obl>:лу[OblPlLu]
<hu><mf><pl><obl>:алу[OblPlAlu]
<nn><nt><pl><obl>:лъи[OblPlLi]
<hu><mf><pl><obl>:ру[OblPlRu]
<nn><nt><pl><obl>:ри[OblPlRi]
<hu><mf><pl><obl>:ду[OblPlDu]
<nn><nt><pl><obl>:дири[OblPlDiri]
# Noun plural suffixes
#
LEXICON biPlVowel
:а[Abi]
:у[Ubi]
:и[Ibi]
:е[Ebi]
:йа[Jabi]
:[noVbi]
LEXICON PlMarker
<pl>:би[plBi]
<pl>:дари[plDari]
<pl>:бади[plBadi]
<pl>:ди[plDi]
<pl>:и[plI]
<pl>:а[plA]
<pl>:али[plAli]
<pl>:заби[plZabi]
<pl>:ари[plAri]
<pl>:ади[plAdi]
<pl>:ми[plMi]
# ----------------------------------------------------------------------------------------------
# CASE MARKERS
LEXICON CaseMain
<nom>:[ErgD,ErgR,nullNom]
<dat>:ла[ErgD,ErgR,RegDat]
<erg>:д[ErgD]
<erg>:р[ErgR,RegErg]
<affc>:ба[ErgD,ErgR]
<subst>:бас[ErgD,ErgR]
LEXICON DatExceptions
<hu><m><sg><obl><dat>:ща[ErgD,ErgR,OblSu]
<hu><m><sg><obl><dat>:щва[ErgD,ErgR,OblSu]
<hu><f><sg><obl><dat>:лъа[ErgD,ErgR,OblFLi]
<nn><nt><sg><obl><dat>:лъа[ErgD,ErgR,OblNLi]
<nn><nt><pl><obl><dat>:лъа[ErgD,ErgR,OblPlLi]
<hu><mf><pl><obl><dat>:ла[ErgD,ErgR,OblPlLu]
<hu><mf><pl><obl><dat>:ра[ErgD,ErgR,OblPlRu] # see Kibrik et al. 162
<hu><mf><pl><obl><dat>:рва[ErgD,ErgR,OblPlRu] # see Kibrik et al. 162
<hu><mf><pl><obl><dat>:да[ErgD,ErgR,OblPlDu] # see Kibrik et al. 163
<hu><mf><pl><obl><dat>:два[ErgD,ErgR,OblPlDu] # see Kibrik et al. 163
LEXICON DatExcMin
<obl><dat>:ща[OblSu]
<obl><dat>:щва[OblSu] # variation from Gudava
<obl><dat>:лъа[OblLi]
<obl><dat>:ла[OblPlLu]
<obl><dat>:лла[OblPlAlu]
<obl><dat>:гьа[pron]
LEXICON SupExceptions
<hu><m><sg><obl><sup>:ща[OblSu]
<hu><m><sg><obl><sup>:щва[OblSu]
<hu><f><sg><obl><sup>:лъа[OblFLi]
<nn><nt><sg><obl><sup>:лъа[OblNLi]
<nn><nt><pl><obl><sup>:лъа[OblPlLi]
<hu><mf><pl><obl><sup>:лла[OblPlAlu]
<hu><mf><pl><obl><sup>:ла[OblPlLu]
<hu><mf><pl><obl><sup>:ра[OblPlRu] # see Kibrik et al. 162
<hu><mf><pl><obl><sup>:рва[OblPlRu] # see Kibrik et al. 162
<hu><mf><pl><obl><sup>:да[OblPlDu] # see Kibrik et al. 163
<hu><mf><pl><obl><sup>:два[OblPlDu] # see Kibrik et al. 163
LEXICON SupExcMin
<obl><sup>:ща[OblSu]
<obl><sup>:щва[OblSu] # variation from Gudava
<obl><sup>:лъа[OblLi]
<obl><sup>:ла[OblPlLu]
<obl><sup>:лла[OblPlAlu]
<obl><sup>:гьа[pron]
LEXICON genitiveCase
<gen>:лъ
<gen><hu><m><sg>:в[GenAgr]
<gen><hu><f><sg>:й[GenAgr]
<gen><nn><nt><sg>:{б}[GenAgr]
<gen><hu><mf><pl>:{б}а[GenAgr]
<gen><nn><nt><pl>:р[GenAgr]
# ---------------------------------------------------------------------------------------------
# AGREEMENT MARKERS
LEXICON agrInitial
<hu><m><sg>:в[Msg]
<hu><f><sg>:й[Fsg]
<nn><nt><sg>:б[Nsg]
<hu><mf><pl>:б[Hpl]
<nn><nt><pl>:р[Npl]
LEXICON agrMiddle
<hu><m><sg>:в[Msg]
<hu><f><sg>:й[Fsg]
<nn><nt><sg>:{б}[Nsg]
<hu><mf><pl>:{б}{agrA}[Hpl]
<nn><nt><pl>:{р}[Npl]
LEXICON agrFinal
<hu><m><sg>:в[Msg]
<hu><f><sg>:й[Fsg]
<nn><nt><sg>:{б}[Nsg]
<hu><mf><pl>:{б}а[Hpl]
<nn><nt><pl>:{р}[Npl]
LEXICON agrVerb
<hu><m><sg>:в[Msg]
<hu><f><sg>:й[Fsg]
<nn><nt><sg>:{б}[Nsg]
<hu><mf><pl>:{р}[Hpl]
<hu><mf><pl>:{б}{agrA}[Hpl]
<nn><nt><pl>:{р}[Npl]
#----------------------------------------------------------------------------------------------
# LOCALIZATION MARKERS
LEXICON locMain
<sup>:ла
<sub>:кьи
<in>:{n.и}ни # irregular, must be configured separately, see Kibrik et al. 142
<itg>:лъи
<cont>:чӀ
<ad>:х
<locposs>:лъа
LEXICON directCase
<ess>:
<lat>:
<el>:{n.и}с
<trans>:{n.и}сини
<in>:{n.и}ни # to cover cases from Gudava
# -----------------------------------------------------------------------------------------------
# VERB DERIVATION
#
LEXICON PratAdd
<aor>:[reg]
<aor>:{ᵸ}[IIBdecl,IIIBdecl]
<aor>:{v.и}{ᵸ}[IBdecl] #83 for I declension and hpl forms of the II
<aor>:{v.и}[IAdecl]
LEXICON ImperfAdd
<pii>:{р}а[reg]
<pii>:{v.и}{ᵸ}{р}а[IIdecl,Idecl] #83
<pii>:а{ᵸ}[IVdecl]
LEXICON PotAdd
<pot>:а[Adecl]
<pot>:а{ᵸ}[reg]
<pot>:а{л}а[IIIAdecl]
<pot>:а{ᵸ}{л}а[IIIdecl]
<pot>:{р}а[Vdecl]
LEXICON ProhAdd
<proh>:{б}и[IIIdecl]
<proh>:{v.и}{ᵸ}{б}и[IIdecl,Idecl] #83
<proh>:аби[IVdecl]
<proh>:раби[Vdecl]
#derivational suffixes
LEXICON InfAffix
<inf>:[reg]
<inf>:а[neg]