diff --git a/src/albanian/AdjectiveSqi.gf b/src/albanian/AdjectiveSqi.gf index a9db7311..308dcb09 100644 --- a/src/albanian/AdjectiveSqi.gf +++ b/src/albanian/AdjectiveSqi.gf @@ -1,11 +1,26 @@ concrete AdjectiveSqi of Adjective = CatSqi ** open ResSqi, Prelude in { + oper + adjForm : A -> Species => Case => Gender => Number => Str = \a -> \\sp,c,g,n => + case a.clit of { + True => link_clitic ! sp ! c ! g ! n ++ a.s ! c ! g ! n ; + False => a.s ! c ! g ! n + } ; + lin PositA a = { - s = \\spec,c,g,n => case a.clit of { - True => link_clitic ! spec ! c ! g ! n ++ a.s ! c ! g ! n ; - False => a.s ! c ! g ! n - } - } ; + s = adjForm a + } ; + + ComparA a np = {s=\\sp,c,g,n=>"më" ++ adjForm a ! sp ! c ! g ! n ++ "se" ++ np.s ! Ablat} ; + UseComparA a = {s=\\sp,c,g,n=>"më" ++ adjForm a ! sp ! c ! g ! n} ; + ComplA2 a np = {s=\\sp,c,g,n=>adjForm (lin A a) ! sp ! c ! g ! n ++ a.c2.s ++ np.s ! a.c2.c} ; + UseA2 a = PositA a ; + ReflA2 a = {s=\\sp,c,g,n=>adjForm (lin A a) ! sp ! c ! g ! n ++ a.c2.s ++ "vetveten"} ; + CAdvAP cadv ap np = {s=\\sp,c,g,n=>cadv.s ++ ap.s ! sp ! c ! g ! n ++ cadv.p ++ np.s ! Ablat} ; + AdjOrd ord = {s=\\_,c,g,n=>ord.s ! c ! g ! n} ; + SentAP ap sc = {s=\\sp,c,g,n=>ap.s ! sp ! c ! g ! n ++ "që" ++ sc.s} ; + AdAP ada ap = {s=\\sp,c,g,n=>ada.s ++ ap.s ! sp ! c ! g ! n} ; + AdvAP ap adv = {s=\\sp,c,g,n=>ap.s ! sp ! c ! g ! n ++ adv.s} ; } diff --git a/src/albanian/AdverbSqi.gf b/src/albanian/AdverbSqi.gf new file mode 100644 index 00000000..2bf4a6d9 --- /dev/null +++ b/src/albanian/AdverbSqi.gf @@ -0,0 +1,11 @@ +concrete AdverbSqi of Adverb = CatSqi ** open Prelude, ResSqi in { +lin + PositAdvAdj a = {s=a.s ! Nom ! Masc ! Sg} ; + PrepNP p np = {s=p.s ++ np.s ! p.c} ; + ComparAdvAdj c a np = {s=c.s ++ a.s ! Nom ! Masc ! Sg ++ c.p ++ np.s ! Ablat} ; + ComparAdvAdjS c a s = {s=c.s ++ a.s ! Nom ! Masc ! Sg ++ c.p ++ s.s} ; + AdAdv a adv = {s=a.s ++ adv.s} ; + PositAdAAdj a = {s=a.s ! Nom ! Masc ! Sg} ; + SubjS subj s = {s=subj.s ++ s.s} ; + AdnCAdv c = {s=c.s ++ c.p} ; +} diff --git a/src/albanian/AllSqi.gf b/src/albanian/AllSqi.gf index d7a24155..4da6044e 100644 --- a/src/albanian/AllSqi.gf +++ b/src/albanian/AllSqi.gf @@ -1,4 +1,5 @@ concrete AllSqi of AllSqiAbs = - LangSqi + LangSqi, + IrregSqi ** {} ; diff --git a/src/albanian/AllSqiAbs.gf b/src/albanian/AllSqiAbs.gf index 48adecfa..adf168b0 100644 --- a/src/albanian/AllSqiAbs.gf +++ b/src/albanian/AllSqiAbs.gf @@ -1,3 +1,4 @@ abstract AllSqiAbs = - Lang + Lang, + IrregSqiAbs ** {} diff --git a/src/albanian/CatSqi.gf b/src/albanian/CatSqi.gf index b584949f..1d7393ab 100644 --- a/src/albanian/CatSqi.gf +++ b/src/albanian/CatSqi.gf @@ -4,60 +4,76 @@ concrete CatSqi of Cat = CommonX ** open ParamX,Prelude,ResSqi in { lincat A2 = Adj ** {c2 : Compl} ; linref A2 = \a -> case a.clit of {True=>"i"; False=>[]} ++ a.s ! Nom ! Masc ! Sg ++ a.c2.s ; lincat V, VA, VV, VS, VQ = Verb ; - lincat V2, V2S, V2Q = Verb ** {c2 : Compl} ; - lincat V3, V2A, V2V = Verb ** {c2,c3 : Compl} ; + lincat V2 = Verb ** {c2 : Compl} ; + lincat V2S, V2Q, V3, V2A, V2V = Verb ** {c2,c3 : Compl} ; lincat Prep = Compl ; lincat ACard = {s : Str} ; lincat AP = {s : Species => Case => Gender => Number => Str} ; lincat CN = Noun ; lincat Card = {s : Str} ; - lincat Cl = {s : Str} ; - lincat ClSlash = {s : Str} ; - lincat Comp = {s : Str} ; + lincat Cl = {s : ParamX.Tense => Anteriority => Polarity => Str} ; + lincat ClSlash = {s : ParamX.Tense => Anteriority => Polarity => Str; c2 : Compl} ; + lincat Comp = {s : Agr => Str} ; lincat Conj = {s : Str} ; - lincat DAP = {s : Str} ; + lincat DAP = {s : Str; n : Number} ; lincat Decimal = {s : Str; n : Number; hasDot : Bool} ; - lincat Det = {s : Case => Gender => Str; sp : Species; n : Number} ; + lincat Det = { + s : Case => Gender => Str; + post : Species => Case => Gender => Str; + sp : Species; + n : Number + } ; lincat Digits = {s : Str; n : Number; tail : DTail} ; lincat GN = {s : Str} ; lincat IComp = {s : Str} ; - lincat IDet = {s : Str} ; - lincat IP = {s : Str} ; - lincat IQuant = {s : Str} ; - lincat Imp = {s : Str} ; + lincat IDet = {s : Gender => Str; n : Number} ; + lincat IP = {s : Str; a : Agr} ; + lincat IQuant = {s : Gender => Str} ; + lincat Imp = {s : Polarity => Number => Str} ; lincat LN = {s : Str} ; lincat N = Noun ; lincat N2 = {s : Species => Case => Number => Str; g : Gender; - c2 : {s : Str}} ; + c2 : Compl} ; lincat N3 = {s : Species => Case => Number => Str; g : Gender; - c2 : {s : Str}; c3 : {s : Str}} ; + c2 : Compl; c3 : Compl} ; lincat NP = {s : Case => Str; a : Agr} ; lincat Num = {s : Str; n : Number} ; lincat Numeral = {s : Str} ; - lincat Ord = {s : Str} ; + lincat Ord = {s : Case => Gender => Number => Str} ; lincat PN = {s : Str} ; lincat Predet = {s : Str} ; lincat Pron = {s: Case => Str; acc_clit, dat_clit : Str; a : Agr} ; - lincat QCl = {s : Str} ; + lincat QCl = {s : ParamX.Tense => Anteriority => Polarity => Str} ; lincat QS = {s : Str} ; - lincat Quant = {s : Case => Gender => Number => Str; sp : Species} ; - lincat RCl = {s : Str} ; - lincat RP = {s : Str} ; - lincat RS = {s : Str} ; + lincat Quant = { + s : Case => Gender => Number => Str; + sp : Species; + isPoss : Bool + } ; + lincat RCl = {s : Agr => ParamX.Tense => Anteriority => Polarity => Str} ; + lincat RP = {s : Case => GenNum => Str} ; + lincat RS = {s : Agr => Str} ; lincat S = {s : Str} ; lincat SN = {s : Str} ; - lincat SSlash = {s : Str} ; + lincat SSlash = {s : Str; c2 : Compl} ; lincat Subj = {s : Str} ; - lincat VP = {indicative : Tense => Number => Person => Case => Str; - participle : Case => Str; + lincat VP = {indicative : Tense => Number => Person => Gender => Case => Str; + subjunctive : Number => Person => Gender => Case => Str; + imperative : Number => Case => Str; + participle : Agr => Case => Str; pres_optative : Number => Person => Case => Str; perf_optative : Number => Person => Case => Str; pres_admirative : Number => Person => Case => Str; - imperf_admirative : Number => Person => Case => Str} ; + imperf_admirative : Number => Person => Case => Str; + vtype : VType} ; + lincat VPSlash = {indicative : Tense => Number => Person => Str; + subjunctive : Number => Person => Str; imperative : Number => Str; participle : Str; pres_optative : Number => Person => Str; perf_optative : Number => Person => Str; pres_admirative : Number => Person => Str; - imperf_admirative : Number => Person => Str} ; + imperf_admirative : Number => Person => Str; + vtype : VType; + c2 : Compl} ; } diff --git a/src/albanian/ConjunctionSqi.gf b/src/albanian/ConjunctionSqi.gf new file mode 100644 index 00000000..82b1a7d1 --- /dev/null +++ b/src/albanian/ConjunctionSqi.gf @@ -0,0 +1,27 @@ +concrete ConjunctionSqi of Conjunction = CatSqi ** open ResSqi, Prelude, ParamX in { +lincat + [S] = {first,last : Str} ; + [RS] = {first,last : Agr => Str} ; + [Adv] = {first,last : Str} ; + [AdV] = {first,last : Str} ; + [IAdv] = {first,last : Str} ; + [NP] = {first,last : Case => Str; a : Agr} ; + [AP] = {first,last : Species=>Case=>Gender=>Number=>Str} ; + [CN] = {first,last : Species=>Case=>Number=>Str; g:Gender} ; + [DAP] = {first,last : Str; n:Number} ; +lin + BaseS x y={first=x.s;last=y.s}; ConsS x xs={first=x.s++","++xs.first;last=xs.last}; ConjS c xs={s=xs.first++c.s++xs.last}; + BaseAdv x y={first=x.s;last=y.s}; ConsAdv x xs={first=x.s++","++xs.first;last=xs.last}; ConjAdv c xs={s=xs.first++c.s++xs.last}; + BaseAdV x y={first=x.s;last=y.s}; ConsAdV x xs={first=x.s++","++xs.first;last=xs.last}; ConjAdV c xs={s=xs.first++c.s++xs.last}; + BaseIAdv x y={first=x.s;last=y.s}; ConsIAdv x xs={first=x.s++","++xs.first;last=xs.last}; ConjIAdv c xs={s=xs.first++c.s++xs.last}; + BaseNP x y={first=x.s;last=y.s;a={gn=GPl;p=P3}}; + ConsNP x xs={first=\\k=>x.s!k++","++xs.first!k;last=xs.last;a={gn=GPl;p=P3}}; + ConjNP c xs={s=\\k=>xs.first!k++c.s++xs.last!k;a=xs.a}; + BaseAP x y={first=x.s;last=y.s}; ConsAP x xs={first=\\sp,k,g,n=>x.s!sp!k!g!n++","++xs.first!sp!k!g!n;last=xs.last}; + ConjAP c xs={s=\\sp,k,g,n=>xs.first!sp!k!g!n++c.s++xs.last!sp!k!g!n}; + BaseRS x y={first=x.s;last=y.s}; ConsRS x xs={first=\\a=>x.s!a++","++xs.first!a;last=xs.last}; ConjRS c xs={s=\\a=>xs.first!a++c.s++xs.last!a}; + BaseCN x y={first=x.s;last=y.s;g=x.g}; ConsCN x xs={first=\\sp,k,n=>x.s!sp!k!n++","++xs.first!sp!k!n;last=xs.last;g=xs.g}; + ConjCN c xs={s=\\sp,k,n=>xs.first!sp!k!n++c.s++xs.last!sp!k!n;g=xs.g}; + BaseDAP x y={first=x.s;last=y.s;n=Pl}; ConsDAP x xs={first=x.s++","++xs.first;last=xs.last;n=Pl}; + ConjDet c xs={s=\\_,_=>xs.first++c.s++xs.last;post=\\_,_,_=>[];n=xs.n;sp=Def}; +} diff --git a/src/albanian/ConstructionSqi.gf b/src/albanian/ConstructionSqi.gf new file mode 100644 index 00000000..bba71f18 --- /dev/null +++ b/src/albanian/ConstructionSqi.gf @@ -0,0 +1,64 @@ +concrete ConstructionSqi of Construction = CatSqi ** + open Prelude, ParamX, ResSqi, ParadigmsSqi, GrammarSqi in { + +lincat + Timeunit = N ; + Hour = {s:Str} ; + Weekday = N ; + Month = N ; + Monthday = {s:Str} ; + Year = {s:Str} ; + Language = N ; + +oper + adjVP : A -> VP = \a -> UseComp (CompAP (PositA a)) ; + appendVP : VP -> Str -> VP = \v,s -> v ** { + indicative=\\t,n,p,g,c=>v.indicative!t!n!p!g!c++s; + subjunctive=\\n,p,g,c=>v.subjunctive!n!p!g!c++s; + imperative=\\n,c=>v.imperative!n!c++s; + participle=\\a,c=>v.participle!a!c++s + } ; + hour : Str -> Hour = \s -> lin Hour {s=s} ; + +lin + hungry_VP=adjVP (mkA "uritur"); thirsty_VP=adjVP (mkA "etur"); + tired_VP=adjVP (mkA "lodhur"); scared_VP=adjVP (mkA "frikësuar"); + ill_VP=adjVP (mkA "sëmurë"); ready_VP=adjVP (mkA "gatshëm"); + has_age_VP c=appendVP (UseV (irregV "kam" "ke" "ka" "kemi" "keni" "kanë" "ki" "kini" "pasur")) (c.s++"vjeç"); + n_units_AP c unit a={s=\\sp,k,g,n=>c.s++unit.s!Indef!Nom!Pl++(PositA a).s!sp!k!g!n}; + n_units_of_NP c unit np={s=\\_=>c.s++unit.s!Indef!Nom!Pl++"nga"++np.s!Ablat;a={gn=GPl;p=P3}}; + n_unit_CN c unit cn={s=\\sp,k,n=>c.s++unit.s!Indef!Nom!Sg++cn.s!sp!k!n;g=cn.g}; + bottle_of_CN np={s=\\sp,k,n=>(mkN "shishe").s!sp!k!n++"me"++np.s!Acc;g=Fem}; + cup_of_CN np={s=\\sp,k,n=>(mkN "filxhan").s!sp!k!n++"me"++np.s!Acc;g=Masc}; + glass_of_CN np={s=\\sp,k,n=>(mkN "gotë").s!sp!k!n++"me"++np.s!Acc;g=Fem}; + + timeunitAdv c u={s="për"++c.s++u.s!Indef!Acc!Pl}; + timeunitRange a b u={s="nga"++a.s++"deri në"++b.s++u.s!Indef!Acc!Pl}; + oneHour=hour "1"; twoHour=hour "2"; threeHour=hour "3"; fourHour=hour "4"; + fiveHour=hour "5"; sixHour=hour "6"; sevenHour=hour "7"; eightHour=hour "8"; + nineHour=hour "9"; tenHour=hour "10"; elevenHour=hour "11"; twelveHour=hour "12"; + thirteenHour=hour "13"; fourteenHour=hour "14"; fifteenHour=hour "15"; sixteenHour=hour "16"; + seventeenHour=hour "17"; eighteenHour=hour "18"; nineteenHour=hour "19"; twentyHour=hour "20"; + twentyOneHour=hour "21"; twentyTwoHour=hour "22"; twentyThreeHour=hour "23"; twentyFourHour=hour "24"; + timeHour h={s="në orën"++h.s}; timeHourMinute h m={s="në orën"++h.s++SOFT_BIND++":"++SOFT_BIND++m.s}; + + weekdayPunctualAdv w={s="të"++w.s!Def!Acc!Sg}; + weekdayHabitualAdv w={s="të"++w.s!Def!Acc!Pl}; + weekdayLastAdv w={s="të"++w.s!Def!Acc!Sg++"e kaluar"}; + weekdayNextAdv w={s="të"++w.s!Def!Acc!Sg++"e ardhshme"}; + monthAdv m={s="në"++m.s!Indef!Acc!Sg}; yearAdv y={s="në"++y.s}; + dayMonthAdv d m={s="më"++d.s++m.s!Indef!Acc!Sg}; + monthYearAdv m y={s="në"++m.s!Indef!Acc!Sg++y.s}; + dayMonthYearAdv d m y={s="më"++d.s++m.s!Indef!Acc!Sg++y.s}; + intYear i={s=i.s}; intMonthday i={s=i.s}; + weekdayN w=w; monthN m=m; + weekdayPN w=mkPN (w.s!Indef!Nom!Sg); monthPN m=mkPN (m.s!Indef!Nom!Sg); + + second_Timeunit=mkN "sekondë"; minute_Timeunit=mkN "minutë"; hour_Timeunit=mkN "orë"; + day_Timeunit=mkN "ditë"; week_Timeunit=mkN "javë"; month_Timeunit=mkN "muaj"; year_Timeunit=mkN "vit"; + monday_Weekday=mkN "e hënë"; tuesday_Weekday=mkN "e martë"; wednesday_Weekday=mkN "e mërkurë"; + thursday_Weekday=mkN "e enjte"; friday_Weekday=mkN "e premte"; saturday_Weekday=mkN "e shtunë"; sunday_Weekday=mkN "e diel"; + january_Month=mkN "janar"; february_Month=mkN "shkurt"; march_Month=mkN "mars"; april_Month=mkN "prill"; + may_Month=mkN "maj"; june_Month=mkN "qershor"; july_Month=mkN "korrik"; august_Month=mkN "gusht"; + september_Month=mkN "shtator"; october_Month=mkN "tetor"; november_Month=mkN "nëntor"; december_Month=mkN "dhjetor"; +} diff --git a/src/albanian/ExtendSqi.gf b/src/albanian/ExtendSqi.gf new file mode 100644 index 00000000..c228d3a6 --- /dev/null +++ b/src/albanian/ExtendSqi.gf @@ -0,0 +1,135 @@ +concrete ExtendSqi of Extend = CatSqi ** + open Prelude, ParamX, ResSqi, GrammarSqi, (I=IrregSqi) in { + +lincat + RNP = {s : Agr => Case => Str; isPron : Bool} ; + RNPList = {first,last : Agr => Case => Str} ; + VPS = {s : Agr => Str} ; + VPI = {s : Agr => Str} ; + [VPS] = {first,last : Agr => Str} ; + [VPI] = {first,last : Agr => Str} ; + [Comp] = {first,last : Agr => Str} ; + [Imp] = {first,last : Polarity => Number => Str} ; + +oper + baseVP : Verb -> VP = \v -> lin VP { + indicative = \\t,n,p,_,_ => v.indicative ! t ! n ! p ; + subjunctive = \\n,p,_,_ => subjunctiveForm v.vtype + (v.indicative ! ResSqi.Pres ! Sg ! P1) + (v.indicative ! ResSqi.Pres ! n ! p) n p ; + imperative = \\n,_ => v.imperative ! n ; + participle = \\_,_ => v.participle ; + pres_optative = \\n,p,_ => v.pres_optative ! n ! p ; + perf_optative = \\n,p,_ => v.perf_optative ! n ! p ; + pres_admirative = \\n,p,_ => v.pres_admirative ! n ! p ; + imperf_admirative = \\n,p,_ => v.imperf_admirative ! n ! p ; + vtype = v.vtype + } ; + + extAddVP : VP -> (Agr => Str) -> VP = \v,x -> v ** { + indicative = \\t,n,p,g,c => v.indicative ! t ! n ! p ! g ! c ++ + x ! {gn=genNum g n; p=p} ; + subjunctive = \\n,p,g,c => v.subjunctive ! n ! p ! g ! c ++ + x ! {gn=genNum g n; p=p} ; + imperative = \\n,c => v.imperative ! n ! c ++ + x ! {gn=case n of {Sg=>GSg Masc; Pl=>GPl}; p=P2} ; + participle = \\a,c => v.participle ! a ! c ++ x ! a + } ; + + baseSlashVP : VPSlash -> VP = \v -> lin VP { + indicative = \\t,n,p,_,_ => v.indicative ! t ! n ! p ; + subjunctive = \\n,p,_,_ => v.subjunctive ! n ! p ; + imperative = \\n,_ => v.imperative ! n ; + participle = \\_,_ => v.participle ; + pres_optative = \\n,p,_ => v.pres_optative ! n ! p ; + perf_optative = \\n,p,_ => v.perf_optative ! n ! p ; + pres_admirative = \\n,p,_ => v.pres_admirative ! n ! p ; + imperf_admirative = \\n,p,_ => v.imperf_admirative ! n ! p ; + vtype = v.vtype + } ; + +lin + GenModNP n np cn = { + s = \\c => cn.s ! Def ! c ! n.n ++ + link_clitic ! Def ! c ! cn.g ! n.n ++ np.s ! Ablat ; + a = agrgP3 cn.g n.n + } ; + + EmptyRelSlash cl = {s=\\_,t,a,p=>"që"++cl.s!t!a!p++cl.c2.s} ; + + ReflPron = { + s = \\a,c => case of { + => "veten" ; => "veten" ; _ => "vetes" + } ; + isPron = True + } ; + ReflPoss n cn = {s=\\_,c=>cn.s!Def!c!n.n; isPron=False} ; + PredetRNP p r = r ** {s=\\a,c=>p.s++r.s!a!c} ; + AdvRNP np p r = {s=\\a,c=>np.s!c++p.s++r.s!a!p.c; isPron=False} ; + AdvRVP vp p r = extAddVP vp (\\a=>p.s++r.s!a!p.c) ; + AdvRAP ap p r = { + s=\\sp,c,g,n=>ap.s!sp!c!g!n++p.s++r.s!(agrgP3 g n)!p.c + } ; + PossPronRNP p n cn r = { + s=\\c=>cn.s!Def!c!n.n++link_clitic!Def!c!cn.g!n.n++r.s!p.a!Ablat; + a=agrgP3 cn.g n.n + } ; + + CompoundN a b = { + s=\\sp,c,n=>(UseN b).s!sp!c!n++(UseN a).s!Indef!Ablat!Sg; + g=b.g + } ; + CompoundAP n a = { + s=\\sp,c,g,num=>(UseN n).s!Indef!Nom!Sg++(PositA a).s!sp!c!g!num + } ; + GerundCN vp = {s=\\_,_,_=>vp.participle!{gn=GSg Masc;p=P3}!Nom; g=Masc} ; + GerundNP vp = {s=\\_=>vp.participle!{gn=GSg Masc;p=P3}!Nom; a={gn=GSg Masc;p=P3}} ; + GerundAdv vp = {s="duke"++vp.participle!{gn=GSg Masc;p=P3}!Nom} ; + WithoutVP vp = {s="pa"++vp.participle!{gn=GSg Masc;p=P3}!Nom} ; + ByVP vp = {s="duke"++vp.participle!{gn=GSg Masc;p=P3}!Nom} ; + ApposNP a b = a ** {s=\\c=>a.s!c++SOFT_BIND++","++b.s!c} ; + PositAdVAdj a = {s=a.s!Nom!Masc!Sg} ; + UttVPShort vp = {s=vp.imperative!Sg!Nom} ; + ComplSlashPartLast sl np = ComplSlash sl np ; + + PresPartAP vp = {s=\\_,_,_,_=>"duke"++vp.participle!{gn=GSg Masc;p=P3}!Nom} ; + PastPartAP sl = {s=\\_,_,_,_=>sl.participle} ; + PastPartAgentAP sl np = { + s=\\_,_,_,_=>sl.participle++"nga"++np.s!Nom + } ; + PassVPSlash sl = extAddVP (baseVP I.jam_V) (\\_=>sl.participle) ; + PassAgentVPSlash sl np = + extAddVP (baseVP I.jam_V) (\\_=>sl.participle++"nga"++np.s!Nom) ; + ProgrVPSlash sl = sl ; + ComplBareVS v s = extAddVP (baseVP v) (\\_=>s.s) ; + + MkVPS t p vp = { + s=\\a=>(PredVP {s=\\_=>[];a=a} vp).s!t.t!t.a!p.p + } ; + BaseVPS x y = {first=x.s; last=y.s} ; + ConsVPS x xs = {first=\\a=>x.s!a++","++xs.first!a; last=xs.last} ; + ConjVPS c xs = {s=\\a=>xs.first!a++c.s++xs.last!a} ; + PredVPS np v = {s=v.s!np.a} ; + + MkVPI vp = {s=\\a=>"të"++vp.subjunctive ! agrNumber a ! a.p ! agrGender a ! Nom} ; + BaseVPI x y = {first=x.s; last=y.s} ; + ConsVPI x xs = {first=\\a=>x.s!a++","++xs.first!a; last=xs.last} ; + ConjVPI c xs = {s=\\a=>xs.first!a++c.s++xs.last!a} ; + ComplVPIVV v x = extAddVP (baseVP v) (\\a=>x.s!a) ; + + BaseComp x y = {first=x.s; last=y.s} ; + ConsComp x xs = {first=\\a=>x.s!a++","++xs.first!a; last=xs.last} ; + ConjComp c xs = {s=\\a=>xs.first!a++c.s++xs.last!a} ; + + BaseImp x y = {first=x.s; last=y.s} ; + ConsImp x xs = { + first=\\p,n=>x.s!p!n++","++xs.first!p!n; + last=xs.last + } ; + ConjImp c xs = {s=\\p,n=>xs.first!p!n++c.s++xs.last!p!n} ; + + UseDAP d = {s=\\_=>d.s; a=agrgP3 Masc d.n} ; + UseDAPMasc = UseDAP ; + UseDAPFem d = {s=\\_=>d.s; a=agrgP3 Fem d.n} ; + TPastSimple = {s=[]; t=ParamX.Past} ; +} diff --git a/src/albanian/GrammarSqi.gf b/src/albanian/GrammarSqi.gf index f3543c21..3eab7d19 100644 --- a/src/albanian/GrammarSqi.gf +++ b/src/albanian/GrammarSqi.gf @@ -1,8 +1,16 @@ concrete GrammarSqi of Grammar = NounSqi, + VerbSqi, AdjectiveSqi, + AdverbSqi, + SentenceSqi, + QuestionSqi, + RelativeSqi, + ConjunctionSqi, NumeralSqi, PhraseSqi, + IdiomSqi, + NamesSqi, StructuralSqi ** { diff --git a/src/albanian/IdiomSqi.gf b/src/albanian/IdiomSqi.gf new file mode 100644 index 00000000..8b196b7e --- /dev/null +++ b/src/albanian/IdiomSqi.gf @@ -0,0 +1,23 @@ +concrete IdiomSqi of Idiom = CatSqi ** open Prelude, ParamX, ResSqi in { +lin + ImpersCl vp = {s=\\t,a,p=>negation p++futureParticle t++vp.indicative!sqiTense t!Sg!P3!Masc!Nom} ; + GenericCl vp = {s=\\t,a,p=>"njeriu"++negation p++futureParticle t++vp.indicative!sqiTense t!Sg!P3!Masc!Nom} ; + CleftNP np rs = {s=\\_,_,_=>np.s!Nom++rs.s!np.a} ; + CleftAdv adv s = {s=\\_,_,_=>adv.s++s.s} ; + ExistNP np = {s=\\t,_,p=>negation p++case t of {ParamX.Past=>"pati";_=>"ka"}++np.s!Acc} ; + ExistIP ip = {s=\\_,_,p=>negation p++"ka"++ip.s} ; + ExistNPAdv np adv = {s=\\t,a,p=>(ExistNP np).s!t!a!p++adv.s} ; + ExistIPAdv ip adv = {s=\\t,a,p=>(ExistIP ip).s!t!a!p++adv.s} ; + ProgrVP vp = vp ; + ImpPl1 vp = {s="le të"++vp.subjunctive!Pl!P1!Masc!Nom} ; + ImpP3 np vp = {s="le"++np.s!Nom++"të"++vp.subjunctive!agrNumber np.a!np.a.p!agrGender np.a!Nom} ; + SelfAdvVP vp = vp ** { + indicative=\\t,n,p,g,c=>vp.indicative!t!n!p!g!c++"vetë"; + subjunctive=\\n,p,g,c=>vp.subjunctive!n!p!g!c++"vetë" + } ; + SelfAdVVP vp = vp ** { + indicative=\\t,n,p,g,c=>"vetë"++vp.indicative!t!n!p!g!c; + subjunctive=\\n,p,g,c=>"vetë"++vp.subjunctive!n!p!g!c + } ; + SelfNP np = np ** {s=\\c=>np.s!c++"vetë"} ; +} diff --git a/src/albanian/IrregSqi.gf b/src/albanian/IrregSqi.gf new file mode 100644 index 00000000..39d703db --- /dev/null +++ b/src/albanian/IrregSqi.gf @@ -0,0 +1,24 @@ +concrete IrregSqi of IrregSqiAbs = CatSqi ** open ParadigmsSqi in { + +lin + bej_V = irregV "bëj" "bën" "bën" "bëjmë" "bëni" "bëjnë" "bëj" "bëni" "bërë" ; + bie_V = irregV "bie" "bie" "bie" "biem" "bini" "bien" "bjer" "bini" "rënë" ; + dal_V = irregV "dal" "del" "del" "dalim" "dilni" "dalin" "dil" "dilni" "dalë" ; + dua_V = irregV "dua" "do" "do" "duam" "doni" "duan" "duaj" "doni" "dashur" ; + eci_V = irregV "eci" "ecën" "ecën" "ecim" "ecni" "ecin" "ec" "ecni" "ecur" ; + ha_V = irregV "ha" "ha" "ha" "hamë" "hani" "hanë" "ha" "hani" "ngrënë" ; + hyj_V = irregV "hyj" "hyn" "hyn" "hyjmë" "hyni" "hyjnë" "hyr" "hyni" "hyrë" ; + iki_V = irregV "iki" "ikën" "ikën" "ikim" "ikni" "ikin" "ik" "ikni" "ikur" ; + jam_V = irregV "jam" "je" "është" "jemi" "jeni" "janë" "ji" "jini" "qenë" ; + jap_V = irregV "jap" "jep" "jep" "japim" "jepni" "japin" "jep" "jepni" "dhënë" ; + kam_V = irregV "kam" "ke" "ka" "kemi" "keni" "kanë" "ki" "kini" "pasur" ; + ngre_V = irregV "ngre" "ngre" "ngre" "ngremë" "ngrini" "ngrenë" "ngre" "ngrini" "ngritur" ; + njoh_V = irregV "njoh" "njeh" "njeh" "njohim" "njihni" "njohin" "njih" "njihni" "njohur" ; + pi_V = irregV "pi" "pi" "pi" "pimë" "pini" "pinë" "pi" "pini" "pirë" ; + shoh_V = irregV "shoh" "sheh" "sheh" "shohim" "shihni" "shohin" "shih" "shihni" "parë" ; + them_V = irregV "them" "thua" "thotë" "themi" "thoni" "thonë" "thuaj" "thoni" "thënë" ; + urrej_V = irregV "urrej" "urren" "urren" "urrejmë" "urreni" "urrejnë" "urre" "urreni" "urryer" ; + ve_V = irregV "vë" "vë" "vë" "vëmë" "vini" "vënë" "vër" "vini" "vënë" ; + vij_V = irregV "vij" "vjen" "vjen" "vijmë" "vini" "vijnë" "eja" "ejani" "ardhur" ; + +} diff --git a/src/albanian/IrregSqiAbs.gf b/src/albanian/IrregSqiAbs.gf new file mode 100644 index 00000000..b083be46 --- /dev/null +++ b/src/albanian/IrregSqiAbs.gf @@ -0,0 +1,24 @@ +abstract IrregSqiAbs = Cat ** { + +fun + bej_V : V ; + bie_V : V ; + dal_V : V ; + dua_V : V ; + eci_V : V ; + ha_V : V ; + hyj_V : V ; + iki_V : V ; + jam_V : V ; + jap_V : V ; + kam_V : V ; + ngre_V : V ; + njoh_V : V ; + pi_V : V ; + shoh_V : V ; + them_V : V ; + urrej_V : V ; + ve_V : V ; + vij_V : V ; + +} diff --git a/src/albanian/LangSqi.gf b/src/albanian/LangSqi.gf index 0f359c33..22de7b9f 100644 --- a/src/albanian/LangSqi.gf +++ b/src/albanian/LangSqi.gf @@ -2,6 +2,7 @@ concrete LangSqi of Lang = GrammarSqi, LexiconSqi + ,ConstructionSqi ,DocumentationSqi --# notpresent ** { diff --git a/src/albanian/MorphoSqi.gf b/src/albanian/MorphoSqi.gf index fd73c449..c2e6679a 100644 --- a/src/albanian/MorphoSqi.gf +++ b/src/albanian/MorphoSqi.gf @@ -31,15 +31,15 @@ mkN001 base_1 = } ; Acc => table { Sg => base_1+"in" ; --guessed - Pl => nonExist + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -163,15 +163,15 @@ mkN004 base_1 = } ; Acc => table { Sg => base_1+"-in" ; - Pl => nonExist + Pl => base_1 } ; Dat => table { Sg => base_1+"-it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"-it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -206,16 +206,16 @@ mkN005 base_1 = Pl => base_1+"et" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -785,15 +785,15 @@ mkN018 base_1 = } ; Acc => table { Sg => base_1+"un" ; --guessed - Pl => nonExist + Pl => base_1 } ; Dat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -961,16 +961,16 @@ mkN022 base = Pl => base_1+"étë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"éjat" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"éjat" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -1183,16 +1183,16 @@ mkN027 base_1 = Pl => base_1+"e" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -1321,16 +1321,16 @@ mkN030 base_1 = Pl => base_1+"jet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -1539,19 +1539,19 @@ mkN035 base = Def => table { Nom => table { Sg => base_1+"éja" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"éjat" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"éjat" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -2398,16 +2398,16 @@ mkN054 base_1 = Pl => base_1+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -2486,16 +2486,16 @@ mkN056 base_1 = Pl => base_1+"imet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -2709,16 +2709,16 @@ mkN061 base_1 = Pl => base_1+"ërt" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -2892,16 +2892,16 @@ mkN065 base = Pl => base_1+"erët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"arit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"arit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -2938,16 +2938,16 @@ mkN066 base_1 = Pl => base_1+"të" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -3256,15 +3256,15 @@ mkN073 base_1 = } ; Acc => table { Sg => base_1+"në" ; --guessed - Pl => nonExist + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -3435,16 +3435,16 @@ mkN077 base = Pl => base_1+"lli" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"jet" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"jet" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -3704,16 +3704,16 @@ mkN083 base_1 = Pl => base_1+"ët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -3792,16 +3792,16 @@ mkN085 base_1 = Pl => base_1+"jet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -3880,16 +3880,16 @@ mkN087 base_1 = Pl => base_1+"u" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"jet" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"jet" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -3971,16 +3971,16 @@ mkN089 base_1 = Pl => base_1+"rat" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -4059,16 +4059,16 @@ mkN091 base_1 = Pl => base_1+"ja" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -4197,16 +4197,16 @@ mkN094 base_1 = Pl => base_1+"t" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -4239,19 +4239,19 @@ mkN095 base = Def => table { Nom => table { Sg => base_1+"ua" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"uat" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"uat" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -4289,16 +4289,16 @@ mkN096 base = Pl => base_1+"i"+base_2+"jet" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"e"+base_2+"ut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"e"+base_2+"ut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -4335,16 +4335,16 @@ mkN097 base_1 = Pl => base_1+"të" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -4403,11 +4403,11 @@ mkN099 base = Indef => table { Nom => table { Sg => base_1+"m" ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"m" ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"mi" ; --guessed @@ -4424,16 +4424,16 @@ mkN099 base = Pl => "m"+base_1+"të" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"mit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"mit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -4605,16 +4605,16 @@ mkN103 base_1 = Pl => base_1+"jtë" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"nit" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"nit" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -4650,16 +4650,16 @@ mkN104 base = Pl => base_1+"qet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"kut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"kut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -4696,16 +4696,16 @@ mkN105 base_1 = Pl => base_1+"u" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"jet" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"jet" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -4741,15 +4741,15 @@ mkN106 base_1 = } ; Acc => table { Sg => base_1+"në" ; --guessed - Pl => nonExist + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -4828,16 +4828,16 @@ mkN108 base_1 = Pl => base_1+"et" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -5418,16 +5418,16 @@ mkN121 base_1 = Pl => base_1+"ërat" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -5510,16 +5510,16 @@ mkN123 base = Pl => base_1+"jtë" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"llit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"llit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -5556,16 +5556,16 @@ mkN124 base_1 = Pl => base_1+"të" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"rit" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"rit" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -5600,16 +5600,16 @@ mkN125 base_1 = Pl => base_1+"ërinj" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -5644,16 +5644,16 @@ mkN126 base_1 = Pl => base_1+"të" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"rit" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"rit" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -5688,16 +5688,16 @@ mkN127 base_1 = Pl => base_1+"njtë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"nit" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"nit" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -5873,16 +5873,16 @@ mkN131 base_1 = Pl => base_1+"ët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -6058,16 +6058,16 @@ mkN135 base_1 = Pl => base_1+"rat" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -6237,16 +6237,16 @@ mkN139 base_1 = Pl => base_1+"et" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"jat" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"jat" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -6282,15 +6282,15 @@ mkN140 base_1 = } ; Acc => table { Sg => base_1+"në" ; --guessed - Pl => nonExist + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -6326,16 +6326,16 @@ mkN141 base = Pl => base_1+"të" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -6419,16 +6419,16 @@ mkN143 base_1 = Pl => base_1+"ët" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -6464,16 +6464,16 @@ mkN144 base = Pl => base_1+"é"+base_2+"et" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"é"+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"é"+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -6510,16 +6510,16 @@ mkN145 base_1 = Pl => base_1+"ërat" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -6736,16 +6736,16 @@ mkN150 base_1 = Pl => base_1+"jat" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -6825,15 +6825,15 @@ mkN152 base_1 = } ; Acc => table { Sg => base_1+"në" ; - Pl => nonExist + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -6869,16 +6869,16 @@ mkN153 base = Pl => base_1+"eqët" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"akut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"akut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -7007,15 +7007,15 @@ mkN156 base_1 = } ; Acc => table { Sg => base_1+"në" ; - Pl => nonExist + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -7142,16 +7142,16 @@ mkN159 base = Pl => base_1+base_2+"jet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+base_2+"nit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+base_2+"nit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -7282,16 +7282,16 @@ mkN162 base_1 = Pl => base_1+"t" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"t" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"t" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -7328,15 +7328,15 @@ mkN163 base = } ; Acc => table { Sg => base_1+"in" ; --guessed - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -7562,16 +7562,16 @@ mkN168 base = Pl => base_1+"i"+base_2+"jet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"e"+base_2+"ut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"e"+base_2+"ut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -7793,16 +7793,16 @@ mkN173 base_1 = Pl => base_1+"t" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -7817,11 +7817,11 @@ mkN174 base = Indef => table { Nom => table { Sg => base_1+"e"+base_2+"e" ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"e"+base_2+"e" ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"e"+base_2+"ei" ; --guessed @@ -7835,19 +7835,19 @@ mkN174 base = Def => table { Nom => table { Sg => base_1+"é"+base_2+"a" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"é"+base_2+"at" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"é"+base_2+"at" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -7886,15 +7886,15 @@ mkN175 base = } ; Acc => table { Sg => base_1+"ën" ; --guessed - Pl => nonExist + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -7979,16 +7979,16 @@ mkN177 base = Pl => base_1+"jtë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"llit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"llit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -8137,11 +8137,11 @@ mkN181 base = Indef => table { Nom => table { Sg => base_1+"e"+base_2 ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"e"+base_2 ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"e"+base_2+"i" ; --guessed @@ -8155,19 +8155,19 @@ mkN181 base = Def => table { Nom => table { Sg => base_1+"é"+base_2+"i" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"é"+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"é"+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -8205,16 +8205,16 @@ mkN182 base = Pl => base_1+"ot" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -8347,15 +8347,15 @@ mkN185 base = } ; Acc => table { Sg => base_1+"ën" ; --guessed - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -8668,16 +8668,16 @@ mkN192 base_1 = Pl => base_1+"ë" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -8761,15 +8761,15 @@ mkN194 base = } ; Acc => table { Sg => base_1+"in" ; --guessed - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -8854,16 +8854,16 @@ mkN196 base = Pl => base_1+base_2+"j"+base_3+"et" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -8901,16 +8901,16 @@ mkN197 base = Pl => base_1+"ojtë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"oit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"oit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -8948,16 +8948,16 @@ mkN198 base = Pl => base_1+base_2+"njtë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"h"+base_2+"ut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"h"+base_2+"ut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -8996,15 +8996,15 @@ mkN199 base = } ; Acc => table { Sg => base_1+"in" ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -9136,16 +9136,16 @@ mkN202 base = Pl => base_1+"jet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -9227,16 +9227,16 @@ mkN204 base = Pl => base_1+"enjtë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"enjt" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"enjt" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -9273,16 +9273,16 @@ mkN205 base_1 = Pl => base_1+"et" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -9362,16 +9362,16 @@ mkN207 base = Pl => base_1+"jt" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"llit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"llit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -9826,16 +9826,16 @@ mkN217 base = Pl => base_1+"o"+base_2+"et" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"ua"+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"ua"+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -9873,16 +9873,16 @@ mkN218 base = Pl => base_1+"iq"+base_2+"t" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+base_2+"kut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+base_2+"kut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -10013,16 +10013,16 @@ mkN221 base_1 = Pl => base_1+"i" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"t" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"t" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -10131,11 +10131,11 @@ mkN224 base = Indef => table { Nom => table { Sg => base_1+base_2 ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+base_2 ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+base_2+"e" ; --guessed @@ -10149,19 +10149,19 @@ mkN224 base = Def => table { Nom => table { Sg => base_1+"j"+base_2 ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -10240,19 +10240,19 @@ mkN226 base = Def => table { Nom => table { Sg => base_1+"ku" ; --guessed - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"kut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"kut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -10384,16 +10384,16 @@ mkN229 base = Pl => "e"+base_1+"ët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -10430,16 +10430,16 @@ mkN230 base_1 = Pl => base_1+"njtë" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -10474,16 +10474,16 @@ mkN231 base_1 = Pl => base_1+"t" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"tt" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"tt" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -10657,15 +10657,15 @@ mkN235 base_1 = } ; Acc => table { Sg => base_1+"t" ; - Pl => nonExist + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -10700,16 +10700,16 @@ mkN236 base_1 = Pl => base_1+"njtë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -10837,15 +10837,15 @@ mkN239 base = } ; Acc => table { Sg => base_1+"en" ; --guessed - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"jat" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"jat" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -11017,16 +11017,16 @@ mkN243 base_1 = Pl => base_1+"jtë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -11062,16 +11062,16 @@ mkN244 base = Pl => "b"+base_1+"norët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => "j"+base_1+"t" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => "j"+base_1+"t" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -11199,16 +11199,16 @@ mkN247 base_1 = Pl => base_1+"i" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -11384,16 +11384,16 @@ mkN251 base_1 = Pl => base_1+"i" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -11429,16 +11429,16 @@ mkN252 base = Pl => base_1+"ojet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"uallit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"uallit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -11519,16 +11519,16 @@ mkN254 base_1 = Pl => base_1+"i" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"t" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"t" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -11564,16 +11564,16 @@ mkN255 base = Pl => base_1+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -11611,15 +11611,15 @@ mkN256 base_1 = } ; Acc => table { Sg => base_1+"in" ; --guessed - Pl => nonExist + Pl => base_1 } ; Dat => table { Sg => base_1+"t" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"t" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -11681,11 +11681,11 @@ mkN258 base = Indef => table { Nom => table { Sg => base_1+base_2 ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+base_2 ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+base_2+"i" ; --guessed @@ -11699,19 +11699,19 @@ mkN258 base = Def => table { Nom => table { Sg => base_1+"n"+base_2+"i" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"n"+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"n"+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -11822,11 +11822,11 @@ mkN261 base = Indef => table { Nom => table { Sg => base_1+base_2+"ë"+base_3 ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+base_2+"ë"+base_3 ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+base_2+"ë"+base_3+"i" ; --guessed @@ -11840,19 +11840,19 @@ mkN261 base = Def => table { Nom => table { Sg => base_1+"i"+base_2+base_3+"i" ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+base_2+base_3+"in" ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"i"+base_2+base_3+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"i"+base_2+base_3+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -11889,16 +11889,16 @@ mkN262 base_1 = Pl => base_1+"t" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"nt" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"nt" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -11980,16 +11980,16 @@ mkN264 base_1 = Pl => base_1+"të" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -12069,16 +12069,16 @@ mkN266 base = Pl => base_1+"gët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -12162,16 +12162,16 @@ mkN268 base_1 = Pl => base_1+"i" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"t" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"t" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -12301,16 +12301,16 @@ mkN271 base = Pl => base_1+base_2+"it" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -12435,16 +12435,16 @@ mkN274 base_1 = Pl => base_1+"ërit" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -12480,16 +12480,16 @@ mkN275 base = Pl => base_1+"jet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -12570,16 +12570,16 @@ mkN277 base_1 = Pl => base_1+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -12614,16 +12614,16 @@ mkN278 base_1 = Pl => base_1+"t" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"tt" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"tt" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -12703,19 +12703,19 @@ mkN280 base = Def => table { Nom => table { Sg => base_1+base_2+"i" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -12752,16 +12752,16 @@ mkN281 base_1 = Pl => base_1+"ërinjtë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -12797,16 +12797,16 @@ mkN282 base = Pl => base_1+"qit" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"kut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"kut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -12844,16 +12844,16 @@ mkN283 base = Pl => base_1+"ý"+base_2+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -12887,20 +12887,20 @@ mkN284 base = } ; Def => table { Nom => table { - Sg => nonExist ; + Sg => base ; Pl => base_1+"e"+base_2+"et" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist+"t" ; --guessed - Pl => nonExist + Sg => base+"t" ; --guessed + Pl => base } ; Ablat => table { - Sg => nonExist+"t" ; --guessed - Pl => nonExist + Sg => base+"t" ; --guessed + Pl => base } } } ; @@ -12935,19 +12935,19 @@ mkN285 base = Def => table { Nom => table { Sg => base_1+"t"+base_2+"i" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"t"+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"t"+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -13029,15 +13029,15 @@ mkN287 base_1 = } ; Acc => table { Sg => base_1+"në" ; --guessed - Pl => nonExist + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -13073,16 +13073,16 @@ mkN288 base = Pl => base_1+base_2+"njtë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"yr"+base_2+"t" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"yr"+base_2+"t" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -13119,16 +13119,16 @@ mkN289 base_1 = Pl => base_1+"it" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -13284,11 +13284,11 @@ mkN293 base = Indef => table { Nom => table { Sg => base_1+"m"+base_2 ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"m"+base_2 ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"m"+base_2+"e" ; --guessed @@ -13302,19 +13302,19 @@ mkN293 base = Def => table { Nom => table { Sg => base_1+"r"+base_2+"t" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -13399,16 +13399,16 @@ mkN295 base = Pl => base_1+"u"+base_2+"ët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -13446,16 +13446,16 @@ mkN296 base = Pl => base_1+"et"+base_2+"t" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+base_2+"tit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+base_2+"tit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -13489,20 +13489,20 @@ mkN297 base = } ; Def => table { Nom => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist+"t" ; --guessed - Pl => nonExist + Sg => base+"t" ; --guessed + Pl => base } ; Ablat => table { - Sg => nonExist+"t" ; --guessed - Pl => nonExist + Sg => base+"t" ; --guessed + Pl => base } } } ; @@ -13539,16 +13539,16 @@ mkN298 base_1 = Pl => base_1+"it" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"rit" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"rit" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -13583,16 +13583,16 @@ mkN299 base_1 = Pl => base_1+"t" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"tt" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"tt" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -13627,16 +13627,16 @@ mkN300 base_1 = Pl => base_1+"ët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -13669,19 +13669,19 @@ mkN301 base = Def => table { Nom => table { Sg => base_1+"ët" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"ëtt" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"ëtt" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -13813,16 +13813,16 @@ mkN304 base = Pl => base_1+"u"+base_2+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -13953,16 +13953,16 @@ mkN307 base_1 = Pl => base_1+"it" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -13998,16 +13998,16 @@ mkN308 base = Pl => base_1+"t" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -14046,15 +14046,15 @@ mkN309 base = } ; Acc => table { Sg => base_1+"ën" ; --guessed - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -14089,19 +14089,19 @@ mkN310 base = Def => table { Nom => table { Sg => base_1+"éja" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"éjat" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"éjat" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -14139,16 +14139,16 @@ mkN311 base = Pl => base_1+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -14186,16 +14186,16 @@ mkN312 base = Pl => base_1+"ërat" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -14280,16 +14280,16 @@ mkN314 base = Pl => base_1+"ojet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"ojt" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"ojt" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -14327,16 +14327,16 @@ mkN315 base = Pl => base_1+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -14374,16 +14374,16 @@ mkN316 base = Pl => base_1+"ët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -14465,15 +14465,15 @@ mkN318 base_1 = } ; Acc => table { Sg => base_1+"në" ; - Pl => nonExist + Pl => base_1 } ; Dat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -14509,16 +14509,16 @@ mkN319 base = Pl => base_1+base_2+"rat" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -14555,16 +14555,16 @@ mkN320 base_1 = Pl => base_1+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -14600,16 +14600,16 @@ mkN321 base = Pl => base_1+"jët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -14647,16 +14647,16 @@ mkN322 base = Pl => base_1+"ërat" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -14694,16 +14694,16 @@ mkN323 base = Pl => base_1+"ë"+base_2+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -14741,16 +14741,16 @@ mkN324 base = Pl => base_1+"et" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -14789,15 +14789,15 @@ mkN325 base = } ; Acc => table { Sg => base_1+"ën" ; - Pl => nonExist + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -14834,16 +14834,16 @@ mkN326 base_1 = Pl => base_1+"injtë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -14876,19 +14876,19 @@ mkN327 base = Def => table { Nom => table { Sg => base_1+base_2+"u" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+base_2+"ut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+base_2+"ut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -14969,16 +14969,16 @@ mkN329 base_1 = Pl => base_1+"jet" --guessed } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"jet" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"jet" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -15060,16 +15060,16 @@ mkN331 base_1 = Pl => base_1+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -15105,16 +15105,16 @@ mkN332 base = Pl => base_1+"e"+base_2+"ët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -15196,16 +15196,16 @@ mkN334 base = Pl => base_1+base_2+"i"+base_3+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -15335,15 +15335,15 @@ mkN337 base = } ; Acc => table { Sg => base_1+"ën" ; --guessed - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -15425,16 +15425,16 @@ mkN339 base = Pl => base_1+base_2+"e"+base_3+"et" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -15472,16 +15472,16 @@ mkN340 base = Pl => base_1+"rjet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -15519,16 +15519,16 @@ mkN341 base = Pl => base_1+"j"+base_2+"et" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -15566,16 +15566,16 @@ mkN342 base = Pl => base_1+"qet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -15612,16 +15612,16 @@ mkN343 base_1 = Pl => base_1+"et" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -15636,11 +15636,11 @@ mkN344 base = Indef => table { Nom => table { Sg => base_1+"ë" ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"ë" ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"ë" ; --guessed @@ -15657,16 +15657,16 @@ mkN344 base = Pl => base_1+"a" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -15704,16 +15704,16 @@ mkN345 base = Pl => base_1+"jet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -15777,11 +15777,11 @@ mkN347 base = Indef => table { Nom => table { Sg => base_1+"e"+base_2 ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"e"+base_2 ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"e"+base_2+"i" ; --guessed @@ -15795,19 +15795,19 @@ mkN347 base = Def => table { Nom => table { Sg => base_1+"é"+base_2+"u" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"é"+base_2+"ut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"é"+base_2+"ut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -15842,19 +15842,19 @@ mkN348 base = Def => table { Nom => table { Sg => base_1+"a"+base_2+"i" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"a"+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"a"+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -15871,11 +15871,11 @@ mkN349 base = Indef => table { Nom => table { Sg => base_1+"i" ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"i" ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"ie" ; --guessed @@ -15889,19 +15889,19 @@ mkN349 base = Def => table { Nom => table { Sg => base_1+"a" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -15936,19 +15936,19 @@ mkN350 base = Def => table { Nom => table { Sg => base_1+"oi" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"oit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"oit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -15986,16 +15986,16 @@ mkN351 base = Pl => base_1+"jet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -16033,16 +16033,16 @@ mkN352 base = Pl => base_1+"e"+base_2+"nat" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -16080,16 +16080,16 @@ mkN353 base = Pl => "r"+base_1+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -16127,16 +16127,16 @@ mkN354 base = Pl => base_1+"e"+base_2+"jet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"a"+base_2+"ut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"a"+base_2+"ut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -16220,16 +16220,16 @@ mkN356 base_1 = Pl => base_1+"t" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -16264,16 +16264,16 @@ mkN357 base_1 = Pl => base_1+"jet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -16309,16 +16309,16 @@ mkN358 base = Pl => base_1+"ë"+base_2+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -16355,16 +16355,16 @@ mkN359 base_1 = Pl => base_1+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => "sh"+base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => "sh"+base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -16400,16 +16400,16 @@ mkN360 base = Pl => base_1+base_2+"zet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -16447,16 +16447,16 @@ mkN361 base = Pl => base_1+"qet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -16494,16 +16494,16 @@ mkN362 base = Pl => base_1+"nzat" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -16541,16 +16541,16 @@ mkN363 base = Pl => base_1+"r"+base_2+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -16588,16 +16588,16 @@ mkN364 base = Pl => base_1+"jet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -16635,16 +16635,16 @@ mkN365 base = Pl => base_1+"etë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"aut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"aut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -16776,16 +16776,16 @@ mkN368 base = Pl => base_1+"eqët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"akut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"akut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -16823,16 +16823,16 @@ mkN369 base = Pl => base_1+"ë"+base_2+"enjët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"a"+base_2+"ërit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"a"+base_2+"ërit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -16870,16 +16870,16 @@ mkN370 base = Pl => base_1+"qit" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"kut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"kut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -16964,16 +16964,16 @@ mkN372 base = Pl => base_1+base_2+"e"+base_3+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -17010,16 +17010,16 @@ mkN373 base_1 = Pl => base_1+"itë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -17055,16 +17055,16 @@ mkN374 base = Pl => base_1+"ë"+base_2+"enjtë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"a"+base_2+"rit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"a"+base_2+"rit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -17146,16 +17146,16 @@ mkN376 base = Pl => base_1+"j"+base_2+"t" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+base_2+"llit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+base_2+"llit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -17193,16 +17193,16 @@ mkN377 base = Pl => base_1+"enjt" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"oit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"oit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -17240,16 +17240,16 @@ mkN378 base = Pl => base_1+"jet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"allit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"allit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -17287,16 +17287,16 @@ mkN379 base = Pl => base_1+base_2+"ët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -17334,16 +17334,16 @@ mkN380 base = Pl => base_1+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -17381,16 +17381,16 @@ mkN381 base = Pl => base_1+"r"+base_2+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -17475,16 +17475,16 @@ mkN383 base = Pl => base_1+base_2+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"r"+base_2+"at" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"r"+base_2+"at" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -17569,16 +17569,16 @@ mkN385 base = Pl => base_1+"ë"+base_2+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -17616,16 +17616,16 @@ mkN386 base = Pl => base_1+"jët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"llit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"llit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -17642,11 +17642,11 @@ mkN387 base = Indef => table { Nom => table { Sg => base_1+"ë"+base_2+"ë" ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"ë"+base_2+"ë" ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"ë"+base_2+"ë" ; --guessed @@ -17660,19 +17660,19 @@ mkN387 base = Def => table { Nom => table { Sg => base_1+"e"+base_2+"a" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -17709,16 +17709,16 @@ mkN388 base_1 = Pl => base_1+"it" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -17754,16 +17754,16 @@ mkN389 base = Pl => base_1+"jt" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"nit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"nit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -17801,16 +17801,16 @@ mkN390 base = Pl => base_1+"qet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -17848,16 +17848,16 @@ mkN391 base = Pl => base_1+"jet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"allit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"allit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -17895,16 +17895,16 @@ mkN392 base = Pl => "e"+base_1+base_2+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -17941,16 +17941,16 @@ mkN393 base_1 = Pl => base_1+"t" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"tt" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"tt" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -17986,16 +17986,16 @@ mkN394 base = Pl => base_1+"et" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -18033,16 +18033,16 @@ mkN395 base = Pl => base_1+"gët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -18214,19 +18214,19 @@ mkN399 base_1 = Def => table { Nom => table { Sg => base_1+"ni" ; - Pl => nonExist + Pl => base_1 } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"nit" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"nit" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -18306,16 +18306,16 @@ mkN401 base = Pl => base_1+"jet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -18353,16 +18353,16 @@ mkN402 base = Pl => base_1+base_2+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -18399,16 +18399,16 @@ mkN403 base_1 = Pl => base_1+"et" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"i-mohut" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"i-mohut" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -18444,16 +18444,16 @@ mkN404 base = Pl => base_1+"et" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -18490,16 +18490,16 @@ mkN405 base_1 = Pl => base_1+"i" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"ett" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"ett" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -18536,15 +18536,15 @@ mkN406 base = } ; Acc => table { Sg => base_1+"ën" ; --guessed - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -18582,16 +18582,16 @@ mkN407 base = Pl => base_1+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -18630,15 +18630,15 @@ mkN408 base = } ; Acc => table { Sg => base_1+"ën" ; --guessed - Pl => nonExist + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -18676,16 +18676,16 @@ mkN409 base = Pl => base_1+"qet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -18722,16 +18722,16 @@ mkN410 base_1 = Pl => base_1+"ët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -18768,15 +18768,15 @@ mkN411 base = } ; Acc => table { Sg => base_1+"ën" ; --guessed - Pl => nonExist + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -18793,11 +18793,11 @@ mkN412 base = Indef => table { Nom => table { Sg => base_1+"e"+base_2+"ë" ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"e"+base_2+"ë" ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"e"+base_2+"ëi" ; --guessed @@ -18811,19 +18811,19 @@ mkN412 base = Def => table { Nom => table { Sg => base_1+"é"+base_2+"a" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"é"+base_2+"at" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"é"+base_2+"at" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -18840,11 +18840,11 @@ mkN413 base = Indef => table { Nom => table { Sg => base_1+"e"+base_2 ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"e"+base_2 ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"e"+base_2+"i" ; --guessed @@ -18858,19 +18858,19 @@ mkN413 base = Def => table { Nom => table { Sg => base_1+"é"+base_2+"t" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"é"+base_2+"tt" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"é"+base_2+"tt" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -18954,16 +18954,16 @@ mkN415 base_1 = Pl => base_1+"ë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -19000,15 +19000,15 @@ mkN416 base = } ; Acc => table { Sg => base_1+"ën" ; --guessed - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -19227,16 +19227,16 @@ mkN421 base_1 = Pl => base_1+"ë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -19273,15 +19273,15 @@ mkN422 base = } ; Acc => table { Sg => base_1+"ën" ; - Pl => nonExist + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -19366,16 +19366,16 @@ mkN424 base = Pl => base_1+base_2+"jtë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"y"+base_2+"llit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"y"+base_2+"llit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -19412,16 +19412,16 @@ mkN425 base_1 = Pl => base_1+"e" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -19457,16 +19457,16 @@ mkN426 base = Pl => base_1+"j"+base_2+base_3+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"j"+base_2+base_3+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"j"+base_2+base_3+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -19594,16 +19594,16 @@ mkN429 base_1 = Pl => base_1+"jtë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"nit" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"nit" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -19639,16 +19639,16 @@ mkN430 base = Pl => base_1+base_2+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -19685,16 +19685,16 @@ mkN431 base_1 = Pl => base_1+"et" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"et" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"et" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -19868,16 +19868,16 @@ mkN435 base = Pl => base_1+base_2+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+base_2+"at" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+base_2+"at" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -19915,16 +19915,16 @@ mkN436 base = Pl => base_1+base_2+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -19962,16 +19962,16 @@ mkN437 base = Pl => base_1+"ët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -20005,19 +20005,19 @@ mkN438 base_1 = Def => table { Nom => table { Sg => base_1 ; - Pl => nonExist + Pl => base_1 } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"t" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"t" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -20100,16 +20100,16 @@ mkN440 base = Pl => base_1+base_2+"et" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -20147,16 +20147,16 @@ mkN441 base = Pl => base_1+base_2+"ët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -20194,16 +20194,16 @@ mkN442 base = Pl => base_1+"jet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"jat" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"jat" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -20241,16 +20241,16 @@ mkN443 base = Pl => base_1+"âjt" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"anit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"anit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -20284,19 +20284,19 @@ mkN444 base_1 = Def => table { Nom => table { Sg => base_1 ; - Pl => nonExist + Pl => base_1 } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"t" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"t" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -20332,16 +20332,16 @@ mkN445 base = Pl => base_1+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -20358,11 +20358,11 @@ mkN446 base = Indef => table { Nom => table { Sg => base_1+"i"+base_2 ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"i"+base_2 ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"i"+base_2+"i" ; --guessed @@ -20376,19 +20376,19 @@ mkN446 base = Def => table { Nom => table { Sg => base_1+base_2+"i" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -20426,16 +20426,16 @@ mkN447 base = Pl => base_1+"é"+base_2+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -20514,19 +20514,19 @@ mkN449 base = Def => table { Nom => table { Sg => base_1+"ku" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"kut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"kut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -20611,16 +20611,16 @@ mkN451 base = Pl => "bo"+base_1+"zilokët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => "bo"+base_1+"zilokut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => "bo"+base_1+"zilokut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -20698,20 +20698,20 @@ mkN453 base = } ; Def => table { Nom => table { - Sg => nonExist ; + Sg => base ; Pl => base_1+"njt" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist+"t" ; --guessed - Pl => nonExist + Sg => base+"t" ; --guessed + Pl => base } ; Ablat => table { - Sg => nonExist+"t" ; --guessed - Pl => nonExist + Sg => base+"t" ; --guessed + Pl => base } } } ; @@ -20842,16 +20842,16 @@ mkN456 base_1 = Pl => base_1+"t" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"tt" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"tt" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -20888,15 +20888,15 @@ mkN457 base = } ; Acc => table { Sg => base_1+"en" ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"jat" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"jat" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -21025,16 +21025,16 @@ mkN460 base = Pl => base_1+"et" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -21253,16 +21253,16 @@ mkN465 base_1 = Pl => base_1+"it" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -21341,16 +21341,16 @@ mkN467 base_1 = Pl => base_1+"rat" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -21387,15 +21387,15 @@ mkN468 base = } ; Acc => table { Sg => base_1+"ën" ; --guessed - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -21638,11 +21638,11 @@ mkN474 base = Indef => table { Nom => table { Sg => base_1+base_2+"e" ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+base_2+"e" ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+base_2+"ei" ; --guessed @@ -21656,19 +21656,19 @@ mkN474 base = Def => table { Nom => table { Sg => base_1+base_2+"ja" ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"lm"+base_2+"en" ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+base_2+"jat" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+base_2+"jat" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -21800,16 +21800,16 @@ mkN477 base = Pl => base_1+base_2+"ët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -21938,16 +21938,16 @@ mkN480 base = Pl => base_1+"jat" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"jat" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"jat" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -21985,16 +21985,16 @@ mkN481 base = Pl => base_1+"sit" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"sit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"sit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -22311,16 +22311,16 @@ mkN488 base = Pl => base_1+base_2+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -22358,16 +22358,16 @@ mkN489 base = Pl => base_1+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -22449,16 +22449,16 @@ mkN491 base = Pl => base_1+"jat" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -22542,16 +22542,16 @@ mkN493 base_1 = Pl => base_1+"a" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -22678,16 +22678,16 @@ mkN496 base = Pl => base_1+"u"+base_2+"të" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"u"+base_2+"at" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"u"+base_2+"at" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -22859,16 +22859,16 @@ mkN500 base_1 = Pl => base_1+"ët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -22903,16 +22903,16 @@ mkN501 base_1 = Pl => base_1+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -22995,16 +22995,16 @@ mkN503 base = Pl => base_1+"jat" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"jat" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"jat" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -23089,16 +23089,16 @@ mkN505 base = Pl => base_1+"etë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -23115,11 +23115,11 @@ mkN506 base = Indef => table { Nom => table { Sg => base_1+"e"+base_2+"ë" ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"e"+base_2+"ë" ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"e"+base_2+"ë" ; --guessed @@ -23133,19 +23133,19 @@ mkN506 base = Def => table { Nom => table { Sg => base_1+"a"+base_2+"a" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -23183,16 +23183,16 @@ mkN507 base = Pl => base_1+"a" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -23227,19 +23227,19 @@ mkN508 base = Def => table { Nom => table { Sg => base_1+"éku" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"ékut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"ékut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -23256,11 +23256,11 @@ mkN509 base = Indef => table { Nom => table { Sg => base_1+base_2 ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+base_2 ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+base_2+"i" ; --guessed @@ -23274,19 +23274,19 @@ mkN509 base = Def => table { Nom => table { Sg => base_1+"́"+base_2+"u" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"́"+base_2+"ut" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"́"+base_2+"ut" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -23321,19 +23321,19 @@ mkN510 base = Def => table { Nom => table { Sg => base_1+"ia" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"iat" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"iat" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -23367,19 +23367,19 @@ mkN511 base_1 = Def => table { Nom => table { Sg => base_1+"ri" ; - Pl => nonExist + Pl => base_1 } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"rit" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"rit" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -23415,16 +23415,16 @@ mkN512 base = Pl => base_1+"ë"+base_2+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"ë"+base_2+"at" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"ë"+base_2+"at" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -23509,16 +23509,16 @@ mkN514 base = Pl => base_1+"e"+base_2+base_3+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -23555,16 +23555,16 @@ mkN515 base_1 = Pl => base_1+"a" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -23599,16 +23599,16 @@ mkN516 base_1 = Pl => base_1+"a" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -23640,19 +23640,19 @@ mkN517 base_1 = Def => table { Nom => table { Sg => base_1+"i" ; - Pl => nonExist + Pl => base_1 } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -23684,19 +23684,19 @@ mkN518 base_1 = Def => table { Nom => table { Sg => base_1+"a" ; - Pl => nonExist + Pl => base_1 } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -23729,19 +23729,19 @@ mkN519 base = Def => table { Nom => table { Sg => base_1+"a" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -23776,19 +23776,19 @@ mkN520 base = Def => table { Nom => table { Sg => base_1+"a" ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"ën" ; --guessed - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -23866,19 +23866,19 @@ mkN522 base_1 = Def => table { Nom => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"itt" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"itt" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -23911,19 +23911,19 @@ mkN523 base = Def => table { Nom => table { Sg => base_1+"é"+base_2+"ja" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"é"+base_2+"jat" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"é"+base_2+"jat" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -23939,11 +23939,11 @@ mkN524 base_1 = Indef => table { Nom => table { Sg => base_1 ; - Pl => nonExist + Pl => base_1 } ; Acc => table { Sg => base_1 ; - Pl => nonExist + Pl => base_1 } ; Dat => table { Sg => base_1+"i" ; --guessed @@ -23957,19 +23957,19 @@ mkN524 base_1 = Def => table { Nom => table { Sg => base_1+"it" ; - Pl => nonExist + Pl => base_1 } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"itt" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"itt" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -24005,16 +24005,16 @@ mkN525 base = Pl => base_1+base_2+"f"+base_3+"ët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+base_2+"f"+base_3+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+base_2+"f"+base_3+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -24048,19 +24048,19 @@ mkN526 base_1 = Def => table { Nom => table { Sg => base_1+"i" ; - Pl => nonExist + Pl => base_1 } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -24093,19 +24093,19 @@ mkN527 base = Def => table { Nom => table { Sg => base_1+"a" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -24140,19 +24140,19 @@ mkN528 base = Def => table { Nom => table { Sg => base_1+"ini" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"init" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"init" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -24190,16 +24190,16 @@ mkN529 base = Pl => base_1+"ërat" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -24236,16 +24236,16 @@ mkN530 base_1 = Pl => base_1+"ërit/katragjyshat" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -24280,16 +24280,16 @@ mkN531 base_1 = Pl => base_1+"jet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"jet" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"jet" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -24321,20 +24321,20 @@ mkN532 base = } ; Def => table { Nom => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist+"t" ; --guessed - Pl => nonExist + Sg => base+"t" ; --guessed + Pl => base } ; Ablat => table { - Sg => nonExist+"t" ; --guessed - Pl => nonExist + Sg => base+"t" ; --guessed + Pl => base } } } ; @@ -24350,11 +24350,11 @@ mkN533 base_1 = Indef => table { Nom => table { Sg => base_1 ; - Pl => nonExist + Pl => base_1 } ; Acc => table { Sg => base_1 ; - Pl => nonExist + Pl => base_1 } ; Dat => table { Sg => base_1+"i" ; --guessed @@ -24368,19 +24368,19 @@ mkN533 base_1 = Def => table { Nom => table { Sg => base_1+"ë" ; - Pl => nonExist + Pl => base_1 } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"ët" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"ët" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -24395,11 +24395,11 @@ mkN534 base = Indef => table { Nom => table { Sg => base_1+"ë" ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"ë" ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"ë" ; --guessed @@ -24413,19 +24413,19 @@ mkN534 base = Def => table { Nom => table { Sg => base_1+"je" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -24459,19 +24459,19 @@ mkN535 base_1 = Def => table { Nom => table { Sg => base_1+"ja" ; - Pl => nonExist + Pl => base_1 } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"jat" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"jat" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -24486,11 +24486,11 @@ mkN536 base = Indef => table { Nom => table { Sg => base_1+"ue" ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"ue" ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"uei" ; --guessed @@ -24504,19 +24504,19 @@ mkN536 base = Def => table { Nom => table { Sg => base_1+"oi" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"oit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"oit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -24551,19 +24551,19 @@ mkN537 base = Def => table { Nom => table { Sg => base_1+"ja" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"jat" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"jat" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -24579,11 +24579,11 @@ mkN538 base_1 = Indef => table { Nom => table { Sg => base_1 ; - Pl => nonExist + Pl => base_1 } ; Acc => table { Sg => base_1 ; - Pl => nonExist + Pl => base_1 } ; Dat => table { Sg => base_1+"i" ; --guessed @@ -24597,19 +24597,19 @@ mkN538 base_1 = Def => table { Nom => table { Sg => base_1+"ni" ; - Pl => nonExist + Pl => base_1 } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"nit" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"nit" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -24641,20 +24641,20 @@ mkN539 base = } ; Def => table { Nom => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -24735,16 +24735,16 @@ mkN541 base_1 = Pl => base_1+"jit" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -24777,19 +24777,19 @@ mkN542 base = Def => table { Nom => table { Sg => base_1+"a" ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"ën" ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -24823,20 +24823,20 @@ mkN543 base = } ; Def => table { Nom => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist+"t" ; --guessed - Pl => nonExist + Sg => base+"t" ; --guessed + Pl => base } ; Ablat => table { - Sg => nonExist+"t" ; --guessed - Pl => nonExist + Sg => base+"t" ; --guessed + Pl => base } } } ; @@ -24853,11 +24853,11 @@ mkN544 base = Indef => table { Nom => table { Sg => base_1+"ua" ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"ua" ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"uai" ; --guessed @@ -24871,19 +24871,19 @@ mkN544 base = Def => table { Nom => table { Sg => base_1+"oi" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"oit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"oit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -24920,16 +24920,16 @@ mkN545 base_1 = Pl => base_1+"j" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"ut" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -24964,16 +24964,16 @@ mkN546 base_1 = Pl => base_1+"ët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -25103,16 +25103,16 @@ mkN549 base = Pl => base_1+"itë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -25129,11 +25129,11 @@ mkN550 base = Indef => table { Nom => table { Sg => base_1+"ë" ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"ë" ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"ëi" ; --guessed @@ -25147,19 +25147,19 @@ mkN550 base = Def => table { Nom => table { Sg => base_1+"a" ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"ën" ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"at" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -25240,19 +25240,19 @@ mkN552 base_1 = Def => table { Nom => table { Sg => base_1+"ja" ; - Pl => nonExist + Pl => base_1 } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -25288,16 +25288,16 @@ mkN553 base = Pl => base_1+"enjtë" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"ait" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"ait" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -25331,19 +25331,19 @@ mkN554 base_1 = Def => table { Nom => table { Sg => base_1+"ja" ; - Pl => nonExist + Pl => base_1 } ; Acc => table { Sg => base_1+"në" ; - Pl => nonExist + Pl => base_1 } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } } } ; @@ -25358,11 +25358,11 @@ mkN555 base = Indef => table { Nom => table { Sg => base_1+"e" ; - Pl => nonExist + Pl => base } ; Acc => table { Sg => base_1+"e" ; - Pl => nonExist + Pl => base } ; Dat => table { Sg => base_1+"ee" ; --guessed @@ -25376,19 +25376,19 @@ mkN555 base = Def => table { Nom => table { Sg => base_1+"éja" ; - Pl => nonExist + Pl => base } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -25426,16 +25426,16 @@ mkN556 base = Pl => base_1+"ý"+base_2+base_3+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -25473,16 +25473,16 @@ mkN557 base = Pl => base_1+"ojet" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"uallit" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"uallit" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -25520,16 +25520,16 @@ mkN558 base = Pl => base_1+"é"+base_2+"et" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -25567,16 +25567,16 @@ mkN559 base = Pl => base_1+"é"+base_2+"et" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"ë"+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"ë"+base_2+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -25614,16 +25614,16 @@ mkN560 base = Pl => base_1+"é"+base_2+base_3+"at" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Ablat => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } } } ; @@ -25661,16 +25661,16 @@ mkN561 base = Pl => base_1+"ët" } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; Dat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base } ; Ablat => table { Sg => base_1+"it" ; --guessed - Pl => nonExist + Pl => base } } } ; @@ -25686,11 +25686,11 @@ mkN562 base_1 = Indef => table { Nom => table { Sg => base_1 ; - Pl => nonExist + Pl => base_1 } ; Acc => table { Sg => base_1 ; - Pl => nonExist + Pl => base_1 } ; Dat => table { Sg => base_1+"i" ; --guessed @@ -25704,19 +25704,19 @@ mkN562 base_1 = Def => table { Nom => table { Sg => base_1+"t" ; - Pl => nonExist + Pl => base_1 } ; Acc => table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; Dat => table { Sg => base_1+"tt" ; --guessed - Pl => nonExist + Pl => base_1 } ; Ablat => table { Sg => base_1+"tt" ; --guessed - Pl => nonExist + Pl => base_1 } } } ; @@ -27574,103 +27574,103 @@ mkV001 base_1 = Pres => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Aorist => table { Sg => table { P1 => base_1+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; participle = base_1+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; vtype = VNormal @@ -27684,103 +27684,103 @@ mkV002 base = Pres => table { Sg => table { P1 => base_1+"ta" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ta" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"sur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -27796,103 +27796,103 @@ mkV003 base = Pres => table { Sg => table { P1 => base_1+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"va" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"rë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -27908,103 +27908,103 @@ mkV004 base = Pres => table { Sg => table { P1 => base_1+"s" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ta" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"tur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -28020,103 +28020,103 @@ mkV005 base = Pres => table { Sg => table { P1 => base_1+base_2+"l" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ol"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+base_2+"lë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -28131,103 +28131,103 @@ mkV006 base_1 = Pres => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Aorist => table { Sg => table { P1 => base_1+"a" ; --guessed - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; participle = base_1+"ë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; vtype = VNormal @@ -28240,103 +28240,103 @@ mkV007 base_1 = Pres => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Aorist => table { Sg => table { P1 => base_1+"ta" ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; participle = base_1+"tur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; vtype = VNormal @@ -28349,103 +28349,103 @@ mkV008 base_1 = Pres => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Aorist => table { Sg => table { P1 => base_1+"u" ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; participle = base_1+"rë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; vtype = VNormal @@ -28459,103 +28459,103 @@ mkV009 base = Pres => table { Sg => table { P1 => base_1+"n" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"u" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"në" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -28571,103 +28571,103 @@ mkV010 base = Pres => table { Sg => table { P1 => base_1+"i"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"y"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"y"+base_2+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -28683,103 +28683,103 @@ mkV011 base = Pres => table { Sg => table { P1 => base_1+"e" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ashë" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"ënë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -28795,103 +28795,103 @@ mkV012 base = Pres => table { Sg => table { P1 => "t"+base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => "d"+base_1+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = "d"+base_1+"ë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -28906,103 +28906,103 @@ mkV013 base_1 = Pres => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Aorist => table { Sg => table { P1 => base_1+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; participle = base_1+"ë" ; --guessed pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; vtype = VNormal @@ -29015,103 +29015,103 @@ mkV014 base_1 = Pres => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Aorist => table { Sg => table { P1 => base_1+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; participle = base_1+"ë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; vtype = VNormal @@ -29125,103 +29125,103 @@ mkV015 base = Pres => table { Sg => table { P1 => base_1+"s" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ta" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"të" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -29237,103 +29237,103 @@ mkV016 base = Pres => table { Sg => table { P1 => base_1+"o"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"o"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"a"+base_2+"rë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -29348,103 +29348,103 @@ mkV017 base_1 = Pres => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Aorist => table { Sg => table { P1 => "(për)"+base_1+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; participle = "(për)"+base_1+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; vtype = VNormal @@ -29457,103 +29457,103 @@ mkV018 base_1 = Pres => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Aorist => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; participle = base_1+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; vtype = VNormal @@ -29567,103 +29567,103 @@ mkV019 base = Pres => table { Sg => table { P1 => base_1+"e"+base_2+"r" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"o"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"a"+base_2+"rë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -29679,103 +29679,103 @@ mkV020 base = Pres => table { Sg => table { P1 => base_1+"e"+base_2+"e" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"aj"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"aj"+base_2+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -29791,103 +29791,103 @@ mkV021 base = Pres => table { Sg => table { P1 => base_1+"ie"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"o"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"ie"+base_2+"ë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -29903,103 +29903,103 @@ mkV022 base = Pres => table { Sg => table { P1 => base_1+"es" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ita" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"itur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -30015,103 +30015,103 @@ mkV023 base = Pres => table { Sg => table { P1 => base_1+"as" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ita" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"itur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -30127,103 +30127,103 @@ mkV024 base = Pres => table { Sg => table { P1 => base_1+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ta" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"tur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -30239,103 +30239,103 @@ mkV025 base = Pres => table { Sg => table { P1 => base_1+"y"+base_2+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+base_2+"va" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"y"+base_2+"r" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; @@ -30352,103 +30352,103 @@ mkV026 base = Pres => table { Sg => table { P1 => base_1+"e"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"o"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"e"+base_2+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -30464,103 +30464,103 @@ mkV027 base = Pres => table { Sg => table { P1 => base_1+"on" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ova" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"uar" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -30576,106 +30576,106 @@ mkV028 base = Pres => table { Sg => table { P1 => base_1+"oj" ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1+"on" ; + P3 => base_1+"on" } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1+"ojmë" ; + P2 => base_1+"oni" ; + P3 => base_1+"ojnë" } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1+"ova" ; + P2 => base_1+"ove" ; + P3 => base_1+"oi" } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1+"uam" ; + P2 => base_1+"uat" ; + P3 => base_1+"uan" } } ; Aorist => table { Sg => table { P1 => base_1+"ova" ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1+"ove" ; + P3 => base_1+"oi" } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1+"uam" ; + P2 => base_1+"uat" ; + P3 => base_1+"uan" } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1+"oja" ; + P2 => base_1+"oje" ; + P3 => base_1+"onte" } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1+"onim" ; + P2 => base_1+"onit" ; + P3 => base_1+"onin" } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1+"o" ; + Pl => base_1+"oni" } ; participle = base_1+"uar" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; - vtype = VNormal + vtype = VJ }; _ => error "Can't apply paradigm mkV028" } ; @@ -30687,103 +30687,103 @@ mkV029 base_1 = Pres => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Aorist => table { Sg => table { P1 => base_1+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; participle = base_1+"tur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; vtype = VNormal @@ -30797,103 +30797,103 @@ mkV030 base = Pres => table { Sg => table { P1 => base_1+"i" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"eva" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"inë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -30909,103 +30909,103 @@ mkV031 base = Pres => table { Sg => table { P1 => base_1+"i"+base_2+"em" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"o"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"e"+base_2+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -31021,103 +31021,103 @@ mkV032 base = Pres => table { Sg => table { P1 => base_1+"u"+base_2+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ov"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"u"+base_2+"r" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -31132,103 +31132,103 @@ mkV033 base_1 = Pres => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Aorist => table { Sg => table { P1 => base_1+"ta" ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; participle = base_1+"të" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; vtype = VNormal @@ -31242,103 +31242,103 @@ mkV034 base = Pres => table { Sg => table { P1 => base_1+"s" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"va" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"rë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -31354,103 +31354,103 @@ mkV035 base = Pres => table { Sg => table { P1 => base_1+"ie" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ura" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"urë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -31466,103 +31466,103 @@ mkV036 base = Pres => table { Sg => table { P1 => base_1+"je"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"o"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"je"+base_2+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -31578,103 +31578,103 @@ mkV037 base = Pres => table { Sg => table { P1 => base_1+"sem" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ta" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"tur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -31690,106 +31690,106 @@ mkV038 base = Pres => table { Sg => table { P1 => base_1+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1+"n" ; + P3 => base_1+"n" } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1+"jmë" ; + P2 => base_1+"ni" ; + P3 => base_1+"jnë" } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"va" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"në" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; - vtype = VNormal + vtype = VJ }; _ => error "Can't apply paradigm mkV038" } ; @@ -31802,103 +31802,103 @@ mkV039 base = Pres => table { Sg => table { P1 => base_1+"i"+base_2+"em" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"e"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"e"+base_2+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -31914,103 +31914,103 @@ mkV040 base = Pres => table { Sg => table { P1 => base_1+"hem" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"va" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"rë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -32026,103 +32026,103 @@ mkV041 base = Pres => table { Sg => table { P1 => base_1+"em" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -32138,103 +32138,103 @@ mkV042 base = Pres => table { Sg => table { P1 => base_1+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ra" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"rë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -32250,103 +32250,103 @@ mkV043 base = Pres => table { Sg => table { P1 => base_1+"l"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"j"+base_2+"ta" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"j"+base_2+"tur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -32362,103 +32362,103 @@ mkV044 base = Pres => table { Sg => table { P1 => base_1+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"va" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"r" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -32474,103 +32474,103 @@ mkV045 base = Pres => table { Sg => table { P1 => base_1+"jek" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"uqa" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"uqur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -32586,103 +32586,103 @@ mkV046 base = Pres => table { Sg => table { P1 => base_1+"i"+base_2+"em" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"o"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"o"+base_2+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -32698,106 +32698,106 @@ mkV047 base = Pres => table { Sg => table { P1 => base_1+base_2+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1+base_2+"n" ; + P3 => base_1+base_2+"n" } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1+base_2+"jmë" ; + P2 => base_1+base_2+"ni" ; + P3 => base_1+base_2+"jnë" } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+base_2+"va" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"y"+base_2+"r" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; - vtype = VNormal + vtype = VJ }; _ => error "Can't apply paradigm mkV047" } ; @@ -32810,103 +32810,103 @@ mkV048 base = Pres => table { Sg => table { P1 => base_1+"ë"+base_2+"as" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"i"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"i"+base_2+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -32922,103 +32922,103 @@ mkV049 base = Pres => table { Sg => table { P1 => base_1+"je"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"o"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"je"+base_2+"ë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -33034,103 +33034,103 @@ mkV050 base = Pres => table { Sg => table { P1 => base_1+"o"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"a"+base_2+"ta" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"a"+base_2+"tur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -33146,103 +33146,103 @@ mkV051 base = Pres => table { Sg => table { P1 => base_1+"je"+base_2+"r" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"o"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"je"+base_2+"rë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -33258,103 +33258,103 @@ mkV052 base = Pres => table { Sg => table { P1 => base_1+"r"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"r"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"n"+base_2 ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -33370,103 +33370,103 @@ mkV053 base = Pres => table { Sg => table { P1 => base_1+"i"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"o"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"i"+base_2+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -33482,103 +33482,103 @@ mkV054 base = Pres => table { Sg => table { P1 => base_1+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"jta" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"rë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -33594,103 +33594,103 @@ mkV055 base = Pres => table { Sg => table { P1 => base_1+"em" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"ë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -33706,103 +33706,103 @@ mkV056 base = Pres => table { Sg => table { P1 => base_1+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"na" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1 ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -33818,103 +33818,103 @@ mkV057 base = Pres => table { Sg => table { P1 => base_1+"n" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"u" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"rë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -33930,103 +33930,103 @@ mkV058 base = Pres => table { Sg => table { P1 => base_1+"sh"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"sh"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"n"+base_2 ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -34041,103 +34041,103 @@ mkV059 base_1 = Pres => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Aorist => table { Sg => table { P1 => base_1+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; participle = base_1+"urë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; vtype = VNormal @@ -34151,103 +34151,103 @@ mkV060 base = Pres => table { Sg => table { P1 => base_1+"je"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"o"+base_2+"ja" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"je"+base_2+"ë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -34263,103 +34263,103 @@ mkV061 base = Pres => table { Sg => table { P1 => base_1+"em" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -34374,103 +34374,103 @@ mkV062 base_1 = Pres => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Aorist => table { Sg => table { P1 => base_1+"ë" ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; participle = base_1+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; vtype = VNormal @@ -34484,103 +34484,103 @@ mkV063 base = Pres => table { Sg => table { P1 => base_1+"i"+base_2+"em" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"o"+base_2+"ra" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"i"+base_2+"rur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -34596,103 +34596,103 @@ mkV064 base = Pres => table { Sg => table { P1 => base_1+"a"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"e"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"e"+base_2+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -34708,103 +34708,103 @@ mkV065 base = Pres => table { Sg => table { P1 => base_1+"sh"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"r"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; - participle = nonExist ; + participle = base ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -34820,103 +34820,103 @@ mkV066 base = Pres => table { Sg => table { P1 => "hë"+base_1+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => "hë"+base_1+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"ënë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -34932,103 +34932,103 @@ mkV067 base = Pres => table { Sg => table { P1 => base_1+"ë"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"ë"+base_2 ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -35044,103 +35044,103 @@ mkV068 base = Pres => table { Sg => table { P1 => base_1+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ta" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"rë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -35156,103 +35156,103 @@ mkV069 base = Pres => table { Sg => table { P1 => base_1+"n" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ti" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"të" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -35268,103 +35268,103 @@ mkV070 base = Pres => table { Sg => table { P1 => base_1+"on" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"oi" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"uar" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -35380,103 +35380,103 @@ mkV071 base = Pres => table { Sg => table { P1 => base_1+base_2+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+base_2+"u" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"y"+base_2+"r" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -35492,103 +35492,103 @@ mkV072 base = Pres => table { Sg => table { P1 => base_1+base_2+"s" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"it"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+base_2+"rë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -35604,103 +35604,103 @@ mkV073 base = Pres => table { Sg => table { P1 => base_1+"i"+base_2+"em" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"o"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"i"+base_2+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -35716,103 +35716,103 @@ mkV074 base = Pres => table { Sg => table { P1 => base_1+"in" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"uar" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -35828,103 +35828,103 @@ mkV075 base = Pres => table { Sg => table { P1 => base_1+"ë" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -35940,103 +35940,103 @@ mkV076 base = Pres => table { Sg => table { P1 => base_1+"y"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"o"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"y"+base_2+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -36052,103 +36052,103 @@ mkV077 base = Pres => table { Sg => table { P1 => base_1+"y"+base_2+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => "r"+base_1+base_2+"va" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = "r"+base_1+"y"+base_2+"r" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -36164,103 +36164,103 @@ mkV078 base = Pres => table { Sg => table { P1 => base_1+"et" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -36276,103 +36276,103 @@ mkV079 base = Pres => table { Sg => table { P1 => base_1+"y"+base_2+"b" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"i"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"i"+base_2+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -36388,103 +36388,103 @@ mkV080 base = Pres => table { Sg => table { P1 => base_1+"s" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ta" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"sur" ; --guessed pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -36500,103 +36500,103 @@ mkV081 base = Pres => table { Sg => table { P1 => base_1+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"va" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -36612,103 +36612,103 @@ mkV082 base = Pres => table { Sg => table { P1 => base_1+base_2+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+base_2+"jti" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"y"+base_2+"r" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -36724,103 +36724,103 @@ mkV083 base = Pres => table { Sg => table { P1 => base_1+"e" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"va" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"rë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -36836,103 +36836,103 @@ mkV084 base = Pres => table { Sg => table { P1 => "e"+base_1+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => "e"+base_1+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = "a"+base_1+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -36948,103 +36948,103 @@ mkV085 base = Pres => table { Sg => table { P1 => base_1+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"na" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"rë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -37060,103 +37060,103 @@ mkV086 base = Pres => table { Sg => table { P1 => base_1+"ej" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"eva" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"uar" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -37172,103 +37172,103 @@ mkV087 base = Pres => table { Sg => table { P1 => base_1+"h"+base_2+"ë"+base_3+"as" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"h"+base_2+"e"+base_3+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+base_2+"e"+base_3+"ë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -37284,103 +37284,103 @@ mkV089 base = Pres => table { Sg => table { P1 => base_1+"ë"+base_2+"as" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"i"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"i"+base_2+"ë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -37396,103 +37396,103 @@ mkV090 base = Pres => table { Sg => table { P1 => base_1+base_2+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"u"+base_2+"jta" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"u"+base_2+"r" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -37508,103 +37508,103 @@ mkV091 base = Pres => table { Sg => table { P1 => base_1+"ie"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+base_2+"eva" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+base_2+"erë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -37620,103 +37620,103 @@ mkV092 base = Pres => table { Sg => table { P1 => base_1+"ij" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ova" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"uar" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -37732,103 +37732,103 @@ mkV093 base = Pres => table { Sg => table { P1 => base_1+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ha" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"hur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -37844,103 +37844,103 @@ mkV094 base = Pres => table { Sg => table { P1 => base_1+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"va" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"jë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -37956,103 +37956,103 @@ mkV095 base = Pres => table { Sg => table { P1 => base_1+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"va" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"tur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -38068,103 +38068,103 @@ mkV096 base = Pres => table { Sg => table { P1 => base_1+"ohem" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ova" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"uar" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -38180,103 +38180,103 @@ mkV097 base = Pres => table { Sg => table { P1 => base_1+base_2+"hem" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+base_2+"va" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"y"+base_2+"r" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -38292,103 +38292,103 @@ mkV098 base = Pres => table { Sg => table { P1 => base_1+"at"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ash"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+base_2+"në" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -38404,103 +38404,103 @@ mkV099 base = Pres => table { Sg => table { P1 => base_1+"r"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"r"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+base_2+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -38516,103 +38516,103 @@ mkV100 base = Pres => table { Sg => table { P1 => base_1+"s" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ta" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"sur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -38628,103 +38628,103 @@ mkV101 base = Pres => table { Sg => table { P1 => base_1+"ua"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"o"+base_2+"ta" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"o"+base_2+"tur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -38740,103 +38740,103 @@ mkV102 base = Pres => table { Sg => table { P1 => base_1+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"na" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"në" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -38852,103 +38852,103 @@ mkV103 base = Pres => table { Sg => table { P1 => base_1+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"va" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"hë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -38964,103 +38964,103 @@ mkV104 base = Pres => table { Sg => table { P1 => base_1+"on" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"uar" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -39076,103 +39076,103 @@ mkV105 base = Pres => table { Sg => table { P1 => base_1+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"jta" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"r" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -39188,103 +39188,103 @@ mkV106 base = Pres => table { Sg => table { P1 => base_1+"ë" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"a" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -39300,103 +39300,103 @@ mkV107 base = Pres => table { Sg => table { P1 => "n"+base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = "n"+base_1+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -39412,103 +39412,103 @@ mkV108 base = Pres => table { Sg => table { P1 => base_1+"oj" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"oha" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"uar" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -39524,103 +39524,103 @@ mkV109 base = Pres => table { Sg => table { P1 => base_1+"oj" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ita" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"ir" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -39636,103 +39636,103 @@ mkV110 base = Pres => table { Sg => table { P1 => base_1+"ih"+base_2+"m" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+base_2+"va" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"y"+base_2+"r" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -39747,103 +39747,103 @@ mkV111 base_1 = Pres => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Aorist => table { Sg => table { P1 => base_1+"va" ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; participle = base_1+"er" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; vtype = VNormal @@ -39857,103 +39857,103 @@ mkV112 base = Pres => table { Sg => table { P1 => base_1+"a"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"o"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"a"+base_2+"ë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -39969,103 +39969,103 @@ mkV113 base = Pres => table { Sg => table { P1 => base_1+"ij" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"iva" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"yer" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -40080,103 +40080,103 @@ mkV114 base_1 = Pres => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Aorist => table { Sg => table { P1 => base_1+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; participle = base_1+"i" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; vtype = VNormal @@ -40189,103 +40189,103 @@ mkV115 base_1 = Pres => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Aorist => table { Sg => table { P1 => base_1+"ë" ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; participle = base_1+"i" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; vtype = VNormal @@ -40299,103 +40299,103 @@ mkV116 base = Pres => table { Sg => table { P1 => base_1+"hem" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"jta" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"jtur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -40411,103 +40411,103 @@ mkV117 base = Pres => table { Sg => table { P1 => base_1+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"q"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+base_2+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -40523,103 +40523,103 @@ mkV118 base = Pres => table { Sg => table { P1 => base_1+"ë" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ura" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"ënë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -40635,103 +40635,103 @@ mkV119 base = Pres => table { Sg => table { P1 => base_1+"ej" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"eva" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"yrë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -40747,103 +40747,103 @@ mkV120 base = Pres => table { Sg => table { P1 => base_1+"h"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"h"+base_2+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -40859,103 +40859,103 @@ mkV121 base = Pres => table { Sg => table { P1 => base_1+"oj" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"oj" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"uar" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -40971,103 +40971,103 @@ mkV122 base = Pres => table { Sg => table { P1 => base_1+"âj" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"âna" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"ô" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -41083,103 +41083,103 @@ mkV123 base = Pres => table { Sg => table { P1 => base_1+"i"+base_2+"et" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"o"+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"a"+base_2+"ë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -41195,103 +41195,103 @@ mkV124 base = Pres => table { Sg => table { P1 => base_1+"et" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -41307,103 +41307,103 @@ mkV125 base = Pres => table { Sg => table { P1 => base_1+base_2+"rrtë" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"or"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+base_2+"rrë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -41419,103 +41419,103 @@ mkV126 base = Pres => table { Sg => table { P1 => base_1+"ash"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ash"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+base_2+"në" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -41530,103 +41530,103 @@ mkV127 base_1 = Pres => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Aorist => table { Sg => table { P1 => base_1+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; participle = base_1+"un" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; vtype = VNormal @@ -41752,103 +41752,103 @@ mkV129 base = Pres => table { Sg => table { P1 => base_1+"n" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"rë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -41864,103 +41864,103 @@ mkV130 base = Pres => table { Sg => table { P1 => base_1+"nj" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ta" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"rë" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -41976,103 +41976,103 @@ mkV131 base = Pres => table { Sg => table { P1 => base_1+"oj" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"ova" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"ue" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -42087,103 +42087,103 @@ mkV132 base_1 = Pres => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Aorist => table { Sg => table { P1 => base_1+"ta" ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; participle = base_1+"tur/mprojtun/mpruar" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; vtype = VNormal @@ -42197,103 +42197,103 @@ mkV133 base = Pres => table { Sg => table { P1 => base_1+"j" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+"va" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+"hur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal @@ -42308,103 +42308,103 @@ mkV134 base_1 = Pres => table { Sg => table { P1 => base_1 ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Aorist => table { Sg => table { P1 => base_1+"i" ; - P2 => nonExist ; - P3 => nonExist + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base_1 ; + Pl => base_1 } ; participle = base_1+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base_1 ; + P2 => base_1 ; + P3 => base_1 } } ; vtype = VNormal @@ -42418,103 +42418,103 @@ mkV135 base = Pres => table { Sg => table { P1 => base_1+"r"+base_2 ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Past => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Aorist => table { Sg => table { P1 => base_1+base_2+"a" ; - P2 => nonExist ; - P3 => nonExist + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; Imperfect => table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } } ; imperative = table { - Sg => nonExist ; - Pl => nonExist + Sg => base ; + Pl => base } ; participle = base_1+base_2+"ur" ; pres_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; perf_optative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; pres_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; imperf_admirative = table { Sg => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } ; Pl => table { - P1 => nonExist ; - P2 => nonExist ; - P3 => nonExist + P1 => base ; + P2 => base ; + P3 => base } } ; vtype = VNormal diff --git a/src/albanian/NamesSqi.gf b/src/albanian/NamesSqi.gf new file mode 100644 index 00000000..5b3e2ac9 --- /dev/null +++ b/src/albanian/NamesSqi.gf @@ -0,0 +1,12 @@ +concrete NamesSqi of Names = CatSqi ** open ResSqi in { +lin + GivenName n = {s=\\_=>n.s; a={gn=GSg Masc;p=P3}} ; + MaleSurname n = {s=\\_=>n.s; a={gn=GSg Masc;p=P3}} ; + FemaleSurname n = {s=\\_=>n.s; a={gn=GSg Fem;p=P3}} ; + PlSurname n = {s=\\_=>n.s; a={gn=GPl;p=P3}} ; + FullName n s = {s=\\_=>n.s++s.s; a={gn=GSg Masc;p=P3}} ; + UseLN n = {s=\\_=>n.s; a={gn=GSg Masc;p=P3}} ; + PlainLN n = {s=\\_=>n.s; a={gn=GSg Masc;p=P3}} ; + InLN n = {s="në"++n.s} ; + AdjLN a n = {s=n.s++a.s!Def!Nom!Masc!Sg} ; +} diff --git a/src/albanian/NounSqi.gf b/src/albanian/NounSqi.gf index 9eb9a1ba..fabaea18 100644 --- a/src/albanian/NounSqi.gf +++ b/src/albanian/NounSqi.gf @@ -1,38 +1,129 @@ -concrete NounSqi of Noun = CatSqi ** open MorphoSqi, ResSqi in { - - flags optimize=all_subs ; +concrete NounSqi of Noun = CatSqi ** open MorphoSqi, ResSqi, Prelude in { lin DetCN det cn = { - s = \\c => det.s ! c ! cn.g ++ cn.s ! det.sp ! c ! det.n ; + s = \\c => det.s ! c ! cn.g ++ cn.s ! det.sp ! c ! det.n ++ + det.post ! det.sp ! c ! cn.g ; a = agrgP3 cn.g det.n } ; - -- UsePron p = p ; + UsePron p = {s=p.s; a=p.a} ; + UsePN p = {s=\\_=>p.s; a={gn=GSg Masc;p=P3}} ; + PredetNP p np = np ** {s=\\c=>p.s ++ np.s ! c} ; + AdvNP np adv = np ** {s=\\c=>np.s ! c ++ adv.s} ; + ExtAdvNP np adv = np ** {s=\\c=>np.s ! c ++ SOFT_BIND ++ "," ++ adv.s} ; + MassNP cn = {s=\\c=>cn.s ! Indef ! c ! Sg; a=agrgP3 cn.g Sg} ; DetQuant quant num = { - s = \\c,g => quant.s ! c ! g ! num.n ++ num.s ; + s = \\c,g => case quant.isPoss of { + True => num.s; + False => quant.s ! c ! g ! num.n ++ num.s + } ; + post = \\_,c,g => case quant.isPoss of { + True => quant.s ! c ! g ! num.n; + False => [] + } ; n = num.n ; sp = quant.sp } ; + DetQuantOrd quant num ord = { + s = \\c,g => case quant.isPoss of { + True => num.s; + False => quant.s ! c ! g ! num.n ++ num.s + } ; + post = \\_,c,g => case quant.isPoss of { + True => quant.s ! c ! g ! num.n ++ ord.s ! c ! g ! num.n; + False => ord.s ! c ! g ! num.n + } ; + n=num.n; sp=quant.sp + } ; + NumSg = {s = []; n = Sg} ; NumPl = {s = []; n = Pl} ; + NumCard c = {s=c.s; n=Pl} ; + NumNumeral n = n ; + NumDecimal n = {s=n.s} ; + AdNum a n = {s=a.s ++ n.s} ; + + OrdNumeral n = {s=\\_,_,_=>n.s} ; + OrdDigits n = {s=\\_,_,_=>n.s} ; + OrdSuperl a = {s=\\c,g,n=>"më" ++ + case a.clit of { + True => case of { + => "i" ++ a.s ! c ! g ! n; + => "e" ++ a.s ! c ! g ! n; + _ => "të" ++ a.s ! c ! g ! n + }; + False => a.s ! c ! g ! n + }} ; + OrdNumeralSuperl n a = {s=\\c,g,num=>n.s ++ a.s ! c ! g ! num} ; DefArt = { s = \\c,g,n => [] ; - sp = Def + sp = Def; + isPoss = False } ; IndefArt = { s = \\c,g => table Number ["një"; []] ; - sp = Indef + sp = Indef; + isPoss = False } ; UseN n = n ; + ComplN2 n np = { + s=\\sp,c,num=>n.s ! sp ! c ! num ++ n.c2.s ++ np.s ! n.c2.c; + g=n.g + } ; + ComplN3 n np = n ** {s=\\sp,c,num=>n.s ! sp ! c ! num ++ n.c2.s ++ np.s ! n.c2.c; c2=n.c3} ; + Use2N3 n = n ** {c2=n.c2} ; + Use3N3 n = n ** {c2=n.c3} ; + RelCN cn rs = cn ** {s=\\sp,c,n=>cn.s ! sp ! c ! n ++ rs.s ! agrgP3 cn.g n} ; + AdvCN cn adv = cn ** {s=\\sp,c,n=>cn.s ! sp ! c ! n ++ adv.s} ; + SentCN cn sc = cn ** {s=\\sp,c,n=>cn.s ! sp ! c ! n ++ sc.s} ; + ApposCN cn np = cn ** {s=\\sp,c,n=>cn.s ! sp ! c ! n ++ np.s ! c} ; + PossNP cn np = cn ** { + s=\\sp,c,n=>cn.s ! sp ! c ! n ++ + link_clitic ! sp ! c ! cn.g ! n ++ np.s ! Ablat + } ; + PartNP cn np = cn ** {s=\\sp,c,n=>cn.s ! sp ! c ! n ++ "me" ++ np.s ! Acc} ; + CountNP det np = {s=\\c=>det.s ! c ! Masc ++ "nga" ++ np.s ! Ablat; a=agrgP3 Masc det.n} ; + + PossPron p = { + s=\\c,g,n=>case of { + => case c of {Nom=>"im"; _=>"tim"}; + => case c of {Nom=>"ime"; Acc=>"time"; _=>"sime"}; + => case c of {Nom=>"yt"; _=>"tënd"}; + => case c of {Nom=>"jote"; Acc=>"tënde"; _=>"sate"}; + => link_clitic!Def!c!g!n++"tij"; + => link_clitic!Def!c!g!n++"saj"; + => link_clitic!Def!c!g!n++"tyre"; + => link_clitic!Def!c!g!n++"mi"; + => link_clitic!Def!c!g!n++"mia"; + => link_clitic!Def!c!g!n++"tu"; + => link_clitic!Def!c!g!n++"tua"; + => case c of {Nom=>"ynë"; _=>"tonë"}; + => case c of {Nom=>"jonë"; Acc=>"tonë"; _=>"sonë"}; + => "tanë"; + => "tona"; + => case c of {Nom=>"juaj"; _=>"tuaj"}; + => "tuaj" + }; + sp=Def; + isPoss=True + } ; + + DetDAP det = { + s=det.s ! Nom ! Masc ++ det.post ! det.sp ! Nom ! Masc; + n=det.n + } ; + AdjDAP dap ap = {s=dap.s ++ ap.s ! Indef ! Nom ! Masc ! dap.n; n=dap.n} ; + QuantityNP dec mu = {s=\\_=>case mu.isPre of {True=>mu.s++dec.s; False=>dec.s++mu.s}; a=agrgP3 Masc Pl} ; + AdjCN ap cn = { - s = \\spec,c,n => cn.s ! spec ! c ! n ++ ap.s ! spec ! c ! cn.g ! n ; + s = \\sp,c,n => cn.s ! sp ! c ! n ++ ap.s ! sp ! c ! cn.g ! n ; g = cn.g } ; diff --git a/src/albanian/NumeralSqi.gf b/src/albanian/NumeralSqi.gf index 20457b40..6e2ae87a 100644 --- a/src/albanian/NumeralSqi.gf +++ b/src/albanian/NumeralSqi.gf @@ -12,6 +12,8 @@ lincat Sub10 = LinDigit ; lincat Sub100 = LinSub100 ; lincat Sub1000 = LinSub100 ; lincat Sub1000000 = { s : Str } ; +lincat Sub1000000000 = {s : Str} ; +lincat Sub1000000000000 = {s : Str} ; oper mkNum : Str -> LinDigit = \tri -> { s = table {unit => tri ; teen => tri + "mbë" + "dhjetë" ; ten => tri + "dhjetë" }}; @@ -39,10 +41,23 @@ lin pot1 d = mkR (d.s ! ten) ; lin pot1plus d e = mkR ((d.s ! ten) ++ "e" ++ (e.s ! unit)) ; lin pot1as2 n = n ; lin pot2 d = mkR (bind (d.s ! unit) "qind") ; +lin pot21 = mkR "njëqind" ; lin pot2plus d e = mkR ((bind (d.s ! unit) "qind") ++ "e" ++ e.s) ; lin pot2as3 n = {s = n.s }; lin pot3 n = {s = n.s ++ "mijë" } ; lin pot3plus n m = {s = n.s ++ "mijë" ++ m.s} ; +lin pot31 = {s="një mijë"} ; +lin pot3as4 n=n ; +lin pot3decimal n={s=n.s++"mijë"} ; +lin pot41={s="një milion"} ; +lin pot4 n={s=n.s++"milionë"} ; +lin pot4plus n m={s=n.s++"milionë"++m.s} ; +lin pot4decimal n={s=n.s++"milionë"} ; +lin pot4as5 n=n ; +lin pot51={s="një miliard"} ; +lin pot5 n={s=n.s++"miliardë"} ; +lin pot5plus n m={s=n.s++"miliardë"++m.s} ; +lin pot5decimal n={s=n.s++"miliardë"} ; lincat Dig = {s : Str; n : Number} ; diff --git a/src/albanian/ParadigmsSqi.gf b/src/albanian/ParadigmsSqi.gf index f3abddb1..a795ae7e 100644 --- a/src/albanian/ParadigmsSqi.gf +++ b/src/albanian/ParadigmsSqi.gf @@ -1199,6 +1199,39 @@ oper _ => regV form1 } ; +irregV : (p1sg,p2sg,p3sg,p1pl,p2pl,p3pl,impSg,impPl,part : Str) -> V = + \p1sg,p2sg,p3sg,p1pl,p2pl,p3pl,impSg,impPl,part -> lin V { + indicative = table { + Pres => table { + Sg => table {P1 => p1sg ; P2 => p2sg ; P3 => p3sg} ; + Pl => table {P1 => p1pl ; P2 => p2pl ; P3 => p3pl} + } ; + _ => table { + Sg => table {P1 => p1sg ; P2 => p2sg ; P3 => p3sg} ; + Pl => table {P1 => p1pl ; P2 => p2pl ; P3 => p3pl} + } + } ; + imperative = table {Sg => impSg ; Pl => impPl} ; + participle = part ; + pres_optative = \\n,p => case of { + =>p1sg; =>p2sg; =>p3sg; + =>p1pl; =>p2pl; =>p3pl + } ; + perf_optative = \\n,p => case of { + =>p1sg; =>p2sg; =>p3sg; + =>p1pl; =>p2pl; =>p3pl + } ; + pres_admirative = \\n,p => case of { + =>p1sg; =>p2sg; =>p3sg; + =>p1pl; =>p2pl; =>p3pl + } ; + imperf_admirative = \\n,p => case of { + =>p1sg; =>p2sg; =>p3sg; + =>p1pl; =>p2pl; =>p3pl + } ; + vtype = VNormal + } ; + mkN = overload { mkN : Str -> N = regN; -- s;Indef;Nom;Sg mkN : Str -> Str -> N = reg2N -- s;Indef;Nom;Sg s;Indef;Nom;Pl @@ -1286,9 +1319,9 @@ mkAdN : Str -> AdN = \s -> lin AdN {s=s} ; mkCAdv : Str -> CAdv = \s -> lin CAdv {s=s; p=""} ; mkIAdv : Str -> IAdv = \s -> lin IAdv {s=s} ; -mkIP : Str -> IP = \s -> lin IP {s=s} ; -mkIQuant : Str -> IQuant = \s -> lin IQuant {s=s} ; -mkIDet : Str -> IDet = \s -> lin IDet {s=s} ; +mkIP : Str -> IP = \s -> lin IP {s=s; a={gn=GSg Masc; p=P3}} ; +mkIQuant : Str -> IQuant = \s -> lin IQuant {s=\\_=>s} ; +mkIDet : Str -> IDet = \s -> lin IDet {s=\\_=>s; n=Sg} ; mkInterj : Str -> Interj = \s -> lin Interj {s=s} ; @@ -1299,7 +1332,8 @@ mkSubj : Str -> Subj = \s -> lin Subj {s=s} ; mkQuant = overload { mkQuant : Str -> Quant = \s -> lin Quant { s = \\_,_,_ => s ; - sp = Indef + sp = Indef ; + isPoss = False } ; mkQuant : (_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_ : Str) -> Quant = \f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14,f15,f16 -> lin Quant @@ -1345,13 +1379,15 @@ mkQuant = overload { } } } ; - sp = Indef + sp = Indef ; + isPoss = False } } ; mkDet = overload { mkDet : Str -> Number -> Det = \s,n -> lin Det { s = \\_,_ => s ; + post = \\_,_,_ => [] ; sp = Indef ; n = n } ; @@ -1375,6 +1411,7 @@ mkDet = overload { Fem => f8 } } ; + post = \\_,_,_ => [] ; sp = Indef ; n = n } @@ -1395,7 +1432,23 @@ mkCard : Str -> Card = \s -> lin Card {s=s} ; mkACard : Str -> ACard = \s -> lin ACard {s=s} ; mkPredet : Str -> Predet = \s -> lin Predet {s=s} ; -mkPrep : Str -> Prep = \s -> lin Prep {s=s} ; -noPrep : Prep = lin Prep {s=""} ; +mkPrep : Str -> Prep = \s -> lin Prep { + s=s; + c=case s of { + "nga" => Nom; + "prej" => Ablat; + "gjatë" => Ablat; + "pas" => Ablat; + "para" => Ablat; + "prapa" => Ablat; + "midis" => Ablat; + "mes" => Ablat; + "përveç" => Ablat; + "përtej" => Ablat; + "krahas" => Ablat; + _ => Acc + } + } ; +noPrep : Prep = lin Prep {s=""; c=Acc} ; } diff --git a/src/albanian/PhraseSqi.gf b/src/albanian/PhraseSqi.gf index 7ebb5544..7da3a82b 100644 --- a/src/albanian/PhraseSqi.gf +++ b/src/albanian/PhraseSqi.gf @@ -4,11 +4,24 @@ concrete PhraseSqi of Phrase = CatSqi ** open Prelude, ResSqi in { PhrUtt pconj utt voc = {s = pconj.s ++ utt.s ++ voc.s} ; UttS s = s ; + UttQS s = s ; + UttImpSg p i = {s=i.s ! p.p ! Sg} ; + UttImpPl p i = {s=i.s ! p.p ! Pl} ; + UttImpPol p i = {s=i.s ! p.p ! Pl} ; + UttIP ip = {s=ip.s} ; + UttIAdv a = a ; UttNP np = {s = np.s ! Nom} ; + UttAdv a = a ; + UttVP vp = {s="të" ++ vp.subjunctive ! Sg ! P3 ! Masc ! Nom} ; + UttCN cn = {s=cn.s ! Indef ! Nom ! Sg} ; + UttCard c = c ; + UttAP ap = {s=ap.s ! Indef ! Nom ! Masc ! Sg} ; UttInterj i = i ; NoPConj = {s = []} ; + PConjConj c = c ; NoVoc = {s = []} ; + VocNP np = {s=SOFT_BIND ++ "," ++ np.s ! Nom} ; } diff --git a/src/albanian/QuestionSqi.gf b/src/albanian/QuestionSqi.gf new file mode 100644 index 00000000..08725994 --- /dev/null +++ b/src/albanian/QuestionSqi.gf @@ -0,0 +1,21 @@ +concrete QuestionSqi of Question = CatSqi ** open Prelude, ParamX, ResSqi, (I=IrregSqi) in { +lincat QVP = {s : Str} ; +lin + QuestCl cl = cl ; + QuestVP ip vp = {s=\\t,a,p=>ip.s++negation p++futureParticle t++vp.indicative!sqiTense t!agrNumber ip.a!ip.a.p!agrGender ip.a!Nom} ; + QuestSlash ip cl = {s=\\t,a,p=>ip.s++cl.s!t!a!p++cl.c2.s} ; + QuestIAdv i cl = {s=\\t,a,p=>i.s++cl.s!t!a!p} ; + QuestIComp i np = {s=\\_,_,_=>i.s++(lin Verb I.jam_V).indicative!ResSqi.Pres!agrNumber np.a!np.a.p++np.s!Nom} ; + IdetCN d cn = {s=d.s!cn.g++cn.s!Indef!Nom!d.n; a=agrgP3 cn.g d.n} ; + IdetIP d = {s=d.s!Masc; a=agrgP3 Masc d.n} ; + AdvIP ip a = ip ** {s=ip.s++a.s} ; + IdetQuant q n = {s=\\g=>q.s!g++n.s; n=n.n} ; + PrepIP p ip = {s=p.s++ip.s} ; + AdvIAdv i a = {s=i.s++a.s} ; + CompIAdv i = i ; + CompIP ip = {s=ip.s} ; + ComplSlashIP sl ip = {s=sl.indicative!ResSqi.Pres!Sg!P3++sl.c2.s++ip.s} ; + AdvQVP vp i = {s=vp.indicative!ResSqi.Pres!Sg!P3!Masc!Nom++i.s} ; + AddAdvQVP q i = {s=q.s++i.s} ; + QuestQVP ip q = {s=\\_,_,_=>ip.s++q.s} ; +} diff --git a/src/albanian/RelativeSqi.gf b/src/albanian/RelativeSqi.gf new file mode 100644 index 00000000..7b2ff042 --- /dev/null +++ b/src/albanian/RelativeSqi.gf @@ -0,0 +1,8 @@ +concrete RelativeSqi of Relative = CatSqi ** open ParamX, ResSqi in { +lin + RelCl cl = {s=\\_,t,a,p=>"që"++cl.s!t!a!p} ; + RelVP rp vp = {s=\\agr,t,a,p=>rp.s!Nom!agr.gn++negation p++futureParticle t++vp.indicative!sqiTense t!agrNumber agr!agr.p!agrGender agr!Nom} ; + RelSlash rp cl = {s=\\agr,t,a,p=>rp.s!cl.c2.c!agr.gn++cl.s!t!a!p++cl.c2.s} ; + IdRP = {s=\\_,_=>"që"} ; + FunRP prep np rp = {s=\\c,g=>prep.s++np.s!prep.c++rp.s!c!g} ; +} diff --git a/src/albanian/ResSqi.gf b/src/albanian/ResSqi.gf index fbf33a4c..341f94df 100644 --- a/src/albanian/ResSqi.gf +++ b/src/albanian/ResSqi.gf @@ -1,6 +1,6 @@ resource ResSqi = ParamX-[Tense,Past,Pres] ** open Prelude in { -oper Compl = {s : Str} ; +oper Compl = {s : Str; c : Case} ; param Species = Indef | Def ; param Case = Nom | Acc | Dat | Ablat ; @@ -9,6 +9,16 @@ param Gender = Masc | Fem ; param GenNum = GSg Gender | GPl ; oper Agr = {gn : GenNum; p : Person} ; +oper agrNumber : Agr -> Number = \a -> case a.gn of { + GSg _ => Sg ; + GPl => Pl + } ; + +oper agrGender : Agr -> Gender = \a -> case a.gn of { + GSg g => g ; + GPl => Masc + } ; + oper Noun = {s: Species => Case => Number => Str; g: Gender} ; -- 3978 oper mkNoun : (_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_ : Str) -> Gender -> Noun = \f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14,f15,f16,g -> @@ -104,7 +114,7 @@ oper mkAdj : (_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_ : Str) -> Bool -> Adj = param Tense = Pres | Past | Imperfect | Aorist ; -param VType = VNormal | VRefl ; +param VType = VNormal | VRefl | VJ ; oper Verb = {indicative: Tense => Number => Person => Str; imperative: Number => Str; participle: Str; pres_optative: Number => Person => Str; perf_optative: Number => Person => Str; pres_admirative: Number => Person => Str; imperf_admirative: Number => Person => Str; vtype : VType} ; -- 758 oper mkVerb : (_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_ : Str) -> Verb = \f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14,f15,f16,f17,f18,f19,f20,f21,f22,f23,f24,f25,f26,f27,f28,f29,f30,f31,f32,f33,f34,f35,f36,f37,f38,f39,f40,f41,f42,f43,f44,f45,f46,f47,f48,f49,f50,f51 -> @@ -260,4 +270,51 @@ oper genNum : Gender -> Number -> GenNum = \g,n -> agrgP3 : Gender -> Number -> Agr = \g,n -> {gn=genNum g n; p=P3} ; +oper sqiTense : ParamX.Tense -> Tense = \t -> case t of { + ParamX.Pres => Pres ; + ParamX.Past => Aorist ; + ParamX.Fut => Pres ; + ParamX.Cond => Imperfect + } ; + +oper negation : Polarity -> Str = \p -> case p of { + Pos => [] ; + Neg => "nuk" + } ; + +oper futureParticle : ParamX.Tense -> Str = \t -> case t of { + ParamX.Fut => "do" ++ "të" ; + ParamX.Cond => "do" ++ "të" ; + _ => [] + } ; + +oper subjunctiveForm : VType -> Str -> Str -> Number -> Person -> Str = + \vt,citation,fallback,n,p -> case vt of { + VJ => case of { + => citation ; + => citation ++ BIND ++ "ë" ; + _ => fallback + } ; + _ => fallback + } ; + +oper haveAux : ParamX.Tense => Number => Person => Str = table { + ParamX.Pres => table { + Sg => table {P1 => "kam"; P2 => "ke"; P3 => "ka"}; + Pl => table {P1 => "kemi"; P2 => "keni"; P3 => "kanë"} + } ; + ParamX.Past => table { + Sg => table {P1 => "kisha"; P2 => "kishe"; P3 => "kishte"}; + Pl => table {P1 => "kishim"; P2 => "kishit"; P3 => "kishin"} + } ; + ParamX.Fut => table { + Sg => table {P1 => "do të kem"; P2 => "do të kesh"; P3 => "do të ketë"}; + Pl => table {P1 => "do të kemi"; P2 => "do të keni"; P3 => "do të kenë"} + } ; + ParamX.Cond => table { + Sg => table {P1 => "do të kisha"; P2 => "do të kishe"; P3 => "do të kishte"}; + Pl => table {P1 => "do të kishim"; P2 => "do të kishit"; P3 => "do të kishin"} + } + } ; + } diff --git a/src/albanian/SentenceSqi.gf b/src/albanian/SentenceSqi.gf new file mode 100644 index 00000000..e1a712ca --- /dev/null +++ b/src/albanian/SentenceSqi.gf @@ -0,0 +1,46 @@ +concrete SentenceSqi of Sentence = CatSqi ** open Prelude, ParamX, ResSqi in { + +oper + mkClause : Str -> Agr -> VP -> ParamX.Tense -> Anteriority -> Polarity -> Str = + \subj,a,vp,t,ant,pol -> case of { + => subj ++ negation pol ++ + haveAux ! ParamX.Pres ! agrNumber a ! a.p ++ vp.participle ! a ! Nom ; + => subj ++ negation pol ++ futureParticle t ++ + vp.indicative ! sqiTense t ! agrNumber a ! a.p ! agrGender a ! Nom ; + => subj ++ negation pol ++ haveAux ! t ! agrNumber a ! a.p ++ + vp.participle ! a ! Nom + } ; + +lin + PredVP np vp = {s = \\t,a,p => mkClause (np.s ! Nom) np.a vp t a p} ; + PredSCVP sc vp = {s = \\t,a,p => mkClause sc.s {gn=GSg Masc; p=P3} vp t a p} ; + + SlashVP np sl = { + s = \\t,a,p => np.s ! Nom ++ negation p ++ futureParticle t ++ + sl.indicative ! sqiTense t ! agrNumber np.a ! np.a.p ; + c2 = sl.c2 + } ; + AdvSlash cl adv = cl ** {s = \\t,a,p => cl.s ! t ! a ! p ++ adv.s} ; + SlashPrep cl prep = {s = cl.s; c2 = prep} ; + SlashVS np vs ss = { + s = \\t,a,p => np.s ! Nom ++ negation p ++ vs.indicative ! sqiTense t ! agrNumber np.a ! np.a.p ++ "që" ++ ss.s ; + c2 = {s=[]; c=Acc} + } ; + + ImpVP vp = {s = \\pol,n => case pol of {Pos => []; Neg => "mos"} ++ vp.imperative ! n ! Nom} ; + AdvImp adv imp = {s = \\p,n => adv.s ++ imp.s ! p ! n} ; + + EmbedS s = {s = "që" ++ s.s} ; + EmbedQS q = {s = q.s} ; + EmbedVP vp = {s = "të" ++ vp.subjunctive ! Sg ! P3 ! Masc ! Nom} ; + + UseCl t p cl = {s = cl.s ! t.t ! t.a ! p.p} ; + UseQCl t p cl = {s = cl.s ! t.t ! t.a ! p.p} ; + UseRCl t p cl = {s = \\a => cl.s ! a ! t.t ! t.a ! p.p} ; + UseSlash t p cl = {s = cl.s ! t.t ! t.a ! p.p; c2=cl.c2} ; + + AdvS adv s = {s = adv.s ++ s.s} ; + ExtAdvS adv s = {s = adv.s ++ SOFT_BIND ++ "," ++ s.s} ; + SSubjS s1 subj s2 = {s = s1.s ++ subj.s ++ s2.s} ; + RelS s rs = {s = s.s ++ SOFT_BIND ++ "," ++ rs.s ! {gn=GSg Masc;p=P3}} ; +} diff --git a/src/albanian/StructuralSqi.gf b/src/albanian/StructuralSqi.gf index f6bd30b6..51f51cf6 100644 --- a/src/albanian/StructuralSqi.gf +++ b/src/albanian/StructuralSqi.gf @@ -16,4 +16,107 @@ lin that_Quant = mkQuant "ai" "ata" "ajo" "ato" "atë" "ata" "atë" "ato" "atij" "atyre" "asaj" "atyre" "atij" "atyre" "asaj" "atyre" ; + +lin + youPol_Pron = youPl_Pron ; + + and_Conj = mkConj "dhe" ; + or_Conj = mkConj "ose" ; + if_then_Conj = mkConj "nëse" ; + + above_Prep = mkPrep "mbi" ; + after_Prep = mkPrep "pas" ; + before_Prep = mkPrep "para" ; + behind_Prep = mkPrep "prapa" ; + between_Prep = mkPrep "midis" ; + by8agent_Prep = mkPrep "nga" ; + by8means_Prep = mkPrep "me" ; + during_Prep = mkPrep "gjatë" ; + except_Prep = mkPrep "përveç" ; + for_Prep = mkPrep "për" ; + from_Prep = mkPrep "nga" ; + in8front_Prep = mkPrep "përpara" ; + in_Prep = mkPrep "në" ; + on_Prep = mkPrep "mbi" ; + part_Prep = mkPrep "nga" ; + possess_Prep = mkPrep "i" ; + through_Prep = mkPrep "përmes" ; + to_Prep = mkPrep "te" ; + under_Prep = mkPrep "nën" ; + with_Prep = mkPrep "me" ; + without_Prep = mkPrep "pa" ; + + although_Subj = mkSubj "megjithëse" ; + because_Subj = mkSubj "sepse" ; + if_Subj = mkSubj "nëse" ; + that_Subj = mkSubj "që" ; + when_Subj = mkSubj "kur" ; + + always_AdV = mkAdV "gjithmonë" ; + almost_AdA = mkAdA "pothuajse" ; + so_AdA = mkAdA "kaq" ; + too_AdA = mkAdA "tepër" ; + very_AdA = mkAdA "shumë" ; + almost_AdN = mkAdN "pothuajse" ; + at_least_AdN = mkAdN "të paktën" ; + at_most_AdN = mkAdN "më së shumti" ; + more_CAdv = {s="më";p="se"} ; + less_CAdv = {s="më pak";p="se"} ; + as_CAdv = {s="po aq";p="sa"} ; + + here_Adv = mkAdv "këtu" ; + there_Adv = mkAdv "atje" ; + everywhere_Adv = mkAdv "kudo" ; + somewhere_Adv = mkAdv "diku" ; + here7from_Adv = mkAdv "nga këtu" ; + here7to_Adv = mkAdv "deri këtu" ; + there7from_Adv = mkAdv "nga atje" ; + there7to_Adv = mkAdv "deri atje" ; + quite_Adv = mkAdv "mjaft" ; + + how_IAdv = mkIAdv "si" ; + how8much_IAdv = mkIAdv "sa" ; + when_IAdv = mkIAdv "kur" ; + where_IAdv = mkIAdv "ku" ; + why_IAdv = mkIAdv "pse" ; + which_IQuant = {s=table {Masc=>"cili";Fem=>"cila"}} ; + how8many_IDet = {s=\\_=>"sa";n=Pl} ; + whatSg_IP = {s="çfarë";a={gn=GSg Masc;p=P3}} ; + whatPl_IP = {s="çfarë";a={gn=GPl;p=P3}} ; + whoSg_IP = {s="kush";a={gn=GSg Masc;p=P3}} ; + whoPl_IP = {s="cilët";a={gn=GPl;p=P3}} ; + + all_Predet = {s="të gjithë"} ; + most_Predet = {s="shumica e"} ; + not_Predet = {s="jo"} ; + only_Predet = {s="vetëm"} ; + + every_Det = {s=\\_,_=>"çdo";post=\\_,_,_=>[];sp=Indef;n=Sg} ; + few_Det = {s=\\_,_=>"pak";post=\\_,_,_=>[];sp=Indef;n=Pl} ; + many_Det = {s=\\_,_=>"shumë";post=\\_,_,_=>[];sp=Indef;n=Pl} ; + much_Det = {s=\\_,_=>"shumë";post=\\_,_,_=>[];sp=Indef;n=Sg} ; + someSg_Det = {s=\\_,_=>"një";post=\\_,_,_=>[];sp=Indef;n=Sg} ; + somePl_Det = {s=\\_,_=>"disa";post=\\_,_,_=>[];sp=Indef;n=Pl} ; + no_Quant = mkQuant "asnjë" ; + + everybody_NP = {s=\\_=>"të gjithë";a={gn=GPl;p=P3}} ; + everything_NP = {s=\\_=>"gjithçka";a={gn=GSg Masc;p=P3}} ; + nobody_NP = {s=\\_=>"askush";a={gn=GSg Masc;p=P3}} ; + nothing_NP = {s=\\_=>"asgjë";a={gn=GSg Masc;p=P3}} ; + somebody_NP = {s=\\_=>"dikush";a={gn=GSg Masc;p=P3}} ; + something_NP = {s=\\_=>"diçka";a={gn=GSg Masc;p=P3}} ; + + can_VV = mkVV (mkV "mund") ; + can8know_VV = mkVV (irregV "di" "di" "di" "dimë" "dini" "dinë" "di" "dini" "ditur") ; + must_VV = mkVV (mkV "duhet") ; + want_VV = mkVV (irregV "dua" "do" "do" "duam" "doni" "duan" "duaj" "doni" "dashur") ; + have_V2 = mkV2 (irregV "kam" "ke" "ka" "kemi" "keni" "kanë" "ki" "kini" "pasur") ; + + but_PConj = {s="por"} ; + otherwise_PConj = {s="përndryshe"} ; + therefore_PConj = {s="prandaj"} ; + please_Voc = {s="ju lutem"} ; + yes_Utt = {s="po"} ; + no_Utt = {s="jo"} ; + language_title_Utt = {s="shqip"} ; } diff --git a/src/albanian/VerbSqi.gf b/src/albanian/VerbSqi.gf new file mode 100644 index 00000000..266f4c41 --- /dev/null +++ b/src/albanian/VerbSqi.gf @@ -0,0 +1,150 @@ +concrete VerbSqi of Verb = CatSqi ** open Prelude, ParamX, ResSqi, (I=IrregSqi) in { + +oper + verbVP : Verb -> VP = \v -> lin VP { + indicative = \\t,n,p,_,_ => v.indicative ! t ! n ! p ; + subjunctive = \\n,p,_,_ => subjunctiveForm v.vtype + (v.indicative ! ResSqi.Pres ! Sg ! P1) + (v.indicative ! ResSqi.Pres ! n ! p) n p ; + imperative = \\n,_ => v.imperative ! n ; + participle = \\_,c => v.participle ; + pres_optative = \\n,p,c => v.pres_optative ! n ! p ; + perf_optative = \\n,p,c => v.perf_optative ! n ! p ; + pres_admirative = \\n,p,c => v.pres_admirative ! n ! p ; + imperf_admirative = \\n,p,c => v.imperf_admirative ! n ! p ; + vtype = v.vtype + } ; + + addVP : VP -> (Agr => Case => Str) -> VP = \vp,x -> vp ** { + indicative = \\t,n,p,g,c => vp.indicative ! t ! n ! p ! g ! c ++ + x ! {gn=genNum g n; p=p} ! c ; + subjunctive = \\n,p,g,c => vp.subjunctive ! n ! p ! g ! c ++ + x ! {gn=genNum g n; p=p} ! c ; + imperative = \\n,c => vp.imperative ! n ! c ++ + x ! {gn=genNum Masc n; p=P2} ! c ; + participle = \\a,c => vp.participle ! a ! c ++ x ! a ! c ; + pres_optative = \\n,p,c => vp.pres_optative ! n ! p ! c ++ + x ! {gn=genNum Masc n; p=p} ! c ; + perf_optative = \\n,p,c => vp.perf_optative ! n ! p ! c ++ + x ! {gn=genNum Masc n; p=p} ! c ; + pres_admirative = \\n,p,c => vp.pres_admirative ! n ! p ! c ++ + x ! {gn=genNum Masc n; p=p} ! c ; + imperf_admirative = \\n,p,c => vp.imperf_admirative ! n ! p ! c ++ + x ! {gn=genNum Masc n; p=p} ! c + } ; + + slashVP : Verb -> Compl -> VPSlash = \v,c -> lin VPSlash { + indicative=\\t,n,p=>v.indicative!t!n!p; + subjunctive=\\n,p=>subjunctiveForm v.vtype + (v.indicative!ResSqi.Pres!Sg!P1) + (v.indicative!ResSqi.Pres!n!p) n p; + imperative=\\n=>v.imperative!n; + participle=v.participle; + pres_optative=v.pres_optative; + perf_optative=v.perf_optative; + pres_admirative=v.pres_admirative; + imperf_admirative=v.imperf_admirative; + c2=c; + vtype=v.vtype + } ; + + addSlash : VPSlash -> Str -> VPSlash = \sl,x -> sl ** { + indicative = \\t,n,p => sl.indicative ! t ! n ! p ++ x ; + subjunctive = \\n,p => sl.subjunctive ! n ! p ++ x ; + imperative = \\n => sl.imperative ! n ++ x ; + participle = sl.participle ++ x ; + pres_optative = \\n,p => sl.pres_optative ! n ! p ++ x ; + perf_optative = \\n,p => sl.perf_optative ! n ! p ++ x ; + pres_admirative = \\n,p => sl.pres_admirative ! n ! p ++ x ; + imperf_admirative = \\n,p => sl.imperf_admirative ! n ! p ++ x + } ; + + slashToVP : VPSlash -> VP = \v -> lin VP { + indicative = \\t,n,p,g,c => v.indicative ! t ! n ! p ; + subjunctive = \\n,p,_,_ => v.subjunctive ! n ! p ; + imperative = \\n,c => v.imperative ! n ; + participle = \\_,c => v.participle ; + pres_optative = \\n,p,c => v.pres_optative ! n ! p ; + perf_optative = \\n,p,c => v.perf_optative ! n ! p ; + pres_admirative = \\n,p,c => v.pres_admirative ! n ! p ; + imperf_admirative = \\n,p,c => v.imperf_admirative ! n ! p ; + vtype = v.vtype + } ; + +lin + UseV v = verbVP v ; + SlashV2a v = slashVP v v.c2 ; + + ComplSlash v np = addVP (slashToVP v) (\\_,_ => v.c2.s ++ np.s ! v.c2.c) ; + + ComplVS v s = addVP (verbVP v) (\\_,_ => "që" ++ s.s) ; + ComplVQ v q = addVP (verbVP v) (\\_,_ => q.s) ; + ComplVA v ap = addVP (verbVP v) (\\a,c => + ap.s ! Indef ! c ! agrGender a ! agrNumber a) ; + ComplVV v vp = addVP (verbVP v) (\\a,_ => + "të" ++ vp.subjunctive ! agrNumber a ! a.p ! agrGender a ! Nom) ; + + Slash2V3 v np = addSlash (slashVP (lin Verb v) v.c3) + (v.c2.s ++ np.s ! v.c2.c) ; + Slash3V3 v np = addSlash (slashVP (lin Verb v) v.c2) + (v.c3.s ++ np.s ! v.c3.c) ; + SlashV2S v s = addSlash (slashVP (lin Verb v) v.c2) ("që" ++ s.s) ; + SlashV2Q v q = addSlash (slashVP (lin Verb v) v.c2) q.s ; + SlashV2A v ap = addSlash (slashVP (lin Verb v) v.c2) + (ap.s ! Indef ! Nom ! Masc ! Sg) ; + SlashV2V v vp = addSlash (slashVP (lin Verb v) v.c2) + ("të" ++ vp.subjunctive ! Sg ! P3 ! Masc ! Nom) ; + SlashVV v sl = sl ** { + indicative = \\t,n,p => v.indicative ! t ! n ! p ++ "të" ++ sl.subjunctive ! Sg ! P3 ; + subjunctive = \\n,p => subjunctiveForm v.vtype + (v.indicative!ResSqi.Pres!Sg!P1) + (v.indicative!ResSqi.Pres!n!p) n p ++ "të" ++ sl.subjunctive ! Sg ! P3 + } ; + SlashV2VNP v np sl = sl ** { + indicative = \\t,n,p => v.indicative ! t ! n ! p ++ v.c2.s ++ np.s ! v.c2.c ++ "të" ++ sl.subjunctive ! Sg ! P3 ; + subjunctive = \\n,p => subjunctiveForm v.vtype + (v.indicative!ResSqi.Pres!Sg!P1) + (v.indicative!ResSqi.Pres!n!p) n p ++ v.c2.s ++ np.s ! v.c2.c ++ "të" ++ sl.subjunctive ! Sg ! P3 + } ; + + ReflVP sl = addVP (slashToVP sl) (\\_,_ => "veten") ; + UseComp comp = addVP (verbVP (lin Verb I.jam_V)) (\\a,_ => comp.s ! a) ; + UseCopula = verbVP (lin Verb I.jam_V) ; + PassV2 v = addVP (verbVP (lin Verb I.jam_V)) (\\_,_ => v.participle) ; + + AdvVP vp adv = addVP vp (\\_,_ => adv.s) ; + ExtAdvVP vp adv = addVP vp (\\_,_ => SOFT_BIND ++ "," ++ adv.s) ; + AdVVP adv vp = vp ** { + indicative = \\t,n,p,g,c => adv.s ++ vp.indicative ! t ! n ! p ! g ! c ; + subjunctive = \\n,p,g,c => adv.s ++ vp.subjunctive ! n ! p ! g ! c ; + imperative = \\n,c => adv.s ++ vp.imperative ! n ! c + } ; + AdvVPSlash sl adv = sl ** { + indicative = \\t,n,p => sl.indicative ! t ! n ! p ++ adv.s ; + subjunctive = \\n,p => sl.subjunctive ! n ! p ++ adv.s ; + imperative = \\n => sl.imperative ! n ++ adv.s ; + participle = sl.participle ++ adv.s + } ; + AdVVPSlash adv sl = sl ** { + indicative = \\t,n,p => adv.s ++ sl.indicative ! t ! n ! p ; + subjunctive = \\n,p => adv.s ++ sl.subjunctive ! n ! p ; + imperative = \\n => adv.s ++ sl.imperative ! n + } ; + VPSlashPrep vp prep = lin VPSlash { + indicative = \\t,n,p => vp.indicative ! t ! n ! p ! Masc ! Nom ; + subjunctive = \\n,p => vp.subjunctive ! n ! p ! Masc ! Nom ; + imperative = \\n => vp.imperative ! n ! Nom ; + participle = vp.participle ! {gn=GSg Masc;p=P3} ! Nom ; + pres_optative = \\n,p => vp.pres_optative ! n ! p ! Nom ; + perf_optative = \\n,p => vp.perf_optative ! n ! p ! Nom ; + pres_admirative = \\n,p => vp.pres_admirative ! n ! p ! Nom ; + imperf_admirative = \\n,p => vp.imperf_admirative ! n ! p ! Nom ; + vtype = vp.vtype ; + c2 = prep + } ; + + CompAP ap = {s = \\a => ap.s ! Indef ! Nom ! agrGender a ! agrNumber a} ; + CompNP np = {s = \\_ => np.s ! Nom} ; + CompAdv adv = {s = \\_ => adv.s} ; + CompCN cn = {s = \\_ => cn.s ! Indef ! Nom ! Sg} ; +}